diff --git a/.gitignore b/.gitignore index be69107ca1fa8ea5e412651aee8005b35eb4aa90..8c8b61d701b5c4c98b9290527aa5155e51733229 100644 --- a/.gitignore +++ b/.gitignore @@ -90,3 +90,5 @@ nbproject /tests/coverage* /tests/autoconfig* /tests/autotest* +/tests/data/lorem-copy.txt +/tests/data/testimage-copy.png diff --git a/.htaccess b/.htaccess index 08e2a82facbfc2a80ef95eb21a3533de1136bc3f..4ba5095e144e2a8a41afca2b1b263e855fe0688f 100755 --- a/.htaccess +++ b/.htaccess @@ -26,7 +26,7 @@ RewriteRule ^.well-known/carddav /remote.php/carddav/ [R] RewriteRule ^.well-known/caldav /remote.php/caldav/ [R] RewriteRule ^apps/calendar/caldav.php remote.php/caldav/ [QSA,L] RewriteRule ^apps/contacts/carddav.php remote.php/carddav/ [QSA,L] -RewriteRule ^apps/([^/]*)/(.*\.(css|php))$ index.php?app=$1&getfile=$2 [QSA,L] +RewriteRule ^apps/([^/]*)/(.*\.(php))$ index.php?app=$1&getfile=$2 [QSA,L] RewriteRule ^remote/(.*) remote.php [QSA,L] @@ -38,3 +38,6 @@ DirectoryIndex index.php index.html AddDefaultCharset utf-8 Options -Indexes + + ModPagespeed Off + diff --git a/3rdparty b/3rdparty index 98fdc3a4e2f56f7d231470418222162dbf95f46a..7c2c94c904c2721763e97d5bafd115f863080a60 160000 --- a/3rdparty +++ b/3rdparty @@ -1 +1 @@ -Subproject commit 98fdc3a4e2f56f7d231470418222162dbf95f46a +Subproject commit 7c2c94c904c2721763e97d5bafd115f863080a60 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a79fcc08d608d01a4e53e502076f5ebfe8b6eaeb..70bd85fabf0ff48b9a1a702f144f701b47dbdad2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,7 +8,10 @@ If you have questions about how to install or use ownCloud, please direct these ### Guidelines * Please search the existing issues first, it's likely that your issue was already reported or even fixed. -* This repository is *only* for issues within the ownCloud core code. This also includes the apps: files, encryption, external storage, sharing, deleted files, versions, LDAP, and WebDAV Auth + - Go to one of the repositories, click "issues" and type any word in the top search/command bar. + - You can also filter by appending e. g. "state:open" to the search string. + - More info on [search syntax within github](https://help.github.com/articles/searching-issues) +* This repository ([core](https://github.com/owncloud/core/issues)) is *only* for issues within the ownCloud core code. This also includes the apps: files, encryption, external storage, sharing, deleted files, versions, LDAP, and WebDAV Auth * The issues in other components should be reported in their respective repositories: - [Android client](https://github.com/owncloud/android/issues) - [iOS client](https://github.com/owncloud/ios-issues/issues) @@ -17,6 +20,7 @@ If you have questions about how to install or use ownCloud, please direct these - [Bookmarks](https://github.com/owncloud/bookmarks/issues) - [Calendar](https://github.com/owncloud/calendar/issues) - [Contacts](https://github.com/owncloud/contacts/issues) + - [Documents](https://github.com/owncloud/documents/issues) - [Mail](https://github.com/owncloud/mail/issues) - [Media/Music](https://github.com/owncloud/media/issues) - [News](https://github.com/owncloud/news/issues) diff --git a/apps/files/ajax/getstoragestats.php b/apps/files/ajax/getstoragestats.php index 32a77bff6c3054961a364ce1561b5c5e82f04f85..dd7c7dc5571c09c2ecac5442f27ce2495f8e641b 100644 --- a/apps/files/ajax/getstoragestats.php +++ b/apps/files/ajax/getstoragestats.php @@ -3,7 +3,13 @@ // only need filesystem apps $RUNTIME_APPTYPES = array('filesystem'); +$dir = '/'; + +if (isset($_GET['dir'])) { + $dir = $_GET['dir']; +} + OCP\JSON::checkLoggedIn(); // send back json -OCP\JSON::success(array('data' => \OCA\Files\Helper::buildFileStorageStatistics('/'))); +OCP\JSON::success(array('data' => \OCA\Files\Helper::buildFileStorageStatistics($dir))); diff --git a/apps/files/ajax/list.php b/apps/files/ajax/list.php index 350fc7fa5f6512bac59c5d6996018ad935c7aec5..0be38c3b96f6749fd04deded1595e95079fd26aa 100644 --- a/apps/files/ajax/list.php +++ b/apps/files/ajax/list.php @@ -10,7 +10,7 @@ OCP\JSON::checkLoggedIn(); // Load the files $dir = isset( $_GET['dir'] ) ? $_GET['dir'] : ''; - +$dir = \OC\Files\Filesystem::normalizePath($dir); if (!\OC\Files\Filesystem::is_dir($dir . '/')) { header("HTTP/1.0 404 Not Found"); exit(); diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index 76c03c87a51fae369584d99af1b93f86bd6adaf2..1853098c5072cd06b9d158f41c178356b7d6a851 100644 --- a/apps/files/ajax/newfile.php +++ b/apps/files/ajax/newfile.php @@ -20,15 +20,6 @@ if($source) { OC_JSON::callCheck(); } -if($filename == '') { - OCP\JSON::error(array("data" => array( "message" => "Empty Filename" ))); - exit(); -} -if(strpos($filename, '/')!==false) { - OCP\JSON::error(array("data" => array( "message" => "Invalid Filename" ))); - exit(); -} - function progress($notification_code, $severity, $message, $message_code, $bytes_transferred, $bytes_max) { static $filesize = 0; static $lastsize = 0; @@ -44,7 +35,7 @@ function progress($notification_code, $severity, $message, $message_code, $bytes if (!isset($filesize)) { } else { $progress = (int)(($bytes_transferred/$filesize)*100); - if($progress>$lastsize) {//limit the number or messages send + if($progress>$lastsize) { //limit the number or messages send $eventSource->send('progress', $progress); } $lastsize=$progress; @@ -54,24 +45,74 @@ function progress($notification_code, $severity, $message, $message_code, $bytes } } +$l10n = \OC_L10n::get('files'); + +$result = array( + 'success' => false, + 'data' => NULL + ); + +if(trim($filename) === '') { + $result['data'] = array('message' => (string)$l10n->t('File name cannot be empty.')); + OCP\JSON::error($result); + exit(); +} + +if(strpos($filename, '/') !== false) { + $result['data'] = array('message' => (string)$l10n->t('File name must not contain "/". Please choose a different name.')); + OCP\JSON::error($result); + exit(); +} + +if (!\OC\Files\Filesystem::file_exists($dir . '/')) { + $result['data'] = array('message' => (string)$l10n->t( + 'The target folder has been moved or deleted.'), + 'code' => 'targetnotfound' + ); + OCP\JSON::error($result); + exit(); +} + +//TODO why is stripslashes used on foldername in newfolder.php but not here? $target = $dir.'/'.$filename; +if (\OC\Files\Filesystem::file_exists($target)) { + $result['data'] = array('message' => (string)$l10n->t( + 'The name %s is already used in the folder %s. Please choose a different name.', + array($filename, $dir)) + ); + OCP\JSON::error($result); + exit(); +} + if($source) { if(substr($source, 0, 8)!='https://' and substr($source, 0, 7)!='http://') { - OCP\JSON::error(array("data" => array( "message" => "Not a valid source" ))); + OCP\JSON::error(array('data' => array('message' => $l10n->t('Not a valid source')))); + exit(); + } + + if (!ini_get('allow_url_fopen')) { + $eventSource->send('error', array('message' => $l10n->t('Server is not allowed to open URLs, please check the server configuration'))); + $eventSource->close(); exit(); } $ctx = stream_context_create(null, array('notification' =>'progress')); - $sourceStream=fopen($source, 'rb', false, $ctx); - $result=\OC\Files\Filesystem::file_put_contents($target, $sourceStream); + $sourceStream=@fopen($source, 'rb', false, $ctx); + $result = 0; + if (is_resource($sourceStream)) { + $result=\OC\Files\Filesystem::file_put_contents($target, $sourceStream); + } if($result) { $meta = \OC\Files\Filesystem::getFileInfo($target); $mime=$meta['mimetype']; $id = $meta['fileid']; - $eventSource->send('success', array('mime'=>$mime, 'size'=>\OC\Files\Filesystem::filesize($target), 'id' => $id)); + $eventSource->send('success', array('mime' => $mime, 'size' => \OC\Files\Filesystem::filesize($target), 'id' => $id, 'etag' => $meta['etag'])); } else { - $eventSource->send('error', "Error while downloading ".$source. ' to '.$target); + $eventSource->send('error', array('message' => $l10n->t('Error while downloading %s to %s', array($source, $target)))); + } + if (is_resource($sourceStream)) { + fclose($sourceStream); } $eventSource->close(); exit(); @@ -99,9 +140,10 @@ if($source) { 'mime' => $mime, 'size' => $size, 'content' => $content, + 'etag' => $meta['etag'], ))); exit(); } } -OCP\JSON::error(array("data" => array( "message" => "Error when creating the file" ))); +OCP\JSON::error(array('data' => array( 'message' => $l10n->t('Error when creating the file') ))); diff --git a/apps/files/ajax/newfolder.php b/apps/files/ajax/newfolder.php index e26e1238bc60dfac8c850b992cee0d2cf8953217..4cfcae3090d58da8ad3201480d95278c30851a97 100644 --- a/apps/files/ajax/newfolder.php +++ b/apps/files/ajax/newfolder.php @@ -10,25 +10,56 @@ OCP\JSON::callCheck(); $dir = isset( $_POST['dir'] ) ? stripslashes($_POST['dir']) : ''; $foldername = isset( $_POST['foldername'] ) ? stripslashes($_POST['foldername']) : ''; -if(trim($foldername) == '') { - OCP\JSON::error(array("data" => array( "message" => "Empty Foldername" ))); +$l10n = \OC_L10n::get('files'); + +$result = array( + 'success' => false, + 'data' => NULL + ); + +if(trim($foldername) === '') { + $result['data'] = array('message' => $l10n->t('Folder name cannot be empty.')); + OCP\JSON::error($result); + exit(); +} + +if(strpos($foldername, '/') !== false) { + $result['data'] = array('message' => $l10n->t('Folder name must not contain "/". Please choose a different name.')); + OCP\JSON::error($result); exit(); } -if(strpos($foldername, '/')!==false) { - OCP\JSON::error(array("data" => array( "message" => "Invalid Foldername" ))); + +if (!\OC\Files\Filesystem::file_exists($dir . '/')) { + $result['data'] = array('message' => (string)$l10n->t( + 'The target folder has been moved or deleted.'), + 'code' => 'targetnotfound' + ); + OCP\JSON::error($result); + exit(); +} + +//TODO why is stripslashes used on foldername here but not in newfile.php? +$target = $dir . '/' . stripslashes($foldername); + +if (\OC\Files\Filesystem::file_exists($target)) { + $result['data'] = array('message' => $l10n->t( + 'The name %s is already used in the folder %s. Please choose a different name.', + array($foldername, $dir)) + ); + OCP\JSON::error($result); exit(); } -if(\OC\Files\Filesystem::mkdir($dir . '/' . stripslashes($foldername))) { - if ( $dir != '/') { +if(\OC\Files\Filesystem::mkdir($target)) { + if ( $dir !== '/') { $path = $dir.'/'.$foldername; } else { $path = '/'.$foldername; } $meta = \OC\Files\Filesystem::getFileInfo($path); $id = $meta['fileid']; - OCP\JSON::success(array("data" => array('id'=>$id))); + OCP\JSON::success(array('data' => array('id' => $id))); exit(); } -OCP\JSON::error(array("data" => array( "message" => "Error when creating the folder" ))); +OCP\JSON::error(array('data' => array( 'message' => $l10n->t('Error when creating the folder') ))); diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 0920bf62109d7adcb42bb8523a2f69b525d06caa..8f6c42d6620b49a7718c07085038b8e81cf4d69d 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -7,6 +7,9 @@ OCP\JSON::setContentTypeHeader('text/plain'); // If not, check the login. // If no token is sent along, rely on login only +$allowedPermissions = OCP\PERMISSION_ALL; +$errorCode = null; + $l = OC_L10N::get('files'); if (empty($_POST['dirToken'])) { // The standard case, files are uploaded through logged in users :) @@ -17,6 +20,9 @@ if (empty($_POST['dirToken'])) { die(); } } else { + // return only read permissions for public upload + $allowedPermissions = OCP\PERMISSION_READ; + $linkItem = OCP\Share::getShareByToken($_POST['dirToken']); if ($linkItem === false) { OCP\JSON::error(array('data' => array_merge(array('message' => $l->t('Invalid Token'))))); @@ -29,6 +35,7 @@ if (empty($_POST['dirToken'])) { // resolve reshares $rootLinkItem = OCP\Share::resolveReShare($linkItem); + OCP\JSON::checkUserExists($rootLinkItem['uid_owner']); // Setup FS with owner OC_Util::tearDownFS(); OC_Util::setupFS($rootLinkItem['uid_owner']); @@ -110,30 +117,37 @@ if (strpos($dir, '..') === false) { || (isset($_POST['resolution']) && $_POST['resolution']==='replace') ) { // upload and overwrite file - if (is_uploaded_file($files['tmp_name'][$i]) and \OC\Files\Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) { - - // updated max file size after upload - $storageStats = \OCA\Files\Helper::buildFileStorageStatistics($dir); - - $meta = \OC\Files\Filesystem::getFileInfo($target); - if ($meta === false) { - $error = $l->t('Upload failed. Could not get file info.'); + try + { + if (is_uploaded_file($files['tmp_name'][$i]) and \OC\Files\Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) { + + // updated max file size after upload + $storageStats = \OCA\Files\Helper::buildFileStorageStatistics($dir); + + $meta = \OC\Files\Filesystem::getFileInfo($target); + if ($meta === false) { + $error = $l->t('The target folder has been moved or deleted.'); + $errorCode = 'targetnotfound'; + } else { + $result[] = array('status' => 'success', + 'mime' => $meta['mimetype'], + 'mtime' => $meta['mtime'], + 'size' => $meta['size'], + 'id' => $meta['fileid'], + 'name' => basename($target), + 'etag' => $meta['etag'], + 'originalname' => $files['tmp_name'][$i], + 'uploadMaxFilesize' => $maxUploadFileSize, + 'maxHumanFilesize' => $maxHumanFileSize, + 'permissions' => $meta['permissions'] & $allowedPermissions + ); + } + } else { - $result[] = array('status' => 'success', - 'mime' => $meta['mimetype'], - 'mtime' => $meta['mtime'], - 'size' => $meta['size'], - 'id' => $meta['fileid'], - 'name' => basename($target), - 'originalname' => $files['tmp_name'][$i], - 'uploadMaxFilesize' => $maxUploadFileSize, - 'maxHumanFilesize' => $maxHumanFileSize, - 'permissions' => $meta['permissions'], - ); + $error = $l->t('Upload failed. Could not find uploaded file'); } - - } else { - $error = $l->t('Upload failed. Could not find uploaded file'); + } catch(Exception $ex) { + $error = $ex->getMessage(); } } else { @@ -148,10 +162,11 @@ if (strpos($dir, '..') === false) { 'size' => $meta['size'], 'id' => $meta['fileid'], 'name' => basename($target), + 'etag' => $meta['etag'], 'originalname' => $files['tmp_name'][$i], 'uploadMaxFilesize' => $maxUploadFileSize, 'maxHumanFilesize' => $maxHumanFileSize, - 'permissions' => $meta['permissions'], + 'permissions' => $meta['permissions'] & $allowedPermissions ); } } @@ -164,5 +179,5 @@ if ($error === false) { OCP\JSON::encodedPrint($result); exit(); } else { - OCP\JSON::error(array('data' => array_merge(array('message' => $error), $storageStats))); + OCP\JSON::error(array(array('data' => array_merge(array('message' => $error, 'code' => $errorCode), $storageStats)))); } diff --git a/apps/files/appinfo/remote.php b/apps/files/appinfo/remote.php index 0c1f2e6580c778f4fc995236b3c5c3929906db03..ef22fe921889318768048caa1e29357ddf1e8814 100644 --- a/apps/files/appinfo/remote.php +++ b/apps/files/appinfo/remote.php @@ -39,7 +39,7 @@ $rootDir = new OC_Connector_Sabre_Directory(''); $objectTree = new \OC\Connector\Sabre\ObjectTree($rootDir); // Fire up server -$server = new Sabre_DAV_Server($objectTree); +$server = new OC_Connector_Sabre_Server($objectTree); $server->httpRequest = $requestBackend; $server->setBaseUri($baseuri); @@ -48,9 +48,11 @@ $defaults = new OC_Defaults(); $server->addPlugin(new Sabre_DAV_Auth_Plugin($authBackend, $defaults->getName())); $server->addPlugin(new Sabre_DAV_Locks_Plugin($lockBackend)); $server->addPlugin(new Sabre_DAV_Browser_Plugin(false)); // Show something in the Browser, but no upload +$server->addPlugin(new OC_Connector_Sabre_FilesPlugin()); $server->addPlugin(new OC_Connector_Sabre_AbortedUploadDetectionPlugin()); $server->addPlugin(new OC_Connector_Sabre_QuotaPlugin()); $server->addPlugin(new OC_Connector_Sabre_MaintenancePlugin()); +$server->addPlugin(new OC_Connector_Sabre_ExceptionLoggerPlugin('webdav')); // And off we go! $server->exec(); diff --git a/apps/files/css/files.css b/apps/files/css/files.css index b3ecd1dab93e4cb62cb167881960c7b6aba9f49b..ca3b8500669f1be4da96329a333909700a76181b 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -3,73 +3,77 @@ See the COPYING-README file. */ /* FILE MENU */ -.actions { padding:.3em; height:2em; width: 100%; } +.actions { padding:5px; height:32px; width: 100%; } .actions input, .actions button, .actions .button { margin:0; float:left; } .actions .button a { color: #555; } .actions .button a:hover, .actions .button a:active { color: #333; } + #new { - height:17px; margin:0 0 0 1em; z-index:1010; float:left; + z-index: 1010; + float: left; + padding: 0 !important; /* override default control bar button padding */ +} +#trash { + margin-right: 8px; + float: right; + z-index: 1010; + padding: 10px; + font-weight: normal; +} +#new>a { + padding: 14px 10px; + position: relative; + top: 7px; +} +#new.active { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + border-bottom: none; } -#new.active { border-bottom-left-radius:0; border-bottom-right-radius:0; border-bottom:none; } -#new>a { padding:.5em 1.2em .3em; } #new>ul { - display:none; position:fixed; min-width:7em; z-index:10; - padding:.5em; padding-bottom:0; margin-top:.075em; margin-left:-.5em; + display: none; + position: fixed; + min-width: 112px; + z-index: 10; + padding: 8px; + padding-bottom: 0; + margin-top: 14px; + margin-left: -1px; text-align:left; - background:#f8f8f8; border:1px solid #ddd; border-radius:10px; border-top-left-radius:0; + background: #f8f8f8; + border: 1px solid #ddd; + border-radius: 5px; + border-top-left-radius: 0; box-shadow:0 2px 7px rgba(170,170,170,.4); } -#new>ul>li { height:36px; margin:.3em; padding-left:3em; padding-bottom:0.1em; +#new>ul>li { height:36px; margin:5px; padding-left:48px; padding-bottom:2px; background-repeat:no-repeat; cursor:pointer; } #new>ul>li>p { cursor:pointer; padding-top: 7px; padding-bottom: 7px;} -#new>ul>li>form>input { - padding: 5px; - margin: 2px 0; -} - -#trash { margin: 0 1em; z-index:1010; float: right; } -#upload { - height:27px; padding:0; margin-left:0.2em; overflow:hidden; -} -#upload a { - position:relative; display:block; width:100%; height:27px; - cursor:pointer; z-index:10; - background-image:url('%webroot%/core/img/actions/upload.svg'); - background-repeat:no-repeat; - background-position:7px 6px; - opacity:0.65; -} -.file_upload_target { display:none; } -.file_upload_form { display:inline; float:left; margin:0; padding:0; cursor:pointer; overflow:visible; } -#file_upload_start { - left:0; top:0; width:28px; height:27px; padding:0; - font-size:1em; - -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter:alpha(opacity=0); opacity:0; - z-index:20; position:relative; cursor:pointer; overflow:hidden; +#new .error, #fileList .error { + color: #e9322d; + border-color: #e9322d; + -webkit-box-shadow: 0 0 6px #f8b9b7; + -moz-box-shadow: 0 0 6px #f8b9b7; + box-shadow: 0 0 6px #f8b9b7; } -#uploadprogresswrapper { +/* FILE TABLE */ + +#filestable { position: relative; - display: inline; + top: 44px; + width: 100%; } -#uploadprogressbar { - position:relative; - float: left; - margin-left: 12px; - width: 130px; - height: 26px; - display:inline-block; +/* make sure there's enough room for the file actions */ +#body-user #filestable { + min-width: 750px; } -#uploadprogressbar + stop { - font-size: 13px; +#body-user #controls { + min-width: 600px; } - -/* FILE TABLE */ - -#filestable { position: relative; top:37px; width:100%; } -#filestable tbody tr { background-color:#fff; height:2.5em; } +#filestable tbody tr { background-color:#fff; height:40px; } #filestable tbody tr:hover, tbody tr:active { background-color: rgb(240,240,240); } @@ -84,7 +88,7 @@ span.extension, span.uploading, td.date { color:#999; } span.extension { text-transform:lowercase; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; filter:alpha(opacity=70); opacity:.7; -webkit-transition:opacity 300ms; -moz-transition:opacity 300ms; -o-transition:opacity 300ms; transition:opacity 300ms; } tr:hover span.extension { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; color:#777; } table tr.mouseOver td { background-color:#eee; } -table th { height:2em; padding:0 .5em; color:#999; } +table th { height:24px; padding:0 8px; color:#999; } table th .name { position: absolute; left: 55px; @@ -99,7 +103,7 @@ table td { } table th#headerName { position: relative; - width: 100em; /* not really sure why this works better than 100% … table styling */ + width: 9999px; /* not really sure why this works better than 100% … table styling */ padding: 0; } #headerName-container { @@ -107,36 +111,43 @@ table th#headerName { height: 50px; } table th#headerSize, table td.filesize { - min-width: 3em; - padding: 0 1em; + min-width: 48px; + padding: 0 16px; text-align: right; } table th#headerDate, table td.date { -moz-box-sizing: border-box; box-sizing: border-box; position: relative; - min-width: 11em; - display: block; - height: 51px; + min-width: 176px; } /* Multiselect bar */ #filestable.multiselect { - top: 88px; + top: 95px; +} +table.multiselect thead { + position: fixed; + top: 89px; + z-index: 10; + -moz-box-sizing: border-box; + box-sizing: border-box; + left: 0; + padding-left: 80px; + width: 100%; } -table.multiselect thead { position:fixed; top:82px; z-index:1; -moz-box-sizing: border-box; box-sizing: border-box; left: 0; padding-left: 80px; width:100%; } table.multiselect thead th { - background-color: rgba(210,210,210,.7); + background-color: rgba(220,220,220,.8); color: #000; font-weight: bold; border-bottom: 0; } table.multiselect #headerName { position: relative; - width: 100%; + width: 9999px; /* when we use 100%, the styling breaks on mobile … table styling */ } -table td.selection, table th.selection, table td.fileaction { width:2em; text-align:center; } +table td.selection, table th.selection, table td.fileaction { width:32px; text-align:center; } table td.filename a.name { position:relative; /* Firefox needs to explicitly have this default set … */ -moz-box-sizing: border-box; @@ -154,8 +165,8 @@ table td.filename input.filename { margin-left: 2px; cursor: text; } -table td.filename a, table td.login, table td.logout, table td.download, table td.upload, table td.create, table td.delete { padding:.2em .5em .5em .3em; } -table td.filename .nametext, .uploadtext, .modified { float:left; padding:.3em 0; } +table td.filename a, table td.login, table td.logout, table td.download, table td.upload, table td.create, table td.delete { padding:3px 8px 8px 3px; } +table td.filename .nametext, .uploadtext, .modified { float:left; padding:14px 0; } #modified { position: absolute; @@ -163,8 +174,6 @@ table td.filename .nametext, .uploadtext, .modified { float:left; padding:.3em 0 } .modified { position: relative; - top: 11px; - left: 5px; } /* TODO fix usability bug (accidental file/folder selection) */ @@ -177,9 +186,12 @@ table td.filename .nametext { text-overflow: ellipsis; max-width: 800px; } -table td.filename .uploadtext { font-weight:normal; margin-left:.5em; } -table td.filename form { font-size:.85em; margin-left:3em; margin-right:3em; } +table td.filename .uploadtext { font-weight:normal; margin-left:8px; } +table td.filename form { font-size:14px; margin-left:48px; margin-right:48px; } +.ie8 input[type="checkbox"]{ + padding: 0; +} /* File checkboxes */ #fileList tr td.filename>input[type="checkbox"]:first-child { @@ -210,6 +222,11 @@ table td.filename form { font-size:.85em; margin-left:3em; margin-right:3em; } width: 50px; z-index: 5; } +#fileList tr td.filename>input[type="checkbox"]{ + /* sometimes checkbox height is bigger (KDE/Qt), so setting to absolute + * to prevent it to increase the height */ + position: absolute; +} #fileList tr td.filename>input[type="checkbox"] + label { left: 0; } @@ -228,32 +245,26 @@ table td.filename form { font-size:.85em; margin-left:3em; margin-right:3em; } -webkit-transition:background-image 500ms; -moz-transition:background-image 500ms; -o-transition:background-image 500ms; transition:background-image 500ms; } +#fileList tr td.filename a.name label { + position: absolute; + width: 80%; + height: 50px; +} + #uploadsize-message,#delete-confirm { display:none; } /* File actions */ .fileactions { position: absolute; - top: 16px; + top: 14px; right: 0; - font-size: 11px; -} -#fileList tr:hover .fileactions { /* background to distinguish when overlaying with file names */ - background-color: rgba(240,240,240,0.898); - box-shadow: -5px 0 7px rgba(240,240,240,0.898); -} -#fileList tr.selected:hover .fileactions, #fileList tr.mouseOver .fileactions { /* slightly darker color for selected rows */ - background-color: rgba(230,230,230,.9); - box-shadow: -5px 0 7px rgba(230,230,230,.9); } -#fileList .fileactions a.action img { position:relative; top:.2em; } -#fileList img.move2trash { display:inline; margin:-.5em 0; padding:1em .5em 1em .5em !important; float:right; } +#fileList img.move2trash { display:inline; margin:-8px 0; padding:16px 8px 16px 8px !important; float:right; } #fileList a.action.delete { position: absolute; right: 0; - top: 0; - margin: 0; - padding: 15px 14px 19px !important; + padding: 28px 14px 19px !important; } a.action>img { max-height:16px; max-width:16px; vertical-align:text-bottom; } @@ -271,13 +282,13 @@ a.action>img { max-height:16px; max-width:16px; vertical-align:text-bottom; } } .selectedActions a img { position:relative; - top:.3em; + top:5px; } #fileList a.action { display: inline; - margin: -.5em 0; + margin: -8px 0; padding: 18px 8px !important; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); @@ -319,14 +330,13 @@ a.action>img { max-height:16px; max-width:16px; vertical-align:text-bottom; } #scanning-message{ top:40%; left:40%; position:absolute; display:none; } -div.crumb a{ padding:0.9em 0 0.7em 0; color:#555; } - table.dragshadow { width:auto; } table.dragshadow td.filename { - padding-left:36px; + padding-left:60px; padding-right:16px; + height: 36px; } table.dragshadow td.size { padding-right:8px; diff --git a/apps/files/css/upload.css b/apps/files/css/upload.css index 2d11e41ba88e3b09520d421d4decf28a95a6c339..06b4d4655fec7ceb29cb6d5279442454eccd0ebd 100644 --- a/apps/files/css/upload.css +++ b/apps/files/css/upload.css @@ -1,38 +1,60 @@ - #upload { - height:27px; padding:0; margin-left:0.2em; overflow:hidden; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; + height: 36px; + width: 39px; + padding: 0 !important; /* override default control bar button padding */ + margin-left: 3px; + overflow: hidden; vertical-align: top; } #upload a { - position:relative; display:block; width:100%; height:27px; - cursor:pointer; z-index:10; - background-image:url('%webroot%/core/img/actions/upload.svg'); - background-repeat:no-repeat; - background-position:7px 6px; - opacity:0.65; + position: relative; + display: block; + width: 100%; + height: 44px; + width: 44px; + margin: -5px -3px; + cursor: pointer; + z-index: 10; + opacity: .65; } .file_upload_target { display:none; } .file_upload_form { display:inline; float:left; margin:0; padding:0; cursor:pointer; overflow:visible; } #file_upload_start { - float: left; - left:0; top:0; width:28px; height:27px; padding:0; - font-size:1em; + position: relative; + left: 0; + top: 0; + width: 44px; + height: 44px; + margin: -5px -3px; + padding: 0; + font-size: 16px; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter:alpha(opacity=0); opacity:0; - z-index:20; position:relative; cursor:pointer; overflow:hidden; + z-index: 20; + cursor: pointer; + overflow: hidden; } #uploadprogresswrapper { + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; display: inline-block; vertical-align: top; - margin:0.3em; - height: 29px; + height: 36px; + box-sizing: border-box; +} +#uploadprogresswrapper > input[type='button'] { + height: 36px; } #uploadprogressbar { position:relative; float: left; margin-left: 12px; width: 130px; - height: 26px; + height: 36px; display:inline-block; } #uploadprogressbar + stop { @@ -94,11 +116,6 @@ .oc-dialog .fileexists .conflict input[type='checkbox'] { float: left; } -.oc-dialog .fileexists .toggle { - background-image: url('%webroot%/core/img/actions/triangle-e.png'); - width: 16px; - height: 16px; -} .oc-dialog .fileexists #allfileslabel { float:right; } diff --git a/apps/files/download.php b/apps/files/download.php index e3fe24e45d733398f8fb9ae67585b911db544c58..6b055e99a537dfea6f3b89b946c075f6c112f4c2 100644 --- a/apps/files/download.php +++ b/apps/files/download.php @@ -37,12 +37,7 @@ if(!\OC\Files\Filesystem::file_exists($filename)) { $ftype=\OC\Files\Filesystem::getMimeType( $filename ); header('Content-Type:'.$ftype); -if ( preg_match( "/MSIE/", $_SERVER["HTTP_USER_AGENT"] ) ) { - header( 'Content-Disposition: attachment; filename="' . rawurlencode( basename($filename) ) . '"' ); -} else { - header( 'Content-Disposition: attachment; filename*=UTF-8\'\'' . rawurlencode( basename($filename) ) - . '; filename="' . rawurlencode( basename($filename) ) . '"' ); -} +OCP\Response::setContentDispositionHeader(basename($filename), 'attachment'); OCP\Response::disableCaching(); header('Content-Length: '.\OC\Files\Filesystem::filesize($filename)); diff --git a/apps/files/index.php b/apps/files/index.php index 6f22fdfdc19bb4fccfbfae5d0b8b5d2c7b2dd9d5..2ce8fdb065f625531497062080c596df0f160214 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -36,6 +36,7 @@ OCP\Util::addscript('files', 'filelist'); OCP\App::setActiveNavigationEntry('files_index'); // Load the files $dir = isset($_GET['dir']) ? stripslashes($_GET['dir']) : ''; +$dir = \OC\Files\Filesystem::normalizePath($dir); // Redirect if directory does not exist if (!\OC\Files\Filesystem::is_dir($dir . '/')) { header('Location: ' . OCP\Util::getScriptName() . ''); @@ -62,7 +63,6 @@ $files = array(); $user = OC_User::getUser(); if (\OC\Files\Cache\Upgrade::needUpgrade($user)) { //dont load anything if we need to upgrade the cache $needUpgrade = true; - $freeSpace = 0; } else { if ($isIE8){ // after the redirect above, the URL will have a format @@ -76,7 +76,6 @@ if (\OC\Files\Cache\Upgrade::needUpgrade($user)) { //dont load anything if we ne else{ $files = \OCA\Files\Helper::getFiles($dir); } - $freeSpace = \OC\Files\Filesystem::free_space($dir); $needUpgrade = false; } @@ -104,8 +103,11 @@ if ($needUpgrade) { $storageInfo=OC_Helper::getStorageInfo($dir); $maxUploadFilesize=OCP\Util::maxUploadFilesize($dir); $publicUploadEnabled = \OC_Appconfig::getValue('core', 'shareapi_allow_public_upload', 'yes'); + // if the encryption app is disabled, than everything is fine (INIT_SUCCESSFUL status code) + $encryptionInitStatus = 2; if (OC_App::isEnabled('files_encryption')) { - $publicUploadEnabled = 'no'; + $session = new \OCA\Encryption\Session(new \OC\Files\View('/')); + $encryptionInitStatus = $session->getInitialized(); } $trashEnabled = \OCP\App::isEnabled('files_trashbin'); @@ -113,15 +115,19 @@ if ($needUpgrade) { if ($trashEnabled) { $trashEmpty = \OCA\Files_Trashbin\Trashbin::isEmpty($user); } - + + $isCreatable = \OC\Files\Filesystem::isCreatable($dir . '/'); + $fileHeader = (!isset($files) or count($files) > 0); + $emptyContent = ($isCreatable and !$fileHeader) or $ajaxLoad; + OCP\Util::addscript('files', 'fileactions'); OCP\Util::addscript('files', 'files'); OCP\Util::addscript('files', 'keyboardshortcuts'); $tmpl = new OCP\Template('files', 'index', 'user'); $tmpl->assign('fileList', $list->fetchPage()); $tmpl->assign('breadcrumb', $breadcrumbNav->fetchPage()); - $tmpl->assign('dir', \OC\Files\Filesystem::normalizePath($dir)); - $tmpl->assign('isCreatable', \OC\Files\Filesystem::isCreatable($dir . '/')); + $tmpl->assign('dir', $dir); + $tmpl->assign('isCreatable', $isCreatable); $tmpl->assign('permissions', $permissions); $tmpl->assign('files', $files); $tmpl->assign('trash', $trashEnabled); @@ -133,7 +139,13 @@ if ($needUpgrade) { $tmpl->assign('isPublic', false); $tmpl->assign('publicUploadEnabled', $publicUploadEnabled); $tmpl->assign("encryptedFiles", \OCP\Util::encryptedFiles()); + $tmpl->assign("mailNotificationEnabled", \OC_Appconfig::getValue('core', 'shareapi_allow_mail_notification', 'yes')); + $tmpl->assign("allowShareWithLink", \OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes')); + $tmpl->assign("encryptionInitStatus", $encryptionInitStatus); $tmpl->assign('disableSharing', false); $tmpl->assign('ajaxLoad', $ajaxLoad); + $tmpl->assign('emptyContent', $emptyContent); + $tmpl->assign('fileHeader', $fileHeader); + $tmpl->printPage(); } diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index b52221ac1fc1953f234a62823c5cd54cffbab055..486273a910cf481f34bcc1eccfbca36b364a4d33 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -21,13 +21,13 @@ function supportAjaxUploadWithProgress() { var fi = document.createElement('INPUT'); fi.type = 'file'; return 'files' in fi; - }; + } // Are progress events supported? function supportAjaxUploadProgressEvents() { var xhr = new XMLHttpRequest(); return !! (xhr && ('upload' in xhr) && ('onprogress' in xhr.upload)); - }; + } // Is FormData supported? function supportFormData() { @@ -41,26 +41,6 @@ function supportAjaxUploadWithProgress() { */ OC.Upload = { _uploads: [], - /** - * cancels a single upload, - * @deprecated because it was only used when a file currently beeing uploaded was deleted. Now they are added after - * they have been uploaded. - * @param {string} dir - * @param {string} filename - * @returns {unresolved} - */ - cancelUpload:function(dir, filename) { - var self = this; - var deleted = false; - //FIXME _selections - jQuery.each(this._uploads, function(i, jqXHR) { - if (selection.dir === dir && selection.uploads[filename]) { - deleted = self.deleteSelectionUpload(selection, filename); - return false; // end searching through selections - } - }); - return deleted; - }, /** * deletes the jqHXR object from a data selection * @param {object} data @@ -73,12 +53,12 @@ OC.Upload = { */ cancelUploads:function() { this.log('canceling uploads'); - jQuery.each(this._uploads,function(i, jqXHR){ + jQuery.each(this._uploads,function(i, jqXHR) { jqXHR.abort(); }); this._uploads = []; }, - rememberUpload:function(jqXHR){ + rememberUpload:function(jqXHR) { if (jqXHR) { this._uploads.push(jqXHR); } @@ -88,10 +68,10 @@ OC.Upload = { * returns true if any hxr has the state 'pending' * @returns {boolean} */ - isProcessing:function(){ + isProcessing:function() { var count = 0; - jQuery.each(this._uploads,function(i, data){ + jQuery.each(this._uploads,function(i, data) { if (data.state() === 'pending') { count++; } @@ -134,7 +114,7 @@ OC.Upload = { * handle skipping an upload * @param {object} data */ - onSkip:function(data){ + onSkip:function(data) { this.log('skip', null, data); this.deleteUpload(data); }, @@ -142,21 +122,25 @@ OC.Upload = { * handle replacing a file on the server with an uploaded file * @param {object} data */ - onReplace:function(data){ + onReplace:function(data) { this.log('replace', null, data); - data.data.append('resolution', 'replace'); + if (data.data) { + data.data.append('resolution', 'replace'); + } else { + data.formData.push({name:'resolution', value:'replace'}); //hack for ie8 + } data.submit(); }, /** * handle uploading a file and letting the server decide a new name * @param {object} data */ - onAutorename:function(data){ + onAutorename:function(data) { this.log('autorename', null, data); if (data.data) { data.data.append('resolution', 'autorename'); } else { - data.formData.push({name:'resolution',value:'autorename'}); //hack for ie8 + data.formData.push({name:'resolution', value:'autorename'}); //hack for ie8 } data.submit(); }, @@ -178,7 +162,7 @@ OC.Upload = { * @param {function} callbacks.onChooseConflicts * @param {function} callbacks.onCancel */ - checkExistingFiles: function (selection, callbacks){ + checkExistingFiles: function (selection, callbacks) { // TODO check filelist before uploading and show dialog on conflicts, use callbacks callbacks.onNoConflicts(selection); } @@ -231,13 +215,21 @@ $(document).ready(function() { var selection = data.originalFiles.selection; // add uploads - if ( selection.uploads.length < selection.filesToUpload ){ + if ( selection.uploads.length < selection.filesToUpload ) { // remember upload selection.uploads.push(data); } //examine file var file = data.files[0]; + try { + // FIXME: not so elegant... need to refactor that method to return a value + Files.isFileNameValid(file.name); + } + catch (errorMessage) { + data.textStatus = 'invalidcharacters'; + data.errorThrown = errorMessage; + } if (file.type === '' && file.size === 4096) { data.textStatus = 'dirorzero'; @@ -319,16 +311,22 @@ $(document).ready(function() { OC.Upload.log('fail', e, data); if (typeof data.textStatus !== 'undefined' && data.textStatus !== 'success' ) { if (data.textStatus === 'abort') { - $('#notification').text(t('files', 'Upload cancelled.')); + OC.Notification.show(t('files', 'Upload cancelled.')); } else { // HTTP connection problem - $('#notification').text(data.errorThrown); + OC.Notification.show(data.errorThrown); + if (data.result) { + var result = JSON.parse(data.result); + if (result && result[0] && result[0].data && result[0].data.code === 'targetnotfound') { + // abort upload of next files if any + OC.Upload.cancelUploads(); + } + } } - $('#notification').fadeIn(); - //hide notification after 5 sec + //hide notification after 10 sec setTimeout(function() { - $('#notification').fadeOut(); - }, 5000); + OC.Notification.hide(); + }, 10000); } OC.Upload.deleteUpload(data); }, @@ -350,8 +348,13 @@ $(document).ready(function() { var result=$.parseJSON(response); delete data.jqXHR; - - if(typeof result[0] === 'undefined') { + + if (result.status === 'error' && result.data && result.data.message){ + data.textStatus = 'servererror'; + data.errorThrown = result.data.message; + var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); + fu._trigger('fail', e, data); + } else if (typeof result[0] === 'undefined') { data.textStatus = 'servererror'; data.errorThrown = t('files', 'Could not get result from server.'); var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); @@ -365,7 +368,7 @@ $(document).ready(function() { } else if (result[0].status !== 'success') { //delete data.jqXHR; data.textStatus = 'servererror'; - data.errorThrown = result.data.message; // error message has been translated on server + data.errorThrown = result[0].data.message; // error message has been translated on server var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); fu._trigger('fail', e, data); } @@ -384,13 +387,13 @@ $(document).ready(function() { var fileupload = $('#file_upload_start').fileupload(file_upload_param); window.file_upload_param = fileupload; - if(supportAjaxUploadWithProgress()) { + if (supportAjaxUploadWithProgress()) { // add progress handlers fileupload.on('fileuploadadd', function(e, data) { OC.Upload.log('progress handle fileuploadadd', e, data); //show cancel button - //if(data.dataType !== 'iframe') { //FIXME when is iframe used? only for ie? + //if (data.dataType !== 'iframe') { //FIXME when is iframe used? only for ie? // $('#uploadprogresswrapper input.stop').show(); //} }); @@ -415,7 +418,7 @@ $(document).ready(function() { $('#uploadprogresswrapper input.stop').fadeOut(); $('#uploadprogressbar').fadeOut(); - + Files.updateStorageStatistics(); }); fileupload.on('fileuploadfail', function(e, data) { OC.Upload.log('progress handle fileuploadfail', e, data); @@ -435,7 +438,9 @@ $(document).ready(function() { // http://stackoverflow.com/a/6700/11236 var size = 0, key; for (key in obj) { - if (obj.hasOwnProperty(key)) size++; + if (obj.hasOwnProperty(key)) { + size++; + } } return size; }; @@ -448,56 +453,65 @@ $(document).ready(function() { }); //add multiply file upload attribute to all browsers except konqueror (which crashes when it's used) - if(navigator.userAgent.search(/konqueror/i)==-1){ - $('#file_upload_start').attr('multiple','multiple'); + if (navigator.userAgent.search(/konqueror/i) === -1) { + $('#file_upload_start').attr('multiple', 'multiple'); } //if the breadcrumb is to long, start by replacing foldernames with '...' except for the current folder var crumb=$('div.crumb').first(); - while($('div.controls').height()>40 && crumb.next('div.crumb').length>0){ + while($('div.controls').height() > 40 && crumb.next('div.crumb').length > 0) { crumb.children('a').text('...'); - crumb=crumb.next('div.crumb'); + crumb = crumb.next('div.crumb'); } //if that isn't enough, start removing items from the breacrumb except for the current folder and it's parent - var crumb=$('div.crumb').first(); - var next=crumb.next('div.crumb'); - while($('div.controls').height()>40 && next.next('div.crumb').length>0){ + var crumb = $('div.crumb').first(); + var next = crumb.next('div.crumb'); + while($('div.controls').height()>40 && next.next('div.crumb').length > 0) { crumb.remove(); - crumb=next; - next=crumb.next('div.crumb'); + crumb = next; + next = crumb.next('div.crumb'); } //still not enough, start shorting down the current folder name var crumb=$('div.crumb>a').last(); - while($('div.controls').height()>40 && crumb.text().length>6){ - var text=crumb.text() - text=text.substr(0,text.length-6)+'...'; + while($('div.controls').height() > 40 && crumb.text().length > 6) { + var text=crumb.text(); + text = text.substr(0,text.length-6)+'...'; crumb.text(text); } - $(document).click(function(){ + $(document).click(function(ev) { + // do not close when clicking in the dropdown + if ($(ev.target).closest('#new').length){ + return; + } $('#new>ul').hide(); $('#new').removeClass('active'); - $('#new li').each(function(i,element){ - if($(element).children('p').length==0){ + if ($('#new .error').length > 0) { + $('#new .error').tipsy('hide'); + } + $('#new li').each(function(i,element) { + if ($(element).children('p').length === 0) { $(element).children('form').remove(); $(element).append('

'+$(element).data('text')+'

'); } }); }); - $('#new').click(function(event){ + $('#new').click(function(event) { event.stopPropagation(); }); - $('#new>a').click(function(){ + $('#new>a').click(function() { $('#new>ul').toggle(); $('#new').toggleClass('active'); }); - $('#new li').click(function(){ - if($(this).children('p').length==0){ + $('#new li').click(function() { + if ($(this).children('p').length === 0) { return; } + + $('#new .error').tipsy('hide'); - $('#new li').each(function(i,element){ - if($(element).children('p').length==0){ + $('#new li').each(function(i,element) { + if ($(element).children('p').length === 0) { $(element).children('form').remove(); $(element).append('

'+$(element).data('text')+'

'); } @@ -507,129 +521,180 @@ $(document).ready(function() { var text=$(this).children('p').text(); $(this).data('text',text); $(this).children('p').remove(); - var form=$('
'); - var input=$(''); + + // add input field + var form = $('
'); + var input = $(''); + var newName = $(this).attr('data-newname') || ''; + if (newName) { + input.val(newName); + } form.append(input); $(this).append(form); + var lastPos; + var checkInput = function () { + var filename = input.val(); + if (type === 'web' && filename.length === 0) { + throw t('files', 'URL cannot be empty'); + } else if (type !== 'web' && !Files.isFileNameValid(filename)) { + // Files.isFileNameValid(filename) throws an exception itself + } else if ($('#dir').val() === '/' && filename === 'Shared') { + throw t('files', 'In the home folder \'Shared\' is a reserved filename'); + } else if (FileList.inList(filename)) { + throw t('files', '{new_name} already exists', {new_name: filename}); + } else { + return true; + } + }; + + // verify filename on typing + input.keyup(function(event) { + try { + checkInput(); + input.tipsy('hide'); + input.removeClass('error'); + } catch (error) { + input.attr('title', error); + input.tipsy({gravity: 'w', trigger: 'manual'}); + input.tipsy('show'); + input.addClass('error'); + } + }); + input.focus(); - form.submit(function(event){ + // pre select name up to the extension + lastPos = newName.lastIndexOf('.'); + if (lastPos === -1) { + lastPos = newName.length; + } + input.selectRange(0, lastPos); + form.submit(function(event) { event.stopPropagation(); event.preventDefault(); - var newname=input.val(); - if(type == 'web' && newname.length == 0) { - OC.Notification.show(t('files', 'URL cannot be empty.')); - return false; - } else if (type != 'web' && !Files.isFileNameValid(newname)) { - return false; - } else if( type == 'folder' && $('#dir').val() == '/' && newname == 'Shared') { - OC.Notification.show(t('files','Invalid folder name. Usage of \'Shared\' is reserved by ownCloud')); - return false; - } - if (FileList.lastAction) { - FileList.lastAction(); - } - var name = getUniqueName(newname); - if (newname != name) { - FileList.checkName(name, newname, true); - var hidden = true; - } else { - var hidden = false; - } - switch(type){ - case 'file': - $.post( - OC.filePath('files','ajax','newfile.php'), - {dir:$('#dir').val(),filename:name}, - function(result){ - if (result.status == 'success') { - var date=new Date(); - FileList.addFile(name,0,date,false,hidden); - var tr=$('tr').filterAttr('data-file',name); - tr.attr('data-size',result.data.size); - tr.attr('data-mime',result.data.mime); - tr.attr('data-id', result.data.id); - tr.find('.filesize').text(humanFileSize(result.data.size)); - var path = getPathForPreview(name); - lazyLoadPreview(path, result.data.mime, function(previewpath){ - tr.find('td.filename').attr('style','background-image:url('+previewpath+')'); - }); - } else { - OC.dialogs.alert(result.data.message, t('core', 'Error')); + try { + checkInput(); + var newname = input.val(); + if (FileList.lastAction) { + FileList.lastAction(); + } + var name = getUniqueName(newname); + if (newname !== name) { + FileList.checkName(name, newname, true); + var hidden = true; + } else { + var hidden = false; + } + switch(type) { + case 'file': + $.post( + OC.filePath('files', 'ajax', 'newfile.php'), + {dir:$('#dir').val(), filename:name}, + function(result) { + if (result.status === 'success') { + var date = new Date(); + // TODO: ideally addFile should be able to receive + // all attributes and set them automatically, + // and also auto-load the preview + var tr = FileList.addFile(name, 0, date, false, hidden); + tr.attr('data-size', result.data.size); + tr.attr('data-mime', result.data.mime); + tr.attr('data-id', result.data.id); + tr.attr('data-etag', result.data.etag); + tr.find('.filesize').text(humanFileSize(result.data.size)); + var path = getPathForPreview(name); + Files.lazyLoadPreview(path, result.data.mime, function(previewpath) { + tr.find('td.filename').attr('style','background-image:url('+previewpath+')'); + }, null, null, result.data.etag); + FileActions.display(tr.find('td.filename'), true); + } else { + OC.dialogs.alert(result.data.message, t('core', 'Could not create file')); + } } - } - ); - break; - case 'folder': - $.post( - OC.filePath('files','ajax','newfolder.php'), - {dir:$('#dir').val(),foldername:name}, - function(result){ - if (result.status == 'success') { - var date=new Date(); - FileList.addDir(name,0,date,hidden); - var tr=$('tr').filterAttr('data-file',name); - tr.attr('data-id', result.data.id); - } else { - OC.dialogs.alert(result.data.message, t('core', 'Error')); + ); + break; + case 'folder': + $.post( + OC.filePath('files','ajax','newfolder.php'), + {dir:$('#dir').val(), foldername:name}, + function(result) { + if (result.status === 'success') { + var date=new Date(); + FileList.addDir(name, 0, date, hidden); + var tr = FileList.findFileEl(name); + tr.attr('data-id', result.data.id); + } else { + OC.dialogs.alert(result.data.message, t('core', 'Could not create folder')); + } } + ); + break; + case 'web': + if (name.substr(0,8) !== 'https://' && name.substr(0,7) !== 'http://') { + name = 'http://' + name; } - ); - break; - case 'web': - if(name.substr(0,8)!='https://' && name.substr(0,7)!='http://'){ - name='http://'+name; - } - var localName=name; - if(localName.substr(localName.length-1,1)=='/'){//strip / - localName=localName.substr(0,localName.length-1) - } - if(localName.indexOf('/')){//use last part of url - localName=localName.split('/').pop(); - } else { //or the domain - localName=(localName.match(/:\/\/(.[^\/]+)/)[1]).replace('www.',''); - } - localName = getUniqueName(localName); - //IE < 10 does not fire the necessary events for the progress bar. - if($('html.lte9').length === 0) { - $('#uploadprogressbar').progressbar({value:0}); - $('#uploadprogressbar').fadeIn(); - } - - var eventSource=new OC.EventSource(OC.filePath('files','ajax','newfile.php'),{dir:$('#dir').val(),source:name,filename:localName}); - eventSource.listen('progress',function(progress){ + var localName=name; + if (localName.substr(localName.length-1,1)==='/') {//strip / + localName=localName.substr(0,localName.length-1); + } + if (localName.indexOf('/')) {//use last part of url + localName=localName.split('/').pop(); + } else { //or the domain + localName=(localName.match(/:\/\/(.[^\/]+)/)[1]).replace('www.',''); + } + localName = getUniqueName(localName); //IE < 10 does not fire the necessary events for the progress bar. - if($('html.lte9').length === 0) { - $('#uploadprogressbar').progressbar('value',progress); + if ($('html.lte9').length === 0) { + $('#uploadprogressbar').progressbar({value:0}); + $('#uploadprogressbar').fadeIn(); } - }); - eventSource.listen('success',function(data){ - var mime=data.mime; - var size=data.size; - var id=data.id; - $('#uploadprogressbar').fadeOut(); - var date=new Date(); - FileList.addFile(localName,size,date,false,hidden); - var tr=$('tr').filterAttr('data-file',localName); - tr.data('mime',mime).data('id',id); - tr.attr('data-id', id); - var path = $('#dir').val()+'/'+localName; - lazyLoadPreview(path, mime, function(previewpath){ - tr.find('td.filename').attr('style','background-image:url('+previewpath+')'); + + var eventSource=new OC.EventSource(OC.filePath('files','ajax','newfile.php'),{dir:$('#dir').val(),source:name,filename:localName}); + eventSource.listen('progress',function(progress) { + //IE < 10 does not fire the necessary events for the progress bar. + if ($('html.lte9').length === 0) { + $('#uploadprogressbar').progressbar('value',progress); + } }); - }); - eventSource.listen('error',function(error){ - $('#uploadprogressbar').fadeOut(); - alert(error); - }); - break; + eventSource.listen('success',function(data) { + var mime = data.mime; + var size = data.size; + var id = data.id; + $('#uploadprogressbar').fadeOut(); + var date = new Date(); + FileList.addFile(localName, size, date, false, hidden); + var tr = FileList.findFileEl(localName); + tr.data('mime', mime).data('id', id); + tr.attr('data-id', id); + var path = $('#dir').val()+'/'+localName; + Files.lazyLoadPreview(path, mime, function(previewpath) { + tr.find('td.filename').attr('style', 'background-image:url('+previewpath+')'); + }, null, null, data.etag); + FileActions.display(tr.find('td.filename'), true); + }); + eventSource.listen('error',function(error) { + $('#uploadprogressbar').fadeOut(); + var message = (error && error.message) || t('core', 'Error fetching URL'); + OC.Notification.show(message); + //hide notification after 10 sec + setTimeout(function() { + OC.Notification.hide(); + }, 10000); + }); + break; + } + var li=form.parent(); + form.remove(); + /* workaround for IE 9&10 click event trap, 2 lines: */ + $('input').first().focus(); + $('#content').focus(); + li.append('

'+li.data('text')+'

'); + $('#new>a').click(); + } catch (error) { + input.attr('title', error); + input.tipsy({gravity: 'w', trigger: 'manual'}); + input.tipsy('show'); + input.addClass('error'); } - var li=form.parent(); - form.remove(); - /* workaround for IE 9&10 click event trap, 2 lines: */ - $('input').first().focus(); - $('#content').focus(); - li.append('

'+li.data('text')+'

'); - $('#new>a').click(); }); }); window.file_upload_param = file_upload_param; diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 67d3d5ead8d87b935e99f379a005ae8a105abb57..d0ef2491bdf22a0d3e3a685c0a63726ecba7f41f 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -61,11 +61,17 @@ var FileActions = { var actions = this.get(mime, type, permissions); return actions[name]; }, - display: function (parent) { + /** + * Display file actions for the given element + * @param parent "td" element of the file for which to display actions + * @param triggerEvent if true, triggers the fileActionsReady on the file + * list afterwards (false by default) + */ + display: function (parent, triggerEvent) { FileActions.currentFile = parent; var actions = FileActions.get(FileActions.getCurrentMimeType(), FileActions.getCurrentType(), FileActions.getCurrentPermissions()); var file = FileActions.getCurrentFile(); - if ($('tr[data-file="'+file+'"]').data('renaming')) { + if (FileList.findFileEl(file).data('renaming')) { return; } @@ -97,9 +103,9 @@ var FileActions = { } var html = ''; if (img) { - html += ' '; + html += ''; } - html += t('files', name) + ''; + html += ' ' + t('files', name) + ''; var element = $(html); element.data('action', name); @@ -137,6 +143,10 @@ var FileActions = { element.on('click', {a: null, elem: parent, actionFunc: actions['Delete']}, actionHandler); parent.parent().children().last().append(element); } + + if (triggerEvent){ + $('#fileList').trigger(jQuery.Event("fileActionsReady")); + } }, getCurrentFile: function () { return FileActions.currentFile.parent().attr('data-file'); @@ -163,7 +173,10 @@ $(document).ready(function () { FileActions.register(downloadScope, 'Download', OC.PERMISSION_READ, function () { return OC.imagePath('core', 'actions/download'); }, function (filename) { - window.location = OC.filePath('files', 'ajax', 'download.php') + '?files=' + encodeURIComponent(filename) + '&dir=' + encodeURIComponent($('#dir').val()); + var url = FileList.getDownloadUrl(filename); + if (url) { + OC.redirect(url); + } }); } $('#fileList tr').each(function () { @@ -177,20 +190,7 @@ $(document).ready(function () { FileActions.register('all', 'Delete', OC.PERMISSION_DELETE, function () { return OC.imagePath('core', 'actions/delete'); }, function (filename) { - if (OC.Upload.cancelUpload($('#dir').val(), filename)) { - if (filename.substr) { - filename = [filename]; - } - $.each(filename, function (index, file) { - var filename = $('tr').filterAttr('data-file', file); - filename.hide(); - filename.find('input[type="checkbox"]').removeAttr('checked'); - filename.removeClass('selected'); - }); - procesSelection(); - } else { - FileList.do_delete(filename); - } + FileList.do_delete(filename); $('.tipsy').remove(); }); diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 4fc1b95a0ab5612bc48560b2328589cc83ab3179..63fd0f4ce0584a5e38e5343af5a16c40d74bfaba 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -1,30 +1,37 @@ var FileList={ useUndo:true, - postProcessList: function(){ - $('#fileList tr').each(function(){ + postProcessList: function() { + $('#fileList tr').each(function() { //little hack to set unescape filenames in attribute $(this).attr('data-file',decodeURIComponent($(this).attr('data-file'))); }); }, + /** + * Returns the tr element for a given file name + */ + findFileEl: function(fileName){ + // use filterAttr to avoid escaping issues + return $('#fileList tr').filterAttr('data-file', fileName); + }, update:function(fileListHtml) { - var $fileList = $('#fileList'), - permissions = $('#permissions').val(), - isCreatable = (permissions & OC.PERMISSION_CREATE) !== 0; + var $fileList = $('#fileList'); $fileList.empty().html(fileListHtml); - $('#emptycontent').toggleClass('hidden', !isCreatable || $fileList.find('tr').length > 0); + FileList.updateEmptyContent(); $fileList.find('tr').each(function () { FileActions.display($(this).children('td.filename')); }); $fileList.trigger(jQuery.Event("fileActionsReady")); FileList.postProcessList(); // "Files" might not be loaded in extending apps - if (window.Files){ + if (window.Files) { Files.setupDragAndDrop(); } FileList.updateFileSummary(); + procesSelection(); + $fileList.trigger(jQuery.Event("updated")); }, - createRow:function(type, name, iconurl, linktarget, size, lastModified, permissions){ + createRow:function(type, name, iconurl, linktarget, size, lastModified, permissions) { var td, simpleSize, basename, extension; //containing tr var tr = $('').attr({ @@ -45,7 +52,7 @@ var FileList={ "href": linktarget }); //split extension from filename for non dirs - if (type != 'dir' && name.indexOf('.')!=-1) { + if (type !== 'dir' && name.indexOf('.') !== -1) { basename=name.substr(0,name.lastIndexOf('.')); extension=name.substr(name.lastIndexOf('.')); } else { @@ -54,11 +61,11 @@ var FileList={ } var name_span=$('').addClass('nametext').text(basename); link_elem.append(name_span); - if(extension){ + if (extension) { name_span.append($('').addClass('extension').text(extension)); } //dirs can show the number of uploaded files - if (type == 'dir') { + if (type === 'dir') { link_elem.append($('').attr({ 'class': 'uploadtext', 'currentUploads': 0 @@ -68,9 +75,9 @@ var FileList={ tr.append(td); //size column - if(size!=t('files', 'Pending')){ + if (size !== t('files', 'Pending')) { simpleSize = humanFileSize(size); - }else{ + } else { simpleSize=t('files', 'Pending'); } var sizeColor = Math.round(160-Math.pow((size/(1024*1024)),2)); @@ -92,7 +99,7 @@ var FileList={ tr.append(td); return tr; }, - addFile:function(name,size,lastModified,loading,hidden,param){ + addFile:function(name, size, lastModified, loading, hidden, param) { var imgurl; if (!param) { @@ -122,9 +129,9 @@ var FileList={ ); FileList.insertElement(name, 'file', tr); - if(loading){ - tr.data('loading',true); - }else{ + if (loading) { + tr.data('loading', true); + } else { tr.find('td.filename').draggable(dragOptions); } if (hidden) { @@ -132,7 +139,7 @@ var FileList={ } return tr; }, - addDir:function(name,size,lastModified,hidden){ + addDir:function(name, size, lastModified, hidden) { var tr = this.createRow( 'dir', @@ -144,39 +151,49 @@ var FileList={ $('#permissions').val() ); - FileList.insertElement(name,'dir',tr); + FileList.insertElement(name, 'dir', tr); var td = tr.find('td.filename'); td.draggable(dragOptions); td.droppable(folderDropOptions); if (hidden) { tr.hide(); } - FileActions.display(tr.find('td.filename')); + FileActions.display(tr.find('td.filename'), true); return tr; }, + getCurrentDirectory: function(){ + return $('#dir').val() || '/'; + }, /** * @brief Changes the current directory and reload the file list. * @param targetDir target directory (non URL encoded) * @param changeUrl false if the URL must not be changed (defaults to true) + * @param {boolean} force set to true to force changing directory */ - changeDirectory: function(targetDir, changeUrl, force){ + changeDirectory: function(targetDir, changeUrl, force) { var $dir = $('#dir'), url, currentDir = $dir.val() || '/'; targetDir = targetDir || '/'; - if (!force && currentDir === targetDir){ + if (!force && currentDir === targetDir) { return; } FileList.setCurrentDir(targetDir, changeUrl); + $('#fileList').trigger( + jQuery.Event('changeDirectory', { + dir: targetDir, + previousDir: currentDir + } + )); FileList.reload(); }, - linkTo: function(dir){ + linkTo: function(dir) { return OC.linkTo('files', 'index.php')+"?dir="+ encodeURIComponent(dir).replace(/%2F/g, '/'); }, - setCurrentDir: function(targetDir, changeUrl){ + setCurrentDir: function(targetDir, changeUrl) { $('#dir').val(targetDir); - if (changeUrl !== false){ - if (window.history.pushState && changeUrl !== false){ + if (changeUrl !== false) { + if (window.history.pushState && changeUrl !== false) { url = FileList.linkTo(targetDir); window.history.pushState({dir: targetDir}, '', url); } @@ -189,9 +206,9 @@ var FileList={ /** * @brief Reloads the file list using ajax call */ - reload: function(){ + reload: function() { FileList.showMask(); - if (FileList._reloadCall){ + if (FileList._reloadCall) { FileList._reloadCall.abort(); } FileList._reloadCall = $.ajax({ @@ -200,7 +217,7 @@ var FileList={ dir : $('#dir').val(), breadcrumb: true }, - error: function(result){ + error: function(result) { FileList.reloadCallback(result); }, success: function(result) { @@ -208,7 +225,7 @@ var FileList={ } }); }, - reloadCallback: function(result){ + reloadCallback: function(result) { var $controls = $('#controls'); delete FileList._reloadCall; @@ -219,17 +236,21 @@ var FileList={ return; } - if (result.status === 404){ + if (result.status === 404) { // go back home FileList.changeDirectory('/'); return; } - if (result.data.permissions){ + // TODO: should rather return upload file size through + // the files list ajax call + Files.updateStorageStatistics(true); + + if (result.data.permissions) { FileList.setDirectoryPermissions(result.data.permissions); } - if(typeof(result.data.breadcrumb) != 'undefined'){ + if (typeof(result.data.breadcrumb) !== 'undefined') { $controls.find('.crumb').remove(); $controls.prepend(result.data.breadcrumb); @@ -238,81 +259,117 @@ var FileList={ Files.resizeBreadcrumbs(width, true); // in case svg is not supported by the browser we need to execute the fallback mechanism - if(!SVGSupport()) { + if (!SVGSupport()) { replaceSVG(); } } FileList.update(result.data.files); }, - setDirectoryPermissions: function(permissions){ + setDirectoryPermissions: function(permissions) { var isCreatable = (permissions & OC.PERMISSION_CREATE) !== 0; $('#permissions').val(permissions); $('.creatable').toggleClass('hidden', !isCreatable); $('.notCreatable').toggleClass('hidden', isCreatable); }, + /** + * Shows/hides action buttons + * + * @param show true for enabling, false for disabling + */ + showActions: function(show){ + $('.actions,#file_action_panel').toggleClass('hidden', !show); + if (show){ + // make sure to display according to permissions + var permissions = $('#permissions').val(); + var isCreatable = (permissions & OC.PERMISSION_CREATE) !== 0; + $('.creatable').toggleClass('hidden', !isCreatable); + $('.notCreatable').toggleClass('hidden', isCreatable); + } + else{ + $('.creatable, .notCreatable').addClass('hidden'); + } + }, + /** + * Enables/disables viewer mode. + * In viewer mode, apps can embed themselves under the controls bar. + * In viewer mode, the actions of the file list will be hidden. + * @param show true for enabling, false for disabling + */ + setViewerMode: function(show){ + this.showActions(!show); + $('#filestable').toggleClass('hidden', show); + }, remove:function(name){ - $('tr').filterAttr('data-file',name).find('td.filename').draggable('destroy'); - $('tr').filterAttr('data-file',name).remove(); + var fileEl = FileList.findFileEl(name); + if (fileEl.data('permissions') & OC.PERMISSION_DELETE) { + // file is only draggable when delete permissions are set + fileEl.find('td.filename').draggable('destroy'); + } + fileEl.remove(); FileList.updateFileSummary(); - if($('tr[data-file]').length==0){ + if ( ! $('tr[data-file]').exists() ) { $('#emptycontent').removeClass('hidden'); + $('#filescontent th').addClass('hidden'); } }, - insertElement:function(name,type,element){ + insertElement:function(name, type, element) { //find the correct spot to insert the file or folder var pos, fileElements=$('tr[data-file][data-type="'+type+'"]:visible'); - if(name.localeCompare($(fileElements[0]).attr('data-file'))<0){ - pos=-1; - }else if(name.localeCompare($(fileElements[fileElements.length-1]).attr('data-file'))>0){ - pos=fileElements.length-1; - }else{ - for(pos=0;pos0 && name.localeCompare($(fileElements[pos+1]).attr('data-file'))<0){ + if (name.localeCompare($(fileElements[0]).attr('data-file')) < 0) { + pos = -1; + } else if (name.localeCompare($(fileElements[fileElements.length-1]).attr('data-file')) > 0) { + pos = fileElements.length - 1; + } else { + for(pos = 0; pos 0 + && name.localeCompare($(fileElements[pos+1]).attr('data-file')) < 0) + { break; } } } - if(fileElements.length){ - if(pos==-1){ + if (fileElements.exists()) { + if (pos === -1) { $(fileElements[0]).before(element); - }else{ + } else { $(fileElements[pos]).after(element); } - }else if(type=='dir' && $('tr[data-file]').length>0){ + } else if (type === 'dir' && $('tr[data-file]').exists()) { $('tr[data-file]').first().before(element); - } else if(type=='file' && $('tr[data-file]').length>0) { + } else if (type === 'file' && $('tr[data-file]').exists()) { $('tr[data-file]').last().before(element); - }else{ + } else { $('#fileList').append(element); } $('#emptycontent').addClass('hidden'); + $('#filestable th').removeClass('hidden'); FileList.updateFileSummary(); }, - loadingDone:function(name, id){ - var mime, tr=$('tr').filterAttr('data-file',name); - tr.data('loading',false); - mime=tr.data('mime'); - tr.attr('data-mime',mime); - if (id != null) { + loadingDone:function(name, id) { + var mime, tr = FileList.findFileEl(name); + tr.data('loading', false); + mime = tr.data('mime'); + tr.attr('data-mime', mime); + if (id) { tr.attr('data-id', id); } var path = getPathForPreview(name); - lazyLoadPreview(path, mime, function(previewpath){ + Files.lazyLoadPreview(path, mime, function(previewpath) { tr.find('td.filename').attr('style','background-image:url('+previewpath+')'); - }); + }, null, null, tr.attr('data-etag')); tr.find('td.filename').draggable(dragOptions); }, - isLoading:function(name){ - return $('tr').filterAttr('data-file',name).data('loading'); + isLoading:function(file) { + return FileList.findFileEl(file).data('loading'); }, - rename:function(name){ + rename:function(oldname) { var tr, td, input, form; - tr=$('tr').filterAttr('data-file',name); + tr = FileList.findFileEl(oldname); tr.data('renaming',true); - td=tr.children('td.filename'); - input=$('').val(name); - form=$('
'); + td = tr.children('td.filename'); + input = $('').val(oldname); + form = $('
'); form.append(input); td.children('a.name').hide(); td.append(form); @@ -322,18 +379,29 @@ var FileList={ if (len === -1) { len = input.val().length; } - input.selectRange(0,len); - - form.submit(function(event){ + input.selectRange(0, len); + + var checkInput = function () { + var filename = input.val(); + if (filename !== oldname) { + if (!Files.isFileNameValid(filename)) { + // Files.isFileNameValid(filename) throws an exception itself + } else if($('#dir').val() === '/' && filename === 'Shared') { + throw t('files','In the home folder \'Shared\' is a reserved filename'); + } else if (FileList.inList(filename)) { + throw t('files', '{new_name} already exists', {new_name: filename}); + } + } + return true; + }; + + form.submit(function(event) { event.stopPropagation(); event.preventDefault(); - var newname=input.val(); - if (!Files.isFileNameValid(newname)) { - return false; - } else if (newname != name) { - if (FileList.checkName(name, newname, false)) { - newname = name; - } else { + try { + var newname = input.val(); + if (newname !== oldname) { + checkInput(); // save background image, because it's replaced by a spinner while async request var oldBackgroundImage = td.css('background-image'); // mark as loading @@ -343,16 +411,16 @@ var FileList={ data: { dir : $('#dir').val(), newname: newname, - file: name + file: oldname }, success: function(result) { if (!result || result.status === 'error') { - OC.Notification.show(result.data.message); - newname = name; + OC.dialogs.alert(result.data.message, t('core', 'Could not rename file')); // revert changes + newname = oldname; tr.attr('data-file', newname); var path = td.children('a.name').attr('href'); - td.children('a.name').attr('href', path.replace(encodeURIComponent(name), encodeURIComponent(newname))); + td.children('a.name').attr('href', path.replace(encodeURIComponent(oldname), encodeURIComponent(newname))); if (newname.indexOf('.') > 0 && tr.data('type') !== 'dir') { var basename=newname.substr(0,newname.lastIndexOf('.')); } else { @@ -360,78 +428,101 @@ var FileList={ } td.find('a.name span.nametext').text(basename); if (newname.indexOf('.') > 0 && tr.data('type') !== 'dir') { - if (td.find('a.name span.extension').length === 0 ) { + if ( ! td.find('a.name span.extension').exists() ) { td.find('a.name span.nametext').append(''); } td.find('a.name span.extension').text(newname.substr(newname.lastIndexOf('.'))); } tr.find('.fileactions').effect('highlight', {}, 5000); tr.effect('highlight', {}, 5000); + // remove loading mark and recover old image + td.css('background-image', oldBackgroundImage); } - // remove loading mark and recover old image - td.css('background-image', oldBackgroundImage); + else { + var fileInfo = result.data; + tr.attr('data-mime', fileInfo.mime); + tr.attr('data-etag', fileInfo.etag); + if (fileInfo.isPreviewAvailable) { + Files.lazyLoadPreview(fileInfo.directory + '/' + fileInfo.name, result.data.mime, function(previewpath) { + tr.find('td.filename').attr('style','background-image:url('+previewpath+')'); + }, null, null, result.data.etag); + } + else { + tr.find('td.filename').removeClass('preview').attr('style','background-image:url('+fileInfo.icon+')'); + } + } + // reinsert row + tr.detach(); + FileList.insertElement( tr.attr('data-file'), tr.attr('data-type'),tr ); + // update file actions in case the extension changed + FileActions.display( tr.find('td.filename'), true); } }); } - } - tr.data('renaming',false); - tr.attr('data-file', newname); - var path = td.children('a.name').attr('href'); - td.children('a.name').attr('href', path.replace(encodeURIComponent(name), encodeURIComponent(newname))); - if (newname.indexOf('.') > 0 && tr.data('type') != 'dir') { - var basename=newname.substr(0,newname.lastIndexOf('.')); - } else { - var basename=newname; - } - td.find('a.name span.nametext').text(basename); - if (newname.indexOf('.') > 0 && tr.data('type') != 'dir') { - if (td.find('a.name span.extension').length == 0 ) { - td.find('a.name span.nametext').append(''); + input.tipsy('hide'); + tr.data('renaming',false); + tr.attr('data-file', newname); + var path = td.children('a.name').attr('href'); + // FIXME this will fail if the path contains the filename. + td.children('a.name').attr('href', path.replace(encodeURIComponent(oldname), encodeURIComponent(newname))); + var basename = newname; + if (newname.indexOf('.') > 0 && tr.data('type') !== 'dir') { + basename = newname.substr(0, newname.lastIndexOf('.')); + } + td.find('a.name span.nametext').text(basename); + if (newname.indexOf('.') > 0 && tr.data('type') !== 'dir') { + if ( ! td.find('a.name span.extension').exists() ) { + td.find('a.name span.nametext').append(''); + } + td.find('a.name span.extension').text(newname.substr(newname.lastIndexOf('.'))); } - td.find('a.name span.extension').text(newname.substr(newname.lastIndexOf('.'))); + form.remove(); + td.children('a.name').show(); + } catch (error) { + input.attr('title', error); + input.tipsy({gravity: 'w', trigger: 'manual'}); + input.tipsy('show'); + input.addClass('error'); } - form.remove(); - td.children('a.name').show(); return false; }); - input.keyup(function(event){ - if (event.keyCode == 27) { + input.keyup(function(event) { + // verify filename on typing + try { + checkInput(); + input.tipsy('hide'); + input.removeClass('error'); + } catch (error) { + input.attr('title', error); + input.tipsy({gravity: 'w', trigger: 'manual'}); + input.tipsy('show'); + input.addClass('error'); + } + if (event.keyCode === 27) { + input.tipsy('hide'); tr.data('renaming',false); form.remove(); td.children('a.name').show(); } }); - input.click(function(event){ + input.click(function(event) { event.stopPropagation(); event.preventDefault(); }); - input.blur(function(){ + input.blur(function() { form.trigger('submit'); }); }, - checkName:function(oldName, newName, isNewFile) { - if (isNewFile || $('tr').filterAttr('data-file', newName).length > 0) { - var html; - if(isNewFile){ - html = t('files', '{new_name} already exists', {new_name: escapeHTML(newName)})+''+t('files', 'replace')+''+t('files', 'suggest name')+' '+t('files', 'cancel')+''; - }else{ - html = t('files', '{new_name} already exists', {new_name: escapeHTML(newName)})+''+t('files', 'replace')+''+t('files', 'cancel')+''; - } - html = $('' + html + ''); - html.attr('data-oldName', oldName); - html.attr('data-newName', newName); - html.attr('data-isNewFile', isNewFile); - OC.Notification.showHtml(html); - return true; - } else { - return false; - } + inList:function(file) { + return FileList.findFileEl(file).length; }, replace:function(oldName, newName, isNewFile) { // Finish any existing actions - $('tr').filterAttr('data-file', oldName).hide(); - $('tr').filterAttr('data-file', newName).hide(); - var tr = $('tr').filterAttr('data-file', oldName).clone(); + var oldFileEl = FileList.findFileEl(oldName); + var newFileEl = FileList.findFileEl(newName); + oldFileEl.hide(); + newFileEl.hide(); + var tr = oldFileEl.clone(); tr.attr('data-replace', 'true'); tr.attr('data-file', newName); var td = tr.children('td.filename'); @@ -460,14 +551,14 @@ var FileList={ FileList.finishReplace(); }; if (!isNewFile) { - OC.Notification.showHtml(t('files', 'replaced {new_name} with {old_name}', {new_name: newName}, {old_name: oldName})+''+t('files', 'undo')+''); + OC.Notification.showHtml(t('files', 'replaced {new_name} with {old_name}', {new_name: newName}, {old_name: oldName})+''+t('files', 'undo')+''); } }, finishReplace:function() { if (!FileList.replaceCanceled && FileList.replaceOldName && FileList.replaceNewName) { $.ajax({url: OC.filePath('files', 'ajax', 'rename.php'), async: false, data: { dir: $('#dir').val(), newname: FileList.replaceNewName, file: FileList.replaceOldName }, success: function(result) { - if (result && result.status == 'success') { - $('tr').filterAttr('data-replace', 'true').removeAttr('data-replace'); + if (result && result.status === 'success') { + $('tr[data-replace="true"').removeAttr('data-replace'); } else { OC.dialogs.alert(result.data.message, 'Error moving file'); } @@ -478,12 +569,12 @@ var FileList={ }}); } }, - do_delete:function(files){ - if(files.substr){ + do_delete:function(files) { + if (files.substr) { files=[files]; } for (var i=0; i 0 ) { - var totalDirs = 0; - var totalFiles = 0; - var totalSize = 0; - - // Count types and filesize - $.each($('tr[data-file]'), function(index, value) { - if ($(value).data('type') === 'dir') { - totalDirs++; - } else if ($(value).data('type') === 'file') { - totalFiles++; - } - totalSize += parseInt($(value).data('size')); - }); + if( $('#fileList tr').exists() ) { + var summary = this._calculateFileSummary(); // Get translations - var directoryInfo = n('files', '%n folder', '%n folders', totalDirs); - var fileInfo = n('files', '%n file', '%n files', totalFiles); + var directoryInfo = n('files', '%n folder', '%n folders', summary.totalDirs); + var fileInfo = n('files', '%n file', '%n files', summary.totalFiles); var infoVars = { dirs: ''+directoryInfo+'', files: ''+fileInfo+'' - } + }; var info = t('files', '{dirs} and {files}', infoVars); // don't show the filesize column, if filesize is NaN (e.g. in trashbin) - if (isNaN(totalSize)) { + if (isNaN(summary.totalSize)) { var fileSize = ''; } else { - var fileSize = ''+humanFileSize(totalSize)+''; + var fileSize = ''+humanFileSize(summary.totalSize)+''; } - $('#fileList').append(''+info+''+fileSize+''); + var $summary = $(''+info+''+fileSize+''); + $('#fileList').append($summary); - var $dirInfo = $('.summary .dirinfo'); - var $fileInfo = $('.summary .fileinfo'); - var $connector = $('.summary .connector'); + var $dirInfo = $summary.find('.dirinfo'); + var $fileInfo = $summary.find('.fileinfo'); + var $connector = $summary.find('.connector'); // Show only what's necessary, e.g.: no files: don't show "0 files" - if ($dirInfo.html().charAt(0) === "0") { + if (summary.totalDirs === 0) { $dirInfo.hide(); $connector.hide(); } - if ($fileInfo.html().charAt(0) === "0") { + if (summary.totalFiles === 0) { $fileInfo.hide(); $connector.hide(); } } }, + _calculateFileSummary: function() { + var result = { + totalDirs: 0, + totalFiles: 0, + totalSize: 0 + }; + $.each($('tr[data-file]'), function(index, value) { + var $value = $(value); + if ($value.data('type') === 'dir') { + result.totalDirs++; + } else if ($value.data('type') === 'file') { + result.totalFiles++; + } + if ($value.data('size') !== undefined && $value.data('id') !== -1) { + //Skip shared as it does not count toward quota + result.totalSize += parseInt($value.data('size')); + } + }); + return result; + }, updateFileSummary: function() { var $summary = $('.summary'); @@ -577,51 +689,46 @@ var FileList={ } // There's a summary and data -> Update the summary else if ($('#fileList tr').length > 1 && $summary.length === 1) { - var totalDirs = 0; - var totalFiles = 0; - var totalSize = 0; - $.each($('tr[data-file]'), function(index, value) { - if ($(value).data('type') === 'dir') { - totalDirs++; - } else if ($(value).data('type') === 'file') { - totalFiles++; - } - if ($(value).data('size') !== undefined) { - totalSize += parseInt($(value).data('size')); - } - }); - + var fileSummary = this._calculateFileSummary(); var $dirInfo = $('.summary .dirinfo'); var $fileInfo = $('.summary .fileinfo'); var $connector = $('.summary .connector'); // Substitute old content with new translations - $dirInfo.html(n('files', '%n folder', '%n folders', totalDirs)); - $fileInfo.html(n('files', '%n file', '%n files', totalFiles)); - $('.summary .filesize').html(humanFileSize(totalSize)); + $dirInfo.html(n('files', '%n folder', '%n folders', fileSummary.totalDirs)); + $fileInfo.html(n('files', '%n file', '%n files', fileSummary.totalFiles)); + $('.summary .filesize').html(humanFileSize(fileSummary.totalSize)); // Show only what's necessary (may be hidden) - if ($dirInfo.html().charAt(0) === "0") { + if (fileSummary.totalDirs === 0) { $dirInfo.hide(); $connector.hide(); } else { $dirInfo.show(); } - if ($fileInfo.html().charAt(0) === "0") { + if (fileSummary.totalFiles === 0) { $fileInfo.hide(); $connector.hide(); } else { $fileInfo.show(); } - if ($dirInfo.html().charAt(0) !== "0" && $fileInfo.html().charAt(0) !== "0") { + if (fileSummary.totalDirs > 0 && fileSummary.totalFiles > 0) { $connector.show(); } } }, - showMask: function(){ + updateEmptyContent: function() { + var $fileList = $('#fileList'); + var permissions = $('#permissions').val(); + var isCreatable = (permissions & OC.PERMISSION_CREATE) !== 0; + var exists = $fileList.find('tr:first').exists(); + $('#emptycontent').toggleClass('hidden', !isCreatable || exists); + $('#filestable th').toggleClass('hidden', !exists); + }, + showMask: function() { // in case one was shown before var $mask = $('#content .mask'); - if ($mask.length){ + if ($mask.exists()) { return; } @@ -632,32 +739,32 @@ var FileList={ $('#content').append($mask); // block UI, but only make visible in case loading takes longer - FileList._maskTimeout = window.setTimeout(function(){ + FileList._maskTimeout = window.setTimeout(function() { // reset opacity $mask.removeClass('transparent'); }, 250); }, - hideMask: function(){ + hideMask: function() { var $mask = $('#content .mask').remove(); - if (FileList._maskTimeout){ + if (FileList._maskTimeout) { window.clearTimeout(FileList._maskTimeout); } }, scrollTo:function(file) { //scroll to and highlight preselected file - var scrolltorow = $('tr[data-file="'+file+'"]'); - if (scrolltorow.length > 0) { - scrolltorow.addClass('searchresult'); - $(window).scrollTop(scrolltorow.position().top); + var $scrolltorow = FileList.findFileEl(file); + if ($scrolltorow.exists()) { + $scrolltorow.addClass('searchresult'); + $(window).scrollTop($scrolltorow.position().top); //remove highlight when hovered over - scrolltorow.one('hover', function(){ - scrolltorow.removeClass('searchresult'); + $scrolltorow.one('hover', function() { + $scrolltorow.removeClass('searchresult'); }); } }, - filter:function(query){ - $('#fileList tr:not(.summary)').each(function(i,e){ - if ($(e).data('file').toLowerCase().indexOf(query.toLowerCase()) !== -1) { + filter:function(query) { + $('#fileList tr:not(.summary)').each(function(i,e) { + if ($(e).data('file').toString().toLowerCase().indexOf(query.toLowerCase()) !== -1) { $(e).addClass("searchresult"); } else { $(e).removeClass("searchresult"); @@ -665,18 +772,33 @@ var FileList={ }); //do not use scrollto to prevent removing searchresult css class var first = $('#fileList tr.searchresult').first(); - if (first.length !== 0) { + if (first.exists()) { $(window).scrollTop(first.position().top); } }, - unfilter:function(){ - $('#fileList tr.searchresult').each(function(i,e){ + unfilter:function() { + $('#fileList tr.searchresult').each(function(i,e) { $(e).removeClass("searchresult"); }); + }, + + /** + * Returns the download URL of the given file + * @param filename file name of the file + * @param dir optional directory in which the file name is, defaults to the current directory + */ + getDownloadUrl: function(filename, dir) { + var params = { + files: filename, + dir: dir || FileList.getCurrentDirectory(), + download: null + }; + return OC.filePath('files', 'ajax', 'download.php') + '?' + OC.buildQueryString(params); } }; -$(document).ready(function(){ +$(document).ready(function() { + var isPublic = !!$('#isPublic').val(); // handle upload events var file_upload_start = $('#file_upload_start'); @@ -684,28 +806,32 @@ $(document).ready(function(){ file_upload_start.on('fileuploaddrop', function(e, data) { OC.Upload.log('filelist handle fileuploaddrop', e, data); - var dropTarget = $(e.originalEvent.target).closest('tr'); - if(dropTarget && dropTarget.data('type') === 'dir') { // drag&drop upload to folder + var dropTarget = $(e.originalEvent.target).closest('tr, .crumb'); + if (dropTarget && (dropTarget.data('type') === 'dir' || dropTarget.hasClass('crumb'))) { // drag&drop upload to folder // remember as context data.context = dropTarget; var dir = dropTarget.data('file'); + // if from file list, need to prepend parent dir + if (dir) { + var parentDir = $('#dir').val() || '/'; + if (parentDir[parentDir.length - 1] !== '/') { + parentDir += '/'; + } + dir = parentDir + dir; + } + else{ + // read full path from crumb + dir = dropTarget.data('dir') || '/'; + } // update folder in form data.formData = function(form) { - var formArray = form.serializeArray(); - // array index 0 contains the max files size - // array index 1 contains the request token - // array index 2 contains the directory - var parentDir = formArray[2]['value']; - if (parentDir === '/') { - formArray[2]['value'] += dir; - } else { - formArray[2]['value'] += '/' + dir; - } - - return formArray; + return [ + {name: 'dir', value: dir}, + {name: 'requesttoken', value: oc_requesttoken} + ]; }; } @@ -714,12 +840,12 @@ $(document).ready(function(){ OC.Upload.log('filelist handle fileuploadadd', e, data); //finish delete if we are uploading a deleted file - if(FileList.deleteFiles && FileList.deleteFiles.indexOf(data.files[0].name)!==-1){ + if (FileList.deleteFiles && FileList.deleteFiles.indexOf(data.files[0].name)!==-1) { FileList.finishDelete(null, true); //delete file before continuing } // add ui visualization to existing folder - if(data.context && data.context.data('type') === 'dir') { + if (data.context && data.context.data('type') === 'dir') { // add to existing folder // update upload counter ui @@ -729,7 +855,7 @@ $(document).ready(function(){ uploadtext.attr('currentUploads', currentUploads); var translatedText = n('files', 'Uploading %n file', 'Uploading %n files', currentUploads); - if(currentUploads === 1) { + if (currentUploads === 1) { var img = OC.imagePath('core', 'loading.gif'); data.context.find('td.filename').attr('style','background-image:url('+img+')'); uploadtext.text(translatedText); @@ -756,7 +882,7 @@ $(document).ready(function(){ } var result=$.parseJSON(response); - if(typeof result[0] !== 'undefined' && result[0].status === 'success') { + if (typeof result[0] !== 'undefined' && result[0].status === 'success') { var file = result[0]; if (data.context && data.context.data('type') === 'dir') { @@ -767,7 +893,7 @@ $(document).ready(function(){ currentUploads -= 1; uploadtext.attr('currentUploads', currentUploads); var translatedText = n('files', 'Uploading %n file', 'Uploading %n files', currentUploads); - if(currentUploads === 0) { + if (currentUploads === 0) { var img = OC.imagePath('core', 'filetypes/folder.png'); data.context.find('td.filename').attr('style','background-image:url('+img+')'); uploadtext.text(translatedText); @@ -783,15 +909,19 @@ $(document).ready(function(){ data.context.find('td.filesize').text(humanFileSize(size)); } else { + // only append new file if dragged onto current dir's crumb (last) + if (data.context && data.context.hasClass('crumb') && !data.context.hasClass('last')) { + return; + } // add as stand-alone row to filelist var size=t('files', 'Pending'); - if (data.files[0].size>=0){ + if (data.files[0].size>=0) { size=data.files[0].size; } var date=new Date(); var param = {}; - if ($('#publicUploadRequestToken').length) { + if ($('#publicUploadRequestToken').exists()) { param.download_url = document.location.href + '&download&path=/' + $('#dir').val() + '/' + file.name; } //should the file exist in the list remove it @@ -801,19 +931,19 @@ $(document).ready(function(){ data.context = FileList.addFile(file.name, file.size, date, false, false, param); // update file data - data.context.attr('data-mime',file.mime).attr('data-id',file.id); + data.context.attr('data-mime',file.mime).attr('data-id',file.id).attr('data-etag', file.etag); var permissions = data.context.data('permissions'); - if(permissions != file.permissions) { + if (permissions !== file.permissions) { data.context.attr('data-permissions', file.permissions); data.context.data('permissions', file.permissions); } - FileActions.display(data.context.find('td.filename')); + FileActions.display(data.context.find('td.filename'), true); var path = getPathForPreview(file.name); - lazyLoadPreview(path, file.mime, function(previewpath){ + Files.lazyLoadPreview(path, file.mime, function(previewpath) { data.context.find('td.filename').attr('style','background-image:url('+previewpath+')'); - }); + }, null, null, file.etag); } } }); @@ -845,10 +975,10 @@ $(document).ready(function(){ }); $('#notification').hide(); - $('#notification').on('click', '.undo', function(){ + $('#notification').on('click', '.undo', function() { if (FileList.deleteFiles) { - $.each(FileList.deleteFiles,function(index,file){ - $('tr').filterAttr('data-file',file).show(); + $.each(FileList.deleteFiles,function(index,file) { + FileList.findFileEl(file).show(); }); FileList.deleteCanceled=true; FileList.deleteFiles=null; @@ -858,10 +988,10 @@ $(document).ready(function(){ FileList.deleteCanceled = false; FileList.deleteFiles = [FileList.replaceOldName]; } else { - $('tr').filterAttr('data-file', FileList.replaceOldName).show(); + FileList.findFileEl(FileList.replaceOldName).show(); } - $('tr').filterAttr('data-replace', 'true').remove(); - $('tr').filterAttr('data-file', FileList.replaceNewName).show(); + $('tr[data-replace="true"').remove(); + FileList.findFileEl(FileList.replaceNewName).show(); FileList.replaceCanceled = true; FileList.replaceOldName = null; FileList.replaceNewName = null; @@ -876,7 +1006,8 @@ $(document).ready(function(){ }); }); $('#notification:first-child').on('click', '.suggest', function() { - $('tr').filterAttr('data-file', $('#notification > span').attr('data-oldName')).show(); + var file = $('#notification > span').attr('data-oldName'); + FileList.findFileEl(file).show(); OC.Notification.hide(); }); $('#notification:first-child').on('click', '.cancel', function() { @@ -886,63 +1017,70 @@ $(document).ready(function(){ } }); FileList.useUndo=(window.onbeforeunload)?true:false; - $(window).bind('beforeunload', function (){ + $(window).bind('beforeunload', function () { if (FileList.lastAction) { FileList.lastAction(); } }); - $(window).unload(function (){ + $(window).unload(function () { $(window).trigger('beforeunload'); }); - function parseHashQuery(){ + function decodeQuery(query) { + return query.replace(/\+/g, ' '); + } + + function parseHashQuery() { var hash = window.location.hash, pos = hash.indexOf('?'), query; - if (pos >= 0){ + if (pos >= 0) { return hash.substr(pos + 1); } return ''; } - function parseCurrentDirFromUrl(){ + function parseCurrentDirFromUrl() { var query = parseHashQuery(), params, dir = '/'; // try and parse from URL hash first - if (query){ - params = OC.parseQueryString(query); + if (query) { + params = OC.parseQueryString(decodeQuery(query)); } // else read from query attributes - if (!params){ - params = OC.parseQueryString(location.search); + if (!params) { + params = OC.parseQueryString(decodeQuery(location.search)); } return (params && params.dir) || '/'; } - // fallback to hashchange when no history support - if (!window.history.pushState){ - $(window).on('hashchange', function(){ - FileList.changeDirectory(parseCurrentDirFromUrl(), false); - }); - } - window.onpopstate = function(e){ - var targetDir; - if (e.state && e.state.dir){ - targetDir = e.state.dir; - } - else{ - // read from URL - targetDir = parseCurrentDirFromUrl(); - } - if (targetDir){ - FileList.changeDirectory(targetDir, false); + // disable ajax/history API for public app (TODO: until it gets ported) + if (!isPublic) { + // fallback to hashchange when no history support + if (!window.history.pushState) { + $(window).on('hashchange', function() { + FileList.changeDirectory(parseCurrentDirFromUrl(), false); + }); } - } + window.onpopstate = function(e) { + var targetDir; + if (e.state && e.state.dir) { + targetDir = e.state.dir; + } + else{ + // read from URL + targetDir = parseCurrentDirFromUrl(); + } + if (targetDir) { + FileList.changeDirectory(targetDir, false); + } + }; - if (parseInt($('#ajaxLoad').val(), 10) === 1){ - // need to initially switch the dir to the one from the hash (IE8) - FileList.changeDirectory(parseCurrentDirFromUrl(), false, true); + if (parseInt($('#ajaxLoad').val(), 10) === 1) { + // need to initially switch the dir to the one from the hash (IE8) + FileList.changeDirectory(parseCurrentDirFromUrl(), false, true); + } } FileList.createFileSummary(); diff --git a/apps/files/js/files.js b/apps/files/js/files.js index ec688eaf63efff3ea5d0dc70db8e85e08a45f2ac..d794a1584de685f9fcd0b0ded95addc276bc0173 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -1,18 +1,54 @@ Files={ + // file space size sync + _updateStorageStatistics: function() { + Files._updateStorageStatisticsTimeout = null; + var currentDir = FileList.getCurrentDirectory(), + state = Files.updateStorageStatistics; + if (state.dir){ + if (state.dir === currentDir) { + return; + } + // cancel previous call, as it was for another dir + state.call.abort(); + } + state.dir = currentDir; + state.call = $.getJSON(OC.filePath('files','ajax','getstoragestats.php') + '?dir=' + encodeURIComponent(currentDir),function(response) { + state.dir = null; + state.call = null; + Files.updateMaxUploadFilesize(response); + }); + }, + updateStorageStatistics: function(force) { + if (!OC.currentUser) { + return; + } + + // debounce to prevent calling too often + if (Files._updateStorageStatisticsTimeout) { + clearTimeout(Files._updateStorageStatisticsTimeout); + } + if (force) { + Files._updateStorageStatistics(); + } + else { + Files._updateStorageStatisticsTimeout = setTimeout(Files._updateStorageStatistics, 250); + } + }, + updateMaxUploadFilesize:function(response) { - if(response == undefined) { + if (response === undefined) { return; } - if(response.data !== undefined && response.data.uploadMaxFilesize !== undefined) { + if (response.data !== undefined && response.data.uploadMaxFilesize !== undefined) { $('#max_upload').val(response.data.uploadMaxFilesize); $('#upload.button').attr('original-title', response.data.maxHumanFilesize); $('#usedSpacePercent').val(response.data.usedSpacePercent); Files.displayStorageWarnings(); } - if(response[0] == undefined) { + if (response[0] === undefined) { return; } - if(response[0].uploadMaxFilesize !== undefined) { + if (response[0].uploadMaxFilesize !== undefined) { $('#max_upload').val(response[0].uploadMaxFilesize); $('#upload.button').attr('original-title', response[0].maxHumanFilesize); $('#usedSpacePercent').val(response[0].usedSpacePercent); @@ -20,25 +56,31 @@ Files={ } }, + + /** + * Fix path name by removing double slash at the beginning, if any + */ + fixPath: function(fileName) { + if (fileName.substr(0, 2) == '//') { + return fileName.substr(1); + } + return fileName; + }, + isFileNameValid:function (name) { if (name === '.') { - OC.Notification.show(t('files', '\'.\' is an invalid file name.')); - return false; - } - if (name.length == 0) { - OC.Notification.show(t('files', 'File name cannot be empty.')); - return false; + throw t('files', '\'.\' is an invalid file name.'); + } else if (name.length === 0) { + throw t('files', 'File name cannot be empty.'); } // check for invalid characters var invalid_characters = ['\\', '/', '<', '>', ':', '"', '|', '?', '*']; for (var i = 0; i < invalid_characters.length; i++) { - if (name.indexOf(invalid_characters[i]) != -1) { - OC.Notification.show(t('files', "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed.")); - return false; + if (name.indexOf(invalid_characters[i]) !== -1) { + throw t('files', "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed."); } } - OC.Notification.hide(); return true; }, displayStorageWarnings: function() { @@ -63,24 +105,33 @@ Files={ } var encryptedFiles = $('#encryptedFiles').val(); + var initStatus = $('#encryptionInitStatus').val(); + if (initStatus === '0') { // enc not initialized, but should be + OC.Notification.show(t('files_encryption', 'Encryption App is enabled but your keys are not initialized, please log-out and log-in again')); + return; + } + if (initStatus === '1') { // encryption tried to init but failed + OC.Notification.showHtml(t('files_encryption', 'Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.')); + return; + } if (encryptedFiles === '1') { OC.Notification.show(t('files_encryption', 'Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files.')); return; } }, - setupDragAndDrop: function(){ + setupDragAndDrop: function() { var $fileList = $('#fileList'); //drag/drop of files - $fileList.find('tr td.filename').each(function(i,e){ + $fileList.find('tr td.filename').each(function(i,e) { if ($(e).parent().data('permissions') & OC.PERMISSION_DELETE) { $(e).draggable(dragOptions); } }); - $fileList.find('tr[data-type="dir"] td.filename').each(function(i,e){ - if ($(e).parent().data('permissions') & OC.PERMISSION_CREATE){ + $fileList.find('tr[data-type="dir"] td.filename').each(function(i,e) { + if ($(e).parent().data('permissions') & OC.PERMISSION_CREATE) { $(e).droppable(folderDropOptions); } }); @@ -89,6 +140,8 @@ Files={ lastWidth: 0, initBreadCrumbs: function () { + var $controls = $('#controls'); + Files.lastWidth = 0; Files.breadcrumbs = []; @@ -109,13 +162,16 @@ Files={ }); // event handlers for breadcrumb items - $('#controls .crumb a').on('click', onClickBreadcrumb); + $controls.find('.crumb a').on('click', onClickBreadcrumb); + + // setup drag and drop + $controls.find('.crumb:not(.last)').droppable(crumbDropOptions); }, resizeBreadcrumbs: function (width, firstRun) { - if (width != Files.lastWidth) { + if (width !== Files.lastWidth) { if ((width < Files.lastWidth || firstRun) && width < Files.breadcrumbsWidth) { - if (Files.hiddenBreadcrumbs == 0) { + if (Files.hiddenBreadcrumbs === 0) { Files.breadcrumbsWidth -= $(Files.breadcrumbs[1]).get(0).offsetWidth; $(Files.breadcrumbs[1]).find('a').hide(); $(Files.breadcrumbs[1]).append('...'); @@ -127,12 +183,12 @@ Files={ Files.breadcrumbsWidth -= $(Files.breadcrumbs[i]).get(0).offsetWidth; $(Files.breadcrumbs[i]).hide(); Files.hiddenBreadcrumbs = i; - i++ + i++; } } else if (width > Files.lastWidth && Files.hiddenBreadcrumbs > 0) { var i = Files.hiddenBreadcrumbs; while (width > Files.breadcrumbsWidth && i > 0) { - if (Files.hiddenBreadcrumbs == 1) { + if (Files.hiddenBreadcrumbs === 1) { Files.breadcrumbsWidth -= $(Files.breadcrumbs[1]).get(0).offsetWidth; $(Files.breadcrumbs[1]).find('span').remove(); $(Files.breadcrumbs[1]).find('a').show(); @@ -156,7 +212,7 @@ Files={ }; $(document).ready(function() { // FIXME: workaround for trashbin app - if (window.trashBinApp){ + if (window.trashBinApp) { return; } Files.displayEncryptionWarning(); @@ -167,11 +223,8 @@ $(document).ready(function() { $('#file_action_panel').attr('activeAction', false); - $('div.crumb:not(.last)').droppable(crumbDropOptions); - $('ul#apps>li:first-child').data('dir',''); - if($('div.crumb').length){ - $('ul#apps>li:first-child').droppable(crumbDropOptions); - } + // allow dropping on the "files" app icon + $('ul#apps li:first-child').data('dir','').droppable(crumbDropOptions); // Triggers invisible file input $('#upload a').on('click', function() { @@ -204,7 +257,7 @@ $(document).ready(function() { var rows = $(this).parent().parent().parent().children('tr'); for (var i = start; i < end; i++) { $(rows).each(function(index) { - if (index == i) { + if (index === i) { var checkbox = $(this).children().children('input:checkbox'); $(checkbox).attr('checked', 'checked'); $(checkbox).parent().parent().addClass('selected'); @@ -221,23 +274,23 @@ $(document).ready(function() { } else { $(checkbox).attr('checked', 'checked'); $(checkbox).parent().parent().toggleClass('selected'); - var selectedCount=$('td.filename input:checkbox:checked').length; - if (selectedCount == $('td.filename input:checkbox').length) { + var selectedCount = $('td.filename input:checkbox:checked').length; + if (selectedCount === $('td.filename input:checkbox').length) { $('#select_all').attr('checked', 'checked'); } } procesSelection(); } else { var filename=$(this).parent().parent().attr('data-file'); - var tr=$('tr').filterAttr('data-file',filename); + var tr = FileList.findFileEl(filename); var renaming=tr.data('renaming'); - if(!renaming && !FileList.isLoading(filename)){ + if (!renaming && !FileList.isLoading(filename)) { FileActions.currentFile = $(this).parent(); var mime=FileActions.getCurrentMimeType(); var type=FileActions.getCurrentType(); var permissions = FileActions.getCurrentPermissions(); var action=FileActions.getDefault(mime,type, permissions); - if(action){ + if (action) { event.preventDefault(); action(filename); } @@ -248,11 +301,11 @@ $(document).ready(function() { // Sets the select_all checkbox behaviour : $('#select_all').click(function() { - if($(this).attr('checked')){ + if ($(this).attr('checked')) { // Check all $('td.filename input:checkbox').attr('checked', true); $('td.filename input:checkbox').parent().parent().addClass('selected'); - }else{ + } else { // Uncheck all $('td.filename input:checkbox').attr('checked', false); $('td.filename input:checkbox').parent().parent().removeClass('selected'); @@ -269,7 +322,7 @@ $(document).ready(function() { var rows = $(this).parent().parent().parent().children('tr'); for (var i = start; i < end; i++) { $(rows).each(function(index) { - if (index == i) { + if (index === i) { var checkbox = $(this).children().children('input:checkbox'); $(checkbox).attr('checked', 'checked'); $(checkbox).parent().parent().addClass('selected'); @@ -279,10 +332,10 @@ $(document).ready(function() { } var selectedCount=$('td.filename input:checkbox:checked').length; $(this).parent().parent().toggleClass('selected'); - if(!$(this).attr('checked')){ + if (!$(this).attr('checked')) { $('#select_all').attr('checked',false); - }else{ - if(selectedCount==$('td.filename input:checkbox').length){ + } else { + if (selectedCount===$('td.filename input:checkbox').length) { $('#select_all').attr('checked',true); } } @@ -290,21 +343,22 @@ $(document).ready(function() { }); $('.download').click('click',function(event) { - var files=getSelectedFiles('name'); + var files=getSelectedFilesTrash('name'); var fileslist = JSON.stringify(files); var dir=$('#dir').val()||'/'; OC.Notification.show(t('files','Your download is being prepared. This might take some time if the files are big.')); // use special download URL if provided, e.g. for public shared files - if ( (downloadURL = document.getElementById("downloadURL")) ) { - window.location=downloadURL.value+"&download&files="+encodeURIComponent(fileslist); + var downloadURL = document.getElementById("downloadURL"); + if ( downloadURL ) { + window.location = downloadURL.value+"&download&files=" + encodeURIComponent(fileslist); } else { - window.location=OC.filePath('files', 'ajax', 'download.php') + '?'+ $.param({ dir: dir, files: fileslist }); + window.location = OC.filePath('files', 'ajax', 'download.php') + '?'+ $.param({ dir: dir, files: fileslist }); } return false; }); $('.delete-selected').click(function(event) { - var files=getSelectedFiles('name'); + var files=getSelectedFilesTrash('name'); event.preventDefault(); FileList.do_delete(files); return false; @@ -333,44 +387,40 @@ $(document).ready(function() { setTimeout ( "Files.displayStorageWarnings()", 100 ); OC.Notification.setDefault(Files.displayStorageWarnings); - // file space size sync - function update_storage_statistics() { - $.getJSON(OC.filePath('files','ajax','getstoragestats.php'),function(response) { - Files.updateMaxUploadFilesize(response); - }); - } - - // start on load - we ask the server every 5 minutes - var update_storage_statistics_interval = 5*60*1000; - var update_storage_statistics_interval_id = setInterval(update_storage_statistics, update_storage_statistics_interval); - - // Use jquery-visibility to de-/re-activate file stats sync - if ($.support.pageVisibility) { - $(document).on({ - 'show.visibility': function() { - if (!update_storage_statistics_interval_id) { - update_storage_statistics_interval_id = setInterval(update_storage_statistics, update_storage_statistics_interval); + // only possible at the moment if user is logged in + if (OC.currentUser) { + // start on load - we ask the server every 5 minutes + var updateStorageStatisticsInterval = 5*60*1000; + var updateStorageStatisticsIntervalId = setInterval(Files.updateStorageStatistics, updateStorageStatisticsInterval); + + // Use jquery-visibility to de-/re-activate file stats sync + if ($.support.pageVisibility) { + $(document).on({ + 'show.visibility': function() { + if (!updateStorageStatisticsIntervalId) { + updateStorageStatisticsIntervalId = setInterval(Files.updateStorageStatistics, updateStorageStatisticsInterval); + } + }, + 'hide.visibility': function() { + clearInterval(updateStorageStatisticsIntervalId); + updateStorageStatisticsIntervalId = 0; } - }, - 'hide.visibility': function() { - clearInterval(update_storage_statistics_interval_id); - update_storage_statistics_interval_id = 0; - } - }); + }); + } } - + //scroll to and highlight preselected file if (getURLParameter('scrollto')) { FileList.scrollTo(getURLParameter('scrollto')); } }); -function scanFiles(force, dir, users){ +function scanFiles(force, dir, users) { if (!OC.currentUser) { return; } - if(!dir){ + if (!dir) { dir = ''; } force = !!force; //cast to bool @@ -388,17 +438,18 @@ function scanFiles(force, dir, users){ scannerEventSource = new OC.EventSource(OC.filePath('files','ajax','scan.php'),{force: force,dir: dir}); } scanFiles.cancel = scannerEventSource.close.bind(scannerEventSource); - scannerEventSource.listen('count',function(count){ - console.log(count + ' files scanned') + scannerEventSource.listen('count',function(count) { + console.log(count + ' files scanned'); }); - scannerEventSource.listen('folder',function(path){ - console.log('now scanning ' + path) + scannerEventSource.listen('folder',function(path) { + console.log('now scanning ' + path); }); - scannerEventSource.listen('done',function(count){ + scannerEventSource.listen('done',function(count) { scanFiles.scanning=false; console.log('done after ' + count + ' files'); + Files.updateStorageStatistics(); }); - scannerEventSource.listen('user',function(user){ + scannerEventSource.listen('user',function(user) { console.log('scanning files for ' + user); }); } @@ -407,14 +458,14 @@ scanFiles.scanning=false; function boolOperationFinished(data, callback) { result = jQuery.parseJSON(data.responseText); Files.updateMaxUploadFilesize(result); - if(result.status == 'success'){ + if (result.status === 'success') { callback.call(); } else { alert(result.data.message); } } -var createDragShadow = function(event){ +var createDragShadow = function(event) { //select dragged file var isDragSelected = $(event.target).parents('tr').find('td input:first').prop('checked'); if (!isDragSelected) { @@ -422,9 +473,9 @@ var createDragShadow = function(event){ $(event.target).parents('tr').find('td input:first').prop('checked',true); } - var selectedFiles = getSelectedFiles(); + var selectedFiles = getSelectedFilesTrash(); - if (!isDragSelected && selectedFiles.length == 1) { + if (!isDragSelected && selectedFiles.length === 1) { //revert the selection $(event.target).parents('tr').find('td input:first').prop('checked',false); } @@ -441,8 +492,8 @@ var createDragShadow = function(event){ var dir=$('#dir').val(); - $(selectedFiles).each(function(i,elem){ - var newtr = $('').attr('data-dir', dir).attr('data-filename', elem.name); + $(selectedFiles).each(function(i,elem) { + var newtr = $('').attr('data-dir', dir).attr('data-filename', elem.name).attr('data-origin', elem.origin); newtr.append($('').addClass('filename').text(elem.name)); newtr.append($('').addClass('size').text(humanFileSize(elem.size))); tbody.append(newtr); @@ -450,50 +501,75 @@ var createDragShadow = function(event){ newtr.find('td.filename').attr('style','background-image:url('+OC.imagePath('core', 'filetypes/folder.png')+')'); } else { var path = getPathForPreview(elem.name); - lazyLoadPreview(path, elem.mime, function(previewpath){ + Files.lazyLoadPreview(path, elem.mime, function(previewpath) { newtr.find('td.filename').attr('style','background-image:url('+previewpath+')'); - }); + }, null, null, elem.etag); } }); return dragshadow; -} +}; //options for file drag/drop +//start&stop handlers needs some cleaning up var dragOptions={ revert: 'invalid', revertDuration: 300, - opacity: 0.7, zIndex: 100, appendTo: 'body', cursorAt: { left: -5, top: -5 }, + opacity: 0.7, zIndex: 100, appendTo: 'body', cursorAt: { left: 24, top: 18 }, helper: createDragShadow, cursor: 'move', - stop: function(event, ui) { - $('#fileList tr td.filename').addClass('ui-draggable'); - } -} + start: function(event, ui){ + var $selectedFiles = $('td.filename input:checkbox:checked'); + if($selectedFiles.length > 1){ + $selectedFiles.parents('tr').fadeTo(250, 0.2); + } + else{ + $(this).fadeTo(250, 0.2); + } + }, + stop: function(event, ui) { + var $selectedFiles = $('td.filename input:checkbox:checked'); + if($selectedFiles.length > 1){ + $selectedFiles.parents('tr').fadeTo(250, 1); + } + else{ + $(this).fadeTo(250, 1); + } + $('#fileList tr td.filename').addClass('ui-draggable'); + } +}; // sane browsers support using the distance option if ( $('html.ie').length === 0) { dragOptions['distance'] = 20; } var folderDropOptions={ + hoverClass: "canDrop", drop: function( event, ui ) { //don't allow moving a file into a selected folder if ($(event.target).parents('tr').find('td input:first').prop('checked') === true) { return false; } - var target=$.trim($(this).find('.nametext').text()); + var target = $(this).closest('tr').data('file'); var files = ui.helper.find('tr'); - $(files).each(function(i,row){ + $(files).each(function(i,row) { var dir = $(row).data('dir'); var file = $(row).data('filename'); + //slapdash selector, tracking down our original element that the clone budded off of. + var origin = $('tr[data-id=' + $(row).data('origin') + ']'); + var td = origin.children('td.filename'); + var oldBackgroundImage = td.css('background-image'); + td.css('background-image', 'url('+ OC.imagePath('core', 'loading.gif') + ')'); $.post(OC.filePath('files', 'ajax', 'move.php'), { dir: dir, file: file, target: dir+'/'+target }, function(result) { if (result) { if (result.status === 'success') { //recalculate folder size - var oldSize = $('#fileList tr').filterAttr('data-file',target).data('size'); - var newSize = oldSize + $('#fileList tr').filterAttr('data-file',file).data('size'); - $('#fileList tr').filterAttr('data-file',target).data('size', newSize); - $('#fileList tr').filterAttr('data-file',target).find('td.filesize').text(humanFileSize(newSize)); + var oldFile = FileList.findFileEl(target); + var newFile = FileList.findFileEl(file); + var oldSize = oldFile.data('size'); + var newSize = oldSize + newFile.data('size'); + oldFile.data('size', newSize); + oldFile.find('td.filesize').text(humanFileSize(newSize)); FileList.remove(file); procesSelection(); @@ -506,30 +582,36 @@ var folderDropOptions={ } else { OC.dialogs.alert(t('files', 'Error moving file'), t('files', 'Error')); } + td.css('background-image', oldBackgroundImage); }); }); }, tolerance: 'pointer' -} +}; var crumbDropOptions={ drop: function( event, ui ) { var target=$(this).data('dir'); - var dir=$('#dir').val(); - while(dir.substr(0,1)=='/'){//remove extra leading /'s + var dir = $('#dir').val(); + while(dir.substr(0,1) === '/') {//remove extra leading /'s dir=dir.substr(1); } - dir='/'+dir; - if(dir.substr(-1,1)!='/'){ - dir=dir+'/'; + dir = '/' + dir; + if (dir.substr(-1,1) !== '/') { + dir = dir + '/'; } - if(target==dir || target+'/'==dir){ + if (target === dir || target+'/' === dir) { return; } var files = ui.helper.find('tr'); - $(files).each(function(i,row){ + $(files).each(function(i,row) { var dir = $(row).data('dir'); var file = $(row).data('filename'); + //slapdash selector, tracking down our original element that the clone budded off of. + var origin = $('tr[data-id=' + $(row).data('origin') + ']'); + var td = origin.children('td.filename'); + var oldBackgroundImage = td.css('background-image'); + td.css('background-image', 'url('+ OC.imagePath('core', 'loading.gif') + ')'); $.post(OC.filePath('files', 'ajax', 'move.php'), { dir: dir, file: file, target: target }, function(result) { if (result) { if (result.status === 'success') { @@ -544,44 +626,50 @@ var crumbDropOptions={ } else { OC.dialogs.alert(t('files', 'Error moving file'), t('files', 'Error')); } + td.css('background-image', oldBackgroundImage); }); }); }, tolerance: 'pointer' -} +}; -function procesSelection(){ - var selected=getSelectedFiles(); - var selectedFiles=selected.filter(function(el){return el.type=='file'}); - var selectedFolders=selected.filter(function(el){return el.type=='dir'}); - if(selectedFiles.length==0 && selectedFolders.length==0) { - $('#headerName>span.name').text(t('files','Name')); +function procesSelection() { + var selected = getSelectedFilesTrash(); + var selectedFiles = selected.filter(function(el) { + return el.type==='file'; + }); + var selectedFolders = selected.filter(function(el) { + return el.type==='dir'; + }); + if (selectedFiles.length === 0 && selectedFolders.length === 0) { + $('#headerName span.name').text(t('files','Name')); $('#headerSize').text(t('files','Size')); $('#modified').text(t('files','Modified')); $('table').removeClass('multiselect'); $('.selectedActions').hide(); + $('#select_all').removeAttr('checked'); } else { $('.selectedActions').show(); - var totalSize=0; - for(var i=0;i0){ + var selection = ''; + if (selectedFolders.length > 0) { selection += n('files', '%n folder', '%n folders', selectedFolders.length); - if(selectedFiles.length>0){ - selection+=' & '; + if (selectedFiles.length > 0) { + selection += ' & '; } } - if(selectedFiles.length>0){ + if (selectedFiles.length>0) { selection += n('files', '%n file', '%n files', selectedFiles.length); } - $('#headerName>span.name').text(selection); + $('#headerName span.name').text(selection); $('#modified').text(''); $('table').addClass('multiselect'); } @@ -589,54 +677,58 @@ function procesSelection(){ /** * @brief get a list of selected files - * @param string property (option) the property of the file requested - * @return array + * @param {string} property (option) the property of the file requested + * @return {array} * * possible values for property: name, mime, size and type * if property is set, an array with that property for each file is returnd * if it's ommited an array of objects with all properties is returned */ -function getSelectedFiles(property){ +function getSelectedFilesTrash(property) { var elements=$('td.filename input:checkbox:checked').parent().parent(); var files=[]; - elements.each(function(i,element){ + elements.each(function(i,element) { var file={ name:$(element).attr('data-file'), mime:$(element).data('mime'), type:$(element).data('type'), - size:$(element).data('size') + size:$(element).data('size'), + etag:$(element).data('etag'), + origin: $(element).data('id') }; - if(property){ + if (property) { files.push(file[property]); - }else{ + } else { files.push(file); } }); return files; } -function getMimeIcon(mime, ready){ - if(getMimeIcon.cache[mime]){ - ready(getMimeIcon.cache[mime]); - }else{ - $.get( OC.filePath('files','ajax','mimeicon.php'), {mime: mime}, function(path){ - getMimeIcon.cache[mime]=path; - ready(getMimeIcon.cache[mime]); +Files.getMimeIcon = function(mime, ready) { + if (Files.getMimeIcon.cache[mime]) { + ready(Files.getMimeIcon.cache[mime]); + } else { + $.get( OC.filePath('files','ajax','mimeicon.php'), {mime: mime}, function(path) { + Files.getMimeIcon.cache[mime]=path; + ready(Files.getMimeIcon.cache[mime]); }); } } -getMimeIcon.cache={}; +Files.getMimeIcon.cache={}; function getPathForPreview(name) { var path = $('#dir').val() + '/' + name; return path; } -function lazyLoadPreview(path, mime, ready, width, height) { +Files.lazyLoadPreview = function(path, mime, ready, width, height, etag) { // get mime icon url - getMimeIcon(mime, function(iconURL) { + Files.getMimeIcon(mime, function(iconURL) { + var urlSpec = {}; + var previewURL; ready(iconURL); // set mimeicon URL - + // now try getting a preview thumbnail URL if ( ! width ) { width = $('#filestable').data('preview-x'); @@ -644,22 +736,43 @@ function lazyLoadPreview(path, mime, ready, width, height) { if ( ! height ) { height = $('#filestable').data('preview-y'); } - if( $('#publicUploadButtonMock').length ) { - var previewURL = OC.Router.generate('core_ajax_public_preview', {file: encodeURIComponent(path), x:width, y:height, t:$('#dirToken').val()}); + // note: the order of arguments must match the one + // from the server's template so that the browser + // knows it's the same file for caching + urlSpec.x = width; + urlSpec.y = height; + urlSpec.file = Files.fixPath(path); + + if (etag){ + // use etag as cache buster + urlSpec.c = etag; + } + else { + console.warn('Files.lazyLoadPreview(): missing etag argument'); + } + + if ( $('#isPublic').length ) { + urlSpec.t = $('#dirToken').val(); + previewURL = OC.Router.generate('core_ajax_public_preview', urlSpec); } else { - var previewURL = OC.Router.generate('core_ajax_preview', {file: encodeURIComponent(path), x:width, y:height}); + previewURL = OC.Router.generate('core_ajax_preview', urlSpec); } - $.get(previewURL, function() { - previewURL = previewURL.replace('(', '%28'); - previewURL = previewURL.replace(')', '%29'); + previewURL = previewURL.replace('(', '%28'); + previewURL = previewURL.replace(')', '%29'); + + // preload image to prevent delay + // this will make the browser cache the image + var img = new Image(); + img.onload = function(){ //set preview thumbnail URL - ready(previewURL + '&reload=true'); - }); + ready(previewURL); + } + img.src = previewURL; }); } -function getUniqueName(name){ - if($('tr').filterAttr('data-file',name).length>0){ +function getUniqueName(name) { + if (FileList.findFileEl(name).exists()) { var parts=name.split('.'); var extension = ""; if (parts.length > 1) { @@ -668,9 +781,9 @@ function getUniqueName(name){ var base=parts.join('.'); numMatch=base.match(/\((\d+)\)/); var num=2; - if(numMatch && numMatch.length>0){ + if (numMatch && numMatch.length>0) { num=parseInt(numMatch[numMatch.length-1])+1; - base=base.split('(') + base=base.split('('); base.pop(); base=$.trim(base.join('(')); } @@ -684,15 +797,21 @@ function getUniqueName(name){ } function checkTrashStatus() { - $.post(OC.filePath('files_trashbin', 'ajax', 'isEmpty.php'), function(result){ + $.post(OC.filePath('files_trashbin', 'ajax', 'isEmpty.php'), function(result) { if (result.data.isEmpty === false) { $("input[type=button][id=trash]").removeAttr("disabled"); } }); } -function onClickBreadcrumb(e){ - var $el = $(e.target).closest('.crumb'); - e.preventDefault(); - FileList.changeDirectory(decodeURIComponent($el.data('dir'))); +function onClickBreadcrumb(e) { + var $el = $(e.target).closest('.crumb'), + $targetDir = $el.data('dir'); + isPublic = !!$('#isPublic').val(); + + if ($targetDir !== undefined && !isPublic) { + e.preventDefault(); + FileList.changeDirectory(decodeURIComponent($targetDir)); + } } + diff --git a/apps/files/l10n/ady.php b/apps/files/l10n/ady.php new file mode 100644 index 0000000000000000000000000000000000000000..0157af093e92200cc7790497227e92e62d80165f --- /dev/null +++ b/apps/files/l10n/ady.php @@ -0,0 +1,7 @@ + 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/af.php b/apps/files/l10n/af.php new file mode 100644 index 0000000000000000000000000000000000000000..0157af093e92200cc7790497227e92e62d80165f --- /dev/null +++ b/apps/files/l10n/af.php @@ -0,0 +1,7 @@ + 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/ak.php b/apps/files/l10n/ak.php new file mode 100644 index 0000000000000000000000000000000000000000..f229792722d7d464a1dc330eb51ab777d8c95e99 --- /dev/null +++ b/apps/files/l10n/ak.php @@ -0,0 +1,7 @@ + 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/ar.php b/apps/files/l10n/ar.php index 67a3414819b7e16a320846e4ac01df5aa08d2d7c..0148f5ca3c124035cd88d6009bae063bb361e46d 100644 --- a/apps/files/l10n/ar.php +++ b/apps/files/l10n/ar.php @@ -2,6 +2,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "فشل في نقل الملف %s - يوجد ملف بنفس هذا الاسم", "Could not move %s" => "فشل في نقل %s", +"File name cannot be empty." => "اسم الملف لا يجوز أن يكون فارغا", "Unable to set upload directory." => "غير قادر على تحميل المجلد", "Invalid Token" => "علامة غير صالحة", "No file was uploaded. Unknown error" => "لم يتم رفع أي ملف , خطأ غير معروف", @@ -13,38 +14,40 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "المجلد المؤقت غير موجود", "Failed to write to disk" => "خطأ في الكتابة على القرص الصلب", "Not enough storage available" => "لا يوجد مساحة تخزينية كافية", +"Upload failed. Could not get file info." => "فشلت عملية الرفع. تعذر الحصول على معلومات الملف.", +"Upload failed. Could not find uploaded file" => "*فشلت علمية الرفع. تعذر إيجاد الملف الذي تم رفعه.\n*فشلت علمية التحميل. تعذر إيجاد الملف الذي تم تحميله.", "Invalid directory." => "مسار غير صحيح.", "Files" => "الملفات", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "تعذر رفع الملف {filename} إما لأنه مجلد أو لان حجم الملف 0 بايت", "Not enough space available" => "لا توجد مساحة كافية", "Upload cancelled." => "تم إلغاء عملية رفع الملفات .", +"Could not get result from server." => "تعذر الحصول على نتيجة من الخادم", "File upload is in progress. Leaving the page now will cancel the upload." => "عملية رفع الملفات قيد التنفيذ. اغلاق الصفحة سوف يلغي عملية رفع الملفات.", -"URL cannot be empty." => "عنوان ال URL لا يجوز أن يكون فارغا.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "تسمية ملف غير صالحة. استخدام الاسم \"shared\" محجوز بواسطة ownCloud", -"Error" => "خطأ", +"{new_name} already exists" => "{new_name} موجود مسبقا", "Share" => "شارك", "Delete permanently" => "حذف بشكل دائم", "Rename" => "إعادة تسميه", "Pending" => "قيد الانتظار", -"{new_name} already exists" => "{new_name} موجود مسبقا", -"replace" => "استبدال", -"suggest name" => "اقترح إسم", -"cancel" => "إلغاء", "replaced {new_name} with {old_name}" => "استبدل {new_name} بـ {old_name}", "undo" => "تراجع", -"_%n folder_::_%n folders_" => array("","","","","",""), -"_%n file_::_%n files_" => array("","","","","",""), +"_%n folder_::_%n folders_" => array("لا يوجد مجلدات %n","1 مجلد %n","2 مجلد %n","عدد قليل من مجلدات %n","عدد كبير من مجلدات %n","مجلدات %n"), +"_%n file_::_%n files_" => array("لا يوجد ملفات %n","ملف %n","2 ملف %n","قليل من ملفات %n","الكثير من ملفات %n"," ملفات %n"), "{dirs} and {files}" => "{dirs} و {files}", -"_Uploading %n file_::_Uploading %n files_" => array("","","","","",""), +"_Uploading %n file_::_Uploading %n files_" => array("لا يوجد ملفات %n لتحميلها","تحميل 1 ملف %n","تحميل 2 ملف %n","يتم تحميل عدد قليل من ملفات %n","يتم تحميل عدد كبير من ملفات %n","يتم تحميل ملفات %n"), "'.' is an invalid file name." => "\".\" اسم ملف غير صحيح.", -"File name cannot be empty." => "اسم الملف لا يجوز أن يكون فارغا", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها", "Your storage is full, files can not be updated or synced anymore!" => "مساحتك التخزينية ممتلئة, لا يمكم تحديث ملفاتك أو مزامنتها بعد الآن !", "Your storage is almost full ({usedSpacePercent}%)" => "مساحتك التخزينية امتلأت تقريبا ", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "تم تمكين تشفير البرامج لكن لم يتم تهيئة المفاتيح لذا يرجى تسجيل الخروج ثم تسجيل الدخول مرة آخرى.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "المفتاح الخاص بتشفير التطبيقات غير صالح. يرجى تحديث كلمة السر الخاصة بالمفتاح الخاص من الإعدادت الشخصية حتى تتمكن من الوصول للملفات المشفرة.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "تم تعطيل التشفير لكن ملفاتك لا تزال مشفرة. فضلا اذهب إلى الإعدادات الشخصية لإزالة التشفير عن ملفاتك.", "Your download is being prepared. This might take some time if the files are big." => "جاري تجهيز عملية التحميل. قد تستغرق بعض الوقت اذا كان حجم الملفات كبير.", +"Error moving file" => "حدث خطأ أثناء نقل الملف", +"Error" => "خطأ", "Name" => "اسم", "Size" => "حجم", "Modified" => "معدل", +"%s could not be renamed" => "%s لا يمكن إعادة تسميته. ", "Upload" => "رفع", "File handling" => "التعامل مع الملف", "Maximum upload size" => "الحد الأقصى لحجم الملفات التي يمكن رفعها", @@ -60,10 +63,8 @@ $TRANSLATIONS = array( "From link" => "من رابط", "Deleted files" => "حذف الملفات", "Cancel upload" => "إلغاء رفع الملفات", -"You don’t have write permissions here." => "لا تملك صلاحيات الكتابة هنا.", "Nothing in here. Upload something!" => "لا يوجد شيء هنا. إرفع بعض الملفات!", "Download" => "تحميل", -"Unshare" => "إلغاء مشاركة", "Delete" => "إلغاء", "Upload too large" => "حجم الترفيع أعلى من المسموح", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم.", diff --git a/apps/files/l10n/az.php b/apps/files/l10n/az.php new file mode 100644 index 0000000000000000000000000000000000000000..70ab6572ba466c23b8066e18b9ee2f9cb2a7a827 --- /dev/null +++ b/apps/files/l10n/az.php @@ -0,0 +1,7 @@ + array(""), +"_%n file_::_%n files_" => array(""), +"_Uploading %n file_::_Uploading %n files_" => array("") +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/be.php b/apps/files/l10n/be.php index 17262d2184dd3787640bf0bf218b7e715ea7b0b7..830400b93fbf643f6cea6e83b0fb51f0519e0221 100644 --- a/apps/files/l10n/be.php +++ b/apps/files/l10n/be.php @@ -2,6 +2,7 @@ $TRANSLATIONS = array( "_%n folder_::_%n folders_" => array("","","",""), "_%n file_::_%n files_" => array("","","",""), -"_Uploading %n file_::_Uploading %n files_" => array("","","","") +"_Uploading %n file_::_Uploading %n files_" => array("","","",""), +"Error" => "Памылка" ); $PLURAL_FORMS = "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files/l10n/bg_BG.php b/apps/files/l10n/bg_BG.php index e7dafd1c43a584c5b7f0efed9c66c89d27f7de85..12e699064be74512d19947e007a52e320553e042 100644 --- a/apps/files/l10n/bg_BG.php +++ b/apps/files/l10n/bg_BG.php @@ -9,17 +9,15 @@ $TRANSLATIONS = array( "Invalid directory." => "Невалидна директория.", "Files" => "Файлове", "Upload cancelled." => "Качването е спряно.", -"Error" => "Грешка", "Share" => "Споделяне", "Delete permanently" => "Изтриване завинаги", "Rename" => "Преименуване", "Pending" => "Чакащо", -"replace" => "препокриване", -"cancel" => "отказ", "undo" => "възтановяване", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), +"Error" => "Грешка", "Name" => "Име", "Size" => "Размер", "Modified" => "Променено", @@ -29,6 +27,7 @@ $TRANSLATIONS = array( "Save" => "Запис", "New" => "Ново", "Text file" => "Текстов файл", +"New folder" => "Нова папка", "Folder" => "Папка", "Cancel upload" => "Спри качването", "Nothing in here. Upload something!" => "Няма нищо тук. Качете нещо.", diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php index 66ac3a2165f88e624e616ba8ed1623260a1200f2..f7266517e9e80d2a8922a90820046bf2db2efcc5 100644 --- a/apps/files/l10n/bn_BD.php +++ b/apps/files/l10n/bn_BD.php @@ -2,6 +2,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "%s কে স্থানান্তর করা সম্ভব হলো না - এই নামের ফাইল বিদ্যমান", "Could not move %s" => "%s কে স্থানান্তর করা সম্ভব হলো না", +"File name cannot be empty." => "ফাইলের নামটি ফাঁকা রাখা যাবে না।", "No file was uploaded. Unknown error" => "কোন ফাইল আপলোড করা হয় নি। সমস্যার কারণটি অজ্ঞাত।", "There is no error, the file uploaded with success" => "কোন সমস্যা হয় নি, ফাইল আপলোড সুসম্পন্ন হয়েছে।", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "আপলোড করা ফাইলটি php.ini তে বর্ণিত upload_max_filesize নির্দেশিত আয়তন অতিক্রম করছেঃ", @@ -15,23 +16,18 @@ $TRANSLATIONS = array( "Not enough space available" => "যথেষ্ঠ পরিমাণ স্থান নেই", "Upload cancelled." => "আপলোড বাতিল করা হয়েছে।", "File upload is in progress. Leaving the page now will cancel the upload." => "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।", -"URL cannot be empty." => "URL ফাঁকা রাখা যাবে না।", -"Error" => "সমস্যা", +"{new_name} already exists" => "{new_name} টি বিদ্যমান", "Share" => "ভাগাভাগি কর", "Rename" => "পূনঃনামকরণ", "Pending" => "মুলতুবি", -"{new_name} already exists" => "{new_name} টি বিদ্যমান", -"replace" => "প্রতিস্থাপন", -"suggest name" => "নাম সুপারিশ করুন", -"cancel" => "বাতিল", "replaced {new_name} with {old_name}" => "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে", "undo" => "ক্রিয়া প্রত্যাহার", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), "'.' is an invalid file name." => "টি একটি অননুমোদিত নাম।", -"File name cannot be empty." => "ফাইলের নামটি ফাঁকা রাখা যাবে না।", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।", +"Error" => "সমস্যা", "Name" => "রাম", "Size" => "আকার", "Modified" => "পরিবর্তিত", @@ -51,7 +47,6 @@ $TRANSLATIONS = array( "Cancel upload" => "আপলোড বাতিল কর", "Nothing in here. Upload something!" => "এখানে কিছুই নেই। কিছু আপলোড করুন !", "Download" => "ডাউনলোড", -"Unshare" => "ভাগাভাগি বাতিল ", "Delete" => "মুছে", "Upload too large" => "আপলোডের আকারটি অনেক বড়", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "আপনি এই সার্ভারে আপলোড করার জন্য অনুমোদিত ফাইলের সর্বোচ্চ আকারের চেয়ে বৃহদাকার ফাইল আপলোড করার চেষ্টা করছেন ", diff --git a/apps/files/l10n/bs.php b/apps/files/l10n/bs.php index 8ab07a97761f1863952e9f09b0fd732c4a6d9509..47276eccda09a949995588f2a27a9c0aee4d3d8e 100644 --- a/apps/files/l10n/bs.php +++ b/apps/files/l10n/bs.php @@ -7,6 +7,7 @@ $TRANSLATIONS = array( "Name" => "Ime", "Size" => "Veličina", "Save" => "Spasi", +"New folder" => "Nova fascikla", "Folder" => "Fasikla" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 5c2cade8d637df60c665026bbccd8f5d1e1aca91..261713bc58134930807f752db6dc067e8ae5508f 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -2,6 +2,15 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "No s'ha pogut moure %s - Ja hi ha un fitxer amb aquest nom", "Could not move %s" => " No s'ha pogut moure %s", +"File name cannot be empty." => "El nom del fitxer no pot ser buit.", +"File name must not contain \"/\". Please choose a different name." => "El nom de fitxer no pot contenir \"/\". Indiqueu un nom diferent.", +"The name %s is already used in the folder %s. Please choose a different name." => "El nom %s ja s'usa en la carpeta %s. Indiqueu un nom diferent.", +"Not a valid source" => "No és un origen vàlid", +"Error while downloading %s to %s" => "S'ha produït un error en baixar %s a %s", +"Error when creating the file" => "S'ha produït un error en crear el fitxer", +"Folder name cannot be empty." => "El nom de la carpeta no pot ser buit.", +"Folder name must not contain \"/\". Please choose a different name." => "El nom de la carpeta no pot contenir \"/\". Indiqueu un nom diferent.", +"Error when creating the folder" => "S'ha produït un error en crear la carpeta", "Unable to set upload directory." => "No es pot establir la carpeta de pujada.", "Invalid Token" => "Testimoni no vàlid", "No file was uploaded. Unknown error" => "No s'ha carregat cap fitxer. Error desconegut", @@ -22,34 +31,37 @@ $TRANSLATIONS = array( "Upload cancelled." => "La pujada s'ha cancel·lat.", "Could not get result from server." => "No hi ha resposta del servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà.", -"URL cannot be empty." => "La URL no pot ser buida", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud", -"Error" => "Error", +"URL cannot be empty" => "L'URL no pot ser buit", +"In the home folder 'Shared' is a reserved filename" => "A la carpeta inici 'Compartit' és un nom de fitxer reservat", +"{new_name} already exists" => "{new_name} ja existeix", +"Could not create file" => "No s'ha pogut crear el fitxer", +"Could not create folder" => "No s'ha pogut crear la carpeta", "Share" => "Comparteix", "Delete permanently" => "Esborra permanentment", "Rename" => "Reanomena", "Pending" => "Pendent", -"{new_name} already exists" => "{new_name} ja existeix", -"replace" => "substitueix", -"suggest name" => "sugereix un nom", -"cancel" => "cancel·la", +"Could not rename file" => "No es pot canviar el nom de fitxer", "replaced {new_name} with {old_name}" => "s'ha substituït {old_name} per {new_name}", "undo" => "desfés", +"Error deleting file." => "Error en esborrar el fitxer.", "_%n folder_::_%n folders_" => array("%n carpeta","%n carpetes"), "_%n file_::_%n files_" => array("%n fitxer","%n fitxers"), "{dirs} and {files}" => "{dirs} i {files}", "_Uploading %n file_::_Uploading %n files_" => array("Pujant %n fitxer","Pujant %n fitxers"), "'.' is an invalid file name." => "'.' és un nom no vàlid per un fitxer.", -"File name cannot be empty." => "El nom del fitxer no pot ser buit.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos.", "Your storage is full, files can not be updated or synced anymore!" => "El vostre espai d'emmagatzemament és ple, els fitxers ja no es poden actualitzar o sincronitzar!", "Your storage is almost full ({usedSpacePercent}%)" => "El vostre espai d'emmagatzemament és gairebé ple ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "L'aplicació d'encriptació està activada però les claus no estan inicialitzades, sortiu i acrediteu-vos de nou.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "La clau privada de l'aplicació d'encriptació no és vàlida! Actualitzeu la contrasenya de la clau privada a l'arranjament personal per recuperar els fitxers encriptats.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "L'encriptació s'ha desactivat però els vostres fitxers segueixen encriptats. Aneu a la vostra configuració personal per desencriptar els vostres fitxers.", "Your download is being prepared. This might take some time if the files are big." => "S'està preparant la baixada. Pot trigar una estona si els fitxers són grans.", "Error moving file" => "Error en moure el fitxer", +"Error" => "Error", "Name" => "Nom", "Size" => "Mida", "Modified" => "Modificat", +"Invalid folder name. Usage of 'Shared' is reserved." => "Nom de carpeta no vàlid. L'ús de 'Shared' és reservat", "%s could not be renamed" => "%s no es pot canviar el nom", "Upload" => "Puja", "File handling" => "Gestió de fitxers", @@ -61,15 +73,16 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Mida màxima d'entrada per fitxers ZIP", "Save" => "Desa", "New" => "Nou", +"New text file" => "Nou fitxer de text", "Text file" => "Fitxer de text", +"New folder" => "Carpeta nova", "Folder" => "Carpeta", "From link" => "Des d'enllaç", "Deleted files" => "Fitxers esborrats", "Cancel upload" => "Cancel·la la pujada", -"You don’t have write permissions here." => "No teniu permisos d'escriptura aquí.", +"You don’t have permission to upload or create files here" => "No teniu permisos per a pujar o crear els fitxers aquí", "Nothing in here. Upload something!" => "Res per aquí. Pugeu alguna cosa!", "Download" => "Baixa", -"Unshare" => "Deixa de compartir", "Delete" => "Esborra", "Upload too large" => "La pujada és massa gran", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index f1e54ee5fc39e9581300141c094827a05dc33022..44e0fdae1f158c3a2bbe02d0b7e6e92a924f7609 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -2,6 +2,16 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Nelze přesunout %s - již existuje soubor se stejným názvem", "Could not move %s" => "Nelze přesunout %s", +"File name cannot be empty." => "Název souboru nemůže být prázdný řetězec.", +"File name must not contain \"/\". Please choose a different name." => "Název souboru nesmí obsahovat \"/\". Vyberte prosím jiné jméno.", +"The name %s is already used in the folder %s. Please choose a different name." => "Název %s ve složce %s již existuje. Vyberte prosím jiné jméno.", +"Not a valid source" => "Neplatný zdroj", +"Server is not allowed to open URLs, please check the server configuration" => "Server není oprávněn otevírat adresy URL. Ověřte, prosím, konfiguraci serveru.", +"Error while downloading %s to %s" => "Chyba při stahování %s do %s", +"Error when creating the file" => "Chyba při vytváření souboru", +"Folder name cannot be empty." => "Název složky nemůže být prázdný.", +"Folder name must not contain \"/\". Please choose a different name." => "Název složky nesmí obsahovat \"/\". Zvolte prosím jiný.", +"Error when creating the folder" => "Chyba při vytváření složky", "Unable to set upload directory." => "Nelze nastavit adresář pro nahrané soubory.", "Invalid Token" => "Neplatný token", "No file was uploaded. Unknown error" => "Žádný soubor nebyl odeslán. Neznámá chyba", @@ -13,39 +23,47 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Chybí adresář pro dočasné soubory", "Failed to write to disk" => "Zápis na disk selhal", "Not enough storage available" => "Nedostatek dostupného úložného prostoru", +"Upload failed. Could not get file info." => "Nahrávání selhalo. Nepodařilo se získat informace o souboru.", +"Upload failed. Could not find uploaded file" => "Nahrávání selhalo. Nepodařilo se nalézt nahraný soubor.", "Invalid directory." => "Neplatný adresář", "Files" => "Soubory", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Nelze nahrát soubor {filename}, protože je to buď adresář nebo má velikost 0 bytů", "Not enough space available" => "Nedostatek volného místa", "Upload cancelled." => "Odesílání zrušeno.", +"Could not get result from server." => "Nepodařilo se získat výsledek ze serveru.", "File upload is in progress. Leaving the page now will cancel the upload." => "Probíhá odesílání souboru. Opuštění stránky způsobí zrušení nahrávání.", -"URL cannot be empty." => "URL nemůže být prázdná.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Název složky nelze použít. Použití názvu 'Shared' je ownCloudem rezervováno", -"Error" => "Chyba", +"URL cannot be empty" => "URL nemůže zůstat prázdná", +"In the home folder 'Shared' is a reserved filename" => "V osobní složce je název 'Shared' rezervovaný", +"{new_name} already exists" => "{new_name} již existuje", +"Could not create file" => "Nepodařilo se vytvořit soubor", +"Could not create folder" => "Nepodařilo se vytvořit složku", +"Error fetching URL" => "Chyba při načítání URL", "Share" => "Sdílet", "Delete permanently" => "Trvale odstranit", "Rename" => "Přejmenovat", "Pending" => "Nevyřízené", -"{new_name} already exists" => "{new_name} již existuje", -"replace" => "nahradit", -"suggest name" => "navrhnout název", -"cancel" => "zrušit", +"Could not rename file" => "Nepodařilo se přejmenovat soubor", "replaced {new_name} with {old_name}" => "nahrazeno {new_name} s {old_name}", "undo" => "vrátit zpět", +"Error deleting file." => "Chyba při mazání souboru.", "_%n folder_::_%n folders_" => array("%n složka","%n složky","%n složek"), "_%n file_::_%n files_" => array("%n soubor","%n soubory","%n souborů"), "{dirs} and {files}" => "{dirs} a {files}", "_Uploading %n file_::_Uploading %n files_" => array("Nahrávám %n soubor","Nahrávám %n soubory","Nahrávám %n souborů"), "'.' is an invalid file name." => "'.' je neplatným názvem souboru.", -"File name cannot be empty." => "Název souboru nemůže být prázdný řetězec.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny.", "Your storage is full, files can not be updated or synced anymore!" => "Vaše úložiště je plné, nelze aktualizovat ani synchronizovat soubory.", "Your storage is almost full ({usedSpacePercent}%)" => "Vaše úložiště je téměř plné ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Aplikace pro šifrování je zapnuta, ale vaše klíče nejsou inicializované. Prosím odhlaste se a znovu přihlaste", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Chybný soukromý klíč pro šifrovací aplikaci. Aktualizujte prosím heslo svého soukromého klíče ve vašem osobním nastavení, abyste znovu získali přístup k vašim zašifrovaným souborům.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Šifrování bylo vypnuto, vaše soubory jsou však stále zašifrované. Běžte prosím do osobního nastavení, kde soubory odšifrujete.", "Your download is being prepared. This might take some time if the files are big." => "Vaše soubory ke stažení se připravují. Pokud jsou velké, může to chvíli trvat.", "Error moving file" => "Chyba při přesunu souboru", +"Error" => "Chyba", "Name" => "Název", "Size" => "Velikost", "Modified" => "Upraveno", +"Invalid folder name. Usage of 'Shared' is reserved." => "Neplatný název složky. Použití 'Shared' je rezervováno.", "%s could not be renamed" => "%s nemůže být přejmenován", "Upload" => "Odeslat", "File handling" => "Zacházení se soubory", @@ -57,15 +75,16 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Maximální velikost vstupu pro ZIP soubory", "Save" => "Uložit", "New" => "Nový", +"New text file" => "Nový textový soubor", "Text file" => "Textový soubor", +"New folder" => "Nová složka", "Folder" => "Složka", "From link" => "Z odkazu", "Deleted files" => "Odstraněné soubory", "Cancel upload" => "Zrušit odesílání", -"You don’t have write permissions here." => "Nemáte zde práva zápisu.", +"You don’t have permission to upload or create files here" => "Nemáte oprávnění zde nahrávat či vytvářet soubory", "Nothing in here. Upload something!" => "Žádný obsah. Nahrajte něco.", "Download" => "Stáhnout", -"Unshare" => "Zrušit sdílení", "Delete" => "Smazat", "Upload too large" => "Odesílaný soubor je příliš velký", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru.", diff --git a/apps/files/l10n/cy_GB.php b/apps/files/l10n/cy_GB.php index 86e5f65e7b0d3d46d037dc90dd1a2b459bfdf2ff..2a007761c520d3cfd678466f598781d0f618145f 100644 --- a/apps/files/l10n/cy_GB.php +++ b/apps/files/l10n/cy_GB.php @@ -2,6 +2,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Methwyd symud %s - Mae ffeil gyda'r enw hwn eisoes yn bodoli", "Could not move %s" => "Methwyd symud %s", +"File name cannot be empty." => "Does dim hawl cael enw ffeil gwag.", "No file was uploaded. Unknown error" => "Ni lwythwyd ffeil i fyny. Gwall anhysbys.", "There is no error, the file uploaded with success" => "Does dim gwall, llwythodd y ffeil i fyny'n llwyddiannus", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb upload_max_filesize yn php.ini:", @@ -16,27 +17,22 @@ $TRANSLATIONS = array( "Not enough space available" => "Dim digon o le ar gael", "Upload cancelled." => "Diddymwyd llwytho i fyny.", "File upload is in progress. Leaving the page now will cancel the upload." => "Mae ffeiliau'n cael eu llwytho i fyny. Bydd gadael y dudalen hon nawr yn diddymu'r broses.", -"URL cannot be empty." => "Does dim hawl cael URL gwag.", -"Error" => "Gwall", +"{new_name} already exists" => "{new_name} yn bodoli'n barod", "Share" => "Rhannu", "Delete permanently" => "Dileu'n barhaol", "Rename" => "Ailenwi", "Pending" => "I ddod", -"{new_name} already exists" => "{new_name} yn bodoli'n barod", -"replace" => "amnewid", -"suggest name" => "awgrymu enw", -"cancel" => "diddymu", "replaced {new_name} with {old_name}" => "newidiwyd {new_name} yn lle {old_name}", "undo" => "dadwneud", "_%n folder_::_%n folders_" => array("","","",""), "_%n file_::_%n files_" => array("","","",""), "_Uploading %n file_::_Uploading %n files_" => array("","","",""), "'.' is an invalid file name." => "Mae '.' yn enw ffeil annilys.", -"File name cannot be empty." => "Does dim hawl cael enw ffeil gwag.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'.", "Your storage is full, files can not be updated or synced anymore!" => "Mae eich storfa'n llawn, ni ellir diweddaru a chydweddu ffeiliau mwyach!", "Your storage is almost full ({usedSpacePercent}%)" => "Mae eich storfa bron a bod yn llawn ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Wrthi'n paratoi i lwytho i lawr. Gall gymryd peth amser os yw'r ffeiliau'n fawr.", +"Error" => "Gwall", "Name" => "Enw", "Size" => "Maint", "Modified" => "Addaswyd", @@ -55,10 +51,8 @@ $TRANSLATIONS = array( "From link" => "Dolen o", "Deleted files" => "Ffeiliau ddilewyd", "Cancel upload" => "Diddymu llwytho i fyny", -"You don’t have write permissions here." => "Nid oes gennych hawliau ysgrifennu fan hyn.", "Nothing in here. Upload something!" => "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!", "Download" => "Llwytho i lawr", -"Unshare" => "Dad-rannu", "Delete" => "Dileu", "Upload too large" => "Maint llwytho i fyny'n rhy fawr", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Mae'r ffeiliau rydych yn ceisio llwytho i fyny'n fwy na maint mwyaf llwytho ffeiliau i fyny ar y gweinydd hwn.", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index c2a20931ba0457c0657b4a9b6073ca5aba6c4f3d..9b7722444a819812fe13e65dd83699e242b6253e 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -2,6 +2,16 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Kunne ikke flytte %s - der findes allerede en fil med dette navn", "Could not move %s" => "Kunne ikke flytte %s", +"File name cannot be empty." => "Filnavnet kan ikke stå tomt.", +"File name must not contain \"/\". Please choose a different name." => "Filnavnet må ikke indeholde \"/\". Vælg venligst et andet navn.", +"The name %s is already used in the folder %s. Please choose a different name." => "Navnet %s er allerede i brug i mappen %s. Vælg venligst et andet navn.", +"Not a valid source" => "Ikke en gyldig kilde", +"Server is not allowed to open URLs, please check the server configuration" => "Server har ikke tilladelse til at åbne URL'er. Kontroller venligst serverens indstillinger", +"Error while downloading %s to %s" => "Fejl ved hentning af %s til %s", +"Error when creating the file" => "Fejl ved oprettelse af fil", +"Folder name cannot be empty." => "Mappenavnet kan ikke være tomt.", +"Folder name must not contain \"/\". Please choose a different name." => "Mappenavnet må ikke indeholde \"/\". Vælg venligst et andet navn.", +"Error when creating the folder" => "Fejl ved oprettelse af mappen", "Unable to set upload directory." => "Ude af stand til at vælge upload mappe.", "Invalid Token" => "Ugyldig Token ", "No file was uploaded. Unknown error" => "Ingen fil blev uploadet. Ukendt fejl.", @@ -13,38 +23,47 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Manglende midlertidig mappe.", "Failed to write to disk" => "Fejl ved skrivning til disk.", "Not enough storage available" => "Der er ikke nok plads til rådlighed", +"Upload failed. Could not get file info." => "Upload fejlede. Kunne ikke hente filinformation.", +"Upload failed. Could not find uploaded file" => "Upload fejlede. Kunne ikke finde den uploadede fil.", "Invalid directory." => "Ugyldig mappe.", "Files" => "Filer", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Kan ikke upload {filename} da det er enten en mappe eller indholder 0 bytes.", "Not enough space available" => "ikke nok tilgængelig ledig plads ", "Upload cancelled." => "Upload afbrudt.", +"Could not get result from server." => "Kunne ikke hente resultat fra server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.", -"URL cannot be empty." => "URLen kan ikke være tom.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Ugyldigt mappenavn. Brug af 'Shared' er forbeholdt af ownCloud", -"Error" => "Fejl", +"URL cannot be empty" => "URL kan ikke være tom", +"In the home folder 'Shared' is a reserved filename" => "Navnet 'Shared' er reserveret i hjemmemappen.", +"{new_name} already exists" => "{new_name} eksisterer allerede", +"Could not create file" => "Kunne ikke oprette fil", +"Could not create folder" => "Kunne ikke oprette mappe", +"Error fetching URL" => "Fejl ved URL", "Share" => "Del", "Delete permanently" => "Slet permanent", "Rename" => "Omdøb", "Pending" => "Afventer", -"{new_name} already exists" => "{new_name} eksisterer allerede", -"replace" => "erstat", -"suggest name" => "foreslå navn", -"cancel" => "fortryd", +"Could not rename file" => "Kunne ikke omdøbe filen", "replaced {new_name} with {old_name}" => "erstattede {new_name} med {old_name}", "undo" => "fortryd", +"Error deleting file." => "Fejl ved sletnign af fil.", "_%n folder_::_%n folders_" => array("%n mappe","%n mapper"), "_%n file_::_%n files_" => array("%n fil","%n filer"), "{dirs} and {files}" => "{dirs} og {files}", "_Uploading %n file_::_Uploading %n files_" => array("Uploader %n fil","Uploader %n filer"), "'.' is an invalid file name." => "'.' er et ugyldigt filnavn.", -"File name cannot be empty." => "Filnavnet kan ikke stå tomt.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt.", "Your storage is full, files can not be updated or synced anymore!" => "Din opbevaringsplads er fyldt op, filer kan ikke opdateres eller synkroniseres længere!", "Your storage is almost full ({usedSpacePercent}%)" => "Din opbevaringsplads er næsten fyldt op ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Krypteringsprogrammet er aktiveret, men din nøgle er ikke igangsat. Log venligst ud og ind igen.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ugyldig privat nøgle for krypteringsprogrammet. Opdater venligst dit kodeord for den private nøgle i dine personlige indstillinger. Det kræves for at få adgang til dine krypterede filer.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Krypteringen blev deaktiveret, men dine filer er stadig krypteret. Gå venligst til dine personlige indstillinger for at dekryptere dine filer. ", "Your download is being prepared. This might take some time if the files are big." => "Dit download forberedes. Dette kan tage lidt tid ved større filer.", +"Error moving file" => "Fejl ved flytning af fil", +"Error" => "Fejl", "Name" => "Navn", "Size" => "Størrelse", "Modified" => "Ændret", +"Invalid folder name. Usage of 'Shared' is reserved." => "Ugyldig mappenavn. 'Shared' er reserveret.", "%s could not be renamed" => "%s kunne ikke omdøbes", "Upload" => "Upload", "File handling" => "Filhåndtering", @@ -56,15 +75,16 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Maksimal størrelse på ZIP filer", "Save" => "Gem", "New" => "Ny", +"New text file" => "Ny tekstfil", "Text file" => "Tekstfil", +"New folder" => "Ny Mappe", "Folder" => "Mappe", "From link" => "Fra link", "Deleted files" => "Slettede filer", "Cancel upload" => "Fortryd upload", -"You don’t have write permissions here." => "Du har ikke skriverettigheder her.", +"You don’t have permission to upload or create files here" => "Du har ikke tilladelse til at uploade eller oprette filer her", "Nothing in here. Upload something!" => "Her er tomt. Upload noget!", "Download" => "Download", -"Unshare" => "Fjern deling", "Delete" => "Slet", "Upload too large" => "Upload er for stor", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filerne, du prøver at uploade, er større end den maksimale størrelse for fil-upload på denne server.", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 143a5efc3da07ac4dc2e38dfbc3c5aba5cd42a91..b209fee88ae79e9fa7c83e7a5f322c398811a575 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -2,6 +2,16 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert bereits", "Could not move %s" => "Konnte %s nicht verschieben", +"File name cannot be empty." => "Der Dateiname darf nicht leer sein.", +"File name must not contain \"/\". Please choose a different name." => "Der Dateiname darf kein \"/\" enthalten. Bitte wähle einen anderen Namen.", +"The name %s is already used in the folder %s. Please choose a different name." => "Der Name %s wird bereits im Ordner %s benutzt. Bitte wähle einen anderen Namen.", +"Not a valid source" => "Keine gültige Quelle", +"Server is not allowed to open URLs, please check the server configuration" => "Dem Server ist das Öffnen von URLs nicht erlaubt, bitte die Serverkonfiguration prüfen", +"Error while downloading %s to %s" => "Fehler beim Herunterladen von %s nach %s", +"Error when creating the file" => "Fehler beim Erstellen der Datei", +"Folder name cannot be empty." => "Der Ordner-Name darf nicht leer sein.", +"Folder name must not contain \"/\". Please choose a different name." => "Der Ordner-Name darf kein \"/\" enthalten. Bitte wähle einen anderen Namen.", +"Error when creating the folder" => "Fehler beim Erstellen des Ordners", "Unable to set upload directory." => "Das Upload-Verzeichnis konnte nicht gesetzt werden.", "Invalid Token" => "Ungültiges Merkmal", "No file was uploaded. Unknown error" => "Keine Datei hochgeladen. Unbekannter Fehler", @@ -17,39 +27,43 @@ $TRANSLATIONS = array( "Upload failed. Could not find uploaded file" => "Hochladen fehlgeschlagen. Hochgeladene Datei konnte nicht gefunden werden.", "Invalid directory." => "Ungültiges Verzeichnis.", "Files" => "Dateien", -"Unable to upload {filename} as it is a directory or has 0 bytes" => "Datei {filename} kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Die Datei {filename} kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist", "Not enough space available" => "Nicht genug Speicherplatz verfügbar", "Upload cancelled." => "Upload abgebrochen.", "Could not get result from server." => "Ergebnis konnte nicht vom Server abgerufen werden.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen.", -"URL cannot be empty." => "Die URL darf nicht leer sein.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Der Ordnername ist ungültig. Nur ownCloud kann den Ordner \"Shared\" anlegen", -"Error" => "Fehler", +"URL cannot be empty" => "Die URL darf nicht leer sein", +"In the home folder 'Shared' is a reserved filename" => "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname", +"{new_name} already exists" => "{new_name} existiert bereits", +"Could not create file" => "Die Datei konnte nicht erstellt werden", +"Could not create folder" => "Der Ordner konnte nicht erstellt werden", +"Error fetching URL" => "Fehler beim Abrufen der URL", "Share" => "Teilen", "Delete permanently" => "Endgültig löschen", "Rename" => "Umbenennen", "Pending" => "Ausstehend", -"{new_name} already exists" => "{new_name} existiert bereits", -"replace" => "ersetzen", -"suggest name" => "Namen vorschlagen", -"cancel" => "abbrechen", +"Could not rename file" => "Die Datei konnte nicht umbenannt werden", "replaced {new_name} with {old_name}" => "{old_name} ersetzt durch {new_name}", "undo" => "rückgängig machen", +"Error deleting file." => "Fehler beim Löschen der Datei.", "_%n folder_::_%n folders_" => array("%n Ordner","%n Ordner"), "_%n file_::_%n files_" => array("%n Datei","%n Dateien"), "{dirs} and {files}" => "{dirs} und {files}", "_Uploading %n file_::_Uploading %n files_" => array("%n Datei wird hochgeladen","%n Dateien werden hochgeladen"), "'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.", -"File name cannot be empty." => "Der Dateiname darf nicht leer sein.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.", "Your storage is full, files can not be updated or synced anymore!" => "Dein Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!", "Your storage is almost full ({usedSpacePercent}%)" => "Dein Speicher ist fast voll ({usedSpacePercent}%)", -"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Die Verschlüsselung wurde deaktiviert, jedoch sind deine Dateien nach wie vor verschlüsselt. Bitte gehe zu deinen persönlichen Einstellungen, um deine Dateien zu entschlüsseln.", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Die Verschlüsselung-App ist aktiviert, aber Deine Schlüssel sind nicht initialisiert. Bitte melden Dich nochmals ab und wieder an.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ungültiger privater Schlüssel für die Verschlüsselung-App. Bitte aktualisiere Dein privates Schlüssel-Passwort, um den Zugriff auf Deine verschlüsselten Dateien wiederherzustellen.", +"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Die Verschlüsselung wurde deaktiviert, jedoch sind Deine Dateien nach wie vor verschlüsselt. Bitte gehe zu Deinen persönlichen Einstellungen, um Deine Dateien zu entschlüsseln.", "Your download is being prepared. This might take some time if the files are big." => "Dein Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern.", "Error moving file" => "Fehler beim Verschieben der Datei", +"Error" => "Fehler", "Name" => "Name", "Size" => "Größe", "Modified" => "Geändert", +"Invalid folder name. Usage of 'Shared' is reserved." => "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert.", "%s could not be renamed" => "%s konnte nicht umbenannt werden", "Upload" => "Hochladen", "File handling" => "Dateibehandlung", @@ -61,15 +75,16 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Maximale Größe für ZIP-Dateien", "Save" => "Speichern", "New" => "Neu", +"New text file" => "Neue Textdatei", "Text file" => "Textdatei", +"New folder" => "Neuer Ordner", "Folder" => "Ordner", "From link" => "Von einem Link", "Deleted files" => "Gelöschte Dateien", "Cancel upload" => "Upload abbrechen", -"You don’t have write permissions here." => "Du hast hier keine Schreib-Berechtigung.", +"You don’t have permission to upload or create files here" => "Du besitzt hier keine Berechtigung, um Dateien hochzuladen oder zu erstellen", "Nothing in here. Upload something!" => "Alles leer. Lade etwas hoch!", "Download" => "Herunterladen", -"Unshare" => "Freigabe aufheben", "Delete" => "Löschen", "Upload too large" => "Der Upload ist zu groß", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.", diff --git a/apps/files/l10n/de_CH.php b/apps/files/l10n/de_CH.php index a7074a8b1ccb758ef8d4f6ed79f0634099750daf..b950429346723ba643e305f2a3f02e64d5dc57fa 100644 --- a/apps/files/l10n/de_CH.php +++ b/apps/files/l10n/de_CH.php @@ -2,6 +2,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert bereits.", "Could not move %s" => "Konnte %s nicht verschieben", +"File name cannot be empty." => "Der Dateiname darf nicht leer sein.", "Unable to set upload directory." => "Das Upload-Verzeichnis konnte nicht gesetzt werden.", "Invalid Token" => "Ungültiges Merkmal", "No file was uploaded. Unknown error" => "Keine Datei hochgeladen. Unbekannter Fehler", @@ -18,29 +19,23 @@ $TRANSLATIONS = array( "Not enough space available" => "Nicht genügend Speicherplatz verfügbar", "Upload cancelled." => "Upload abgebrochen.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.", -"URL cannot be empty." => "Die URL darf nicht leer sein.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Ungültiger Ordnername. Die Verwendung von «Shared» ist ownCloud vorbehalten.", -"Error" => "Fehler", +"{new_name} already exists" => "{new_name} existiert bereits", "Share" => "Teilen", "Delete permanently" => "Endgültig löschen", "Rename" => "Umbenennen", "Pending" => "Ausstehend", -"{new_name} already exists" => "{new_name} existiert bereits", -"replace" => "ersetzen", -"suggest name" => "Namen vorschlagen", -"cancel" => "abbrechen", "replaced {new_name} with {old_name}" => "{old_name} wurde ersetzt durch {new_name}", "undo" => "rückgängig machen", "_%n folder_::_%n folders_" => array("","%n Ordner"), "_%n file_::_%n files_" => array("","%n Dateien"), "_Uploading %n file_::_Uploading %n files_" => array("%n Datei wird hochgeladen","%n Dateien werden hochgeladen"), "'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.", -"File name cannot be empty." => "Der Dateiname darf nicht leer sein.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, «\\», «/», «<», «>», «:», «\"», «|», «?» und «*» sind nicht zulässig.", "Your storage is full, files can not be updated or synced anymore!" => "Ihr Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!", "Your storage is almost full ({usedSpacePercent}%)" => "Ihr Speicher ist fast voll ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln.", "Your download is being prepared. This might take some time if the files are big." => "Ihr Download wird vorbereitet. Dies kann bei grösseren Dateien etwas dauern.", +"Error" => "Fehler", "Name" => "Name", "Size" => "Grösse", "Modified" => "Geändert", @@ -56,14 +51,13 @@ $TRANSLATIONS = array( "Save" => "Speichern", "New" => "Neu", "Text file" => "Textdatei", +"New folder" => "Neues Verzeichnis", "Folder" => "Ordner", "From link" => "Von einem Link", "Deleted files" => "Gelöschte Dateien", "Cancel upload" => "Upload abbrechen", -"You don’t have write permissions here." => "Sie haben hier keine Schreib-Berechtigungen.", "Nothing in here. Upload something!" => "Alles leer. Laden Sie etwas hoch!", "Download" => "Herunterladen", -"Unshare" => "Freigabe aufheben", "Delete" => "Löschen", "Upload too large" => "Der Upload ist zu gross", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgrösse für Uploads auf diesem Server.", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index c58cb4bbe3e23d2c5e11db5a730d944d4cad75d3..76cdce00e4cdc46e6105ad777ceb824bd00a90b2 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -2,6 +2,16 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert bereits.", "Could not move %s" => "Konnte %s nicht verschieben", +"File name cannot be empty." => "Der Dateiname darf nicht leer sein.", +"File name must not contain \"/\". Please choose a different name." => "Der Dateiname darf kein \"/\" enthalten. Bitte wählen Sie einen anderen Namen.", +"The name %s is already used in the folder %s. Please choose a different name." => "Der Name %s wird bereits im Ordner %s benutzt. Bitte wählen Sie einen anderen Namen.", +"Not a valid source" => "Keine gültige Quelle", +"Server is not allowed to open URLs, please check the server configuration" => "Dem Server ist das Öffnen von URLs nicht erlaubt, bitte die Serverkonfiguration prüfen", +"Error while downloading %s to %s" => "Fehler beim Herunterladen von %s nach %s", +"Error when creating the file" => "Fehler beim Erstellen der Datei", +"Folder name cannot be empty." => "Der Ordner-Name darf nicht leer sein.", +"Folder name must not contain \"/\". Please choose a different name." => "Der Ordner-Name darf kein \"/\" enthalten. Bitte wählen Sie einen anderen Namen.", +"Error when creating the folder" => "Fehler beim Erstellen des Ordners", "Unable to set upload directory." => "Das Upload-Verzeichnis konnte nicht gesetzt werden.", "Invalid Token" => "Ungültiges Merkmal", "No file was uploaded. Unknown error" => "Keine Datei hochgeladen. Unbekannter Fehler", @@ -13,43 +23,47 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Kein temporärer Ordner vorhanden", "Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", "Not enough storage available" => "Nicht genug Speicher vorhanden.", -"Upload failed. Could not get file info." => "Hochladen fehlgeschlagen. Dateiinformationen konnten nicht abgerufen werden.", -"Upload failed. Could not find uploaded file" => "Hochladen fehlgeschlagen. Hochgeladene Datei konnte nicht gefunden werden.", +"Upload failed. Could not get file info." => "Hochladen fehlgeschlagen. Die Dateiinformationen konnten nicht abgerufen werden.", +"Upload failed. Could not find uploaded file" => "Hochladen fehlgeschlagen. Die hochgeladene Datei konnte nicht gefunden werden.", "Invalid directory." => "Ungültiges Verzeichnis.", "Files" => "Dateien", -"Unable to upload {filename} as it is a directory or has 0 bytes" => "Datei {filename} kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Die Datei {filename} kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist", "Not enough space available" => "Nicht genügend Speicherplatz verfügbar", "Upload cancelled." => "Upload abgebrochen.", "Could not get result from server." => "Ergebnis konnte nicht vom Server abgerufen werden.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.", -"URL cannot be empty." => "Die URL darf nicht leer sein.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten.", -"Error" => "Fehler", +"URL cannot be empty" => "Die URL darf nicht leer sein", +"In the home folder 'Shared' is a reserved filename" => "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname", +"{new_name} already exists" => "{new_name} existiert bereits", +"Could not create file" => "Die Datei konnte nicht erstellt werden", +"Could not create folder" => "Der Ordner konnte nicht erstellt werden", +"Error fetching URL" => "Fehler beim Abrufen der URL", "Share" => "Teilen", "Delete permanently" => "Endgültig löschen", "Rename" => "Umbenennen", "Pending" => "Ausstehend", -"{new_name} already exists" => "{new_name} existiert bereits", -"replace" => "ersetzen", -"suggest name" => "Namen vorschlagen", -"cancel" => "abbrechen", +"Could not rename file" => "Die Datei konnte nicht umbenannt werden", "replaced {new_name} with {old_name}" => "{old_name} wurde ersetzt durch {new_name}", "undo" => "rückgängig machen", +"Error deleting file." => "Fehler beim Löschen der Datei.", "_%n folder_::_%n folders_" => array("%n Ordner","%n Ordner"), "_%n file_::_%n files_" => array("%n Datei","%n Dateien"), "{dirs} and {files}" => "{dirs} und {files}", "_Uploading %n file_::_Uploading %n files_" => array("%n Datei wird hoch geladen","%n Dateien werden hoch geladen"), "'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.", -"File name cannot be empty." => "Der Dateiname darf nicht leer sein.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.", "Your storage is full, files can not be updated or synced anymore!" => "Ihr Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!", "Your storage is almost full ({usedSpacePercent}%)" => "Ihr Speicher ist fast voll ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Verschlüsselung-App ist aktiviert, aber Ihre Schlüssel sind nicht initialisiert. Bitte melden sich nochmals ab und wieder an.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ungültiger privater Schlüssel für die Verschlüsselung-App. Bitte aktualisieren Sie Ihr privates Schlüssel-Passwort, um den Zugriff auf Ihre verschlüsselten Dateien wiederherzustellen.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln.", "Your download is being prepared. This might take some time if the files are big." => "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern.", "Error moving file" => "Fehler beim Verschieben der Datei", +"Error" => "Fehler", "Name" => "Name", "Size" => "Größe", "Modified" => "Geändert", +"Invalid folder name. Usage of 'Shared' is reserved." => "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert.", "%s could not be renamed" => "%s konnte nicht umbenannt werden", "Upload" => "Hochladen", "File handling" => "Dateibehandlung", @@ -61,15 +75,16 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Maximale Größe für ZIP-Dateien", "Save" => "Speichern", "New" => "Neu", +"New text file" => "Neue Textdatei", "Text file" => "Textdatei", +"New folder" => "Neues Verzeichnis", "Folder" => "Ordner", "From link" => "Von einem Link", "Deleted files" => "Gelöschte Dateien", "Cancel upload" => "Upload abbrechen", -"You don’t have write permissions here." => "Sie haben hier keine Schreib-Berechtigungen.", +"You don’t have permission to upload or create files here" => "Sie besitzen hier keine Berechtigung Dateien hochzuladen oder zu erstellen", "Nothing in here. Upload something!" => "Alles leer. Laden Sie etwas hoch!", "Download" => "Herunterladen", -"Unshare" => "Freigabe aufheben", "Delete" => "Löschen", "Upload too large" => "Der Upload ist zu groß", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index de524f4dd904a5b1f46e5f93bca243f0e0d8fc58..9efe1af7dd3400d9480d9e6460302442110c7705 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -2,6 +2,16 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Αδυναμία μετακίνησης του %s - υπάρχει ήδη αρχείο με αυτό το όνομα", "Could not move %s" => "Αδυναμία μετακίνησης του %s", +"File name cannot be empty." => "Το όνομα αρχείου δεν μπορεί να είναι κενό.", +"File name must not contain \"/\". Please choose a different name." => "Το όνομα αρχείου δεν μπορεί να περιέχει \"/\". Παρακαλώ επιλέξτε ένα διαφορετικό όνομα. ", +"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, παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή", +"Error while downloading %s to %s" => "Σφάλμα κατά τη λήψη του %s στο %s", +"Error when creating the file" => "Σφάλμα κατά τη δημιουργία του αρχείου", +"Folder name cannot be empty." => "Το όνομα φακέλου δεν μπορεί να είναι κενό.", +"Folder name must not contain \"/\". Please choose a different name." => "Το όνομα φακέλου δεν μπορεί να περιέχει \"/\". Παρακαλώ επιλέξτε ένα διαφορετικό όνομα. ", +"Error when creating the folder" => "Σφάλμα δημιουργίας φακέλου", "Unable to set upload directory." => "Αδυναμία ορισμού καταλόγου αποστολής.", "Invalid Token" => "Μη έγκυρο Token", "No file was uploaded. Unknown error" => "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα", @@ -13,38 +23,47 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Λείπει ο προσωρινός φάκελος", "Failed to write to disk" => "Αποτυχία εγγραφής στο δίσκο", "Not enough storage available" => "Μη επαρκής διαθέσιμος αποθηκευτικός χώρος", +"Upload failed. Could not get file info." => "Η φόρτωση απέτυχε. Αδυναμία λήψης πληροφοριών αρχείων.", +"Upload failed. Could not find uploaded file" => "Η φόρτωση απέτυχε. Αδυναμία εύρεσης αρχείου προς φόρτωση.", "Invalid directory." => "Μη έγκυρος φάκελος.", "Files" => "Αρχεία", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Αδυναμία φόρτωσης {filename} καθώς είναι κατάλογος αρχείων ή έχει 0 bytes", "Not enough space available" => "Δεν υπάρχει αρκετός διαθέσιμος χώρος", "Upload cancelled." => "Η αποστολή ακυρώθηκε.", +"Could not get result from server." => "Αδυναμία λήψης αποτελέσματος από το διακομιστή.", "File upload is in progress. Leaving the page now will cancel the upload." => "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή.", -"URL cannot be empty." => "Η URL δεν μπορεί να είναι κενή.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Μη έγκυρο όνομα φακέλου. Η χρήση του 'Κοινόχρηστος' χρησιμοποιείται από το ownCloud", -"Error" => "Σφάλμα", +"URL cannot be empty" => "Η URL δεν πρέπει να είναι κενή", +"In the home folder 'Shared' is a reserved filename" => "Στον αρχικό φάκελο το όνομα 'Shared' διατηρείται από το σύστημα", +"{new_name} already exists" => "{new_name} υπάρχει ήδη", +"Could not create file" => "Αδυναμία δημιουργίας αρχείου", +"Could not create folder" => "Αδυναμία δημιουργίας φακέλου", +"Error fetching URL" => "Σφάλμα φόρτωσης URL", "Share" => "Διαμοιρασμός", "Delete permanently" => "Μόνιμη διαγραφή", "Rename" => "Μετονομασία", "Pending" => "Εκκρεμεί", -"{new_name} already exists" => "{new_name} υπάρχει ήδη", -"replace" => "αντικατέστησε", -"suggest name" => "συνιστώμενο όνομα", -"cancel" => "ακύρωση", +"Could not rename file" => "Αδυναμία μετονομασίας αρχείου", "replaced {new_name} with {old_name}" => "αντικαταστάθηκε το {new_name} με {old_name}", "undo" => "αναίρεση", +"Error deleting file." => "Σφάλμα διαγραφής αρχείου.", "_%n folder_::_%n folders_" => array("%n φάκελος","%n φάκελοι"), "_%n file_::_%n files_" => array("%n αρχείο","%n αρχεία"), +"{dirs} and {files}" => "{Κατάλογοι αρχείων} και {αρχεία}", "_Uploading %n file_::_Uploading %n files_" => array("Ανέβασμα %n αρχείου","Ανέβασμα %n αρχείων"), "'.' is an invalid file name." => "'.' είναι μη έγκυρο όνομα αρχείου.", -"File name cannot be empty." => "Το όνομα αρχείου δεν μπορεί να είναι κενό.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται.", "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" => "Η εφαρμογή κρυπτογράφησης είναι ενεργοποιημένη αλλά τα κλειδιά σας δεν έχουν καταγραφεί, παρακαλώ αποσυνδεθείτε και επανασυνδεθείτε.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Άκυρο προσωπικό κλειδί για την εφαρμογή κρυπτογράφησης. Παρακαλώ ενημερώστε τον κωδικό του προσωπικού κλειδίου σας στις προσωπικές ρυθμίσεις για να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Η κρυπτογράφηση απενεργοποιήθηκε, αλλά τα αρχεία σας είναι ακόμα κρυπτογραφημένα. Παρακαλούμε απενεργοποιήσετε την κρυπτογράφηση αρχείων από τις προσωπικές σας ρυθμίσεις", "Your download is being prepared. This might take some time if the files are big." => "Η λήψη προετοιμάζεται. Αυτό μπορεί να πάρει ώρα εάν τα αρχεία έχουν μεγάλο μέγεθος.", "Error moving file" => "Σφάλμα κατά τη μετακίνηση του αρχείου", +"Error" => "Σφάλμα", "Name" => "Όνομα", "Size" => "Μέγεθος", "Modified" => "Τροποποιήθηκε", +"Invalid folder name. Usage of 'Shared' is reserved." => "Άκυρο όνομα φακέλου. Η χρήση του 'Shared' διατηρείται από το σύστημα.", "%s could not be renamed" => "Αδυναμία μετονομασίας του %s", "Upload" => "Μεταφόρτωση", "File handling" => "Διαχείριση αρχείων", @@ -56,15 +75,16 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Μέγιστο μέγεθος για αρχεία ZIP", "Save" => "Αποθήκευση", "New" => "Νέο", +"New text file" => "Νέο αρχείο κειμένου", "Text file" => "Αρχείο κειμένου", +"New folder" => "Νέος κατάλογος", "Folder" => "Φάκελος", "From link" => "Από σύνδεσμο", "Deleted files" => "Διαγραμμένα αρχεία", "Cancel upload" => "Ακύρωση αποστολής", -"You don’t have write permissions here." => "Δεν έχετε δικαιώματα εγγραφής εδώ.", +"You don’t have permission to upload or create files here" => "Δεν έχετε δικαιώματα φόρτωσης ή δημιουργίας αρχείων εδώ", "Nothing in here. Upload something!" => "Δεν υπάρχει τίποτα εδώ. Ανεβάστε κάτι!", "Download" => "Λήψη", -"Unshare" => "Σταμάτημα διαμοιρασμού", "Delete" => "Διαγραφή", "Upload too large" => "Πολύ μεγάλο αρχείο προς αποστολή", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν τον διακομιστή.", diff --git a/apps/files/l10n/en_GB.php b/apps/files/l10n/en_GB.php index c747555e40be799f635d098e9e4268a973f8342b..ac93aa68abb2dbdaca6132d1704375a304edaa85 100644 --- a/apps/files/l10n/en_GB.php +++ b/apps/files/l10n/en_GB.php @@ -2,6 +2,16 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Could not move %s - File with this name already exists", "Could not move %s" => "Could not move %s", +"File name cannot be empty." => "File name cannot be empty.", +"File name must not contain \"/\". Please choose a different name." => "File name must not contain \"/\". Please choose a different name.", +"The name %s is already used in the folder %s. Please choose a different name." => "The name %s is already used in the folder %s. Please choose a different name.", +"Not a valid source" => "Not a valid source", +"Server is not allowed to open URLs, please check the server configuration" => "Server is not allowed to open URLs, please check the server configuration", +"Error while downloading %s to %s" => "Error whilst downloading %s to %s", +"Error when creating the file" => "Error when creating the file", +"Folder name cannot be empty." => "Folder name cannot be empty.", +"Folder name must not contain \"/\". Please choose a different name." => "Folder name must not contain \"/\". Please choose a different name.", +"Error when creating the folder" => "Error when creating the folder", "Unable to set upload directory." => "Unable to set upload directory.", "Invalid Token" => "Invalid Token", "No file was uploaded. Unknown error" => "No file was uploaded. Unknown error", @@ -22,34 +32,38 @@ $TRANSLATIONS = array( "Upload cancelled." => "Upload cancelled.", "Could not get result from server." => "Could not get result from server.", "File upload is in progress. Leaving the page now will cancel the upload." => "File upload is in progress. Leaving the page now will cancel the upload.", -"URL cannot be empty." => "URL cannot be empty.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Invalid folder name. Usage of 'Shared' is reserved by ownCloud", -"Error" => "Error", +"URL cannot be empty" => "URL cannot be empty", +"In the home folder 'Shared' is a reserved filename" => "In the home folder 'Shared' is a reserved file name", +"{new_name} already exists" => "{new_name} already exists", +"Could not create file" => "Could not create file", +"Could not create folder" => "Could not create folder", +"Error fetching URL" => "Error fetching URL", "Share" => "Share", "Delete permanently" => "Delete permanently", "Rename" => "Rename", "Pending" => "Pending", -"{new_name} already exists" => "{new_name} already exists", -"replace" => "replace", -"suggest name" => "suggest name", -"cancel" => "cancel", +"Could not rename file" => "Could not rename file", "replaced {new_name} with {old_name}" => "replaced {new_name} with {old_name}", "undo" => "undo", +"Error deleting file." => "Error deleting file.", "_%n folder_::_%n folders_" => array("%n folder","%n folders"), "_%n file_::_%n files_" => array("%n file","%n files"), "{dirs} and {files}" => "{dirs} and {files}", "_Uploading %n file_::_Uploading %n files_" => array("Uploading %n file","Uploading %n files"), "'.' is an invalid file name." => "'.' is an invalid file name.", -"File name cannot be empty." => "File name cannot be empty.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Invalid name: '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed.", "Your storage is full, files can not be updated or synced anymore!" => "Your storage is full, files can not be updated or synced anymore!", "Your storage is almost full ({usedSpacePercent}%)" => "Your storage is almost full ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Encryption App is enabled but your keys are not initialised, please log-out and log-in again", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files.", "Your download is being prepared. This might take some time if the files are big." => "Your download is being prepared. This might take some time if the files are big.", "Error moving file" => "Error moving file", +"Error" => "Error", "Name" => "Name", "Size" => "Size", "Modified" => "Modified", +"Invalid folder name. Usage of 'Shared' is reserved." => "Invalid folder name. Usage of 'Shared' is reserved.", "%s could not be renamed" => "%s could not be renamed", "Upload" => "Upload", "File handling" => "File handling", @@ -61,15 +75,16 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Maximum input size for ZIP files", "Save" => "Save", "New" => "New", +"New text file" => "New text file", "Text file" => "Text file", +"New folder" => "New folder", "Folder" => "Folder", "From link" => "From link", "Deleted files" => "Deleted files", "Cancel upload" => "Cancel upload", -"You don’t have write permissions here." => "You don’t have write permission here.", +"You don’t have permission to upload or create files here" => "You don’t have permission to upload or create files here", "Nothing in here. Upload something!" => "Nothing in here. Upload something!", "Download" => "Download", -"Unshare" => "Unshare", "Delete" => "Delete", "Upload too large" => "Upload too large", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "The files you are trying to upload exceed the maximum size for file uploads on this server.", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index eb6e6ba2d3905b60c52ed624baaab8699031b78b..81cfa03fd6df809ac02efdfdb970315147c15118 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -2,6 +2,16 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Ne eblis movi %s: dosiero kun ĉi tiu nomo jam ekzistas", "Could not move %s" => "Ne eblis movi %s", +"File name cannot be empty." => "Dosiernomo devas ne malpleni.", +"File name must not contain \"/\". Please choose a different name." => "La dosieronomo ne devas enhavi “/”. Bonvolu elekti malsaman nomon.", +"The name %s is already used in the folder %s. Please choose a different name." => "La nomo %s jam uziĝas en la dosierujo %s. Bonvolu elekti malsaman nomon.", +"Not a valid source" => "Nevalida fonto", +"Error while downloading %s to %s" => "Eraris elŝuto de %s al %s", +"Error when creating the file" => "Eraris la kreo de la dosiero", +"Folder name cannot be empty." => "La dosierujnomo ne povas malpleni.", +"Folder name must not contain \"/\". Please choose a different name." => "La dosiernomo ne devas enhavi “/”. Bonvolu elekti malsaman nomon.", +"Error when creating the folder" => "Eraris la kreo de la dosierujo", +"Unable to set upload directory." => "Ne povis agordiĝi la alŝuta dosierujo.", "No file was uploaded. Unknown error" => "Neniu dosiero alŝutiĝis. Nekonata eraro.", "There is no error, the file uploaded with success" => "Ne estas eraro, la dosiero alŝutiĝis sukcese.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: ", @@ -11,36 +21,41 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Mankas provizora dosierujo.", "Failed to write to disk" => "Malsukcesis skribo al disko", "Not enough storage available" => "Ne haveblas sufiĉa memoro", +"Upload failed. Could not get file info." => "La alŝuto malsukcesis. Ne povis ekhaviĝi informo pri dosiero.", +"Upload failed. Could not find uploaded file" => "La alŝuto malsukcesis. Ne troviĝis alŝutota dosiero.", "Invalid directory." => "Nevalida dosierujo.", "Files" => "Dosieroj", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Ne povis alŝutiĝi {filename} ĉar ĝi estas dosierujo aŭ ĝi havas 0 duumokojn", "Not enough space available" => "Ne haveblas sufiĉa spaco", "Upload cancelled." => "La alŝuto nuliĝis.", +"Could not get result from server." => "Ne povis ekhaviĝi rezulto el la servilo.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton.", -"URL cannot be empty." => "URL ne povas esti malplena.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nevalida dosierujnomo. La uzo de “Shared” estas rezervita de ownCloud.", -"Error" => "Eraro", +"URL cannot be empty" => "La URL ne povas malpleni", +"{new_name} already exists" => "{new_name} jam ekzistas", +"Could not create file" => "Ne povis kreiĝi dosiero", +"Could not create folder" => "Ne povis kreiĝi dosierujo", "Share" => "Kunhavigi", "Delete permanently" => "Forigi por ĉiam", "Rename" => "Alinomigi", "Pending" => "Traktotaj", -"{new_name} already exists" => "{new_name} jam ekzistas", -"replace" => "anstataŭigi", -"suggest name" => "sugesti nomon", -"cancel" => "nuligi", +"Could not rename file" => "Ne povis alinomiĝi dosiero", "replaced {new_name} with {old_name}" => "anstataŭiĝis {new_name} per {old_name}", "undo" => "malfari", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), -"_Uploading %n file_::_Uploading %n files_" => array("",""), +"_%n folder_::_%n folders_" => array("%n dosierujo","%n dosierujoj"), +"_%n file_::_%n files_" => array("%n dosiero","%n dosieroj"), +"{dirs} and {files}" => "{dirs} kaj {files}", +"_Uploading %n file_::_Uploading %n files_" => array("Alŝutatas %n dosiero","Alŝutatas %n dosieroj"), "'.' is an invalid file name." => "'.' ne estas valida dosiernomo.", -"File name cannot be empty." => "Dosiernomo devas ne malpleni.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas.", "Your storage is full, files can not be updated or synced anymore!" => "Via memoro plenas, ne plu eblas ĝisdatigi aŭ sinkronigi dosierojn!", "Your storage is almost full ({usedSpacePercent}%)" => "Via memoro preskaŭ plenas ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Via elŝuto pretiĝatas. Ĉi tio povas daŭri iom da tempo se la dosieroj grandas.", +"Error moving file" => "Eraris movo de dosiero", +"Error" => "Eraro", "Name" => "Nomo", "Size" => "Grando", "Modified" => "Modifita", +"%s could not be renamed" => "%s ne povis alinomiĝi", "Upload" => "Alŝuti", "File handling" => "Dosieradministro", "Maximum upload size" => "Maksimuma alŝutogrando", @@ -52,14 +67,14 @@ $TRANSLATIONS = array( "Save" => "Konservi", "New" => "Nova", "Text file" => "Tekstodosiero", +"New folder" => "Nova dosierujo", "Folder" => "Dosierujo", "From link" => "El ligilo", "Deleted files" => "Forigitaj dosieroj", "Cancel upload" => "Nuligi alŝuton", -"You don’t have write permissions here." => "Vi ne havas permeson skribi ĉi tie.", +"You don’t have permission to upload or create files here" => "Vi ne havas permeson alŝuti aŭ krei dosierojn ĉi tie", "Nothing in here. Upload something!" => "Nenio estas ĉi tie. Alŝutu ion!", "Download" => "Elŝuti", -"Unshare" => "Malkunhavigi", "Delete" => "Forigi", "Upload too large" => "Alŝuto tro larĝa", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo.", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 90d760587d9ccd97274e42005b39bd163f407250..bfbb80e8962083ef327c47a7a629529a36c7251e 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -1,75 +1,95 @@ "No se pudo mover %s - Un archivo con ese nombre ya existe.", +"Could not move %s - File with this name already exists" => "No se pudo mover %s - Ya existe un archivo con ese nombre.", "Could not move %s" => "No se pudo mover %s", +"File name cannot be empty." => "El nombre de archivo no puede estar vacío.", +"File name must not contain \"/\". Please choose a different name." => "El nombre del archivo, NO puede contener el simbolo\"/\", por favor elija un nombre diferente.", +"The name %s is already used in the folder %s. Please choose a different name." => "El nombre %s ya está en uso por la carpeta %s. Por favor elija uno diferente.", +"Not a valid source" => "No es un origen válido", +"Server is not allowed to open URLs, please check the server configuration" => "El servidor no puede acceder URLs; revise la configuración del servidor.", +"Error while downloading %s to %s" => "Error mientras se descargaba %s a %s", +"Error when creating the file" => "Error al crear el archivo", +"Folder name cannot be empty." => "El nombre de la carpeta no puede estar vacío.", +"Folder name must not contain \"/\". Please choose a different name." => "El nombre de la carpeta, NO puede contener el simbolo\"/\", por favor elija un nombre diferente.", +"Error when creating the folder" => "Error al crear la carpeta.", "Unable to set upload directory." => "Incapaz de crear directorio de subida.", "Invalid Token" => "Token Inválido", "No file was uploaded. Unknown error" => "No se subió ningún archivo. Error desconocido", -"There is no error, the file uploaded with success" => "No hay ningún error, el archivo se ha subido con éxito", -"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "El archivo subido sobrepasa la directiva upload_max_filesize en php.ini", -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El archivo subido sobrepasa la directiva MAX_FILE_SIZE especificada en el formulario HTML", +"There is no error, the file uploaded with success" => "No hubo ningún problema, el archivo se subió con éxito", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "El archivo subido sobrepasa la directiva 'upload_max_filesize' en php.ini:", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El archivo subido sobrepasa la directiva 'MAX_FILE_SIZE' especificada en el formulario HTML", "The uploaded file was only partially uploaded" => "El archivo subido fue sólo subido parcialmente", "No file was uploaded" => "No se subió ningún archivo", "Missing a temporary folder" => "Falta la carpeta temporal", "Failed to write to disk" => "Falló al escribir al disco", "Not enough storage available" => "No hay suficiente espacio disponible", +"Upload failed. Could not get file info." => "Actualización fallida. No se pudo obtener información del archivo.", +"Upload failed. Could not find uploaded file" => "Actualización fallida. No se pudo encontrar el archivo subido", "Invalid directory." => "Directorio inválido.", "Files" => "Archivos", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "No ha sido posible subir {filename} porque es un directorio o tiene 0 bytes", "Not enough space available" => "No hay suficiente espacio disponible", "Upload cancelled." => "Subida cancelada.", -"File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si sale de la página ahora cancelará la subida.", -"URL cannot be empty." => "La URL no puede estar vacía.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nombre de carpeta invalido. El uso de \"Shared\" está reservado por ownCloud", -"Error" => "Error", +"Could not get result from server." => "No se pudo obtener respuesta del servidor.", +"File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada.", +"URL cannot be empty" => "La dirección URL no puede estar vacía", +"In the home folder 'Shared' is a reserved filename" => "En la carpeta de inicio, 'Shared' es un nombre reservado", +"{new_name} already exists" => "{new_name} ya existe", +"Could not create file" => "No se pudo crear el archivo", +"Could not create folder" => "No se pudo crear la carpeta", +"Error fetching URL" => "Error al descargar URL.", "Share" => "Compartir", "Delete permanently" => "Eliminar permanentemente", "Rename" => "Renombrar", "Pending" => "Pendiente", -"{new_name} already exists" => "{new_name} ya existe", -"replace" => "reemplazar", -"suggest name" => "sugerir nombre", -"cancel" => "cancelar", +"Could not rename file" => "No se pudo renombrar el archivo", "replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}", "undo" => "deshacer", -"_%n folder_::_%n folders_" => array("","%n carpetas"), -"_%n file_::_%n files_" => array("","%n archivos"), +"Error deleting file." => "Error borrando el archivo.", +"_%n folder_::_%n folders_" => array("%n carpeta","%n carpetas"), +"_%n file_::_%n files_" => array("%n archivo","%n archivos"), "{dirs} and {files}" => "{dirs} y {files}", "_Uploading %n file_::_Uploading %n files_" => array("Subiendo %n archivo","Subiendo %n archivos"), "'.' is an invalid file name." => "'.' no es un nombre de archivo válido.", -"File name cannot be empty." => "El nombre de archivo no puede estar vacío.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos ", -"Your storage is full, files can not be updated or synced anymore!" => "Su almacenamiento está lleno, ¡no se pueden actualizar o sincronizar más!", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos ", +"Your storage is full, files can not be updated or synced anymore!" => "Su almacenamiento está lleno, ¡los archivos no se actualizarán ni sincronizarán más!", "Your storage is almost full ({usedSpacePercent}%)" => "Su almacenamiento está casi lleno ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "La app de crifrado está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "La clave privada no es válida para la app de cifrado. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos cifrados.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "El cifrado ha sido deshabilitado pero tus archivos permanecen cifrados. Por favor, ve a tus ajustes personales para descifrar tus archivos.", -"Your download is being prepared. This might take some time if the files are big." => "Su descarga está siendo preparada. Esto puede tardar algún tiempo si los archivos son grandes.", +"Your download is being prepared. This might take some time if the files are big." => "Su descarga está siendo preparada. Esto podría tardar algo de tiempo si los archivos son grandes.", +"Error moving file" => "Error moviendo archivo", +"Error" => "Error", "Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", -"%s could not be renamed" => "%s no se pudo renombrar", +"Invalid folder name. Usage of 'Shared' is reserved." => "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado.", +"%s could not be renamed" => "%s no pudo ser renombrado", "Upload" => "Subir", -"File handling" => "Manejo de archivos", +"File handling" => "Administración de archivos", "Maximum upload size" => "Tamaño máximo de subida", "max. possible: " => "máx. posible:", "Needed for multi-file and folder downloads." => "Necesario para multi-archivo y descarga de carpetas", "Enable ZIP-download" => "Habilitar descarga en ZIP", -"0 is unlimited" => "0 es ilimitado", +"0 is unlimited" => "0 significa ilimitado", "Maximum input size for ZIP files" => "Tamaño máximo para archivos ZIP de entrada", "Save" => "Guardar", "New" => "Nuevo", +"New text file" => "Nuevo archivo de texto", "Text file" => "Archivo de texto", +"New folder" => "Nueva carpeta", "Folder" => "Carpeta", "From link" => "Desde enlace", "Deleted files" => "Archivos eliminados", "Cancel upload" => "Cancelar subida", -"You don’t have write permissions here." => "No tiene permisos de escritura aquí.", +"You don’t have permission to upload or create files here" => "No tienes permisos para subir o crear archivos aquí.", "Nothing in here. Upload something!" => "No hay nada aquí. ¡Suba algo!", "Download" => "Descargar", -"Unshare" => "Dejar de compartir", "Delete" => "Eliminar", "Upload too large" => "Subida demasido grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor.", "Files are being scanned, please wait." => "Los archivos están siendo escaneados, por favor espere.", "Current scanning" => "Escaneo actual", -"Upgrading filesystem cache..." => "Actualizando caché del sistema de archivos" +"Upgrading filesystem cache..." => "Actualizando caché del sistema de archivos..." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index be16f3f99ae8bed39884062348cdf87687b429a6..78d6388cd9bcbce2054535aa51467413bd950d24 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -2,6 +2,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "No se pudo mover %s - Un archivo con este nombre ya existe", "Could not move %s" => "No se pudo mover %s ", +"File name cannot be empty." => "El nombre del archivo no puede quedar vacío.", "Unable to set upload directory." => "No fue posible crear el directorio de subida.", "Invalid Token" => "Token Inválido", "No file was uploaded. Unknown error" => "El archivo no fue subido. Error desconocido", @@ -18,17 +19,11 @@ $TRANSLATIONS = array( "Not enough space available" => "No hay suficiente espacio disponible", "Upload cancelled." => "La subida fue cancelada", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará.", -"URL cannot be empty." => "La URL no puede estar vacía", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nombre de directorio inválido. El uso de \"Shared\" está reservado por ownCloud", -"Error" => "Error", +"{new_name} already exists" => "{new_name} ya existe", "Share" => "Compartir", "Delete permanently" => "Borrar permanentemente", "Rename" => "Cambiar nombre", "Pending" => "Pendientes", -"{new_name} already exists" => "{new_name} ya existe", -"replace" => "reemplazar", -"suggest name" => "sugerir nombre", -"cancel" => "cancelar", "replaced {new_name} with {old_name}" => "se reemplazó {new_name} con {old_name}", "undo" => "deshacer", "_%n folder_::_%n folders_" => array("%n carpeta","%n carpetas"), @@ -36,12 +31,12 @@ $TRANSLATIONS = array( "{dirs} and {files}" => "{carpetas} y {archivos}", "_Uploading %n file_::_Uploading %n files_" => array("Subiendo %n archivo","Subiendo %n archivos"), "'.' is an invalid file name." => "'.' es un nombre de archivo inválido.", -"File name cannot be empty." => "El nombre del archivo no puede quedar vacío.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos.", "Your storage is full, files can not be updated or synced anymore!" => "El almacenamiento está lleno, los archivos no se pueden seguir actualizando ni sincronizando", "Your storage is almost full ({usedSpacePercent}%)" => "El almacenamiento está casi lleno ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "El proceso de cifrado se ha desactivado, pero los archivos aún están encriptados. Por favor, vaya a la configuración personal para descifrar los archivos.", "Your download is being prepared. This might take some time if the files are big." => "Tu descarga se está preparando. Esto puede demorar si los archivos son muy grandes.", +"Error" => "Error", "Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", @@ -57,14 +52,13 @@ $TRANSLATIONS = array( "Save" => "Guardar", "New" => "Nuevo", "Text file" => "Archivo de texto", +"New folder" => "Nueva Carpeta", "Folder" => "Carpeta", "From link" => "Desde enlace", "Deleted files" => "Archivos borrados", "Cancel upload" => "Cancelar subida", -"You don’t have write permissions here." => "No tenés permisos de escritura acá.", "Nothing in here. Upload something!" => "No hay nada. ¡Subí contenido!", "Download" => "Descargar", -"Unshare" => "Dejar de compartir", "Delete" => "Borrar", "Upload too large" => "El tamaño del archivo que querés subir es demasiado grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que intentás subir sobrepasan el tamaño máximo ", diff --git a/apps/files/l10n/es_CL.php b/apps/files/l10n/es_CL.php new file mode 100644 index 0000000000000000000000000000000000000000..6f97758878f13687130142d93fa5ee209630ca39 --- /dev/null +++ b/apps/files/l10n/es_CL.php @@ -0,0 +1,9 @@ + "Archivos", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("",""), +"Upload" => "Subir" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/es_MX.php b/apps/files/l10n/es_MX.php index 0157af093e92200cc7790497227e92e62d80165f..0b7571defc73d0b45ab1e5816213235c8c778f3f 100644 --- a/apps/files/l10n/es_MX.php +++ b/apps/files/l10n/es_MX.php @@ -1,7 +1,95 @@ array("",""), -"_%n file_::_%n files_" => array("",""), -"_Uploading %n file_::_Uploading %n files_" => array("","") +"Could not move %s - File with this name already exists" => "No se pudo mover %s - Ya existe un archivo con ese nombre.", +"Could not move %s" => "No se pudo mover %s", +"File name cannot be empty." => "El nombre de archivo no puede estar vacío.", +"File name must not contain \"/\". Please choose a different name." => "El nombre del archivo, NO puede contener el simbolo\"/\", por favor elija un nombre diferente.", +"The name %s is already used in the folder %s. Please choose a different name." => "El nombre %s ya está en uso por la carpeta %s. Por favor elija uno diferente.", +"Not a valid source" => "No es un origen válido", +"Server is not allowed to open URLs, please check the server configuration" => "El servidor no puede acceder URLs; revise la configuración del servidor.", +"Error while downloading %s to %s" => "Error mientras se descargaba %s a %s", +"Error when creating the file" => "Error al crear el archivo", +"Folder name cannot be empty." => "El nombre de la carpeta no puede estar vacío.", +"Folder name must not contain \"/\". Please choose a different name." => "El nombre de la carpeta, NO puede contener el simbolo\"/\", por favor elija un nombre diferente.", +"Error when creating the folder" => "Error al crear la carpeta.", +"Unable to set upload directory." => "Incapaz de crear directorio de subida.", +"Invalid Token" => "Token Inválido", +"No file was uploaded. Unknown error" => "No se subió ningún archivo. Error desconocido", +"There is no error, the file uploaded with success" => "No hubo ningún problema, el archivo se subió con éxito", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "El archivo subido sobrepasa la directiva 'upload_max_filesize' en php.ini:", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El archivo subido sobrepasa la directiva 'MAX_FILE_SIZE' especificada en el formulario HTML", +"The uploaded file was only partially uploaded" => "El archivo subido fue sólo subido parcialmente", +"No file was uploaded" => "No se subió ningún archivo", +"Missing a temporary folder" => "Falta la carpeta temporal", +"Failed to write to disk" => "Falló al escribir al disco", +"Not enough storage available" => "No hay suficiente espacio disponible", +"Upload failed. Could not get file info." => "Actualización fallida. No se pudo obtener información del archivo.", +"Upload failed. Could not find uploaded file" => "Actualización fallida. No se pudo encontrar el archivo subido", +"Invalid directory." => "Directorio inválido.", +"Files" => "Archivos", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "No ha sido posible subir {filename} porque es un directorio o tiene 0 bytes", +"Not enough space available" => "No hay suficiente espacio disponible", +"Upload cancelled." => "Subida cancelada.", +"Could not get result from server." => "No se pudo obtener respuesta del servidor.", +"File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada.", +"URL cannot be empty" => "La dirección URL no puede estar vacía", +"In the home folder 'Shared' is a reserved filename" => "En la carpeta de inicio, 'Shared' es un nombre reservado", +"{new_name} already exists" => "{new_name} ya existe", +"Could not create file" => "No se pudo crear el archivo", +"Could not create folder" => "No se pudo crear la carpeta", +"Error fetching URL" => "Error al descargar URL.", +"Share" => "Compartir", +"Delete permanently" => "Eliminar permanentemente", +"Rename" => "Renombrar", +"Pending" => "Pendiente", +"Could not rename file" => "No se pudo renombrar el archivo", +"replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}", +"undo" => "deshacer", +"Error deleting file." => "Error borrando el archivo.", +"_%n folder_::_%n folders_" => array("%n carpeta","%n carpetas"), +"_%n file_::_%n files_" => array("%n archivo","%n archivos"), +"{dirs} and {files}" => "{dirs} y {files}", +"_Uploading %n file_::_Uploading %n files_" => array("Subiendo %n archivo","Subiendo %n archivos"), +"'.' is an invalid file name." => "'.' no es un nombre de archivo válido.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos ", +"Your storage is full, files can not be updated or synced anymore!" => "Su almacenamiento está lleno, ¡los archivos no se actualizarán ni sincronizarán más!", +"Your storage is almost full ({usedSpacePercent}%)" => "Su almacenamiento está casi lleno ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "La aplicación de crifrado está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "La clave privada no es válida para la aplicación de cifrado. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos cifrados.", +"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "El cifrado ha sido deshabilitado pero tus archivos permanecen cifrados. Por favor, ve a tus ajustes personales para descifrar tus archivos.", +"Your download is being prepared. This might take some time if the files are big." => "Su descarga está siendo preparada. Esto podría tardar algo de tiempo si los archivos son grandes.", +"Error moving file" => "Error moviendo archivo", +"Error" => "Error", +"Name" => "Nombre", +"Size" => "Tamaño", +"Modified" => "Modificado", +"Invalid folder name. Usage of 'Shared' is reserved." => "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado.", +"%s could not be renamed" => "%s no pudo ser renombrado", +"Upload" => "Subir", +"File handling" => "Administración de archivos", +"Maximum upload size" => "Tamaño máximo de subida", +"max. possible: " => "máx. posible:", +"Needed for multi-file and folder downloads." => "Necesario para multi-archivo y descarga de carpetas", +"Enable ZIP-download" => "Habilitar descarga en ZIP", +"0 is unlimited" => "0 significa ilimitado", +"Maximum input size for ZIP files" => "Tamaño máximo para archivos ZIP de entrada", +"Save" => "Guardar", +"New" => "Nuevo", +"New text file" => "Nuevo archivo de texto", +"Text file" => "Archivo de texto", +"New folder" => "Nueva carpeta", +"Folder" => "Carpeta", +"From link" => "Desde enlace", +"Deleted files" => "Archivos eliminados", +"Cancel upload" => "Cancelar subida", +"You don’t have permission to upload or create files here" => "No tienes permisos para subir o crear archivos aquí.", +"Nothing in here. Upload something!" => "No hay nada aquí. ¡Suba algo!", +"Download" => "Descargar", +"Delete" => "Eliminar", +"Upload too large" => "Subida demasido grande", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor.", +"Files are being scanned, please wait." => "Los archivos están siendo escaneados, por favor espere.", +"Current scanning" => "Escaneo actual", +"Upgrading filesystem cache..." => "Actualizando caché del sistema de archivos..." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 9f674b27e63ac577b96ac76ec6005ddd6979959b..fd0315277380099f6a3b2314ff6ae08ad95df021 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -2,6 +2,16 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Ei saa liigutada faili %s - samanimeline fail on juba olemas", "Could not move %s" => "%s liigutamine ebaõnnestus", +"File name cannot be empty." => "Faili nimi ei saa olla tühi.", +"File name must not contain \"/\". Please choose a different name." => "Faili nimi ei tohi sisaldada \"/\". Palun vali mõni teine nimi.", +"The name %s is already used in the folder %s. Please choose a different name." => "Nimi %s on juba kasutusel kataloogis %s. Palun vali mõni teine nimi.", +"Not a valid source" => "Pole korrektne lähteallikas", +"Server is not allowed to open URLs, please check the server configuration" => "Server ei võimalda URL-ide avamist, palun kontrolli serveri seadistust", +"Error while downloading %s to %s" => "Viga %s allalaadimisel %s", +"Error when creating the file" => "Viga faili loomisel", +"Folder name cannot be empty." => "Kataloogi nimi ei saa olla tühi.", +"Folder name must not contain \"/\". Please choose a different name." => "Kataloogi nimi ei tohi sisaldada \"/\". Palun vali mõni teine nimi.", +"Error when creating the folder" => "Viga kataloogi loomisel", "Unable to set upload directory." => "Üleslaadimiste kausta määramine ebaõnnestus.", "Invalid Token" => "Vigane kontrollkood", "No file was uploaded. Unknown error" => "Ühtegi faili ei laetud üles. Tundmatu viga", @@ -13,38 +23,47 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Ajutiste failide kaust puudub", "Failed to write to disk" => "Kettale kirjutamine ebaõnnestus", "Not enough storage available" => "Saadaval pole piisavalt ruumi", +"Upload failed. Could not get file info." => "Üleslaadimine ebaõnnestus. Faili info hankimine ebaõnnestus.", +"Upload failed. Could not find uploaded file" => "Üleslaadimine ebaõnnestus. Üleslaetud faili ei leitud", "Invalid directory." => "Vigane kaust.", "Files" => "Failid", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Ei saa üles laadida {filename}, kuna see on kataloog või selle suurus on 0 baiti", "Not enough space available" => "Pole piisavalt ruumi", "Upload cancelled." => "Üleslaadimine tühistati.", +"Could not get result from server." => "Serverist ei saadud tulemusi", "File upload is in progress. Leaving the page now will cancel the upload." => "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise.", -"URL cannot be empty." => "URL ei saa olla tühi.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Vigane kausta nimi. 'Shared' kasutamine on reserveeritud ownCloud poolt.", -"Error" => "Viga", +"URL cannot be empty" => "URL ei saa olla tühi", +"In the home folder 'Shared' is a reserved filename" => "Kodukataloogis 'Shared' on reserveeritud failinimi", +"{new_name} already exists" => "{new_name} on juba olemas", +"Could not create file" => "Ei suuda luua faili", +"Could not create folder" => "Ei suuda luua kataloogi", +"Error fetching URL" => "Viga URL-i haaramisel", "Share" => "Jaga", "Delete permanently" => "Kustuta jäädavalt", "Rename" => "Nimeta ümber", "Pending" => "Ootel", -"{new_name} already exists" => "{new_name} on juba olemas", -"replace" => "asenda", -"suggest name" => "soovita nime", -"cancel" => "loobu", +"Could not rename file" => "Ei suuda faili ümber nimetada", "replaced {new_name} with {old_name}" => "asendas nime {old_name} nimega {new_name}", "undo" => "tagasi", +"Error deleting file." => "Viga faili kustutamisel.", "_%n folder_::_%n folders_" => array("%n kataloog","%n kataloogi"), "_%n file_::_%n files_" => array("%n fail","%n faili"), "{dirs} and {files}" => "{dirs} ja {files}", "_Uploading %n file_::_Uploading %n files_" => array("Laadin üles %n faili","Laadin üles %n faili"), "'.' is an invalid file name." => "'.' on vigane failinimi.", -"File name cannot be empty." => "Faili nimi ei saa olla tühi.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud.", "Your storage is full, files can not be updated or synced anymore!" => "Sinu andmemaht on täis! Faile ei uuendata ega sünkroniseerita!", "Your storage is almost full ({usedSpacePercent}%)" => "Su andmemaht on peaaegu täis ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Krüpteerimisrakend on lubatud, kuid võtmeid pole lähtestatud. Palun logi välja ning uuesti sisse.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Vigane Krüpteerimisrakendi privaatvõti . Palun uuenda oma privaatse võtme parool oma personaasete seadete all taastamaks ligipääsu oma krüpteeritud failidele.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Krüpteering on keelatud, kuid sinu failid on endiselt krüpteeritud. Palun vaata oma personaalseid seadeid oma failide dekrüpteerimiseks.", "Your download is being prepared. This might take some time if the files are big." => "Valmistatakse allalaadimist. See võib võtta veidi aega, kui on tegu suurte failidega. ", +"Error moving file" => "Viga faili eemaldamisel", +"Error" => "Viga", "Name" => "Nimi", "Size" => "Suurus", "Modified" => "Muudetud", +"Invalid folder name. Usage of 'Shared' is reserved." => "Vigane kausta nimi. Nime 'Shared' kasutamine on reserveeritud.", "%s could not be renamed" => "%s ümbernimetamine ebaõnnestus", "Upload" => "Lae üles", "File handling" => "Failide käsitlemine", @@ -56,15 +75,16 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Maksimaalne ZIP-faili sisestatava faili suurus", "Save" => "Salvesta", "New" => "Uus", +"New text file" => "Uus tekstifail", "Text file" => "Tekstifail", +"New folder" => "Uus kaust", "Folder" => "Kaust", "From link" => "Allikast", "Deleted files" => "Kustutatud failid", "Cancel upload" => "Tühista üleslaadimine", -"You don’t have write permissions here." => "Siin puudvad sul kirjutamisõigused.", +"You don’t have permission to upload or create files here" => "Sul puuduvad õigused siia failide üleslaadimiseks või tekitamiseks", "Nothing in here. Upload something!" => "Siin pole midagi. Lae midagi üles!", "Download" => "Lae alla", -"Unshare" => "Lõpeta jagamine", "Delete" => "Kustuta", "Upload too large" => "Üleslaadimine on liiga suur", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse.", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index 33ea47d5f04b35fc96567d042eadb091b8e6d67e..5df480c2bc3dd069b636bfc87fa3fe43a0a87900 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -2,6 +2,15 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Ezin da %s mugitu - Izen hau duen fitxategia dagoeneko existitzen da", "Could not move %s" => "Ezin dira fitxategiak mugitu %s", +"File name cannot be empty." => "Fitxategi izena ezin da hutsa izan.", +"File name must not contain \"/\". Please choose a different name." => "Fitxategi izenak ezin du \"/\" izan. Mesedez hautatu beste izen bat.", +"The name %s is already used in the folder %s. Please choose a different name." => "%s izena dagoeneko erabilita dago %s karpetan. Mesdez hautatu izen ezberdina.", +"Not a valid source" => "Ez da jatorri baliogarria", +"Error while downloading %s to %s" => "Errorea %s %sra deskargatzerakoan", +"Error when creating the file" => "Errorea fitxategia sortzerakoan", +"Folder name cannot be empty." => "Karpeta izena ezin da hutsa izan.", +"Folder name must not contain \"/\". Please choose a different name." => "Karpeta izenak ezin du \"/\" izan. Mesedez hautatu beste izen bat.", +"Error when creating the folder" => "Errorea karpeta sortzerakoan", "Unable to set upload directory." => "Ezin da igoera direktorioa ezarri.", "Invalid Token" => "Lekuko baliogabea", "No file was uploaded. Unknown error" => "Ez da fitxategirik igo. Errore ezezaguna", @@ -13,37 +22,46 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Aldi bateko karpeta falta da", "Failed to write to disk" => "Errore bat izan da diskoan idazterakoan", "Not enough storage available" => "Ez dago behar aina leku erabilgarri,", +"Upload failed. Could not get file info." => "Igoerak huts egin du. Ezin izan da fitxategiaren informazioa eskuratu.", +"Upload failed. Could not find uploaded file" => "Igoerak huts egin du. Ezin izan da igotako fitxategia aurkitu", "Invalid directory." => "Baliogabeko karpeta.", "Files" => "Fitxategiak", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Ezin da {filename} igo karpeta bat delako edo 0 byte dituelako", "Not enough space available" => "Ez dago leku nahikorik.", "Upload cancelled." => "Igoera ezeztatuta", +"Could not get result from server." => "Ezin da zerbitzaritik emaitzik lortu", "File upload is in progress. Leaving the page now will cancel the upload." => "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du.", -"URL cannot be empty." => "URLa ezin da hutsik egon.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Karpeta izne baliogabea. \"Shared\" karpeta erabilpena OwnCloudentzat erreserbaturik dago.", -"Error" => "Errorea", +"URL cannot be empty" => "URLa ezin da hutsik egon", +"In the home folder 'Shared' is a reserved filename" => "Etxeko (home) karpetan 'Shared' erreserbatutako fitxategi izena da", +"{new_name} already exists" => "{new_name} dagoeneko existitzen da", +"Could not create file" => "Ezin izan da fitxategia sortu", +"Could not create folder" => "Ezin izan da karpeta sortu", "Share" => "Elkarbanatu", "Delete permanently" => "Ezabatu betirako", "Rename" => "Berrizendatu", "Pending" => "Zain", -"{new_name} already exists" => "{new_name} dagoeneko existitzen da", -"replace" => "ordeztu", -"suggest name" => "aholkatu izena", -"cancel" => "ezeztatu", +"Could not rename file" => "Ezin izan da fitxategia berrizendatu", "replaced {new_name} with {old_name}" => " {new_name}-k {old_name} ordezkatu du", "undo" => "desegin", +"Error deleting file." => "Errorea fitxategia ezabatzerakoan.", "_%n folder_::_%n folders_" => array("karpeta %n","%n karpeta"), "_%n file_::_%n files_" => array("fitxategi %n","%n fitxategi"), +"{dirs} and {files}" => "{dirs} eta {files}", "_Uploading %n file_::_Uploading %n files_" => array("Fitxategi %n igotzen","%n fitxategi igotzen"), "'.' is an invalid file name." => "'.' ez da fitxategi izen baliogarria.", -"File name cannot be empty." => "Fitxategi izena ezin da hutsa izan.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta.", "Your storage is full, files can not be updated or synced anymore!" => "Zure biltegiratzea beterik dago, ezingo duzu aurrerantzean fitxategirik igo edo sinkronizatu!", "Your storage is almost full ({usedSpacePercent}%)" => "Zure biltegiratzea nahiko beterik dago (%{usedSpacePercent})", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Enkriptazio aplikazioa gaituta dago baina zure gakoak ez daude konfiguratuta, mesedez saioa bukatu eta berriro hasi", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Enkriptazio aplikaziorako gako pribatu okerra. Mesedez eguneratu zure gako pribatuaren pasahitza zure ezarpen pertsonaletan zure enkriptatuko fitxategietarako sarrera berreskuratzeko.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Enkriptazioa desgaitua izan da baina zure fitxategiak oraindik enkriptatuta daude. Mesedez jo zure ezarpen pertsonaletara zure fitxategiak dekodifikatzeko.", "Your download is being prepared. This might take some time if the files are big." => "Zure deskarga prestatu egin behar da. Denbora bat har lezake fitxategiak handiak badira. ", +"Error moving file" => "Errorea fitxategia mugitzean", +"Error" => "Errorea", "Name" => "Izena", "Size" => "Tamaina", "Modified" => "Aldatuta", +"Invalid folder name. Usage of 'Shared' is reserved." => "Baliogabeako karpeta izena. 'Shared' izena erreserbatuta dago.", "%s could not be renamed" => "%s ezin da berrizendatu", "Upload" => "Igo", "File handling" => "Fitxategien kudeaketa", @@ -55,15 +73,16 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "ZIP fitxategien gehienezko tamaina", "Save" => "Gorde", "New" => "Berria", +"New text file" => "Testu fitxategi berria", "Text file" => "Testu fitxategia", +"New folder" => "Karpeta berria", "Folder" => "Karpeta", "From link" => "Estekatik", "Deleted files" => "Ezabatutako fitxategiak", "Cancel upload" => "Ezeztatu igoera", -"You don’t have write permissions here." => "Ez duzu hemen idazteko baimenik.", +"You don’t have permission to upload or create files here" => "Ez duzu fitxategiak hona igotzeko edo hemen sortzeko baimenik", "Nothing in here. Upload something!" => "Ez dago ezer. Igo zerbait!", "Download" => "Deskargatu", -"Unshare" => "Ez elkarbanatu", "Delete" => "Ezabatu", "Upload too large" => "Igoera handiegia da", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Igotzen saiatzen ari zaren fitxategiak zerbitzari honek igotzeko onartzen duena baino handiagoak dira.", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 46d7cfe73efef0518dbe1d76b17970df8e9ec06d..4f3257bc075f3dc6f604714f3b599bcdb914a663 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -2,6 +2,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "%s نمی تواند حرکت کند - در حال حاضر پرونده با این نام وجود دارد. ", "Could not move %s" => "%s نمی تواند حرکت کند ", +"File name cannot be empty." => "نام پرونده نمی تواند خالی باشد.", "Unable to set upload directory." => "قادر به تنظیم پوشه آپلود نمی باشد.", "Invalid Token" => "رمز نامعتبر", "No file was uploaded. Unknown error" => "هیچ فایلی آپلود نشد.خطای ناشناس", @@ -18,28 +19,22 @@ $TRANSLATIONS = array( "Not enough space available" => "فضای کافی در دسترس نیست", "Upload cancelled." => "بار گذاری لغو شد", "File upload is in progress. Leaving the page now will cancel the upload." => "آپلودکردن پرونده در حال پیشرفت است. در صورت خروج از صفحه آپلود لغو میگردد. ", -"URL cannot be empty." => "URL نمی تواند خالی باشد.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "نام پوشه نامعتبر است. استفاده از 'به اشتراک گذاشته شده' متعلق به ownCloud میباشد.", -"Error" => "خطا", +"{new_name} already exists" => "{نام _جدید} در حال حاضر وجود دارد.", "Share" => "اشتراک‌گذاری", "Delete permanently" => "حذف قطعی", "Rename" => "تغییرنام", "Pending" => "در انتظار", -"{new_name} already exists" => "{نام _جدید} در حال حاضر وجود دارد.", -"replace" => "جایگزین", -"suggest name" => "پیشنهاد نام", -"cancel" => "لغو", "replaced {new_name} with {old_name}" => "{نام_جدید} با { نام_قدیمی} جایگزین شد.", "undo" => "بازگشت", "_%n folder_::_%n folders_" => array(""), "_%n file_::_%n files_" => array(""), "_Uploading %n file_::_Uploading %n files_" => array(""), "'.' is an invalid file name." => "'.' یک نام پرونده نامعتبر است.", -"File name cannot be empty." => "نام پرونده نمی تواند خالی باشد.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "نام نامعتبر ، '\\', '/', '<', '>', ':', '\"', '|', '?' و '*' مجاز نمی باشند.", "Your storage is full, files can not be updated or synced anymore!" => "فضای ذخیره ی شما کاملا پر است، بیش از این فایلها بهنگام یا همگام سازی نمی توانند بشوند!", "Your storage is almost full ({usedSpacePercent}%)" => "فضای ذخیره ی شما تقریبا پر است ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "دانلود شما در حال آماده شدن است. در صورتیکه پرونده ها بزرگ باشند ممکن است مدتی طول بکشد.", +"Error" => "خطا", "Name" => "نام", "Size" => "اندازه", "Modified" => "تاریخ", @@ -55,14 +50,13 @@ $TRANSLATIONS = array( "Save" => "ذخیره", "New" => "جدید", "Text file" => "فایل متنی", +"New folder" => "پوشه جدید", "Folder" => "پوشه", "From link" => "از پیوند", "Deleted files" => "فایل های حذف شده", "Cancel upload" => "متوقف کردن بار گذاری", -"You don’t have write permissions here." => "شما اجازه ی نوشتن در اینجا را ندارید", "Nothing in here. Upload something!" => "اینجا هیچ چیز نیست.", "Download" => "دانلود", -"Unshare" => "لغو اشتراک", "Delete" => "حذف", "Upload too large" => "سایز فایل برای آپلود زیاد است(م.تنظیمات در php.ini)", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 5345bad902b392b0668dc96219398fb9e341cf8c..d1241b77da07bf1c1f2e7e197c76c002b486ac98 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -2,15 +2,26 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Kohteen %s siirto ei onnistunut - Tiedosto samalla nimellä on jo olemassa", "Could not move %s" => "Kohteen %s siirto ei onnistunut", +"File name cannot be empty." => "Tiedoston nimi ei voi olla tyhjä.", +"File name must not contain \"/\". Please choose a different name." => "Tiedoston nimessä ei saa olla merkkiä \"/\". Valitse toinen nimi.", +"The name %s is already used in the folder %s. Please choose a different name." => "Nimi %s on jo käytössä kansiossa %s. Valitse toinen nimi.", +"Not a valid source" => "Virheellinen lähde", +"Server is not allowed to open URLs, please check the server configuration" => "Palvelimen ei ole lupa avata verkko-osoitteita. Tarkista palvelimen asetukset", +"Error while downloading %s to %s" => "Virhe ladatessa kohdetta %s sijaintiin %s", +"Error when creating the file" => "Virhe tiedostoa luotaessa", +"Folder name cannot be empty." => "Kansion nimi ei voi olla tyhjä.", +"Folder name must not contain \"/\". Please choose a different name." => "Kansion nimessä ei saa olla merkkiä \"/\". Valitse toinen nimi.", +"Error when creating the folder" => "Virhe kansiota luotaessa", "No file was uploaded. Unknown error" => "Tiedostoa ei lähetetty. Tuntematon virhe", "There is no error, the file uploaded with success" => "Ei virheitä, tiedosto lähetettiin onnistuneesti", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Lähetetyn tiedoston koko ylittää php.ini-tiedoston upload_max_filesize-säännön:", -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Ladattavan tiedoston maksimikoko ylittää MAX_FILE_SIZE dirketiivin, joka on määritelty HTML-lomakkeessa", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Lähetettävän tiedoston enimmäiskoko ylittää HTML-lomakkeessa määritellyn MAX_FILE_SIZE-säännön", "The uploaded file was only partially uploaded" => "Tiedoston lähetys onnistui vain osittain", "No file was uploaded" => "Yhtäkään tiedostoa ei lähetetty", "Missing a temporary folder" => "Tilapäiskansio puuttuu", "Failed to write to disk" => "Levylle kirjoitus epäonnistui", "Not enough storage available" => "Tallennustilaa ei ole riittävästi käytettävissä", +"Upload failed. Could not find uploaded file" => "Lähetys epäonnistui. Lähettävää tiedostoa ei löydetty.", "Invalid directory." => "Virheellinen kansio.", "Files" => "Tiedostot", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Kohdetta {filename} ei voi lähettää, koska se on joko kansio tai sen koko on 0 tavua", @@ -18,31 +29,35 @@ $TRANSLATIONS = array( "Upload cancelled." => "Lähetys peruttu.", "Could not get result from server." => "Tuloksien saaminen palvelimelta ei onnistunut.", "File upload is in progress. Leaving the page now will cancel the upload." => "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen.", -"URL cannot be empty." => "Verkko-osoite ei voi olla tyhjä", -"Error" => "Virhe", +"URL cannot be empty" => "Osoite ei voi olla tyhjä", +"{new_name} already exists" => "{new_name} on jo olemassa", +"Could not create file" => "Tiedoston luominen epäonnistui", +"Could not create folder" => "Kansion luominen epäonnistui", +"Error fetching URL" => "Virhe noutaessa verkko-osoitetta", "Share" => "Jaa", "Delete permanently" => "Poista pysyvästi", "Rename" => "Nimeä uudelleen", "Pending" => "Odottaa", -"{new_name} already exists" => "{new_name} on jo olemassa", -"replace" => "korvaa", -"suggest name" => "ehdota nimeä", -"cancel" => "peru", +"Could not rename file" => "Tiedoston nimeäminen uudelleen epäonnistui", "undo" => "kumoa", +"Error deleting file." => "Virhe tiedostoa poistaessa.", "_%n folder_::_%n folders_" => array("%n kansio","%n kansiota"), "_%n file_::_%n files_" => array("%n tiedosto","%n tiedostoa"), "{dirs} and {files}" => "{dirs} ja {files}", "_Uploading %n file_::_Uploading %n files_" => array("Lähetetään %n tiedosto","Lähetetään %n tiedostoa"), "'.' is an invalid file name." => "'.' on virheellinen nimi tiedostolle.", -"File name cannot be empty." => "Tiedoston nimi ei voi olla tyhjä.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja.", "Your storage is full, files can not be updated or synced anymore!" => "Tallennustila on loppu, tiedostoja ei voi enää päivittää tai synkronoida!", "Your storage is almost full ({usedSpacePercent}%)" => "Tallennustila on melkein loppu ({usedSpacePercent}%)", +"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Salaus poistettiin käytöstä, mutta tiedostosi ovat edelleen salattuina. Siirry henkilökohtaisiin asetuksiin avataksesi tiedostojesi salauksen.", "Your download is being prepared. This might take some time if the files are big." => "Lataustasi valmistellaan. Tämä saattaa kestää hetken, jos tiedostot ovat suuria kooltaan.", "Error moving file" => "Virhe tiedostoa siirrettäessä", +"Error" => "Virhe", "Name" => "Nimi", "Size" => "Koko", "Modified" => "Muokattu", +"Invalid folder name. Usage of 'Shared' is reserved." => "Virheellinen kansion nimi. 'Shared':n käyttö on varattu.", +"%s could not be renamed" => "kohteen %s nimeäminen uudelleen epäonnistui", "Upload" => "Lähetä", "File handling" => "Tiedostonhallinta", "Maximum upload size" => "Lähetettävän tiedoston suurin sallittu koko", @@ -53,15 +68,16 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "ZIP-tiedostojen enimmäiskoko", "Save" => "Tallenna", "New" => "Uusi", +"New text file" => "Uusi tekstitiedosto", "Text file" => "Tekstitiedosto", +"New folder" => "Uusi kansio", "Folder" => "Kansio", "From link" => "Linkistä", "Deleted files" => "Poistetut tiedostot", "Cancel upload" => "Peru lähetys", -"You don’t have write permissions here." => "Tunnuksellasi ei ole kirjoitusoikeuksia tänne.", +"You don’t have permission to upload or create files here" => "Käyttöoikeutesi eivät riitä tiedostojen lähettämiseen tai kansioiden luomiseen tähän sijaintiin", "Nothing in here. Upload something!" => "Täällä ei ole mitään. Lähetä tänne jotakin!", "Download" => "Lataa", -"Unshare" => "Peru jakaminen", "Delete" => "Poista", "Upload too large" => "Lähetettävä tiedosto on liian suuri", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan.", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 03505a2a26988aef322b7f0210b10705b3f5a1fa..73b89434778b3a14477de2017ec0b26fcf4a42de 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -2,6 +2,16 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Impossible de déplacer %s - Un fichier possédant ce nom existe déjà", "Could not move %s" => "Impossible de déplacer %s", +"File name cannot be empty." => "Le nom de fichier ne peut être vide.", +"File name must not contain \"/\". Please choose a different name." => "Le nom de fichier ne doit pas contenir \"/\". Merci de choisir un nom différent.", +"The name %s is already used in the folder %s. Please choose a different name." => "Le nom %s est déjà utilisé dans le dossier %s. Merci de choisir un nom différent.", +"Not a valid source" => "La source n'est pas valide", +"Server is not allowed to open URLs, please check the server configuration" => "Le serveur n'est pas autorisé à ouvrir des URL, veuillez vérifier la configuration du serveur", +"Error while downloading %s to %s" => "Erreur pendant le téléchargement de %s à %s", +"Error when creating the file" => "Erreur pendant la création du fichier", +"Folder name cannot be empty." => "Le nom de dossier ne peux pas être vide.", +"Folder name must not contain \"/\". Please choose a different name." => "Le nom de dossier ne doit pas contenir \"/\". Merci de choisir un nom différent.", +"Error when creating the folder" => "Erreur pendant la création du dossier", "Unable to set upload directory." => "Impossible de définir le dossier pour l'upload, charger.", "Invalid Token" => "Jeton non valide", "No file was uploaded. Unknown error" => "Aucun fichier n'a été envoyé. Erreur inconnue", @@ -22,34 +32,38 @@ $TRANSLATIONS = array( "Upload cancelled." => "Envoi annulé.", "Could not get result from server." => "Ne peut recevoir les résultats du serveur.", "File upload is in progress. Leaving the page now will cancel the upload." => "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier.", -"URL cannot be empty." => "L'URL ne peut-être vide", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud", -"Error" => "Erreur", +"URL cannot be empty" => "L'URL ne peut pas être vide", +"In the home folder 'Shared' is a reserved filename" => "Dans le dossier home, 'Partagé' est un nom de fichier réservé", +"{new_name} already exists" => "{new_name} existe déjà", +"Could not create file" => "Impossible de créer le fichier", +"Could not create folder" => "Impossible de créer le dossier", +"Error fetching URL" => "Erreur d'accès à l'URL", "Share" => "Partager", "Delete permanently" => "Supprimer de façon définitive", "Rename" => "Renommer", "Pending" => "En attente", -"{new_name} already exists" => "{new_name} existe déjà", -"replace" => "remplacer", -"suggest name" => "Suggérer un nom", -"cancel" => "annuler", +"Could not rename file" => "Impossible de renommer le fichier", "replaced {new_name} with {old_name}" => "{new_name} a été remplacé par {old_name}", "undo" => "annuler", +"Error deleting file." => "Erreur pendant la suppression du fichier.", "_%n folder_::_%n folders_" => array("%n dossier","%n dossiers"), "_%n file_::_%n files_" => array("%n fichier","%n fichiers"), -"{dirs} and {files}" => "{dir} et {files}", +"{dirs} and {files}" => "{dirs} et {files}", "_Uploading %n file_::_Uploading %n files_" => array("Téléversement de %n fichier","Téléversement de %n fichiers"), "'.' is an invalid file name." => "'.' n'est pas un nom de fichier valide.", -"File name cannot be empty." => "Le nom de fichier ne peut être vide.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés.", "Your storage is full, files can not be updated or synced anymore!" => "Votre espage de stockage est plein, les fichiers ne peuvent plus être téléversés ou synchronisés !", "Your storage is almost full ({usedSpacePercent}%)" => "Votre espace de stockage est presque plein ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "L'application de chiffrement est activée mais vos clés ne sont pas initialisées, veuillez vous déconnecter et ensuite vous reconnecter.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Votre clef privée pour l'application de chiffrement est invalide ! Veuillez mettre à jour le mot de passe de votre clef privée dans vos paramètres personnels pour récupérer l'accès à vos fichiers chiffrés.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Le chiffrement était désactivé mais vos fichiers sont toujours chiffrés. Veuillez vous rendre sur vos Paramètres personnels pour déchiffrer vos fichiers.", "Your download is being prepared. This might take some time if the files are big." => "Votre téléchargement est cours de préparation. Ceci peut nécessiter un certain temps si les fichiers sont volumineux.", "Error moving file" => "Erreur lors du déplacement du fichier", +"Error" => "Erreur", "Name" => "Nom", "Size" => "Taille", "Modified" => "Modifié", +"Invalid folder name. Usage of 'Shared' is reserved." => "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée.", "%s could not be renamed" => "%s ne peut être renommé", "Upload" => "Envoyer", "File handling" => "Gestion des fichiers", @@ -61,15 +75,16 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Taille maximale pour les fichiers ZIP", "Save" => "Sauvegarder", "New" => "Nouveau", +"New text file" => "Nouveau fichier texte", "Text file" => "Fichier texte", +"New folder" => "Nouveau dossier", "Folder" => "Dossier", "From link" => "Depuis le lien", "Deleted files" => "Fichiers supprimés", "Cancel upload" => "Annuler l'envoi", -"You don’t have write permissions here." => "Vous n'avez pas le droit d'écriture ici.", +"You don’t have permission to upload or create files here" => "Vous n'avez pas la permission de téléverser ou de créer des fichiers ici", "Nothing in here. Upload something!" => "Il n'y a rien ici ! Envoyez donc quelque chose :)", "Download" => "Télécharger", -"Unshare" => "Ne plus partager", "Delete" => "Supprimer", "Upload too large" => "Téléversement trop volumineux", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur.", diff --git a/apps/files/l10n/fr_CA.php b/apps/files/l10n/fr_CA.php new file mode 100644 index 0000000000000000000000000000000000000000..3c711e6b78a257d953a010dc2feba5ae4d139369 --- /dev/null +++ b/apps/files/l10n/fr_CA.php @@ -0,0 +1,7 @@ + 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/gl.php b/apps/files/l10n/gl.php index 2766478650a31d707dc2179e6a2d72dae577eda3..1d22691d93c21d80d380ef504a6abe40c6454b83 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -1,7 +1,17 @@ "Non se moveu %s - Xa existe un ficheiro con ese nome.", +"Could not move %s - File with this name already exists" => "Non foi posíbel mover %s; Xa existe un ficheiro con ese nome.", "Could not move %s" => "Non foi posíbel mover %s", +"File name cannot be empty." => "O nome de ficheiro non pode estar baleiro", +"File name must not contain \"/\". Please choose a different name." => "O nome do ficheiro non pode conter «/». Escolla outro nome.", +"The name %s is already used in the folder %s. Please choose a different name." => "Xa existe o nome %s no cartafol %s. Escolla outro nome.", +"Not a valid source" => "Esta orixe non é correcta", +"Server is not allowed to open URLs, please check the server configuration" => "O servidor non ten permisos para abrir os enderezos URL, comprobe a configuración do servidor", +"Error while downloading %s to %s" => "Produciuse un erro ao descargar %s en %s", +"Error when creating the file" => "Produciuse un erro ao crear o ficheiro", +"Folder name cannot be empty." => "O nome de cartafol non pode estar baleiro.", +"Folder name must not contain \"/\". Please choose a different name." => "O nome do cartafol non pode conter «/». Escolla outro nome.", +"Error when creating the folder" => "Produciuse un erro ao crear o cartafol", "Unable to set upload directory." => "Non é posíbel configurar o directorio de envíos.", "Invalid Token" => "Marca incorrecta", "No file was uploaded. Unknown error" => "Non se enviou ningún ficheiro. Produciuse un erro descoñecido.", @@ -22,34 +32,38 @@ $TRANSLATIONS = array( "Upload cancelled." => "Envío cancelado.", "Could not get result from server." => "Non foi posíbel obter o resultado do servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "O envío do ficheiro está en proceso. Saír agora da páxina cancelará o envío.", -"URL cannot be empty." => "O URL non pode quedar baleiro.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nome de cartafol incorrecto. O uso de «Compartido» e «Shared» está reservado para o ownClod", -"Error" => "Erro", +"URL cannot be empty" => "O URL non pode quedar en branco.", +"In the home folder 'Shared' is a reserved filename" => "«Shared» dentro do cartafol persoal é un nome reservado", +"{new_name} already exists" => "Xa existe un {new_name}", +"Could not create file" => "Non foi posíbel crear o ficheiro", +"Could not create folder" => "Non foi posíbel crear o cartafol", +"Error fetching URL" => "Produciuse un erro ao obter o URL", "Share" => "Compartir", "Delete permanently" => "Eliminar permanentemente", "Rename" => "Renomear", "Pending" => "Pendentes", -"{new_name} already exists" => "Xa existe un {new_name}", -"replace" => "substituír", -"suggest name" => "suxerir nome", -"cancel" => "cancelar", +"Could not rename file" => "Non foi posíbel renomear o ficheiro", "replaced {new_name} with {old_name}" => "substituír {new_name} por {old_name}", "undo" => "desfacer", +"Error deleting file." => "Produciuse un erro ao eliminar o ficheiro.", "_%n folder_::_%n folders_" => array("%n cartafol","%n cartafoles"), "_%n file_::_%n files_" => array("%n ficheiro","%n ficheiros"), "{dirs} and {files}" => "{dirs} e {files}", "_Uploading %n file_::_Uploading %n files_" => array("Cargando %n ficheiro","Cargando %n ficheiros"), "'.' is an invalid file name." => "«.» é un nome de ficheiro incorrecto", -"File name cannot be empty." => "O nome de ficheiro non pode estar baleiro", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome incorrecto, non se permite «\\», «/», «<», «>», «:», «\"», «|», «?» e «*».", "Your storage is full, files can not be updated or synced anymore!" => "O seu espazo de almacenamento está cheo, non é posíbel actualizar ou sincronizar máis os ficheiros!", "Your storage is almost full ({usedSpacePercent}%)" => "O seu espazo de almacenamento está case cheo ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "O aplicativo de cifrado está activado, mais as chaves non foron inicializadas, saia da sesión e volva a acceder de novo", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "A chave privada para o aplicativo de cifrado non é correcta. Actualice o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros cifrados.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "O cifrado foi desactivado, mais os ficheiros están cifrados. Vaia á configuración persoal para descifrar os ficheiros.", "Your download is being prepared. This might take some time if the files are big." => "Está a prepararse a súa descarga. Isto pode levar bastante tempo se os ficheiros son grandes.", "Error moving file" => "Produciuse un erro ao mover o ficheiro", +"Error" => "Erro", "Name" => "Nome", "Size" => "Tamaño", "Modified" => "Modificado", +"Invalid folder name. Usage of 'Shared' is reserved." => "Nome de cartafol non válido. O uso de «Shared» está reservado.", "%s could not be renamed" => "%s non pode cambiar de nome", "Upload" => "Enviar", "File handling" => "Manexo de ficheiro", @@ -61,15 +75,16 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Tamaño máximo de descarga para os ficheiros ZIP", "Save" => "Gardar", "New" => "Novo", +"New text file" => "Ficheiro novo de texto", "Text file" => "Ficheiro de texto", +"New folder" => "Novo cartafol", "Folder" => "Cartafol", "From link" => "Desde a ligazón", "Deleted files" => "Ficheiros eliminados", "Cancel upload" => "Cancelar o envío", -"You don’t have write permissions here." => "Non ten permisos para escribir aquí.", +"You don’t have permission to upload or create files here" => "Non ten permisos para enviar ou crear ficheiros aquí.", "Nothing in here. Upload something!" => "Aquí non hai nada. Envíe algo.", "Download" => "Descargar", -"Unshare" => "Deixar de compartir", "Delete" => "Eliminar", "Upload too large" => "Envío demasiado grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os ficheiros que tenta enviar exceden do tamaño máximo permitido neste servidor", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index bc7ecdb0716512d64396497514536800d747fa48..0cdb178254e5824ed9d5d4aa47c3c6f38911db3a 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -2,6 +2,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "לא ניתן להעביר את %s - קובץ בשם הזה כבר קיים", "Could not move %s" => "לא ניתן להעביר את %s", +"File name cannot be empty." => "שם קובץ אינו יכול להיות ריק", "No file was uploaded. Unknown error" => "לא הועלה קובץ. טעות בלתי מזוהה.", "There is no error, the file uploaded with success" => "לא התרחשה שגיאה, הקובץ הועלה בהצלחה", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:", @@ -11,26 +12,25 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "תקיה זמנית חסרה", "Failed to write to disk" => "הכתיבה לכונן נכשלה", "Not enough storage available" => "אין די שטח פנוי באחסון", +"Upload failed. Could not get file info." => "העלאה נכשלה. לא ניתן להשיג את פרטי הקובץ.", "Invalid directory." => "תיקייה שגויה.", "Files" => "קבצים", "Upload cancelled." => "ההעלאה בוטלה.", +"Could not get result from server." => "לא ניתן לגשת לתוצאות מהשרת.", "File upload is in progress. Leaving the page now will cancel the upload." => "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה.", -"URL cannot be empty." => "קישור אינו יכול להיות ריק.", -"Error" => "שגיאה", +"{new_name} already exists" => "{new_name} כבר קיים", "Share" => "שתף", "Delete permanently" => "מחק לצמיתות", "Rename" => "שינוי שם", "Pending" => "ממתין", -"{new_name} already exists" => "{new_name} כבר קיים", -"replace" => "החלפה", -"suggest name" => "הצעת שם", -"cancel" => "ביטול", "replaced {new_name} with {old_name}" => "{new_name} הוחלף ב־{old_name}", "undo" => "ביטול", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'.", +"Your storage is almost full ({usedSpacePercent}%)" => "שטח האחסון שלך כמעט מלא ({usedSpacePercent}%)", +"Error" => "שגיאה", "Name" => "שם", "Size" => "גודל", "Modified" => "זמן שינוי", @@ -47,10 +47,10 @@ $TRANSLATIONS = array( "Text file" => "קובץ טקסט", "Folder" => "תיקייה", "From link" => "מקישור", +"Deleted files" => "קבצים שנמחקו", "Cancel upload" => "ביטול ההעלאה", "Nothing in here. Upload something!" => "אין כאן שום דבר. אולי ברצונך להעלות משהו?", "Download" => "הורדה", -"Unshare" => "הסר שיתוף", "Delete" => "מחיקה", "Upload too large" => "העלאה גדולה מידי", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה.", diff --git a/apps/files/l10n/hi.php b/apps/files/l10n/hi.php index 549c928320d2c788764605ce69f055dd4d9c1699..ae01bfc47e1ac6f2fb3043a291f650d4d6124c29 100644 --- a/apps/files/l10n/hi.php +++ b/apps/files/l10n/hi.php @@ -1,10 +1,10 @@ "त्रुटि", "Share" => "साझा करें", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), +"Error" => "त्रुटि", "Upload" => "अपलोड ", "Save" => "सहेजें" ); diff --git a/apps/files/l10n/hr.php b/apps/files/l10n/hr.php index 60f1da844091fb75b639d4776b9a38fb96f17e2c..5048a15c8bbe0c2fb0612ce8a6410dcafb768ca9 100644 --- a/apps/files/l10n/hr.php +++ b/apps/files/l10n/hr.php @@ -9,17 +9,14 @@ $TRANSLATIONS = array( "Files" => "Datoteke", "Upload cancelled." => "Slanje poništeno.", "File upload is in progress. Leaving the page now will cancel the upload." => "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje.", -"Error" => "Greška", "Share" => "Podijeli", "Rename" => "Promjeni ime", "Pending" => "U tijeku", -"replace" => "zamjeni", -"suggest name" => "predloži ime", -"cancel" => "odustani", "undo" => "vrati", "_%n folder_::_%n folders_" => array("","",""), "_%n file_::_%n files_" => array("","",""), "_Uploading %n file_::_Uploading %n files_" => array("","",""), +"Error" => "Greška", "Name" => "Ime", "Size" => "Veličina", "Modified" => "Zadnja promjena", @@ -38,7 +35,6 @@ $TRANSLATIONS = array( "Cancel upload" => "Prekini upload", "Nothing in here. Upload something!" => "Nema ničega u ovoj mapi. Pošalji nešto!", "Download" => "Preuzimanje", -"Unshare" => "Makni djeljenje", "Delete" => "Obriši", "Upload too large" => "Prijenos je preobiman", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Datoteke koje pokušavate prenijeti prelaze maksimalnu veličinu za prijenos datoteka na ovom poslužitelju.", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index 4dd6a13d320f34831efecfe648df757caefe8eec..22c3926ed1c1452ecbd09548afb275b9440172fa 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -2,6 +2,16 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "%s áthelyezése nem sikerült - már létezik másik fájl ezzel a névvel", "Could not move %s" => "Nem sikerült %s áthelyezése", +"File name cannot be empty." => "A fájlnév nem lehet semmi.", +"File name must not contain \"/\". Please choose a different name." => "Az állomány neve nem tartalmazhatja a \"/\" karaktert. Kérem válasszon másik nevet!", +"The name %s is already used in the folder %s. Please choose a different name." => "A %s név már létezik a %s mappában. Kérem válasszon másik nevet!", +"Not a valid source" => "A kiinduló állomány érvénytelen", +"Server is not allowed to open URLs, please check the server configuration" => "A kiszolgálón nincs engedélyezve URL-ek megnyitása, kérem ellenőrizze a beállításokat", +"Error while downloading %s to %s" => "Hiba történt miközben %s-t letöltöttük %s-be", +"Error when creating the file" => "Hiba történt az állomány létrehozásakor", +"Folder name cannot be empty." => "A mappa neve nem maradhat kitöltetlenül", +"Folder name must not contain \"/\". Please choose a different name." => "A mappa neve nem tartalmazhatja a \"/\" karaktert. Kérem válasszon másik nevet!", +"Error when creating the folder" => "Hiba történt a mappa létrehozásakor", "Unable to set upload directory." => "Nem található a mappa, ahova feltölteni szeretne.", "Invalid Token" => "Hibás mappacím", "No file was uploaded. Unknown error" => "Nem történt feltöltés. Ismeretlen hiba", @@ -22,34 +32,38 @@ $TRANSLATIONS = array( "Upload cancelled." => "A feltöltést megszakítottuk.", "Could not get result from server." => "A kiszolgálótól nem kapható meg az eredmény.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést.", -"URL cannot be empty." => "Az URL nem lehet semmi.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Érvénytelen mappanév. A 'Shared' az ownCloud számára fenntartott elnevezés", -"Error" => "Hiba", +"URL cannot be empty" => "Az URL-cím nem maradhat kitöltetlenül", +"In the home folder 'Shared' is a reserved filename" => "A kiindulási mappában a 'Shared' egy belső használatra fenntartott név", +"{new_name} already exists" => "{new_name} már létezik", +"Could not create file" => "Az állomány nem hozható létre", +"Could not create folder" => "A mappa nem hozható létre", +"Error fetching URL" => "A megadott URL-ről nem sikerül adatokat kapni", "Share" => "Megosztás", "Delete permanently" => "Végleges törlés", "Rename" => "Átnevezés", "Pending" => "Folyamatban", -"{new_name} already exists" => "{new_name} már létezik", -"replace" => "írjuk fölül", -"suggest name" => "legyen más neve", -"cancel" => "mégse", +"Could not rename file" => "Az állomány nem nevezhető át", "replaced {new_name} with {old_name}" => "{new_name} fájlt kicseréltük ezzel: {old_name}", "undo" => "visszavonás", +"Error deleting file." => "Hiba a file törlése közben.", "_%n folder_::_%n folders_" => array("%n mappa","%n mappa"), "_%n file_::_%n files_" => array("%n állomány","%n állomány"), "{dirs} and {files}" => "{dirs} és {files}", "_Uploading %n file_::_Uploading %n files_" => array("%n állomány feltöltése","%n állomány feltöltése"), "'.' is an invalid file name." => "'.' fájlnév érvénytelen.", -"File name cannot be empty." => "A fájlnév nem lehet semmi.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'", "Your storage is full, files can not be updated or synced anymore!" => "A tároló tele van, a fájlok nem frissíthetőek vagy szinkronizálhatóak a jövőben.", "Your storage is almost full ({usedSpacePercent}%)" => "A tároló majdnem tele van ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Az állományok titkosítása engedélyezve van, de az Ön titkos kulcsai nincsenek beállítva. Ezért kérjük, hogy jelentkezzen ki, és lépjen be újra!", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Az állományok titkosításához használt titkos kulcsa érvénytelen. Kérjük frissítse a titkos kulcs jelszót a személyes beállításokban, hogy ismét hozzáférjen a titkosított állományaihoz!", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "A titkosítási funkciót kikapcsolták, de az Ön állományai még mindig titkosított állapotban vannak. A személyes beállításoknál tudja a titkosítást feloldani.", "Your download is being prepared. This might take some time if the files are big." => "Készül a letöltendő állomány. Ez eltarthat egy ideig, ha nagyok a fájlok.", "Error moving file" => "Az állomány áthelyezése nem sikerült.", +"Error" => "Hiba", "Name" => "Név", "Size" => "Méret", "Modified" => "Módosítva", +"Invalid folder name. Usage of 'Shared' is reserved." => "Érvénytelen mappanév. A 'Shared' a rendszer számára fenntartott elnevezés.", "%s could not be renamed" => "%s átnevezése nem sikerült", "Upload" => "Feltöltés", "File handling" => "Fájlkezelés", @@ -61,15 +75,16 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "ZIP-fájlok maximális kiindulási mérete", "Save" => "Mentés", "New" => "Új", +"New text file" => "Új szöveges file", "Text file" => "Szövegfájl", +"New folder" => "Új mappa", "Folder" => "Mappa", "From link" => "Feltöltés linkről", "Deleted files" => "Törölt fájlok", "Cancel upload" => "A feltöltés megszakítása", -"You don’t have write permissions here." => "Itt nincs írásjoga.", +"You don’t have permission to upload or create files here" => "Önnek nincs jogosultsága ahhoz, hogy ide állományokat töltsön föl, vagy itt újakat hozzon létre", "Nothing in here. Upload something!" => "Itt nincs semmi. Töltsön fel valamit!", "Download" => "Letöltés", -"Unshare" => "A megosztás visszavonása", "Delete" => "Törlés", "Upload too large" => "A feltöltés túl nagy", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet.", diff --git a/apps/files/l10n/ia.php b/apps/files/l10n/ia.php index 1560687f6c4e646a9ba845b923ae213a56971d3c..82fd2e658d717bf62e2b0dc8f8350caaefbf1cdb 100644 --- a/apps/files/l10n/ia.php +++ b/apps/files/l10n/ia.php @@ -4,11 +4,11 @@ $TRANSLATIONS = array( "No file was uploaded" => "Nulle file esseva incargate.", "Missing a temporary folder" => "Manca un dossier temporari", "Files" => "Files", -"Error" => "Error", "Share" => "Compartir", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), +"Error" => "Error", "Name" => "Nomine", "Size" => "Dimension", "Modified" => "Modificate", diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index c8b3194eb6b0d182ad71761b2bd88ef116554c65..4e254ff6f60e5512ec18c0673d15cc696058a3fe 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -2,6 +2,17 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Tidak dapat memindahkan %s - Berkas dengan nama ini sudah ada", "Could not move %s" => "Tidak dapat memindahkan %s", +"File name cannot be empty." => "Nama berkas tidak boleh kosong.", +"File name must not contain \"/\". Please choose a different name." => "Nama berkas tidak boleh mengandung \"/\". Silakan pilih nama yang berbeda.", +"The name %s is already used in the folder %s. Please choose a different name." => "Nama %s sudah digunakan dalam folder %s. Silakan pilih nama yang berbeda.", +"Not a valid source" => "Sumber tidak sah", +"Error while downloading %s to %s" => "Galat saat mengunduh %s ke %s", +"Error when creating the file" => "Galat saat membuat berkas", +"Folder name cannot be empty." => "Nama folder tidak bolh kosong.", +"Folder name must not contain \"/\". Please choose a different name." => "Nama folder tidak boleh mengandung \"/\". Silakan pilih nama yang berbeda.", +"Error when creating the folder" => "Galat saat membuat folder", +"Unable to set upload directory." => "Tidak dapat mengatur folder unggah", +"Invalid Token" => "Token tidak sah", "No file was uploaded. Unknown error" => "Tidak ada berkas yang diunggah. Galat tidak dikenal.", "There is no error, the file uploaded with success" => "Tidak ada galat, berkas sukses diunggah", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Berkas yang diunggah melampaui direktif upload_max_filesize pada php.ini", @@ -11,35 +22,47 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Folder sementara tidak ada", "Failed to write to disk" => "Gagal menulis ke disk", "Not enough storage available" => "Ruang penyimpanan tidak mencukupi", +"Upload failed. Could not get file info." => "Unggah gagal. Tidak mendapatkan informasi berkas.", +"Upload failed. Could not find uploaded file" => "Unggah gagal. Tidak menemukan berkas yang akan diunggah", "Invalid directory." => "Direktori tidak valid.", "Files" => "Berkas", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Tidak dapat mengunggah {filename} karena ini sebuah direktori atau memiliki ukuran 0 byte", "Not enough space available" => "Ruang penyimpanan tidak mencukupi", "Upload cancelled." => "Pengunggahan dibatalkan.", +"Could not get result from server." => "Tidak mendapatkan hasil dari server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Berkas sedang diunggah. Meninggalkan halaman ini akan membatalkan proses.", -"URL cannot be empty." => "URL tidak boleh kosong", -"Error" => "Galat", +"URL cannot be empty" => "URL tidak boleh kosong", +"In the home folder 'Shared' is a reserved filename" => "Pada folder home, 'Shared' adalah nama berkas yang sudah digunakan", +"{new_name} already exists" => "{new_name} sudah ada", +"Could not create file" => "Tidak dapat membuat berkas", +"Could not create folder" => "Tidak dapat membuat folder", "Share" => "Bagikan", "Delete permanently" => "Hapus secara permanen", "Rename" => "Ubah nama", "Pending" => "Menunggu", -"{new_name} already exists" => "{new_name} sudah ada", -"replace" => "ganti", -"suggest name" => "sarankan nama", -"cancel" => "batalkan", +"Could not rename file" => "Tidak dapat mengubah nama berkas", "replaced {new_name} with {old_name}" => "mengganti {new_name} dengan {old_name}", "undo" => "urungkan", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), -"_Uploading %n file_::_Uploading %n files_" => array(""), +"Error deleting file." => "Galat saat menghapus berkas.", +"_%n folder_::_%n folders_" => array("%n folder"), +"_%n file_::_%n files_" => array("%n berkas"), +"{dirs} and {files}" => "{dirs} dan {files}", +"_Uploading %n file_::_Uploading %n files_" => array("Mengunggah %n berkas"), "'.' is an invalid file name." => "'.' bukan nama berkas yang valid.", -"File name cannot be empty." => "Nama berkas tidak boleh kosong.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nama tidak valid, karakter '\\', '/', '<', '>', ':', '\"', '|', '?' dan '*' tidak diizinkan.", "Your storage is full, files can not be updated or synced anymore!" => "Ruang penyimpanan Anda penuh, berkas tidak dapat diperbarui atau disinkronkan lagi!", "Your storage is almost full ({usedSpacePercent}%)" => "Ruang penyimpanan hampir penuh ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Aplikasi Enskripsi telah diaktifkan tetapi kunci tidak diinisialisasi, silakan log-out dan log-in lagi", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Kunci privat tidak sah untuk Aplikasi Enskripsi. Silakan perbarui sandi kunci privat anda pada pengaturan pribadi untuk memulihkan akses ke berkas anda yang dienskripsi.", +"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Enskripi telah dinonaktifkan tetapi berkas anda tetap dienskripsi. Silakan menuju ke pengaturan pribadi untuk deskrip berkas anda.", "Your download is being prepared. This might take some time if the files are big." => "Unduhan Anda sedang disiapkan. Prosesnya dapat berlangsung agak lama jika ukuran berkasnya besar.", +"Error moving file" => "Galat saat memindahkan berkas", +"Error" => "Galat", "Name" => "Nama", "Size" => "Ukuran", "Modified" => "Dimodifikasi", +"Invalid folder name. Usage of 'Shared' is reserved." => "Nama folder tidak sah. Menggunakan 'Shared' sudah digunakan.", +"%s could not be renamed" => "%s tidak dapat diubah nama", "Upload" => "Unggah", "File handling" => "Penanganan berkas", "Maximum upload size" => "Ukuran pengunggahan maksimum", @@ -50,15 +73,16 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Ukuran masukan maksimum untuk berkas ZIP", "Save" => "Simpan", "New" => "Baru", +"New text file" => "Berkas teks baru", "Text file" => "Berkas teks", +"New folder" => "Map baru", "Folder" => "Folder", "From link" => "Dari tautan", "Deleted files" => "Berkas yang dihapus", "Cancel upload" => "Batal pengunggahan", -"You don’t have write permissions here." => "Anda tidak memiliki izin menulis di sini.", +"You don’t have permission to upload or create files here" => "Anda tidak memiliki akses untuk mengunggah atau membuat berkas disini", "Nothing in here. Upload something!" => "Tidak ada apa-apa di sini. Unggah sesuatu!", "Download" => "Unduh", -"Unshare" => "Batalkan berbagi", "Delete" => "Hapus", "Upload too large" => "Yang diunggah terlalu besar", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Berkas yang dicoba untuk diunggah melebihi ukuran maksimum pengunggahan berkas di server ini.", diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index ef49341820691d92f570434e5e0313bdea535750..5c5cc7d5d7343ac619d41e30a0cafd9b2547b3da 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -2,6 +2,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Gat ekki fært %s - Skrá með þessu nafni er þegar til", "Could not move %s" => "Gat ekki fært %s", +"File name cannot be empty." => "Nafn skráar má ekki vera tómt", "No file was uploaded. Unknown error" => "Engin skrá var send inn. Óþekkt villa.", "There is no error, the file uploaded with success" => "Engin villa, innsending heppnaðist", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Innsend skrá er stærri en upload_max stillingin í php.ini:", @@ -15,23 +16,18 @@ $TRANSLATIONS = array( "Not enough space available" => "Ekki nægt pláss tiltækt", "Upload cancelled." => "Hætt við innsendingu.", "File upload is in progress. Leaving the page now will cancel the upload." => "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast.", -"URL cannot be empty." => "Vefslóð má ekki vera tóm.", -"Error" => "Villa", +"{new_name} already exists" => "{new_name} er þegar til", "Share" => "Deila", "Rename" => "Endurskýra", "Pending" => "Bíður", -"{new_name} already exists" => "{new_name} er þegar til", -"replace" => "yfirskrifa", -"suggest name" => "stinga upp á nafni", -"cancel" => "hætta við", "replaced {new_name} with {old_name}" => "yfirskrifaði {new_name} með {old_name}", "undo" => "afturkalla", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), "'.' is an invalid file name." => "'.' er ekki leyfilegt nafn.", -"File name cannot be empty." => "Nafn skráar má ekki vera tómt", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð.", +"Error" => "Villa", "Name" => "Nafn", "Size" => "Stærð", "Modified" => "Breytt", @@ -51,7 +47,6 @@ $TRANSLATIONS = array( "Cancel upload" => "Hætta við innsendingu", "Nothing in here. Upload something!" => "Ekkert hér. Settu eitthvað inn!", "Download" => "Niðurhal", -"Unshare" => "Hætta deilingu", "Delete" => "Eyða", "Upload too large" => "Innsend skrá er of stór", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Skrárnar sem þú ert að senda inn eru stærri en hámarks innsendingarstærð á þessum netþjóni.", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 44b4e341956df3b771bfdee982230d317ff87296..2a10e9977f4c180baa6e893ceb20e22f323ec464 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -2,6 +2,16 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Impossibile spostare %s - un file con questo nome esiste già", "Could not move %s" => "Impossibile spostare %s", +"File name cannot be empty." => "Il nome del file non può essere vuoto.", +"File name must not contain \"/\". Please choose a different name." => "Il nome del file non può contenere il carattere \"/\". Scegli un nome diverso.", +"The name %s is already used in the folder %s. Please choose a different name." => "Il nome %s è attualmente in uso nella cartella %s. Scegli un nome diverso.", +"Not a valid source" => "Non è una sorgente valida", +"Server is not allowed to open URLs, please check the server configuration" => "Al server non è permesso aprire URL, controlla la configurazione del server", +"Error while downloading %s to %s" => "Errore durante lo scaricamento di %s su %s", +"Error when creating the file" => "Errore durante la creazione del file", +"Folder name cannot be empty." => "Il nome della cartella non può essere vuoto.", +"Folder name must not contain \"/\". Please choose a different name." => "Il nome della cartella non può contenere il carattere \"/\". Scegli un nome diverso.", +"Error when creating the folder" => "Errore durante la creazione della cartella", "Unable to set upload directory." => "Impossibile impostare una cartella di caricamento.", "Invalid Token" => "Token non valido", "No file was uploaded. Unknown error" => "Nessun file è stato inviato. Errore sconosciuto", @@ -22,34 +32,38 @@ $TRANSLATIONS = array( "Upload cancelled." => "Invio annullato", "Could not get result from server." => "Impossibile ottenere il risultato dal server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento.", -"URL cannot be empty." => "L'URL non può essere vuoto.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nome della cartella non valido. L'uso di 'Shared' è riservato a ownCloud", -"Error" => "Errore", +"URL cannot be empty" => "L'URL non può essere vuoto.", +"In the home folder 'Shared' is a reserved filename" => "Nella cartella home 'Shared' è un nome riservato", +"{new_name} already exists" => "{new_name} esiste già", +"Could not create file" => "Impossibile creare il file", +"Could not create folder" => "Impossibile creare la cartella", +"Error fetching URL" => "Errore durante il recupero dello URL", "Share" => "Condividi", "Delete permanently" => "Elimina definitivamente", "Rename" => "Rinomina", "Pending" => "In corso", -"{new_name} already exists" => "{new_name} esiste già", -"replace" => "sostituisci", -"suggest name" => "suggerisci nome", -"cancel" => "annulla", +"Could not rename file" => "Impossibile rinominare il file", "replaced {new_name} with {old_name}" => "sostituito {new_name} con {old_name}", "undo" => "annulla", +"Error deleting file." => "Errore durante l'eliminazione del file.", "_%n folder_::_%n folders_" => array("%n cartella","%n cartelle"), "_%n file_::_%n files_" => array("%n file","%n file"), "{dirs} and {files}" => "{dirs} e {files}", "_Uploading %n file_::_Uploading %n files_" => array("Caricamento di %n file in corso","Caricamento di %n file in corso"), "'.' is an invalid file name." => "'.' non è un nome file valido.", -"File name cannot be empty." => "Il nome del file non può essere vuoto.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti.", "Your storage is full, files can not be updated or synced anymore!" => "Lo spazio di archiviazione è pieno, i file non possono essere più aggiornati o sincronizzati!", "Your storage is almost full ({usedSpacePercent}%)" => "Lo spazio di archiviazione è quasi pieno ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "L'applicazione di cifratura è abilitata, ma le chiavi non sono state inizializzate, disconnettiti ed effettua nuovamente l'accesso", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Chiave privata non valida per l'applicazione di cifratura. Aggiorna la password della chiave privata nelle impostazioni personali per ripristinare l'accesso ai tuoi file cifrati.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "La cifratura è stata disabilitata ma i tuoi file sono ancora cifrati. Vai nelle impostazioni personali per decifrare i file.", "Your download is being prepared. This might take some time if the files are big." => "Il tuo scaricamento è in fase di preparazione. Ciò potrebbe richiedere del tempo se i file sono grandi.", "Error moving file" => "Errore durante lo spostamento del file", +"Error" => "Errore", "Name" => "Nome", "Size" => "Dimensione", "Modified" => "Modificato", +"Invalid folder name. Usage of 'Shared' is reserved." => "Nome della cartella non valido. L'uso di 'Shared' è riservato.", "%s could not be renamed" => "%s non può essere rinominato", "Upload" => "Carica", "File handling" => "Gestione file", @@ -61,15 +75,16 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Dimensione massima per i file ZIP", "Save" => "Salva", "New" => "Nuovo", +"New text file" => "Nuovo file di testo", "Text file" => "File di testo", +"New folder" => "Nuova cartella", "Folder" => "Cartella", "From link" => "Da collegamento", "Deleted files" => "File eliminati", "Cancel upload" => "Annulla invio", -"You don’t have write permissions here." => "Qui non hai i permessi di scrittura.", +"You don’t have permission to upload or create files here" => "Qui non hai i permessi di caricare o creare file", "Nothing in here. Upload something!" => "Non c'è niente qui. Carica qualcosa!", "Download" => "Scarica", -"Unshare" => "Rimuovi condivisione", "Delete" => "Elimina", "Upload too large" => "Caricamento troppo grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "I file che stai provando a caricare superano la dimensione massima consentita su questo server.", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index 07ee96f1eb6c1d36aff8205ee7773bee55a76064..8019b825d3c16b48ef4f986c7c06949a141c992c 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -2,6 +2,16 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "%s を移動できませんでした ― この名前のファイルはすでに存在します", "Could not move %s" => "%s を移動できませんでした", +"File name cannot be empty." => "ファイル名を空にすることはできません。", +"File name must not contain \"/\". Please choose a different name." => "ファイル名には \"/\" を含めることはできません。別の名前を選択してください。", +"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を開くことは許されません。サーバーの設定をチェックしてください。", +"Error while downloading %s to %s" => "%s から %s へのダウンロードエラー", +"Error when creating the file" => "ファイルの生成エラー", +"Folder name cannot be empty." => "フォルダ名は空にできません", +"Folder name must not contain \"/\". Please choose a different name." => "フォルダ名には \"/\" を含めることはできません。別の名前を選択してください。", +"Error when creating the folder" => "フォルダの生成エラー", "Unable to set upload directory." => "アップロードディレクトリを設定出来ません。", "Invalid Token" => "無効なトークン", "No file was uploaded. Unknown error" => "ファイルは何もアップロードされていません。不明なエラー", @@ -22,34 +32,38 @@ $TRANSLATIONS = array( "Upload cancelled." => "アップロードはキャンセルされました。", "Could not get result from server." => "サーバから結果を取得できませんでした。", "File upload is in progress. Leaving the page now will cancel the upload." => "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。", -"URL cannot be empty." => "URLは空にできません。", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "無効なフォルダ名です。'Shared' の利用はownCloudで予約済みです", -"Error" => "エラー", +"URL cannot be empty" => "URL は空にできません", +"In the home folder 'Shared' is a reserved filename" => "ホームフォルダでは、'Shared' はシステムが使用する予約済みのファイル名です", +"{new_name} already exists" => "{new_name} はすでに存在しています", +"Could not create file" => "ファイルを作成できませんでした", +"Could not create folder" => "フォルダを作成できませんでした", +"Error fetching URL" => "URL取得エラー", "Share" => "共有", "Delete permanently" => "完全に削除する", "Rename" => "名前の変更", "Pending" => "中断", -"{new_name} already exists" => "{new_name} はすでに存在しています", -"replace" => "置き換え", -"suggest name" => "推奨名称", -"cancel" => "キャンセル", +"Could not rename file" => "ファイルの名前変更ができませんでした", "replaced {new_name} with {old_name}" => "{old_name} を {new_name} に置換", "undo" => "元に戻す", -"_%n folder_::_%n folders_" => array("%n個のフォルダ"), -"_%n file_::_%n files_" => array("%n個のファイル"), +"Error deleting file." => "ファイルの削除エラー。", +"_%n folder_::_%n folders_" => array("%n 個のフォルダ"), +"_%n file_::_%n files_" => array("%n 個のファイル"), "{dirs} and {files}" => "{dirs} と {files}", "_Uploading %n file_::_Uploading %n files_" => array("%n 個のファイルをアップロード中"), "'.' is an invalid file name." => "'.' は無効なファイル名です。", -"File name cannot be empty." => "ファイル名を空にすることはできません。", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。", "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" => "暗号化アプリは有効ですが、あなたの暗号化キーは初期化されていません。ログアウトした後に、再度ログインしてください", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "暗号化アプリの無効なプライベートキーです。あなたの暗号化されたファイルへアクセスするために、個人設定からプライベートキーのパスワードを更新してください。", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "暗号化の機能は無効化されましたが、ファイルはすでに暗号化されています。個人設定からファイルを複合を行ってください。", "Your download is being prepared. This might take some time if the files are big." => "ダウンロードの準備中です。ファイルサイズが大きい場合は少し時間がかかるかもしれません。", "Error moving file" => "ファイルの移動エラー", +"Error" => "エラー", "Name" => "名前", "Size" => "サイズ", -"Modified" => "変更", +"Modified" => "更新日時", +"Invalid folder name. Usage of 'Shared' is reserved." => "無効なフォルダ名。「Shared」の利用は予約されています。", "%s could not be renamed" => "%sの名前を変更できませんでした", "Upload" => "アップロード", "File handling" => "ファイル操作", @@ -61,15 +75,16 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "ZIPファイルへの最大入力サイズ", "Save" => "保存", "New" => "新規作成", +"New text file" => "新規のテキストファイル作成", "Text file" => "テキストファイル", +"New folder" => "新しいフォルダ", "Folder" => "フォルダ", "From link" => "リンク", -"Deleted files" => "削除ファイル", +"Deleted files" => "ゴミ箱", "Cancel upload" => "アップロードをキャンセル", -"You don’t have write permissions here." => "あなたには書き込み権限がありません。", +"You don’t have permission to upload or create files here" => "ここにファイルをアップロードもしくは作成する権限がありません", "Nothing in here. Upload something!" => "ここには何もありません。何かアップロードしてください。", "Download" => "ダウンロード", -"Unshare" => "共有解除", "Delete" => "削除", "Upload too large" => "アップロードには大きすぎます。", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "アップロードしようとしているファイルは、サーバで規定された最大サイズを超えています。", diff --git a/apps/files/l10n/ka_GE.php b/apps/files/l10n/ka_GE.php index b9313957714b6db6c99d5869ffb5ecc1dbd98e42..eafa0c083f72c7ac4c811eec24c0b4ea35da4a0b 100644 --- a/apps/files/l10n/ka_GE.php +++ b/apps/files/l10n/ka_GE.php @@ -2,6 +2,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "%s –ის გადატანა ვერ მოხერხდა – ფაილი ამ სახელით უკვე არსებობს", "Could not move %s" => "%s –ის გადატანა ვერ მოხერხდა", +"File name cannot be empty." => "ფაილის სახელი არ შეიძლება იყოს ცარიელი.", "No file was uploaded. Unknown error" => "ფაილი არ აიტვირთა. უცნობი შეცდომა", "There is no error, the file uploaded with success" => "ჭოცდომა არ დაფიქსირდა, ფაილი წარმატებით აიტვირთა", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "ატვირთული ფაილი აჭარბებს upload_max_filesize დირექტივას php.ini ფაილში", @@ -16,27 +17,22 @@ $TRANSLATIONS = array( "Not enough space available" => "საკმარისი ადგილი არ არის", "Upload cancelled." => "ატვირთვა შეჩერებულ იქნა.", "File upload is in progress. Leaving the page now will cancel the upload." => "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას", -"URL cannot be empty." => "URL არ შეიძლება იყოს ცარიელი.", -"Error" => "შეცდომა", +"{new_name} already exists" => "{new_name} უკვე არსებობს", "Share" => "გაზიარება", "Delete permanently" => "სრულად წაშლა", "Rename" => "გადარქმევა", "Pending" => "მოცდის რეჟიმში", -"{new_name} already exists" => "{new_name} უკვე არსებობს", -"replace" => "შეცვლა", -"suggest name" => "სახელის შემოთავაზება", -"cancel" => "უარყოფა", "replaced {new_name} with {old_name}" => "{new_name} შეცვლილია {old_name}–ით", "undo" => "დაბრუნება", "_%n folder_::_%n folders_" => array(""), "_%n file_::_%n files_" => array(""), "_Uploading %n file_::_Uploading %n files_" => array(""), "'.' is an invalid file name." => "'.' არის დაუშვებელი ფაილის სახელი.", -"File name cannot be empty." => "ფაილის სახელი არ შეიძლება იყოს ცარიელი.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "არადაშვებადი სახელი, '\\', '/', '<', '>', ':', '\"', '|', '?' და '*' არ არის დაიშვებული.", "Your storage is full, files can not be updated or synced anymore!" => "თქვენი საცავი გადაივსო. ფაილების განახლება და სინქრონიზირება ვერ მოხერხდება!", "Your storage is almost full ({usedSpacePercent}%)" => "თქვენი საცავი თითქმის გადაივსო ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "გადმოწერის მოთხოვნა მუშავდება. ის მოითხოვს გარკვეულ დროს რაგდან ფაილები არის დიდი ზომის.", +"Error" => "შეცდომა", "Name" => "სახელი", "Size" => "ზომა", "Modified" => "შეცვლილია", @@ -51,14 +47,13 @@ $TRANSLATIONS = array( "Save" => "შენახვა", "New" => "ახალი", "Text file" => "ტექსტური ფაილი", +"New folder" => "ახალი ფოლდერი", "Folder" => "საქაღალდე", "From link" => "მისამართიდან", "Deleted files" => "წაშლილი ფაილები", "Cancel upload" => "ატვირთვის გაუქმება", -"You don’t have write permissions here." => "თქვენ არ გაქვთ ჩაწერის უფლება აქ.", "Nothing in here. Upload something!" => "აქ არაფერი არ არის. ატვირთე რამე!", "Download" => "ჩამოტვირთვა", -"Unshare" => "გაუზიარებადი", "Delete" => "წაშლა", "Upload too large" => "ასატვირთი ფაილი ძალიან დიდია", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "ფაილის ზომა რომლის ატვირთვასაც თქვენ აპირებთ, აჭარბებს სერვერზე დაშვებულ მაქსიმუმს.", diff --git a/apps/files/l10n/km.php b/apps/files/l10n/km.php index 70ab6572ba466c23b8066e18b9ee2f9cb2a7a827..9733358d6283faacde44f7ac20dda355e1238c26 100644 --- a/apps/files/l10n/km.php +++ b/apps/files/l10n/km.php @@ -2,6 +2,7 @@ $TRANSLATIONS = array( "_%n folder_::_%n folders_" => array(""), "_%n file_::_%n files_" => array(""), -"_Uploading %n file_::_Uploading %n files_" => array("") +"_Uploading %n file_::_Uploading %n files_" => array(""), +"Delete" => "លុប" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index 0174f8d0d21a4b480587d5190bea6f202d713057..35a9f2fb85c2321344c7be1b7d435d7acf80af08 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -1,10 +1,20 @@ "%s 항목을 이동시키지 못하였음 - 파일 이름이 이미 존재함", -"Could not move %s" => "%s 항목을 이딩시키지 못하였음", -"Unable to set upload directory." => "업로드 디렉터리를 정할수 없습니다", +"Could not move %s - File with this name already exists" => "항목 %s을(를) 이동시킬 수 없음 - 같은 이름의 파일이 이미 존재함", +"Could not move %s" => "항목 %s을(를) 이동시킬 수 없음", +"File name cannot be empty." => "파일 이름이 비어 있을 수 없습니다.", +"File name must not contain \"/\". Please choose a different name." => "파일 이름에는 \"/\"가 들어갈 수 없습니다. 다른 이름을 사용하십시오.", +"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을 열 수 없습니다. 서버 설정을 확인하십시오", +"Error while downloading %s to %s" => "%s을(를) %s(으)로 다운로드하는 중 오류 발생", +"Error when creating the file" => "파일 생성 중 오류 발생", +"Folder name cannot be empty." => "폴더 이름이 비어있을 수 없습니다.", +"Folder name must not contain \"/\". Please choose a different name." => "폴더 이름에는 \"/\"가 들어갈 수 없습니다. 다른 이름을 사용하십시오.", +"Error when creating the folder" => "폴더 생성 중 오류 발생", +"Unable to set upload directory." => "업로드 디렉터리를 설정할 수 없습니다.", "Invalid Token" => "잘못된 토큰", -"No file was uploaded. Unknown error" => "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다", +"No file was uploaded. Unknown error" => "파일이 업로드 되지 않았습니다. 알 수 없는 오류입니다", "There is no error, the file uploaded with success" => "파일 업로드에 성공하였습니다.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "업로드한 파일 크기가 HTML 폼의 MAX_FILE_SIZE보다 큼", @@ -13,44 +23,48 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "임시 폴더가 없음", "Failed to write to disk" => "디스크에 쓰지 못했습니다", "Not enough storage available" => "저장소가 용량이 충분하지 않습니다.", -"Upload failed. Could not get file info." => "업로드에 실패했습니다. 파일 정보를 가져올수 없습니다.", -"Upload failed. Could not find uploaded file" => "업로드에 실패했습니다. 업로드할 파일을 찾을수 없습니다", +"Upload failed. Could not get file info." => "업로드에 실패했습니다. 파일 정보를 가져올 수 없습니다.", +"Upload failed. Could not find uploaded file" => "업로드에 실패했습니다. 업로드할 파일을 찾을 수 없습니다", "Invalid directory." => "올바르지 않은 디렉터리입니다.", "Files" => "파일", -"Unable to upload {filename} as it is a directory or has 0 bytes" => "{filename}을 업로드 할수 없습니다. 폴더이거나 0 바이트 파일입니다.", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "{filename}을(를) 업로드할 수 없습니다. 폴더이거나 0 바이트 파일입니다.", "Not enough space available" => "여유 공간이 부족합니다", "Upload cancelled." => "업로드가 취소되었습니다.", -"Could not get result from server." => "서버에서 결과를 가져올수 없습니다.", +"Could not get result from server." => "서버에서 결과를 가져올 수 없습니다.", "File upload is in progress. Leaving the page now will cancel the upload." => "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다.", -"URL cannot be empty." => "URL을 입력해야 합니다.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "유효하지 않은 폴더명입니다. \"Shared\" 이름의 사용은 OwnCloud 가 이미 예약하고 있습니다.", -"Error" => "오류", +"URL cannot be empty" => "URL이 비어있을 수 없음", +"In the home folder 'Shared' is a reserved filename" => "'공유됨'은 홈 폴더의 예약된 파일 이름임", +"{new_name} already exists" => "{new_name}이(가) 이미 존재함", +"Could not create file" => "파일을 만들 수 없음", +"Could not create folder" => "폴더를 만들 수 없음", +"Error fetching URL" => "URL을 가져올 수 없음", "Share" => "공유", -"Delete permanently" => "영원히 삭제", +"Delete permanently" => "영구히 삭제", "Rename" => "이름 바꾸기", "Pending" => "대기 중", -"{new_name} already exists" => "{new_name}이(가) 이미 존재함", -"replace" => "바꾸기", -"suggest name" => "이름 제안", -"cancel" => "취소", +"Could not rename file" => "이름을 변경할 수 없음", "replaced {new_name} with {old_name}" => "{old_name}이(가) {new_name}(으)로 대체됨", -"undo" => "되돌리기", -"_%n folder_::_%n folders_" => array("폴더 %n"), -"_%n file_::_%n files_" => array("파일 %n 개"), +"undo" => "실행 취소", +"Error deleting file." => "파일 삭제 오류.", +"_%n folder_::_%n folders_" => array("폴더 %n개"), +"_%n file_::_%n files_" => array("파일 %n개"), "{dirs} and {files}" => "{dirs} 그리고 {files}", -"_Uploading %n file_::_Uploading %n files_" => array("%n 개의 파일을 업로드중"), -"'.' is an invalid file name." => "'.' 는 올바르지 않은 파일 이름 입니다.", -"File name cannot be empty." => "파일 이름이 비어 있을 수 없습니다.", +"_Uploading %n file_::_Uploading %n files_" => array("파일 %n개 업로드 중"), +"'.' is an invalid file name." => "'.' 는 올바르지 않은 파일 이름입니다.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다.", "Your storage is full, files can not be updated or synced anymore!" => "저장 공간이 가득 찼습니다. 파일을 업데이트하거나 동기화할 수 없습니다!", "Your storage is almost full ({usedSpacePercent}%)" => "저장 공간이 거의 가득 찼습니다 ({usedSpacePercent}%)", -"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "암호화는 해제되어 있지만, 파일은 아직 암호화 되어 있습니다. 개인 설저에 가셔서 암호를 해제하십시오", -"Your download is being prepared. This might take some time if the files are big." => "다운로드가 준비 중입니다. 파일 크기가 크다면 시간이 오래 걸릴 수도 있습니다.", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "암호화 앱이 활성화되어 있지만 키가 초기화되지 않았습니다. 로그아웃한 후 다시 로그인하십시오", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "암호화 앱의 개인 키가 잘못되었습니다. 암호화된 파일에 다시 접근하려면 개인 설정에서 개인 키 암호를 업데이트해야 합니다.", +"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "암호화는 해제되어 있지만, 파일은 아직 암호화되어 있습니다. 개인 설정에서 파일을 복호화하십시오.", +"Your download is being prepared. This might take some time if the files are big." => "다운로드 준비 중입니다. 파일 크기가 크면 시간이 오래 걸릴 수도 있습니다.", "Error moving file" => "파일 이동 오류", +"Error" => "오류", "Name" => "이름", "Size" => "크기", "Modified" => "수정됨", -"%s could not be renamed" => "%s 의 이름을 변경할수 없습니다", +"Invalid folder name. Usage of 'Shared' is reserved." => "폴더 이름이 잘못되었습니다. '공유됨'은 예약된 폴더 이름입니다.", +"%s could not be renamed" => "%s의 이름을 변경할 수 없습니다", "Upload" => "업로드", "File handling" => "파일 처리", "Maximum upload size" => "최대 업로드 크기", @@ -61,15 +75,16 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "ZIP 파일 최대 크기", "Save" => "저장", "New" => "새로 만들기", +"New text file" => "새 텍스트 파일", "Text file" => "텍스트 파일", +"New folder" => "새 폴더", "Folder" => "폴더", "From link" => "링크에서", -"Deleted files" => "파일 삭제됨", +"Deleted files" => "삭제된 파일", "Cancel upload" => "업로드 취소", -"You don’t have write permissions here." => "당신은 여기에 쓰기를 할 수 있는 권한이 없습니다.", +"You don’t have permission to upload or create files here" => "여기에 파일을 업로드하거나 만들 권한이 없습니다", "Nothing in here. Upload something!" => "내용이 없습니다. 업로드할 수 있습니다!", "Download" => "다운로드", -"Unshare" => "공유 해제", "Delete" => "삭제", "Upload too large" => "업로드한 파일이 너무 큼", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "이 파일이 서버에서 허용하는 최대 업로드 가능 용량보다 큽니다.", diff --git a/apps/files/l10n/ku_IQ.php b/apps/files/l10n/ku_IQ.php index d98848a71f099a262830da1784c277ddde68b566..f04e9ec44df407a8e9802d3363a02a1d856f37a7 100644 --- a/apps/files/l10n/ku_IQ.php +++ b/apps/files/l10n/ku_IQ.php @@ -1,11 +1,10 @@ "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت.", -"Error" => "هه‌ڵه", "Share" => "هاوبەشی کردن", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), +"Error" => "هه‌ڵه", "Name" => "ناو", "Upload" => "بارکردن", "Save" => "پاشکه‌وتکردن", diff --git a/apps/files/l10n/lb.php b/apps/files/l10n/lb.php index cd68b2b9ad2ec25562d4369f0eb3c992291867bc..822ca7e2d02318b377ab6a86495114fe5447a51a 100644 --- a/apps/files/l10n/lb.php +++ b/apps/files/l10n/lb.php @@ -9,14 +9,13 @@ $TRANSLATIONS = array( "Files" => "Dateien", "Upload cancelled." => "Upload ofgebrach.", "File upload is in progress. Leaving the page now will cancel the upload." => "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach.", -"Error" => "Fehler", "Share" => "Deelen", -"replace" => "ersetzen", -"cancel" => "ofbriechen", +"Rename" => "Ëm-benennen", "undo" => "réckgängeg man", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), +"Error" => "Fehler", "Name" => "Numm", "Size" => "Gréisst", "Modified" => "Geännert", @@ -35,7 +34,6 @@ $TRANSLATIONS = array( "Cancel upload" => "Upload ofbriechen", "Nothing in here. Upload something!" => "Hei ass näischt. Lued eppes rop!", "Download" => "Download", -"Unshare" => "Net méi deelen", "Delete" => "Läschen", "Upload too large" => "Upload ze grouss", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Déi Dateien déi Dir probéiert erop ze lueden sinn méi grouss wei déi Maximal Gréisst déi op dësem Server erlaabt ass.", diff --git a/apps/files/l10n/lt_LT.php b/apps/files/l10n/lt_LT.php index d064b0c6523c23e9a8fcd96d3c902ad0e3369629..d9023658631addcefbbd498ac16a5f51e10fd9d9 100644 --- a/apps/files/l10n/lt_LT.php +++ b/apps/files/l10n/lt_LT.php @@ -2,6 +2,15 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Nepavyko perkelti %s - failas su tokiu pavadinimu jau egzistuoja", "Could not move %s" => "Nepavyko perkelti %s", +"File name cannot be empty." => "Failo pavadinimas negali būti tuščias.", +"File name must not contain \"/\". Please choose a different name." => "Failo pavadinime negali būti simbolio \"/\". Prašome pasirinkti kitokį pavadinimą.", +"The name %s is already used in the folder %s. Please choose a different name." => "Pavadinimas %s jau naudojamas aplanke %s. Prašome pasirinkti kitokį pavadinimą.", +"Not a valid source" => "Netinkamas šaltinis", +"Error while downloading %s to %s" => "Klaida siunčiant %s į %s", +"Error when creating the file" => "Klaida kuriant failą", +"Folder name cannot be empty." => "Aplanko pavadinimas negali būti tuščias.", +"Folder name must not contain \"/\". Please choose a different name." => "Aplanko pavadinime negali būti simbolio \"/\". Prašome pasirinkti kitokį pavadinimą.", +"Error when creating the folder" => "Klaida kuriant aplanką", "Unable to set upload directory." => "Nepavyksta nustatyti įkėlimų katalogo.", "Invalid Token" => "Netinkamas ženklas", "No file was uploaded. Unknown error" => "Failai nebuvo įkelti dėl nežinomos priežasties", @@ -22,31 +31,32 @@ $TRANSLATIONS = array( "Upload cancelled." => "Įkėlimas atšauktas.", "Could not get result from server." => "Nepavyko gauti rezultato iš serverio.", "File upload is in progress. Leaving the page now will cancel the upload." => "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutrūks.", -"URL cannot be empty." => "URL negali būti tuščias.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Negalimas aplanko pavadinimas. 'Shared' pavadinimas yra rezervuotas ownCloud", -"Error" => "Klaida", +"URL cannot be empty" => "URL negali būti tuščias.", +"{new_name} already exists" => "{new_name} jau egzistuoja", +"Could not create file" => "Neįmanoma sukurti failo", +"Could not create folder" => "Neįmanoma sukurti aplanko", "Share" => "Dalintis", "Delete permanently" => "Ištrinti negrįžtamai", "Rename" => "Pervadinti", "Pending" => "Laukiantis", -"{new_name} already exists" => "{new_name} jau egzistuoja", -"replace" => "pakeisti", -"suggest name" => "pasiūlyti pavadinimą", -"cancel" => "atšaukti", +"Could not rename file" => "Neįmanoma pervadinti failo", "replaced {new_name} with {old_name}" => "pakeiskite {new_name} į {old_name}", "undo" => "anuliuoti", +"Error deleting file." => "Klaida trinant failą.", "_%n folder_::_%n folders_" => array("%n aplankas","%n aplankai","%n aplankų"), "_%n file_::_%n files_" => array("%n failas","%n failai","%n failų"), "{dirs} and {files}" => "{dirs} ir {files}", "_Uploading %n file_::_Uploading %n files_" => array("Įkeliamas %n failas","Įkeliami %n failai","Įkeliama %n failų"), "'.' is an invalid file name." => "'.' yra neleidžiamas failo pavadinime.", -"File name cannot be empty." => "Failo pavadinimas negali būti tuščias.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neleistinas pavadinimas, '\\', '/', '<', '>', ':', '\"', '|', '?' ir '*' yra neleidžiami.", "Your storage is full, files can not be updated or synced anymore!" => "Jūsų visa vieta serveryje užimta", "Your storage is almost full ({usedSpacePercent}%)" => "Jūsų vieta serveryje beveik visa užimta ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Šifravimo programa įjungta, bet Jūsų raktai nėra pritaikyti. Prašome atsijungti ir vėl prisijungti", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Netinkamas privatus raktas Šifravimo programai. Prašome atnaujinti savo privataus rakto slaptažodį asmeniniuose nustatymuose, kad atkurti prieigą prie šifruotų failų.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Šifravimas buvo išjungtas, bet Jūsų failai vis dar užšifruoti. Prašome eiti į asmeninius nustatymus ir iššifruoti savo failus.", "Your download is being prepared. This might take some time if the files are big." => "Jūsų atsisiuntimas yra paruošiamas. tai gali užtrukti jei atsisiunčiamas didelis failas.", "Error moving file" => "Klaida perkeliant failą", +"Error" => "Klaida", "Name" => "Pavadinimas", "Size" => "Dydis", "Modified" => "Pakeista", @@ -62,14 +72,14 @@ $TRANSLATIONS = array( "Save" => "Išsaugoti", "New" => "Naujas", "Text file" => "Teksto failas", +"New folder" => "Naujas aplankas", "Folder" => "Katalogas", "From link" => "Iš nuorodos", "Deleted files" => "Ištrinti failai", "Cancel upload" => "Atšaukti siuntimą", -"You don’t have write permissions here." => "Jūs neturite rašymo leidimo.", +"You don’t have permission to upload or create files here" => "Jūs neturite leidimo čia įkelti arba kurti failus", "Nothing in here. Upload something!" => "Čia tuščia. Įkelkite ką nors!", "Download" => "Atsisiųsti", -"Unshare" => "Nebesidalinti", "Delete" => "Ištrinti", "Upload too large" => "Įkėlimui failas per didelis", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Bandomų įkelti failų dydis viršija maksimalų, kuris leidžiamas šiame serveryje", diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index cefaea62818ead578eb1d12b363ecc4a69f1cfae..7f8975b2940c65e3301e71ae9af3d75fae0f8945 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -2,6 +2,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Nevarēja pārvietot %s — jau eksistē datne ar tādu nosaukumu", "Could not move %s" => "Nevarēja pārvietot %s", +"File name cannot be empty." => "Datnes nosaukums nevar būt tukšs.", "Unable to set upload directory." => "Nevar uzstādīt augšupielādes mapi.", "Invalid Token" => "Nepareiza pilnvara", "No file was uploaded. Unknown error" => "Netika augšupielādēta neviena datne. Nezināma kļūda", @@ -18,29 +19,23 @@ $TRANSLATIONS = array( "Not enough space available" => "Nepietiek brīvas vietas", "Upload cancelled." => "Augšupielāde ir atcelta.", "File upload is in progress. Leaving the page now will cancel the upload." => "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde.", -"URL cannot be empty." => "URL nevar būt tukšs.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Kļūdains mapes nosaukums. 'Shared' lietošana ir rezervēta no ownCloud", -"Error" => "Kļūda", +"{new_name} already exists" => "{new_name} jau eksistē", "Share" => "Dalīties", "Delete permanently" => "Dzēst pavisam", "Rename" => "Pārsaukt", "Pending" => "Gaida savu kārtu", -"{new_name} already exists" => "{new_name} jau eksistē", -"replace" => "aizvietot", -"suggest name" => "ieteiktais nosaukums", -"cancel" => "atcelt", "replaced {new_name} with {old_name}" => "aizvietoja {new_name} ar {old_name}", "undo" => "atsaukt", "_%n folder_::_%n folders_" => array("%n mapes","%n mape","%n mapes"), "_%n file_::_%n files_" => array("%n faili","%n fails","%n faili"), "_Uploading %n file_::_Uploading %n files_" => array("%n","Augšupielāde %n failu","Augšupielāde %n failus"), "'.' is an invalid file name." => "'.' ir nederīgs datnes nosaukums.", -"File name cannot be empty." => "Datnes nosaukums nevar būt tukšs.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nederīgs nosaukums, nav atļauti '\\', '/', '<', '>', ':', '\"', '|', '?' un '*'.", "Your storage is full, files can not be updated or synced anymore!" => "Jūsu krātuve ir pilna, datnes vairs nevar augšupielādēt vai sinhronizēt!", "Your storage is almost full ({usedSpacePercent}%)" => "Jūsu krātuve ir gandrīz pilna ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Šifrēšana tika atslēgta, tomēr jūsu faili joprojām ir šifrēti. Atšifrēt failus var Personiskajos uzstādījumos.", "Your download is being prepared. This might take some time if the files are big." => "Tiek sagatavota lejupielāde. Tas var aizņemt kādu laiciņu, ja datnes ir lielas.", +"Error" => "Kļūda", "Name" => "Nosaukums", "Size" => "Izmērs", "Modified" => "Mainīts", @@ -56,14 +51,13 @@ $TRANSLATIONS = array( "Save" => "Saglabāt", "New" => "Jauna", "Text file" => "Teksta datne", +"New folder" => "Jauna mape", "Folder" => "Mape", "From link" => "No saites", "Deleted files" => "Dzēstās datnes", "Cancel upload" => "Atcelt augšupielādi", -"You don’t have write permissions here." => "Jums nav tiesību šeit rakstīt.", "Nothing in here. Upload something!" => "Te vēl nekas nav. Rīkojies, sāc augšupielādēt!", "Download" => "Lejupielādēt", -"Unshare" => "Pārtraukt dalīšanos", "Delete" => "Dzēst", "Upload too large" => "Datne ir par lielu, lai to augšupielādētu", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Augšupielādējamās datnes pārsniedz servera pieļaujamo datņu augšupielādes apjomu", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index 2306db6921a93b3676ca693ac7fd60b9cca30cad..fadf5efc07be95b7e9bf3bc069f9ff1dbd883657 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -1,5 +1,16 @@ "Не можам да го преместам %s - Датотека со такво име веќе постои", +"Could not move %s" => "Не можам да ги префрлам %s", +"File name cannot be empty." => "Името на датотеката не може да биде празно.", +"Not a valid source" => "Не е валиден извор", +"Error while downloading %s to %s" => "Грешка додека преземам %s to %s", +"Error when creating the file" => "Грешка при креирање на датотека", +"Folder name cannot be empty." => "Името на папката не може да биде празно.", +"Folder name must not contain \"/\". Please choose a different name." => "Името на папката не смее да содржи \"/\". Одберете друго име.", +"Error when creating the folder" => "Грешка при креирање на папка", +"Unable to set upload directory." => "Не може да се постави папката за префрлање на податоци.", +"Invalid Token" => "Грешен токен", "No file was uploaded. Unknown error" => "Ниту еден фајл не се вчита. Непозната грешка", "There is no error, the file uploaded with success" => "Датотеката беше успешно подигната.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:", @@ -8,27 +19,41 @@ $TRANSLATIONS = array( "No file was uploaded" => "Не беше подигната датотека.", "Missing a temporary folder" => "Недостасува привремена папка", "Failed to write to disk" => "Неуспеав да запишам на диск", +"Not enough storage available" => "Нема доволно слободен сториџ", +"Upload failed. Could not find uploaded file" => "Префрлањето е неуспешно. Не можам да го најдам префрлената датотека.", +"Invalid directory." => "Погрешна папка.", "Files" => "Датотеки", +"Not enough space available" => "Немате доволно дисков простор", "Upload cancelled." => "Преземањето е прекинато.", +"Could not get result from server." => "Не можам да добијам резултат од серверот.", "File upload is in progress. Leaving the page now will cancel the upload." => "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине.", -"URL cannot be empty." => "Адресата неможе да биде празна.", -"Error" => "Грешка", +"URL cannot be empty" => "URL-то не може да биде празно", +"In the home folder 'Shared' is a reserved filename" => "Во домашната папка, 'Shared' е резервирано има на датотека/папка", +"{new_name} already exists" => "{new_name} веќе постои", +"Could not create file" => "Не множам да креирам датотека", +"Could not create folder" => "Не можам да креирам папка", "Share" => "Сподели", +"Delete permanently" => "Трајно избришани", "Rename" => "Преименувај", "Pending" => "Чека", -"{new_name} already exists" => "{new_name} веќе постои", -"replace" => "замени", -"suggest name" => "предложи име", -"cancel" => "откажи", +"Could not rename file" => "Не можам да ја преименувам датотеката", "replaced {new_name} with {old_name}" => "заменета {new_name} со {old_name}", "undo" => "врати", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), +"{dirs} and {files}" => "{dirs} и {files}", "_Uploading %n file_::_Uploading %n files_" => array("",""), +"'.' is an invalid file name." => "'.' е грешно име за датотека.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени.", +"Your storage is full, files can not be updated or synced anymore!" => "Вашиот сториџ е полн, датотеките веќе не можат да се освежуваат или синхронизираат!", +"Your storage is almost full ({usedSpacePercent}%)" => "Вашиот сториџ е скоро полн ({usedSpacePercent}%)", +"Your download is being prepared. This might take some time if the files are big." => "Вашето преземање се подготвува. Ова може да потрае до колку датотеките се големи.", +"Error moving file" => "Грешка при префрлање на датотека", +"Error" => "Грешка", "Name" => "Име", "Size" => "Големина", "Modified" => "Променето", +"%s could not be renamed" => "%s не може да биде преименуван", "Upload" => "Подигни", "File handling" => "Ракување со датотеки", "Maximum upload size" => "Максимална големина за подигање", @@ -42,14 +67,15 @@ $TRANSLATIONS = array( "Text file" => "Текстуална датотека", "Folder" => "Папка", "From link" => "Од врска", +"Deleted files" => "Избришани датотеки", "Cancel upload" => "Откажи прикачување", "Nothing in here. Upload something!" => "Тука нема ништо. Снимете нешто!", "Download" => "Преземи", -"Unshare" => "Не споделувај", "Delete" => "Избриши", "Upload too large" => "Фајлот кој се вчитува е преголем", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Датотеките кои се обидувате да ги подигнете ја надминуваат максималната големина за подигнување датотеки на овој сервер.", "Files are being scanned, please wait." => "Се скенираат датотеки, ве молам почекајте.", -"Current scanning" => "Моментално скенирам" +"Current scanning" => "Моментално скенирам", +"Upgrading filesystem cache..." => "Го надградувам кешот на фјал системот..." ); $PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/apps/files/l10n/ms_MY.php b/apps/files/l10n/ms_MY.php index 61bbf81cd8a4d3bd4b0c64cefa6050a57ada4193..0a7a50abb1a0d7b4d4eeb80d57cd03263c1abc9c 100644 --- a/apps/files/l10n/ms_MY.php +++ b/apps/files/l10n/ms_MY.php @@ -9,14 +9,13 @@ $TRANSLATIONS = array( "Failed to write to disk" => "Gagal untuk disimpan", "Files" => "Fail-fail", "Upload cancelled." => "Muatnaik dibatalkan.", -"Error" => "Ralat", "Share" => "Kongsi", +"Rename" => "Namakan", "Pending" => "Dalam proses", -"replace" => "ganti", -"cancel" => "Batal", "_%n folder_::_%n folders_" => array(""), "_%n file_::_%n files_" => array(""), "_Uploading %n file_::_Uploading %n files_" => array(""), +"Error" => "Ralat", "Name" => "Nama", "Size" => "Saiz", "Modified" => "Dimodifikasi", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index 8fda251a2bc072c7e2ee45a8421f128a8bb301e8..ebd7ef38998439c8800cf2e7c0a090dd7b70f124 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -2,6 +2,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Kan ikke flytte %s - En fil med samme navn finnes allerede", "Could not move %s" => "Kunne ikke flytte %s", +"File name cannot be empty." => "Filnavn kan ikke være tomt.", "Unable to set upload directory." => "Kunne ikke sette opplastingskatalog.", "Invalid Token" => "Ugyldig nøkkel", "No file was uploaded. Unknown error" => "Ingen filer ble lastet opp. Ukjent feil.", @@ -18,28 +19,22 @@ $TRANSLATIONS = array( "Not enough space available" => "Ikke nok lagringsplass", "Upload cancelled." => "Opplasting avbrutt.", "File upload is in progress. Leaving the page now will cancel the upload." => "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen.", -"URL cannot be empty." => "URL-en kan ikke være tom.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Ugyldig mappenavn. Bruk av \"Shared\" er reservert av ownCloud.", -"Error" => "Feil", +"{new_name} already exists" => "{new_name} finnes allerede", "Share" => "Del", "Delete permanently" => "Slett permanent", "Rename" => "Gi nytt navn", "Pending" => "Ventende", -"{new_name} already exists" => "{new_name} finnes allerede", -"replace" => "erstatt", -"suggest name" => "foreslå navn", -"cancel" => "avbryt", "replaced {new_name} with {old_name}" => "erstattet {new_name} med {old_name}", "undo" => "angre", "_%n folder_::_%n folders_" => array("%n mappe","%n mapper"), "_%n file_::_%n files_" => array("%n fil","%n filer"), "_Uploading %n file_::_Uploading %n files_" => array("Laster opp %n fil","Laster opp %n filer"), "'.' is an invalid file name." => "'.' er et ugyldig filnavn.", -"File name cannot be empty." => "Filnavn kan ikke være tomt.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldig navn, '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' er ikke tillatt.", "Your storage is full, files can not be updated or synced anymore!" => "Lagringsplass er oppbrukt, filer kan ikke lenger oppdateres eller synkroniseres!", "Your storage is almost full ({usedSpacePercent}%)" => "Lagringsplass er nesten brukt opp ([usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Nedlastingen din klargjøres. Hvis filene er store kan dette ta litt tid.", +"Error" => "Feil", "Name" => "Navn", "Size" => "Størrelse", "Modified" => "Endret", @@ -55,14 +50,13 @@ $TRANSLATIONS = array( "Save" => "Lagre", "New" => "Ny", "Text file" => "Tekstfil", +"New folder" => "Ny mappe", "Folder" => "Mappe", "From link" => "Fra link", "Deleted files" => "Slettet filer", "Cancel upload" => "Avbryt opplasting", -"You don’t have write permissions here." => "Du har ikke skrivetilgang her.", "Nothing in here. Upload something!" => "Ingenting her. Last opp noe!", "Download" => "Last ned", -"Unshare" => "Avslutt deling", "Delete" => "Slett", "Upload too large" => "Filen er for stor", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filene du prøver å laste opp er for store for å laste opp til denne serveren.", diff --git a/apps/files/l10n/nds.php b/apps/files/l10n/nds.php new file mode 100644 index 0000000000000000000000000000000000000000..0157af093e92200cc7790497227e92e62d80165f --- /dev/null +++ b/apps/files/l10n/nds.php @@ -0,0 +1,7 @@ + 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/nl.php b/apps/files/l10n/nl.php index 65ad526523795934267b5ee1861ee36c2246cb51..a391e25b9528b31a95aa0b1f26a52516f6c402a2 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -2,6 +2,16 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Kon %s niet verplaatsen - Er bestaat al een bestand met deze naam", "Could not move %s" => "Kon %s niet verplaatsen", +"File name cannot be empty." => "Bestandsnaam kan niet leeg zijn.", +"File name must not contain \"/\". Please choose a different name." => "De bestandsnaam mag geen \"/\" bevatten. Kies een andere naam.", +"The name %s is already used in the folder %s. Please choose a different name." => "De naam %s bestaat al in map %s. Kies een andere naam.", +"Not a valid source" => "Geen geldige bron", +"Server is not allowed to open URLs, please check the server configuration" => "Server mag geen URS's openen, controleer de server configuratie", +"Error while downloading %s to %s" => "Fout bij downloaden %s naar %s", +"Error when creating the file" => "Fout bij creëren bestand", +"Folder name cannot be empty." => "Mapnaam mag niet leeg zijn.", +"Folder name must not contain \"/\". Please choose a different name." => "De mapnaam mag geen \"/\" bevatten. Kies een andere naam.", +"Error when creating the folder" => "Fout bij aanmaken map", "Unable to set upload directory." => "Kan upload map niet instellen.", "Invalid Token" => "Ongeldig Token", "No file was uploaded. Unknown error" => "Er was geen bestand geladen. Onbekende fout", @@ -13,38 +23,47 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Er ontbreekt een tijdelijke map", "Failed to write to disk" => "Schrijven naar schijf mislukt", "Not enough storage available" => "Niet genoeg opslagruimte beschikbaar", +"Upload failed. Could not get file info." => "Upload mislukt, Kon geen bestandsinfo krijgen.", +"Upload failed. Could not find uploaded file" => "Upload mislukt. Kon ge-uploade bestand niet vinden", "Invalid directory." => "Ongeldige directory.", "Files" => "Bestanden", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Kan {filename} niet uploaden omdat het een map is of 0 bytes groot is", "Not enough space available" => "Niet genoeg ruimte beschikbaar", "Upload cancelled." => "Uploaden geannuleerd.", +"Could not get result from server." => "Kon het resultaat van de server niet terugkrijgen.", "File upload is in progress. Leaving the page now will cancel the upload." => "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload.", -"URL cannot be empty." => "URL kan niet leeg zijn.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Ongeldige mapnaam. Gebruik van 'Gedeeld' is voorbehouden aan Owncloud zelf", -"Error" => "Fout", +"URL cannot be empty" => "URL mag niet leeg zijn", +"In the home folder 'Shared' is a reserved filename" => "in de home map 'Shared' is een gereserveerde bestandsnaam", +"{new_name} already exists" => "{new_name} bestaat al", +"Could not create file" => "Kon bestand niet creëren", +"Could not create folder" => "Kon niet creëren map", +"Error fetching URL" => "Fout bij ophalen URL", "Share" => "Delen", "Delete permanently" => "Verwijder definitief", "Rename" => "Hernoem", "Pending" => "In behandeling", -"{new_name} already exists" => "{new_name} bestaat al", -"replace" => "vervang", -"suggest name" => "Stel een naam voor", -"cancel" => "annuleren", +"Could not rename file" => "Kon niet hernoemen bestand", "replaced {new_name} with {old_name}" => "verving {new_name} met {old_name}", "undo" => "ongedaan maken", +"Error deleting file." => "Fout bij verwijderen bestand.", "_%n folder_::_%n folders_" => array("","%n mappen"), "_%n file_::_%n files_" => array("","%n bestanden"), "{dirs} and {files}" => "{dirs} en {files}", "_Uploading %n file_::_Uploading %n files_" => array("%n bestand aan het uploaden","%n bestanden aan het uploaden"), "'.' is an invalid file name." => "'.' is een ongeldige bestandsnaam.", -"File name cannot be empty." => "Bestandsnaam kan niet leeg zijn.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan.", "Your storage is full, files can not be updated or synced anymore!" => "Uw opslagruimte zit vol, Bestanden kunnen niet meer worden ge-upload of gesynchroniseerd!", "Your storage is almost full ({usedSpacePercent}%)" => "Uw opslagruimte zit bijna vol ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Crypto app is geactiveerd, maar uw sleutels werden niet geïnitialiseerd. Log uit en log daarna opnieuw in.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ongeldige privésleutel voor crypto app. Werk het privésleutel wachtwoord bij in uw persoonlijke instellingen om opnieuw toegang te krijgen tot uw versleutelde bestanden.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Encryptie is uitgeschakeld maar uw bestanden zijn nog steeds versleuteld. Ga naar uw persoonlijke instellingen om uw bestanden te decoderen.", "Your download is being prepared. This might take some time if the files are big." => "Uw download wordt voorbereid. Dit kan enige tijd duren bij grote bestanden.", +"Error moving file" => "Fout bij verplaatsen bestand", +"Error" => "Fout", "Name" => "Naam", "Size" => "Grootte", "Modified" => "Aangepast", +"Invalid folder name. Usage of 'Shared' is reserved." => "Ongeldige mapnaam. Gebruik van 'Shared' is gereserveerd.", "%s could not be renamed" => "%s kon niet worden hernoemd", "Upload" => "Uploaden", "File handling" => "Bestand", @@ -56,15 +75,16 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Maximale grootte voor ZIP bestanden", "Save" => "Bewaren", "New" => "Nieuw", +"New text file" => "Nieuw tekstbestand", "Text file" => "Tekstbestand", +"New folder" => "Nieuwe map", "Folder" => "Map", "From link" => "Vanaf link", "Deleted files" => "Verwijderde bestanden", "Cancel upload" => "Upload afbreken", -"You don’t have write permissions here." => "U hebt hier geen schrijfpermissies.", +"You don’t have permission to upload or create files here" => "U hebt geen toestemming om hier te uploaden of bestanden te maken", "Nothing in here. Upload something!" => "Er bevindt zich hier niets. Upload een bestand!", "Download" => "Downloaden", -"Unshare" => "Stop met delen", "Delete" => "Verwijder", "Upload too large" => "Upload is te groot", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server.", diff --git a/apps/files/l10n/nn_NO.php b/apps/files/l10n/nn_NO.php index e29b1d3ad36b13ba2cea74bfed1dc71039db89b3..a5e6e737eae33818a9b911ee72fa7439d39d1dd5 100644 --- a/apps/files/l10n/nn_NO.php +++ b/apps/files/l10n/nn_NO.php @@ -2,6 +2,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Klarte ikkje flytta %s – det finst allereie ei fil med dette namnet", "Could not move %s" => "Klarte ikkje flytta %s", +"File name cannot be empty." => "Filnamnet kan ikkje vera tomt.", "Unable to set upload directory." => "Klarte ikkje å endra opplastingsmappa.", "Invalid Token" => "Ugyldig token", "No file was uploaded. Unknown error" => "Ingen filer lasta opp. Ukjend feil", @@ -22,17 +23,11 @@ $TRANSLATIONS = array( "Upload cancelled." => "Opplasting avbroten.", "Could not get result from server." => "Klarte ikkje å henta resultat frå tenaren.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fila lastar no opp. Viss du forlèt sida no vil opplastinga verta avbroten.", -"URL cannot be empty." => "Nettadressa kan ikkje vera tom.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Ugyldig mappenamn. Mappa «Shared» er reservert av ownCloud", -"Error" => "Feil", +"{new_name} already exists" => "{new_name} finst allereie", "Share" => "Del", "Delete permanently" => "Slett for godt", "Rename" => "Endra namn", "Pending" => "Under vegs", -"{new_name} already exists" => "{new_name} finst allereie", -"replace" => "byt ut", -"suggest name" => "føreslå namn", -"cancel" => "avbryt", "replaced {new_name} with {old_name}" => "bytte ut {new_name} med {old_name}", "undo" => "angre", "_%n folder_::_%n folders_" => array("%n mappe","%n mapper"), @@ -40,13 +35,13 @@ $TRANSLATIONS = array( "{dirs} and {files}" => "{dirs} og {files}", "_Uploading %n file_::_Uploading %n files_" => array("Lastar opp %n fil","Lastar opp %n filer"), "'.' is an invalid file name." => "«.» er eit ugyldig filnamn.", -"File name cannot be empty." => "Filnamnet kan ikkje vera tomt.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldig namn, «\\», «/», «<», «>», «:», «\"», «|», «?» og «*» er ikkje tillate.", "Your storage is full, files can not be updated or synced anymore!" => "Lagringa di er full, kan ikkje lenger oppdatera eller synkronisera!", "Your storage is almost full ({usedSpacePercent}%)" => "Lagringa di er nesten full ({usedSpacePercent} %)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Kryptering er skrudd av, men filene dine er enno krypterte. Du kan dekryptera filene i personlege innstillingar.", "Your download is being prepared. This might take some time if the files are big." => "Gjer klar nedlastinga di. Dette kan ta ei stund viss filene er store.", "Error moving file" => "Feil ved flytting av fil", +"Error" => "Feil", "Name" => "Namn", "Size" => "Storleik", "Modified" => "Endra", @@ -66,10 +61,8 @@ $TRANSLATIONS = array( "From link" => "Frå lenkje", "Deleted files" => "Sletta filer", "Cancel upload" => "Avbryt opplasting", -"You don’t have write permissions here." => "Du har ikkje skriverettar her.", "Nothing in here. Upload something!" => "Ingenting her. Last noko opp!", "Download" => "Last ned", -"Unshare" => "Udel", "Delete" => "Slett", "Upload too large" => "For stor opplasting", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filene du prøver å lasta opp er større enn maksgrensa til denne tenaren.", diff --git a/apps/files/l10n/oc.php b/apps/files/l10n/oc.php index a6d8f91458edafc5a7bff0a9d9884f0da2ba03db..eb1a9038b0839ad15ffeec68fb6bd22d2adb193a 100644 --- a/apps/files/l10n/oc.php +++ b/apps/files/l10n/oc.php @@ -9,17 +9,14 @@ $TRANSLATIONS = array( "Files" => "Fichièrs", "Upload cancelled." => "Amontcargar anullat.", "File upload is in progress. Leaving the page now will cancel the upload." => "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo cargament. ", -"Error" => "Error", "Share" => "Parteja", "Rename" => "Torna nomenar", "Pending" => "Al esperar", -"replace" => "remplaça", -"suggest name" => "nom prepausat", -"cancel" => "anulla", "undo" => "defar", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), +"Error" => "Error", "Name" => "Nom", "Size" => "Talha", "Modified" => "Modificat", @@ -38,7 +35,6 @@ $TRANSLATIONS = array( "Cancel upload" => " Anulla l'amontcargar", "Nothing in here. Upload something!" => "Pas res dedins. Amontcarga qualquaren", "Download" => "Avalcarga", -"Unshare" => "Pas partejador", "Delete" => "Escafa", "Upload too large" => "Amontcargament tròp gròs", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los fichièrs que sias a amontcargar son tròp pesucs per la talha maxi pel servidor.", diff --git a/apps/files/l10n/pa.php b/apps/files/l10n/pa.php index d8c50f2d1bc4765a7a49e11cd3260647d20845e6..63fcbe12ddaa1a89d79c12bfc1eea4ca64ce8c53 100644 --- a/apps/files/l10n/pa.php +++ b/apps/files/l10n/pa.php @@ -1,13 +1,13 @@ "ਫਾਇਲਾਂ", -"Error" => "ਗਲਤੀ", "Share" => "ਸਾਂਝਾ ਕਰੋ", "Rename" => "ਨਾਂ ਬਦਲੋ", "undo" => "ਵਾਪਸ", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), +"Error" => "ਗਲਤੀ", "Upload" => "ਅੱਪਲੋਡ", "Cancel upload" => "ਅੱਪਲੋਡ ਰੱਦ ਕਰੋ", "Download" => "ਡਾਊਨਲੋਡ", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 50a247d2e0f4acd85b1b58d7e8f7080cbe489b0e..031bd508700cae20da177d054369e87cd9d698c9 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -2,6 +2,16 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Nie można było przenieść %s - Plik o takiej nazwie już istnieje", "Could not move %s" => "Nie można było przenieść %s", +"File name cannot be empty." => "Nazwa pliku nie może być pusta.", +"File name must not contain \"/\". Please choose a different name." => "Nazwa pliku nie może zawierać \"/\". Proszę wybrać inną nazwę.", +"The name %s is already used in the folder %s. Please choose a different name." => "Nazwa %s jest już używana w folderze %s. Proszę wybrać inną nazwę.", +"Not a valid source" => "Niepoprawne źródło", +"Server is not allowed to open URLs, please check the server configuration" => "Serwer nie mógł otworzyć adresów URL, należy sprawdzić konfigurację serwera", +"Error while downloading %s to %s" => "Błąd podczas pobierania %s do %S", +"Error when creating the file" => "Błąd przy tworzeniu pliku", +"Folder name cannot be empty." => "Nazwa folderu nie może być pusta.", +"Folder name must not contain \"/\". Please choose a different name." => "Nazwa folderu nie może zawierać \"/\". Proszę wybrać inną nazwę.", +"Error when creating the folder" => "Błąd przy tworzeniu folderu", "Unable to set upload directory." => "Nie można ustawić katalog wczytywania.", "Invalid Token" => "Nieprawidłowy Token", "No file was uploaded. Unknown error" => "Żaden plik nie został załadowany. Nieznany błąd", @@ -22,34 +32,38 @@ $TRANSLATIONS = array( "Upload cancelled." => "Wczytywanie anulowane.", "Could not get result from server." => "Nie można uzyskać wyniku z serwera.", "File upload is in progress. Leaving the page now will cancel the upload." => "Wysyłanie pliku jest w toku. Jeśli opuścisz tę stronę, wysyłanie zostanie przerwane.", -"URL cannot be empty." => "URL nie może być pusty.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nieprawidłowa nazwa folderu. Wykorzystanie 'Shared' jest zarezerwowane przez ownCloud", -"Error" => "Błąd", +"URL cannot be empty" => "URL nie może być pusty", +"In the home folder 'Shared' is a reserved filename" => "W katalogu domowym \"Shared\" jest zarezerwowana nazwa pliku", +"{new_name} already exists" => "{new_name} już istnieje", +"Could not create file" => "Nie można utworzyć pliku", +"Could not create folder" => "Nie można utworzyć folderu", +"Error fetching URL" => "Błąd przy pobieraniu adresu URL", "Share" => "Udostępnij", "Delete permanently" => "Trwale usuń", "Rename" => "Zmień nazwę", "Pending" => "Oczekujące", -"{new_name} already exists" => "{new_name} już istnieje", -"replace" => "zastąp", -"suggest name" => "zasugeruj nazwę", -"cancel" => "anuluj", +"Could not rename file" => "Nie można zmienić nazwy pliku", "replaced {new_name} with {old_name}" => "zastąpiono {new_name} przez {old_name}", "undo" => "cofnij", +"Error deleting file." => "Błąd podczas usuwania pliku", "_%n folder_::_%n folders_" => array("%n katalog","%n katalogi","%n katalogów"), "_%n file_::_%n files_" => array("%n plik","%n pliki","%n plików"), -"{dirs} and {files}" => "{katalogi} and {pliki}", +"{dirs} and {files}" => "{dirs} and {files}", "_Uploading %n file_::_Uploading %n files_" => array("Wysyłanie %n pliku","Wysyłanie %n plików","Wysyłanie %n plików"), "'.' is an invalid file name." => "„.” jest nieprawidłową nazwą pliku.", -"File name cannot be empty." => "Nazwa pliku nie może być pusta.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nieprawidłowa nazwa. Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*' są niedozwolone.", "Your storage is full, files can not be updated or synced anymore!" => "Magazyn jest pełny. Pliki nie mogą zostać zaktualizowane lub zsynchronizowane!", "Your storage is almost full ({usedSpacePercent}%)" => "Twój magazyn jest prawie pełny ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Aplikacja szyfrująca jest aktywna, ale twoje klucze nie zostały zainicjowane, prosze wyloguj się i zaloguj ponownie.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Klucz prywatny nie jest poprawny! Może Twoje hasło zostało zmienione z zewnątrz. Można zaktualizować hasło klucza prywatnego w ustawieniach osobistych w celu odzyskania dostępu do plików", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Szyfrowanie zostało wyłączone, ale nadal pliki są zaszyfrowane. Przejdź do ustawień osobistych i tam odszyfruj pliki.", "Your download is being prepared. This might take some time if the files are big." => "Pobieranie jest przygotowywane. Może to zająć trochę czasu jeśli pliki są duże.", "Error moving file" => "Błąd prz przenoszeniu pliku", +"Error" => "Błąd", "Name" => "Nazwa", "Size" => "Rozmiar", "Modified" => "Modyfikacja", +"Invalid folder name. Usage of 'Shared' is reserved." => "Niepoprawna nazwa folderu. Wykorzystanie \"Shared\" jest zarezerwowane.", "%s could not be renamed" => "%s nie można zmienić nazwy", "Upload" => "Wyślij", "File handling" => "Zarządzanie plikami", @@ -61,15 +75,16 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Maksymalna wielkość pliku wejściowego ZIP ", "Save" => "Zapisz", "New" => "Nowy", +"New text file" => "Nowy plik tekstowy", "Text file" => "Plik tekstowy", +"New folder" => "Nowy folder", "Folder" => "Folder", "From link" => "Z odnośnika", "Deleted files" => "Pliki usunięte", "Cancel upload" => "Anuluj wysyłanie", -"You don’t have write permissions here." => "Nie masz uprawnień do zapisu w tym miejscu.", +"You don’t have permission to upload or create files here" => "Nie masz uprawnień do wczytywania lub tworzenia plików w tym miejscu", "Nothing in here. Upload something!" => "Pusto. Wyślij coś!", "Download" => "Pobierz", -"Unshare" => "Zatrzymaj współdzielenie", "Delete" => "Usuń", "Upload too large" => "Ładowany plik jest za duży", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Pliki, które próbujesz przesłać, przekraczają maksymalną dopuszczalną wielkość.", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index cd96020856511a053c2a387c616dd785c1f8c6f0..f84dcfcd48864073a221f247d7d06cd55a9f53bc 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -2,6 +2,16 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Impossível mover %s - Um arquivo com este nome já existe", "Could not move %s" => "Impossível mover %s", +"File name cannot be empty." => "O nome do arquivo não pode estar vazio.", +"File name must not contain \"/\". Please choose a different name." => "O nome do arquivo não deve conter \"/\". Por favor, escolha um nome diferente.", +"The name %s is already used in the folder %s. Please choose a different name." => "O nome %s já é usado na pasta %s. Por favor, escolha um nome diferente.", +"Not a valid source" => "Não é uma fonte válida", +"Server is not allowed to open URLs, please check the server configuration" => "Não é permitido ao servidor abrir URLs, por favor verificar a configuração do servidor.", +"Error while downloading %s to %s" => "Erro ao baixar %s para %s", +"Error when creating the file" => "Erro ao criar o arquivo", +"Folder name cannot be empty." => "O nome da pasta não pode estar vazio.", +"Folder name must not contain \"/\". Please choose a different name." => "O nome da pasta não pode conter \"/\". Por favor, escolha um nome diferente.", +"Error when creating the folder" => "Erro ao criar a pasta", "Unable to set upload directory." => "Impossível configurar o diretório de upload", "Invalid Token" => "Token inválido", "No file was uploaded. Unknown error" => "Nenhum arquivo foi enviado. Erro desconhecido", @@ -22,34 +32,38 @@ $TRANSLATIONS = array( "Upload cancelled." => "Envio cancelado.", "Could not get result from server." => "Não foi possível obter o resultado do servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "Upload em andamento. Sair da página agora resultará no cancelamento do envio.", -"URL cannot be empty." => "URL não pode ficar em branco", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nome de pasta inválido. O uso do nome 'Compartilhado' é reservado ao ownCloud", -"Error" => "Erro", +"URL cannot be empty" => "URL não pode estar vazia", +"In the home folder 'Shared' is a reserved filename" => "Na pasta home 'Shared- Compartilhada' é um nome reservado", +"{new_name} already exists" => "{new_name} já existe", +"Could not create file" => "Não foi possível criar o arquivo", +"Could not create folder" => "Não foi possível criar a pasta", +"Error fetching URL" => "Erro ao buscar URL", "Share" => "Compartilhar", "Delete permanently" => "Excluir permanentemente", "Rename" => "Renomear", "Pending" => "Pendente", -"{new_name} already exists" => "{new_name} já existe", -"replace" => "substituir", -"suggest name" => "sugerir nome", -"cancel" => "cancelar", +"Could not rename file" => "Não foi possível renomear o arquivo", "replaced {new_name} with {old_name}" => "Substituído {old_name} por {new_name} ", "undo" => "desfazer", +"Error deleting file." => "Erro eliminando o arquivo.", "_%n folder_::_%n folders_" => array("%n pasta","%n pastas"), "_%n file_::_%n files_" => array("%n arquivo","%n arquivos"), "{dirs} and {files}" => "{dirs} e {files}", "_Uploading %n file_::_Uploading %n files_" => array("Enviando %n arquivo","Enviando %n arquivos"), "'.' is an invalid file name." => "'.' é um nome de arquivo inválido.", -"File name cannot be empty." => "O nome do arquivo não pode estar vazio.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos.", "Your storage is full, files can not be updated or synced anymore!" => "Seu armazenamento está cheio, arquivos não podem mais ser atualizados ou sincronizados!", "Your storage is almost full ({usedSpacePercent}%)" => "Seu armazenamento está quase cheio ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "App de encriptação está ativado, mas as chaves não estão inicializadas, por favor log-out e faça login novamente", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Chave do App de Encriptação é inválida. Por favor, atualize sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Encriptação foi desabilitada mas seus arquivos continuam encriptados. Por favor vá a suas configurações pessoais para descriptar seus arquivos.", "Your download is being prepared. This might take some time if the files are big." => "Seu download está sendo preparado. Isto pode levar algum tempo se os arquivos forem grandes.", "Error moving file" => "Erro movendo o arquivo", +"Error" => "Erro", "Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", +"Invalid folder name. Usage of 'Shared' is reserved." => "Nome da pasta inválido. Uso de 'Shared' é reservado.", "%s could not be renamed" => "%s não pode ser renomeado", "Upload" => "Upload", "File handling" => "Tratamento de Arquivo", @@ -61,15 +75,16 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Tamanho máximo para arquivo ZIP", "Save" => "Guardar", "New" => "Novo", +"New text file" => "Novo arquivo texto", "Text file" => "Arquivo texto", +"New folder" => "Nova pasta", "Folder" => "Pasta", "From link" => "Do link", "Deleted files" => "Arquivos apagados", "Cancel upload" => "Cancelar upload", -"You don’t have write permissions here." => "Você não possui permissão de escrita aqui.", +"You don’t have permission to upload or create files here" => "Você não tem permissão para carregar ou criar arquivos aqui", "Nothing in here. Upload something!" => "Nada aqui.Carrege alguma coisa!", "Download" => "Baixar", -"Unshare" => "Descompartilhar", "Delete" => "Excluir", "Upload too large" => "Upload muito grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os arquivos que você está tentando carregar excedeu o tamanho máximo para arquivos no servidor.", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index f6d61fc9873e6d1d497587147f1f21643c11bd0e..4b9fade2e22ebc2bee0604ee588f4272d28d2f8a 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -2,6 +2,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Não foi possível mover o ficheiro %s - Já existe um ficheiro com esse nome", "Could not move %s" => "Não foi possível move o ficheiro %s", +"File name cannot be empty." => "O nome do ficheiro não pode estar vazio.", "Unable to set upload directory." => "Não foi possível criar o diretório de upload", "Invalid Token" => "Token inválido", "No file was uploaded. Unknown error" => "Nenhum ficheiro foi carregado. Erro desconhecido", @@ -13,22 +14,18 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Está a faltar a pasta temporária", "Failed to write to disk" => "Falhou a escrita no disco", "Not enough storage available" => "Não há espaço suficiente em disco", +"Upload failed. Could not get file info." => "O carregamento falhou. Não foi possível obter a informação do ficheiro.", "Invalid directory." => "Directório Inválido", "Files" => "Ficheiros", "Not enough space available" => "Espaço em disco insuficiente!", "Upload cancelled." => "Envio cancelado.", +"Could not get result from server." => "Não foi possível obter o resultado do servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora.", -"URL cannot be empty." => "O URL não pode estar vazio.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nome da pasta inválido. Palavra 'Shared' é reservado pela ownCloud", -"Error" => "Erro", +"{new_name} already exists" => "O nome {new_name} já existe", "Share" => "Partilhar", "Delete permanently" => "Eliminar permanentemente", "Rename" => "Renomear", "Pending" => "Pendente", -"{new_name} already exists" => "O nome {new_name} já existe", -"replace" => "substituir", -"suggest name" => "sugira um nome", -"cancel" => "cancelar", "replaced {new_name} with {old_name}" => "substituido {new_name} por {old_name}", "undo" => "desfazer", "_%n folder_::_%n folders_" => array("%n pasta","%n pastas"), @@ -36,12 +33,13 @@ $TRANSLATIONS = array( "{dirs} and {files}" => "{dirs} e {files}", "_Uploading %n file_::_Uploading %n files_" => array("A carregar %n ficheiro","A carregar %n ficheiros"), "'.' is an invalid file name." => "'.' não é um nome de ficheiro válido!", -"File name cannot be empty." => "O nome do ficheiro não pode estar vazio.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos.", "Your storage is full, files can not be updated or synced anymore!" => "O seu armazenamento está cheio, os ficheiros não podem ser sincronizados.", "Your storage is almost full ({usedSpacePercent}%)" => "O seu espaço de armazenamento está quase cheiro ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "A encriptação foi desactivada mas os seus ficheiros continuam encriptados. Por favor consulte as suas definições pessoais para desencriptar os ficheiros.", "Your download is being prepared. This might take some time if the files are big." => "O seu download está a ser preparado. Este processo pode demorar algum tempo se os ficheiros forem grandes.", +"Error moving file" => "Erro ao mover o ficheiro", +"Error" => "Erro", "Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", @@ -57,14 +55,13 @@ $TRANSLATIONS = array( "Save" => "Guardar", "New" => "Novo", "Text file" => "Ficheiro de texto", +"New folder" => "Nova Pasta", "Folder" => "Pasta", "From link" => "Da ligação", "Deleted files" => "Ficheiros eliminados", "Cancel upload" => "Cancelar envio", -"You don’t have write permissions here." => "Não tem permissões de escrita aqui.", "Nothing in here. Upload something!" => "Vazio. Envie alguma coisa!", "Download" => "Transferir", -"Unshare" => "Deixar de partilhar", "Delete" => "Eliminar", "Upload too large" => "Upload muito grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os ficheiro que está a tentar enviar excedem o tamanho máximo de envio neste servidor.", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index b1b9af45d38e2ae62f849c23009c4c6cc94e02f6..933625d8d1e3bc3de7d09a5c40c6569ae3cf5d4b 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -2,6 +2,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "%s nu se poate muta - Fișierul cu acest nume există deja ", "Could not move %s" => "Nu s-a putut muta %s", +"File name cannot be empty." => "Numele fișierului nu poate rămâne gol.", "Unable to set upload directory." => "Imposibil de a seta directorul pentru incărcare.", "Invalid Token" => "Jeton Invalid", "No file was uploaded. Unknown error" => "Nici un fișier nu a fost încărcat. Eroare necunoscută", @@ -22,17 +23,11 @@ $TRANSLATIONS = array( "Upload cancelled." => "Încărcare anulată.", "Could not get result from server." => "Nu se poate obține rezultatul de la server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea.", -"URL cannot be empty." => "Adresa URL nu poate fi golita", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nume de dosar invalid. Utilizarea 'Shared' e rezervată de ownCloud", -"Error" => "Eroare", +"{new_name} already exists" => "{new_name} deja exista", "Share" => "a imparti", "Delete permanently" => "Stergere permanenta", "Rename" => "Redenumire", "Pending" => "in timpul", -"{new_name} already exists" => "{new_name} deja exista", -"replace" => "înlocuire", -"suggest name" => "sugerează nume", -"cancel" => "anulare", "replaced {new_name} with {old_name}" => "{new_name} inlocuit cu {old_name}", "undo" => "Anulează ultima acțiune", "_%n folder_::_%n folders_" => array("%n director","%n directoare","%n directoare"), @@ -40,13 +35,13 @@ $TRANSLATIONS = array( "{dirs} and {files}" => "{dirs} și {files}", "_Uploading %n file_::_Uploading %n files_" => array("Se încarcă %n fișier.","Se încarcă %n fișiere.","Se încarcă %n fișiere."), "'.' is an invalid file name." => "'.' este un nume invalid de fișier.", -"File name cannot be empty." => "Numele fișierului nu poate rămâne gol.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nume invalide, '\\', '/', '<', '>', ':', '\"', '|', '?' si '*' nu sunt permise.", "Your storage is full, files can not be updated or synced anymore!" => "Spatiul de stocare este plin, fisierele nu mai pot fi actualizate sau sincronizate", "Your storage is almost full ({usedSpacePercent}%)" => "Spatiul de stocare este aproape plin {spatiu folosit}%", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "criptarea a fost disactivata dar fisierele sant inca criptate.va rog intrati in setarile personale pentru a decripta fisierele", "Your download is being prepared. This might take some time if the files are big." => "in curs de descarcare. Aceasta poate să dureze ceva timp dacă fișierele sunt mari.", "Error moving file" => "Eroare la mutarea fișierului", +"Error" => "Eroare", "Name" => "Nume", "Size" => "Dimensiune", "Modified" => "Modificat", @@ -66,10 +61,8 @@ $TRANSLATIONS = array( "From link" => "de la adresa", "Deleted files" => "Sterge fisierele", "Cancel upload" => "Anulează încărcarea", -"You don’t have write permissions here." => "Nu ai permisiunea de a scrie aici.", "Nothing in here. Upload something!" => "Nimic aici. Încarcă ceva!", "Download" => "Descarcă", -"Unshare" => "Anulare", "Delete" => "Șterge", "Upload too large" => "Fișierul încărcat este prea mare", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fișierul care l-ai încărcat a depășită limita maximă admisă la încărcare pe acest server.", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 143a3379ad4e4e2c3fc4b07d8dd7c1b19f58c9c3..968da63aacaf89b46d9d861465cd9a9f83049722 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -2,6 +2,16 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Невозможно переместить %s - файл с таким именем уже существует", "Could not move %s" => "Невозможно переместить %s", +"File name cannot be empty." => "Имя файла не может быть пустым.", +"File name must not contain \"/\". Please choose a different name." => "Имя файла не должно содержать символ \"/\". Пожалуйста, выберите другое имя.", +"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-адреса, пожалуйста, проверьте настройки сервера", +"Error while downloading %s to %s" => "Ошибка при загрузке %s в %s", +"Error when creating the file" => "Ошибка при создании файла", +"Folder name cannot be empty." => "Имя папки не может быть пустым.", +"Folder name must not contain \"/\". Please choose a different name." => "Имя папки не должно содержать символ \"/\". Пожалуйста, выберите другое имя.", +"Error when creating the folder" => "Ошибка при создании папки", "Unable to set upload directory." => "Не удалось установить каталог загрузки.", "Invalid Token" => "Недопустимый маркер", "No file was uploaded. Unknown error" => "Файл не был загружен. Неизвестная ошибка", @@ -22,34 +32,38 @@ $TRANSLATIONS = array( "Upload cancelled." => "Загрузка отменена.", "Could not get result from server." => "Не получен ответ от сервера", "File upload is in progress. Leaving the page now will cancel the upload." => "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку.", -"URL cannot be empty." => "Ссылка не может быть пустой.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Неправильное имя каталога. Имя 'Shared' зарезервировано.", -"Error" => "Ошибка", +"URL cannot be empty" => "Ссылка не может быть пустой.", +"In the home folder 'Shared' is a reserved filename" => "В домашней папке 'Shared' зарезервированное имя файла", +"{new_name} already exists" => "{new_name} уже существует", +"Could not create file" => "Не удалось создать файл", +"Could not create folder" => "Не удалось создать папку", +"Error fetching URL" => "Ошибка получения URL", "Share" => "Открыть доступ", "Delete permanently" => "Удалено навсегда", "Rename" => "Переименовать", "Pending" => "Ожидание", -"{new_name} already exists" => "{new_name} уже существует", -"replace" => "заменить", -"suggest name" => "предложить название", -"cancel" => "отмена", +"Could not rename file" => "Не удалось переименовать файл", "replaced {new_name} with {old_name}" => "заменено {new_name} на {old_name}", "undo" => "отмена", +"Error deleting file." => "Ошибка при удалении файла.", "_%n folder_::_%n folders_" => array("%n папка","%n папки","%n папок"), "_%n file_::_%n files_" => array("%n файл","%n файла","%n файлов"), "{dirs} and {files}" => "{dirs} и {files}", "_Uploading %n file_::_Uploading %n files_" => array("Закачка %n файла","Закачка %n файлов","Закачка %n файлов"), "'.' is an invalid file name." => "'.' - неправильное имя файла.", -"File name cannot be empty." => "Имя файла не может быть пустым.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неправильное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы.", "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" => "Приложение для шифрования активно, но ваши ключи не инициализированы, пожалуйста, перелогиньтесь", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Неверный приватный ключ для приложения шифрования. Пожалуйста, обноваите ваш приватный ключ в персональных настройках чтобы восстановить доступ к вашим зашифрованным файлам.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Шифрование было отключено, но ваши файлы все еще зашифрованы. Пожалуйста, зайдите на страницу персональных настроек для того, чтобы расшифровать ваши файлы.", "Your download is being prepared. This might take some time if the files are big." => "Загрузка началась. Это может потребовать много времени, если файл большого размера.", "Error moving file" => "Ошибка при перемещении файла", +"Error" => "Ошибка", "Name" => "Имя", "Size" => "Размер", "Modified" => "Изменён", +"Invalid folder name. Usage of 'Shared' is reserved." => "Неправильное имя каталога. Имя 'Shared' зарезервировано.", "%s could not be renamed" => "%s не может быть переименован", "Upload" => "Загрузка", "File handling" => "Управление файлами", @@ -61,15 +75,16 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Максимальный исходный размер для ZIP файлов", "Save" => "Сохранить", "New" => "Новый", +"New text file" => "Новый текстовый файл", "Text file" => "Текстовый файл", +"New folder" => "Новая папка", "Folder" => "Папка", "From link" => "Из ссылки", "Deleted files" => "Удалённые файлы", "Cancel upload" => "Отмена загрузки", -"You don’t have write permissions here." => "У вас нет разрешений на запись здесь.", +"You don’t have permission to upload or create files here" => "У вас недостаточно прав для загрузки или создания файлов отсюда.", "Nothing in here. Upload something!" => "Здесь ничего нет. Загрузите что-нибудь!", "Download" => "Скачать", -"Unshare" => "Закрыть общий доступ", "Delete" => "Удалить", "Upload too large" => "Файл слишком велик", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файлы, которые вы пытаетесь загрузить, превышают лимит для файлов на этом сервере.", diff --git a/apps/files/l10n/si_LK.php b/apps/files/l10n/si_LK.php index 7d24370a092f06e8f1c22f18e007028c4a5de089..44decfef1b023155bd2a50477553ede12a18692a 100644 --- a/apps/files/l10n/si_LK.php +++ b/apps/files/l10n/si_LK.php @@ -10,17 +10,13 @@ $TRANSLATIONS = array( "Files" => "ගොනු", "Upload cancelled." => "උඩුගත කිරීම අත් හරින්න ලදී", "File upload is in progress. Leaving the page now will cancel the upload." => "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත", -"URL cannot be empty." => "යොමුව හිස් විය නොහැක", -"Error" => "දෝෂයක්", "Share" => "බෙදා හදා ගන්න", "Rename" => "නැවත නම් කරන්න", -"replace" => "ප්‍රතිස්ථාපනය කරන්න", -"suggest name" => "නමක් යෝජනා කරන්න", -"cancel" => "අත් හරින්න", "undo" => "නිෂ්ප්‍රභ කරන්න", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), +"Error" => "දෝෂයක්", "Name" => "නම", "Size" => "ප්‍රමාණය", "Modified" => "වෙනස් කළ", @@ -40,7 +36,6 @@ $TRANSLATIONS = array( "Cancel upload" => "උඩුගත කිරීම අත් හරින්න", "Nothing in here. Upload something!" => "මෙහි කිසිවක් නොමැත. යමක් උඩුගත කරන්න", "Download" => "බාන්න", -"Unshare" => "නොබෙදු", "Delete" => "මකා දමන්න", "Upload too large" => "උඩුගත කිරීම විශාල වැඩිය", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "ඔබ උඩුගත කිරීමට තැත් කරන ගොනු මෙම සේවාදායකයා උඩුගත කිරීමට ඉඩදී ඇති උපරිම ගොනු විශාලත්වයට වඩා වැඩිය", diff --git a/apps/files/l10n/sk.php b/apps/files/l10n/sk.php index a3178a95c47c1b1f0afb722e2cda03d5ee75bd17..53daf549eaa41e18c243da307532bd53c10df16d 100644 --- a/apps/files/l10n/sk.php +++ b/apps/files/l10n/sk.php @@ -1,7 +1,11 @@ "Zdieľať", "_%n folder_::_%n folders_" => array("","",""), "_%n file_::_%n files_" => array("","",""), -"_Uploading %n file_::_Uploading %n files_" => array("","","") +"_Uploading %n file_::_Uploading %n files_" => array("","",""), +"Save" => "Uložiť", +"Download" => "Stiahnuť", +"Delete" => "Odstrániť" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index 962ce7d7e9b08e872254153ecdd890def27ffa9c..2d0eb25f62239c5487ec474dc5acadc18476e832 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -2,48 +2,66 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Nie je možné presunúť %s - súbor s týmto menom už existuje", "Could not move %s" => "Nie je možné presunúť %s", +"File name cannot be empty." => "Meno súboru nemôže byť prázdne", +"File name must not contain \"/\". Please choose a different name." => "Názov súboru nesmie obsahovať \"/\". Prosím zvoľte iný názov.", +"The name %s is already used in the folder %s. Please choose a different name." => "Názov %s už používa priečinok s%. Prosím zvoľte iný názov.", +"Not a valid source" => "Neplatný zdroj", +"Error while downloading %s to %s" => "Chyba pri sťahovaní súboru %s do %s", +"Error when creating the file" => "Chyba pri vytváraní súboru", +"Folder name cannot be empty." => "Názov priečinka nemôže byť prázdny.", +"Folder name must not contain \"/\". Please choose a different name." => "Názov priečinka nesmie obsahovať \"/\". Prosím zvoľte iný názov.", +"Error when creating the folder" => "Chyba pri vytváraní priečinka", "Unable to set upload directory." => "Nemožno nastaviť priečinok pre nahrané súbory.", "Invalid Token" => "Neplatný token", -"No file was uploaded. Unknown error" => "Žiaden súbor nebol odoslaný. Neznáma chyba", +"No file was uploaded. Unknown error" => "Žiaden súbor nebol nahraný. Neznáma chyba", "There is no error, the file uploaded with success" => "Nenastala žiadna chyba, súbor bol úspešne nahraný", -"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Nahraný súbor predčil konfiguračnú direktívu upload_max_filesize v súbore php.ini:", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Nahraný súbor prekročil limit nastavený v upload_max_filesize v súbore php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Ukladaný súbor prekračuje nastavenie MAX_FILE_SIZE z volieb HTML formulára.", "The uploaded file was only partially uploaded" => "Ukladaný súbor sa nahral len čiastočne", "No file was uploaded" => "Žiadny súbor nebol uložený", "Missing a temporary folder" => "Chýba dočasný priečinok", "Failed to write to disk" => "Zápis na disk sa nepodaril", "Not enough storage available" => "Nedostatok dostupného úložného priestoru", +"Upload failed. Could not get file info." => "Nahrávanie zlyhalo. Nepodarilo sa získať informácie o súbore.", +"Upload failed. Could not find uploaded file" => "Nahrávanie zlyhalo. Nepodarilo sa nájsť nahrávaný súbor", "Invalid directory." => "Neplatný priečinok.", "Files" => "Súbory", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Nemožno nahrať súbor {filename}, pretože je to priečinok, alebo má 0 bitov", "Not enough space available" => "Nie je k dispozícii dostatok miesta", "Upload cancelled." => "Odosielanie zrušené.", +"Could not get result from server." => "Nepodarilo sa dostať výsledky zo servera.", "File upload is in progress. Leaving the page now will cancel the upload." => "Opustenie stránky zruší práve prebiehajúce odosielanie súboru.", -"URL cannot be empty." => "URL nemôže byť prázdne.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Neplatný názov priečinka. Názov \"Shared\" je rezervovaný pre ownCloud", -"Error" => "Chyba", +"URL cannot be empty" => "URL nemôže byť prázdna", +"In the home folder 'Shared' is a reserved filename" => "V domovskom priečinku je názov \"Shared\" vyhradený názov súboru", +"{new_name} already exists" => "{new_name} už existuje", +"Could not create file" => "Nemožno vytvoriť súbor", +"Could not create folder" => "Nemožno vytvoriť priečinok", "Share" => "Zdieľať", "Delete permanently" => "Zmazať trvalo", "Rename" => "Premenovať", "Pending" => "Prebieha", -"{new_name} already exists" => "{new_name} už existuje", -"replace" => "nahradiť", -"suggest name" => "pomôcť s menom", -"cancel" => "zrušiť", +"Could not rename file" => "Nemožno premenovať súbor", "replaced {new_name} with {old_name}" => "prepísaný {new_name} súborom {old_name}", "undo" => "vrátiť", +"Error deleting file." => "Chyba pri mazaní súboru.", "_%n folder_::_%n folders_" => array("%n priečinok","%n priečinky","%n priečinkov"), "_%n file_::_%n files_" => array("%n súbor","%n súbory","%n súborov"), +"{dirs} and {files}" => "{dirs} a {files}", "_Uploading %n file_::_Uploading %n files_" => array("Nahrávam %n súbor","Nahrávam %n súbory","Nahrávam %n súborov"), "'.' is an invalid file name." => "'.' je neplatné meno súboru.", -"File name cannot be empty." => "Meno súboru nemôže byť prázdne", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty.", "Your storage is full, files can not be updated or synced anymore!" => "Vaše úložisko je plné. Súbory nemožno aktualizovať ani synchronizovať!", "Your storage is almost full ({usedSpacePercent}%)" => "Vaše úložisko je takmer plné ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Aplikácia na šifrovanie je zapnutá, ale vaše kľúče nie sú inicializované. Odhláste sa a znovu sa prihláste.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Chybný súkromný kľúč na šifrovanie aplikácií. Zaktualizujte si heslo súkromného kľúča v svojom osobnom nastavení, aby ste znovu získali prístup k svojim zašifrovaným súborom.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Šifrovanie bolo zakázané, ale vaše súbory sú stále zašifrované. Prosím, choďte do osobného nastavenia pre dešifrovanie súborov.", "Your download is being prepared. This might take some time if the files are big." => "Vaše sťahovanie sa pripravuje. Ak sú sťahované súbory veľké, môže to chvíľu trvať.", +"Error moving file" => "Chyba pri presúvaní súboru", +"Error" => "Chyba", "Name" => "Názov", "Size" => "Veľkosť", "Modified" => "Upravené", +"Invalid folder name. Usage of 'Shared' is reserved." => "Názov priečinka je chybný. Použitie názvu 'Shared' nie je povolené.", "%s could not be renamed" => "%s nemohol byť premenovaný", "Upload" => "Odoslať", "File handling" => "Nastavenie správania sa k súborom", @@ -54,16 +72,17 @@ $TRANSLATIONS = array( "0 is unlimited" => "0 znamená neobmedzené", "Maximum input size for ZIP files" => "Najväčšia veľkosť ZIP súborov", "Save" => "Uložiť", -"New" => "Nová", +"New" => "Nový", +"New text file" => "Nový textový súbor", "Text file" => "Textový súbor", +"New folder" => "Nový priečinok", "Folder" => "Priečinok", "From link" => "Z odkazu", "Deleted files" => "Zmazané súbory", "Cancel upload" => "Zrušiť odosielanie", -"You don’t have write permissions here." => "Nemáte oprávnenie na zápis.", +"You don’t have permission to upload or create files here" => "Nemáte oprávnenie sem nahrávať alebo vytvoriť súbory", "Nothing in here. Upload something!" => "Žiadny súbor. Nahrajte niečo!", "Download" => "Sťahovanie", -"Unshare" => "Zrušiť zdieľanie", "Delete" => "Zmazať", "Upload too large" => "Nahrávanie je príliš veľké", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Súbory, ktoré sa snažíte nahrať, presahujú maximálnu veľkosť pre nahratie súborov na tento server.", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 7190753eac9610b62dd78660de326eff75053e98..037e5f6b6b0171d360bffe85b8dc970953b279d5 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -1,7 +1,17 @@ "%s ni mogoče premakniti - datoteka s tem imenom že obstaja", -"Could not move %s" => "Ni mogoče premakniti %s", +"Could not move %s - File with this name already exists" => "Datoteke %s ni mogoče premakniti - datoteka s tem imenom že obstaja.", +"Could not move %s" => "Datoteke %s ni mogoče premakniti", +"File name cannot be empty." => "Ime datoteke ne sme biti prazno polje.", +"File name must not contain \"/\". Please choose a different name." => "Ime datoteke ne sme vsebovati znaka \"/\". Določiti je treba drugo ime.", +"The name %s is already used in the folder %s. Please choose a different name." => "Ime %s je že v mapi %s že v uporabi. Izbrati je treba drugo ime.", +"Not a valid source" => "Vir ni veljaven", +"Server is not allowed to open URLs, please check the server configuration" => "Odpiranje naslovov URL preko strežnika ni dovoljeno. Preverite nastavitve strežnika.", +"Error while downloading %s to %s" => "Napaka med prejemanjem %s v mapo %s", +"Error when creating the file" => "Napaka med ustvarjanjem datoteke", +"Folder name cannot be empty." => "Ime mape ne more biti prazna vrednost.", +"Folder name must not contain \"/\". Please choose a different name." => "Ime mape ne sme vsebovati znaka \"/\". Določiti je treba drugo ime.", +"Error when creating the folder" => "Napaka med ustvarjanjem mape", "Unable to set upload directory." => "Mapo, v katero boste prenašali dokumente, ni mogoče določiti", "Invalid Token" => "Neveljaven žeton", "No file was uploaded. Unknown error" => "Ni poslane datoteke. Neznana napaka.", @@ -13,37 +23,48 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Manjka začasna mapa", "Failed to write to disk" => "Pisanje na disk je spodletelo", "Not enough storage available" => "Na voljo ni dovolj prostora", +"Upload failed. Could not get file info." => "Pošiljanje je spodletelo. Ni mogoče pridobiti podrobnosti datoteke.", +"Upload failed. Could not find uploaded file" => "Pošiljanje je spodletelo. Ni mogoče najti poslane datoteke.", "Invalid directory." => "Neveljavna mapa.", "Files" => "Datoteke", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Ni mogoče poslati datoteke {filename}, saj je to ali mapa ali pa je velikost datoteke 0 bajtov.", "Not enough space available" => "Na voljo ni dovolj prostora.", "Upload cancelled." => "Pošiljanje je preklicano.", +"Could not get result from server." => "Ni mogoče pridobiti podatkov s strežnika.", "File upload is in progress. Leaving the page now will cancel the upload." => "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano.", -"URL cannot be empty." => "Naslov URL ne sme biti prazna vrednost.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Ime mape je neveljavno. Uporaba oznake \"Souporaba\" je rezervirana za ownCloud", -"Error" => "Napaka", +"URL cannot be empty" => "Polje naslova URL ne sme biti prazno", +"In the home folder 'Shared' is a reserved filename" => "V domači mapi ni dovoljeno ustvariti mape z imenom 'Souporabe', saj je ime zadržano za javno mapo.", +"{new_name} already exists" => "{new_name} že obstaja", +"Could not create file" => "Ni mogoče ustvariti datoteke", +"Could not create folder" => "Ni mogoče ustvariti mape", +"Error fetching URL" => "Napaka pridobivanja naslova URL", "Share" => "Souporaba", "Delete permanently" => "Izbriši dokončno", "Rename" => "Preimenuj", "Pending" => "V čakanju ...", -"{new_name} already exists" => "{new_name} že obstaja", -"replace" => "zamenjaj", -"suggest name" => "predlagaj ime", -"cancel" => "prekliči", +"Could not rename file" => "Ni mogoče preimenovati datoteke", "replaced {new_name} with {old_name}" => "preimenovano ime {new_name} z imenom {old_name}", "undo" => "razveljavi", -"_%n folder_::_%n folders_" => array("","","",""), -"_%n file_::_%n files_" => array("","","",""), -"_Uploading %n file_::_Uploading %n files_" => array("","","",""), +"Error deleting file." => "Napaka brisanja datoteke.", +"_%n folder_::_%n folders_" => array("%n mapa","%n mapi","%n mape","%n map"), +"_%n file_::_%n files_" => array("%n datoteka","%n datoteki","%n datoteke","%n datotek"), +"{dirs} and {files}" => "{dirs} in {files}", +"_Uploading %n file_::_Uploading %n files_" => array("Posodabljanje %n datoteke","Posodabljanje %n datotek","Posodabljanje %n datotek","Posodabljanje %n datotek"), "'.' is an invalid file name." => "'.' je neveljavno ime datoteke.", -"File name cannot be empty." => "Ime datoteke ne sme biti prazno polje.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neveljavno ime, znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neveljavno ime; znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni.", "Your storage is full, files can not be updated or synced anymore!" => "Shramba je povsem napolnjena. Datotek ni več mogoče posodabljati in usklajevati!", -"Your storage is almost full ({usedSpacePercent}%)" => "Mesto za shranjevanje je skoraj polno ({usedSpacePercent}%)", -"Your download is being prepared. This might take some time if the files are big." => "Postopek priprave datoteke za prejem je lahko dolgotrajen, če je datoteka zelo velika.", +"Your storage is almost full ({usedSpacePercent}%)" => "Prostor za shranjevanje je skoraj do konca zaseden ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Program za šifriranje je omogočen, vendar ni začet. Odjavite se in nato ponovno prijavite.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ni ustreznega osebnega ključa za program za šifriranje. Posodobite osebni ključ za dostop do šifriranih datotek med nastavitvami.", +"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Šifriranje je onemogočeno, datoteke pa so še vedno šifrirane. Odšifrirajte jih med nastavitvami.", +"Your download is being prepared. This might take some time if the files are big." => "Postopek priprave datoteke za prejem je lahko dolgotrajen, kadar je datoteka zelo velika.", +"Error moving file" => "Napaka premikanja datoteke", +"Error" => "Napaka", "Name" => "Ime", "Size" => "Velikost", "Modified" => "Spremenjeno", -"%s could not be renamed" => "%s ni bilo mogoče preimenovati", +"Invalid folder name. Usage of 'Shared' is reserved." => "Neveljavno ime mape. Ime 'Souporaba' je zadržana za javno mapo.", +"%s could not be renamed" => "%s ni mogoče preimenovati", "Upload" => "Pošlji", "File handling" => "Upravljanje z datotekami", "Maximum upload size" => "Največja velikost za pošiljanja", @@ -54,15 +75,16 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Največja vhodna velikost za datoteke ZIP", "Save" => "Shrani", "New" => "Novo", +"New text file" => "Nova besedilna datoteka", "Text file" => "Besedilna datoteka", +"New folder" => "Nova mapa", "Folder" => "Mapa", "From link" => "Iz povezave", "Deleted files" => "Izbrisane datoteke", "Cancel upload" => "Prekliči pošiljanje", -"You don’t have write permissions here." => "Za to mesto ni ustreznih dovoljenj za pisanje.", +"You don’t have permission to upload or create files here" => "Ni ustreznih dovoljenj za pošiljanje ali ustvarjanje datotek na tem mestu.", "Nothing in here. Upload something!" => "Tukaj še ni ničesar. Najprej je treba kakšno datoteko poslati v oblak!", "Download" => "Prejmi", -"Unshare" => "Prekliči souporabo", "Delete" => "Izbriši", "Upload too large" => "Prekoračenje omejitve velikosti", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Datoteke, ki jih želite poslati, presegajo največjo dovoljeno velikost na strežniku.", diff --git a/apps/files/l10n/sq.php b/apps/files/l10n/sq.php index ecc066a284c9a5f526151a2b00ff2d1ea8349d4b..a06b6821afe4be8655667ea4c35146d94068d5eb 100644 --- a/apps/files/l10n/sq.php +++ b/apps/files/l10n/sq.php @@ -1,75 +1,68 @@ "%s nuk u spostua - Aty ekziston një skedar me të njëjtin emër", -"Could not move %s" => "%s nuk u spostua", -"Unable to set upload directory." => "Nuk është i mundur caktimi i dosjes së ngarkimit.", -"Invalid Token" => "Përmbajtje e pavlefshme", -"No file was uploaded. Unknown error" => "Nuk u ngarkua asnjë skedar. Veprim i gabuar i panjohur", -"There is no error, the file uploaded with success" => "Nuk pati veprime të gabuara, skedari u ngarkua me sukses", -"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Skedari i ngarkuar tejkalon udhëzimin upload_max_filesize tek php.ini:", -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Skedari i ngarkuar tejkalon udhëzimin MAX_FILE_SIZE të specifikuar në formularin HTML", -"The uploaded file was only partially uploaded" => "Skedari i ngarkuar u ngarkua vetëm pjesërisht", -"No file was uploaded" => "Nuk u ngarkua asnjë skedar", -"Missing a temporary folder" => "Një dosje e përkohshme nuk u gjet", -"Failed to write to disk" => "Ruajtja në disk dështoi", -"Not enough storage available" => "Nuk ka mbetur hapësirë memorizimi e mjaftueshme", -"Invalid directory." => "Dosje e pavlefshme.", -"Files" => "Skedarët", -"Not enough space available" => "Nuk ka hapësirë memorizimi e mjaftueshme", -"Upload cancelled." => "Ngarkimi u anulua.", -"File upload is in progress. Leaving the page now will cancel the upload." => "Ngarkimi i skedarit është në vazhdim. Nqse ndërroni faqen tani ngarkimi do të anulohet.", -"URL cannot be empty." => "URL-i nuk mund të jetë bosh.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Emri i dosjes është i pavlefshëm. Përdorimi i \"Shared\" është i rezervuar nga Owncloud-i", -"Error" => "Veprim i gabuar", -"Share" => "Nda", -"Delete permanently" => "Elimino përfundimisht", -"Rename" => "Riemërto", -"Pending" => "Pezulluar", -"{new_name} already exists" => "{new_name} ekziston", -"replace" => "zëvëndëso", -"suggest name" => "sugjero një emër", -"cancel" => "anulo", -"replaced {new_name} with {old_name}" => "U zëvëndësua {new_name} me {old_name}", -"undo" => "anulo", +"Could not move %s - File with this name already exists" => "E pa mundur zhvendosja e %s - ekziston nje skedar me te njetin emer", +"Could not move %s" => "Nuk mund të zhvendoset %s", +"File name cannot be empty." => "Emri i skedarit nuk mund të jetë bosh.", +"Unable to set upload directory." => "E pa mundur të vendoset dosja e ngarkimit", +"Invalid Token" => "Shenjë e gabuar", +"No file was uploaded. Unknown error" => "Asnjë skedar nuk u dërgua. Gabim i pa njohur", +"There is no error, the file uploaded with success" => "Skedari u ngarkua me sukses", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Skedari i ngarkuar tejkalon limitin hapsirës së lejuar në php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Skedari i ngarkuar tejlakon vlerën MAX_FILE_SIZE të përcaktuar në formën HTML", +"The uploaded file was only partially uploaded" => "Skedari është ngakruar vetëm pjesërisht", +"No file was uploaded" => "Asnjë skedar nuk është ngarkuar", +"Missing a temporary folder" => "Mungon dosja e përkohshme", +"Failed to write to disk" => "Dështoi shkrimi në disk", +"Not enough storage available" => "Hapsira e arkivimit e pamjaftueshme", +"Invalid directory." => "Dosje e pavlefshme", +"Files" => "Skedarë", +"Not enough space available" => "Nuk ka hapsirë të nevojshme", +"Upload cancelled." => "Ngarkimi u anullua", +"File upload is in progress. Leaving the page now will cancel the upload." => "Skedari duke u ngarkuar. Largimi nga faqja do të anullojë ngarkimin", +"{new_name} already exists" => "{new_name} është ekzistues ", +"Share" => "Ndaj", +"Delete permanently" => "Fshi përfundimisht", +"Rename" => "Riemëro", +"Pending" => "Në vijim", +"replaced {new_name} with {old_name}" => "u zëvendësua {new_name} me {old_name}", +"undo" => "anullo", "_%n folder_::_%n folders_" => array("%n dosje","%n dosje"), "_%n file_::_%n files_" => array("%n skedar","%n skedarë"), "{dirs} and {files}" => "{dirs} dhe {files}", "_Uploading %n file_::_Uploading %n files_" => array("Po ngarkoj %n skedar","Po ngarkoj %n skedarë"), -"'.' is an invalid file name." => "'.' është emër i pavlefshëm.", -"File name cannot be empty." => "Emri i skedarit nuk mund të jetë bosh.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Emër i pavlefshëm, '\\', '/', '<', '>', ':', '\"', '|', '?' dhe '*' nuk lejohen.", -"Your storage is full, files can not be updated or synced anymore!" => "Hapësira juaj e memorizimit është plot, nuk mund të ngarkoni apo sinkronizoni më skedarët.", -"Your storage is almost full ({usedSpacePercent}%)" => "Hapësira juaj e memorizimit është gati plot ({usedSpacePercent}%)", +"'.' is an invalid file name." => "'.' nuk është skedar i vlefshem.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Emër jo i vlefshëm, '\\', '/', '<', '>', ':', '\"', '|', '?' dhe '*' nuk lejohen.", +"Your storage is full, files can not be updated or synced anymore!" => "Hapsira juaj e arkivimit është plot, skedarët nuk mund të përditësohen ose sinkronizohen!", +"Your storage is almost full ({usedSpacePercent}%)" => "Hapsira juaj e arkivimit është pothuajse në fund ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Kodifikimi u çaktivizua por skedarët tuaj vazhdojnë të jenë të kodifikuar. Ju lutem shkoni tek parametrat personale për të dekodifikuar skedarët tuaj.", -"Your download is being prepared. This might take some time if the files are big." => "Shkarkimi juaj po përgatitet. Mund të duhet pak kohë nqse skedarët janë të mëdhenj.", +"Your download is being prepared. This might take some time if the files are big." => "Shkarkimi juaj është duke u përgatitur. Kjo mund të kërkojë kohë nëse skedarët janë të mëdhenj.", +"Error" => "Gabim", "Name" => "Emri", -"Size" => "Dimensioni", -"Modified" => "Modifikuar", +"Size" => "Madhësia", +"Modified" => "Ndryshuar", "%s could not be renamed" => "Nuk është i mundur riemërtimi i %s", "Upload" => "Ngarko", -"File handling" => "Trajtimi i skedarit", -"Maximum upload size" => "Dimensioni maksimal i ngarkimit", -"max. possible: " => "maks. i mundur:", -"Needed for multi-file and folder downloads." => "Duhet për shkarkimin e dosjeve dhe të skedarëve", -"Enable ZIP-download" => "Aktivizo shkarkimin e ZIP-eve", -"0 is unlimited" => "0 është i pakufizuar", -"Maximum input size for ZIP files" => "Dimensioni maksimal i ngarkimit të skedarëve ZIP", +"File handling" => "Trajtimi i Skedarëve", +"Maximum upload size" => "Madhësia maksimale e nagarkimit", +"max. possible: " => "maks i mundshëm", +"Needed for multi-file and folder downloads." => "Nevojitej shkarkim i shumë skedarëve dhe dosjeve", +"Enable ZIP-download" => "Mundëso skarkimin e ZIP", +"0 is unlimited" => "o është pa limit", +"Maximum input size for ZIP files" => "Maksimumi hyrës i skedarëve ZIP", "Save" => "Ruaj", -"New" => "I ri", -"Text file" => "Skedar teksti", +"New" => "E re", +"Text file" => "Skedar tekst", "Folder" => "Dosje", "From link" => "Nga lidhja", -"Deleted files" => "Skedarë të eliminuar", -"Cancel upload" => "Anulo ngarkimin", -"You don’t have write permissions here." => "Nuk keni të drejta për të shkruar këtu.", -"Nothing in here. Upload something!" => "Këtu nuk ka asgjë. Ngarkoni diçka!", +"Deleted files" => "Skedarë të fshirë ", +"Cancel upload" => "Anullo ngarkimin", +"Nothing in here. Upload something!" => "Këtu nuk ka asgje. Ngarko dicka", "Download" => "Shkarko", -"Unshare" => "Hiq ndarjen", -"Delete" => "Elimino", -"Upload too large" => "Ngarkimi është shumë i madh", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Skedarët që doni të ngarkoni tejkalojnë dimensionet maksimale për ngarkimet në këtë server.", -"Files are being scanned, please wait." => "Skedarët po analizohen, ju lutemi pritni.", -"Current scanning" => "Analizimi aktual", -"Upgrading filesystem cache..." => "Po përmirësoj memorjen e filesystem-it..." +"Delete" => "Fshi", +"Upload too large" => "Ngarkimi shumë i madh", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Skedarët që po mundoheni të ngarkoni e tejkalojnë madhësinë maksimale të lejuar nga serveri.", +"Files are being scanned, please wait." => "Skanerizimi i skedarit në proces. Ju lutem prisni.", +"Current scanning" => "Skanimi aktual", +"Upgrading filesystem cache..." => "Përditësimi i cache-se së sistemit në procesim..." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index fd3b2a2912f8fa474b4a8cfbd32de7d6c7d8a4d0..e383b66e078a7a857b6f2a3b9f7d99e5f996138a 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -2,6 +2,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Не могу да преместим %s – датотека с овим именом већ постоји", "Could not move %s" => "Не могу да преместим %s", +"File name cannot be empty." => "Име датотеке не може бити празно.", "No file was uploaded. Unknown error" => "Ниједна датотека није отпремљена услед непознате грешке", "There is no error, the file uploaded with success" => "Није дошло до грешке. Датотека је успешно отпремљена.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Отпремљена датотека прелази смерницу upload_max_filesize у датотеци php.ini:", @@ -16,27 +17,22 @@ $TRANSLATIONS = array( "Not enough space available" => "Нема довољно простора", "Upload cancelled." => "Отпремање је прекинуто.", "File upload is in progress. Leaving the page now will cancel the upload." => "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање.", -"URL cannot be empty." => "Адреса не може бити празна.", -"Error" => "Грешка", +"{new_name} already exists" => "{new_name} већ постоји", "Share" => "Дели", "Delete permanently" => "Обриши за стално", "Rename" => "Преименуј", "Pending" => "На чекању", -"{new_name} already exists" => "{new_name} већ постоји", -"replace" => "замени", -"suggest name" => "предложи назив", -"cancel" => "откажи", "replaced {new_name} with {old_name}" => "замењено {new_name} са {old_name}", "undo" => "опозови", "_%n folder_::_%n folders_" => array("","",""), "_%n file_::_%n files_" => array("","",""), "_Uploading %n file_::_Uploading %n files_" => array("","",""), "'.' is an invalid file name." => "Датотека „.“ је неисправног имена.", -"File name cannot be empty." => "Име датотеке не може бити празно.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *.", "Your storage is full, files can not be updated or synced anymore!" => "Ваше складиште је пуно. Датотеке више не могу бити ажуриране ни синхронизоване.", "Your storage is almost full ({usedSpacePercent}%)" => "Ваше складиште је скоро па пуно ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Припремам преузимање. Ово може да потраје ако су датотеке велике.", +"Error" => "Грешка", "Name" => "Име", "Size" => "Величина", "Modified" => "Измењено", @@ -55,10 +51,8 @@ $TRANSLATIONS = array( "From link" => "Са везе", "Deleted files" => "Обрисане датотеке", "Cancel upload" => "Прекини отпремање", -"You don’t have write permissions here." => "Овде немате дозволу за писање.", "Nothing in here. Upload something!" => "Овде нема ничег. Отпремите нешто!", "Download" => "Преузми", -"Unshare" => "Укини дељење", "Delete" => "Обриши", "Upload too large" => "Датотека је превелика", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Датотеке које желите да отпремите прелазе ограничење у величини.", diff --git a/apps/files/l10n/sr@latin.php b/apps/files/l10n/sr@latin.php index 8831d1a1bef0ee736f95b15be17888f0f28ed215..13ce5ec8b3e65364950a80f044062a85c46e34f1 100644 --- a/apps/files/l10n/sr@latin.php +++ b/apps/files/l10n/sr@latin.php @@ -6,11 +6,11 @@ $TRANSLATIONS = array( "No file was uploaded" => "Nijedan fajl nije poslat", "Missing a temporary folder" => "Nedostaje privremena fascikla", "Files" => "Fajlovi", -"Error" => "Greška", "Share" => "Podeli", "_%n folder_::_%n folders_" => array("","",""), "_%n file_::_%n files_" => array("","",""), "_Uploading %n file_::_Uploading %n files_" => array("","",""), +"Error" => "Greška", "Name" => "Ime", "Size" => "Veličina", "Modified" => "Zadnja izmena", @@ -19,7 +19,6 @@ $TRANSLATIONS = array( "Save" => "Snimi", "Nothing in here. Upload something!" => "Ovde nema ničeg. Pošaljite nešto!", "Download" => "Preuzmi", -"Unshare" => "Ukljoni deljenje", "Delete" => "Obriši", "Upload too large" => "Pošiljka je prevelika", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fajlovi koje želite da pošaljete prevazilaze ograničenje maksimalne veličine pošiljke na ovom serveru." diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index 208dcd4ea12d83ddd617cf390e88874e77396c76..9e1b8110d4885efc29d82b221876f9b0c910df4b 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -2,6 +2,15 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Kunde inte flytta %s - Det finns redan en fil med detta namn", "Could not move %s" => "Kan inte flytta %s", +"File name cannot be empty." => "Filnamn kan inte vara tomt.", +"File name must not contain \"/\". Please choose a different name." => "Filnamnet får ej innehålla \"/\". Välj ett annat namn.", +"The name %s is already used in the folder %s. Please choose a different name." => "Namnet %s används redan i katalogen %s. Välj ett annat namn.", +"Not a valid source" => "Inte en giltig källa", +"Error while downloading %s to %s" => "Fel under nerladdning från %s till %s", +"Error when creating the file" => "Fel under skapande utav filen", +"Folder name cannot be empty." => "Katalognamn kan ej vara tomt.", +"Folder name must not contain \"/\". Please choose a different name." => "Katalog namnet får ej innehålla \"/\". Välj ett annat namn.", +"Error when creating the folder" => "Fel under skapande utav en katalog", "Unable to set upload directory." => "Kan inte sätta mapp för uppladdning.", "Invalid Token" => "Ogiltig token", "No file was uploaded. Unknown error" => "Ingen fil uppladdad. Okänt fel", @@ -13,38 +22,46 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "En temporär mapp saknas", "Failed to write to disk" => "Misslyckades spara till disk", "Not enough storage available" => "Inte tillräckligt med lagringsutrymme tillgängligt", +"Upload failed. Could not get file info." => "Uppladdning misslyckades. Gick inte att hämta filinformation.", +"Upload failed. Could not find uploaded file" => "Uppladdning misslyckades. Kunde inte hitta den uppladdade filen", "Invalid directory." => "Felaktig mapp.", "Files" => "Filer", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Kan inte ladda upp {filename} eftersom den antingen är en mapp eller har 0 bytes.", "Not enough space available" => "Inte tillräckligt med utrymme tillgängligt", "Upload cancelled." => "Uppladdning avbruten.", +"Could not get result from server." => "Gick inte att hämta resultat från server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen.", -"URL cannot be empty." => "URL kan inte vara tom.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Ogiltigt mappnamn. Användning av 'Shared' är reserverad av ownCloud", -"Error" => "Fel", +"URL cannot be empty" => "URL kan ej vara tomt", +"In the home folder 'Shared' is a reserved filename" => "I hemma katalogen 'Delat' är ett reserverat filnamn", +"{new_name} already exists" => "{new_name} finns redan", +"Could not create file" => "Kunde ej skapa fil", +"Could not create folder" => "Kunde ej skapa katalog", "Share" => "Dela", "Delete permanently" => "Radera permanent", "Rename" => "Byt namn", "Pending" => "Väntar", -"{new_name} already exists" => "{new_name} finns redan", -"replace" => "ersätt", -"suggest name" => "föreslå namn", -"cancel" => "avbryt", +"Could not rename file" => "Kan ej byta filnamn", "replaced {new_name} with {old_name}" => "ersatt {new_name} med {old_name}", "undo" => "ångra", +"Error deleting file." => "Kunde inte ta bort filen.", "_%n folder_::_%n folders_" => array("%n mapp","%n mappar"), "_%n file_::_%n files_" => array("%n fil","%n filer"), "{dirs} and {files}" => "{dirs} och {files}", "_Uploading %n file_::_Uploading %n files_" => array("Laddar upp %n fil","Laddar upp %n filer"), "'.' is an invalid file name." => "'.' är ett ogiltigt filnamn.", -"File name cannot be empty." => "Filnamn kan inte vara tomt.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet.", "Your storage is full, files can not be updated or synced anymore!" => "Ditt lagringsutrymme är fullt, filer kan inte längre uppdateras eller synkroniseras!", "Your storage is almost full ({usedSpacePercent}%)" => "Ditt lagringsutrymme är nästan fullt ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Krypteringsprogrammet är aktiverat men dina nycklar är inte initierade. Vänligen logga ut och in igen", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ogiltig privat nyckel i krypteringsprogrammet. Vänligen uppdatera lösenordet till din privata nyckel under dina personliga inställningar för att återfå tillgång till dina krypterade filer.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Kryptering inaktiverades men dina filer är fortfarande krypterade. Vänligen gå till sidan för dina personliga inställningar för att dekryptera dina filer.", "Your download is being prepared. This might take some time if the files are big." => "Din nedladdning förbereds. Det kan ta tid om det är stora filer.", +"Error moving file" => "Fel uppstod vid flyttning av fil", +"Error" => "Fel", "Name" => "Namn", "Size" => "Storlek", "Modified" => "Ändrad", +"Invalid folder name. Usage of 'Shared' is reserved." => "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud", "%s could not be renamed" => "%s kunde inte namnändras", "Upload" => "Ladda upp", "File handling" => "Filhantering", @@ -57,14 +74,14 @@ $TRANSLATIONS = array( "Save" => "Spara", "New" => "Ny", "Text file" => "Textfil", +"New folder" => "Ny mapp", "Folder" => "Mapp", "From link" => "Från länk", "Deleted files" => "Raderade filer", "Cancel upload" => "Avbryt uppladdning", -"You don’t have write permissions here." => "Du saknar skrivbehörighet här.", +"You don’t have permission to upload or create files here" => "Du har ej tillåtelse att ladda upp eller skapa filer här", "Nothing in here. Upload something!" => "Ingenting här. Ladda upp något!", "Download" => "Ladda ner", -"Unshare" => "Sluta dela", "Delete" => "Radera", "Upload too large" => "För stor uppladdning", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern.", diff --git a/apps/files/l10n/ta_LK.php b/apps/files/l10n/ta_LK.php index f05990b94f00f39152dcbbafd57e0f1d9c9bb59d..f91a74ee9bd014f0e30e8d55d4ddd3b9ea25cc9a 100644 --- a/apps/files/l10n/ta_LK.php +++ b/apps/files/l10n/ta_LK.php @@ -10,21 +10,17 @@ $TRANSLATIONS = array( "Files" => "கோப்புகள்", "Upload cancelled." => "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது", "File upload is in progress. Leaving the page now will cancel the upload." => "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்.", -"URL cannot be empty." => "URL வெறுமையாக இருக்கமுடியாது.", -"Error" => "வழு", +"{new_name} already exists" => "{new_name} ஏற்கனவே உள்ளது", "Share" => "பகிர்வு", "Rename" => "பெயர்மாற்றம்", "Pending" => "நிலுவையிலுள்ள", -"{new_name} already exists" => "{new_name} ஏற்கனவே உள்ளது", -"replace" => "மாற்றிடுக", -"suggest name" => "பெயரை பரிந்துரைக்க", -"cancel" => "இரத்து செய்க", "replaced {new_name} with {old_name}" => "{new_name} ஆனது {old_name} இனால் மாற்றப்பட்டது", "undo" => "முன் செயல் நீக்கம் ", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது.", +"Error" => "வழு", "Name" => "பெயர்", "Size" => "அளவு", "Modified" => "மாற்றப்பட்டது", @@ -44,7 +40,6 @@ $TRANSLATIONS = array( "Cancel upload" => "பதிவேற்றலை இரத்து செய்க", "Nothing in here. Upload something!" => "இங்கு ஒன்றும் இல்லை. ஏதாவது பதிவேற்றுக!", "Download" => "பதிவிறக்குக", -"Unshare" => "பகிரப்படாதது", "Delete" => "நீக்குக", "Upload too large" => "பதிவேற்றல் மிகப்பெரியது", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "நீங்கள் பதிவேற்ற முயற்சிக்கும் கோப்புகளானது இந்த சேவையகத்தில் கோப்பு பதிவேற்றக்கூடிய ஆகக்கூடிய அளவிலும் கூடியது.", diff --git a/apps/files/l10n/te.php b/apps/files/l10n/te.php index 60aabc8a3655753f2cc3c393371c8e8372f76a79..155e4b5c201494f21650396d9419036cdea894d1 100644 --- a/apps/files/l10n/te.php +++ b/apps/files/l10n/te.php @@ -1,14 +1,14 @@ "పొరపాటు", "Delete permanently" => "శాశ్వతంగా తొలగించు", -"cancel" => "రద్దుచేయి", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), +"Error" => "పొరపాటు", "Name" => "పేరు", "Size" => "పరిమాణం", "Save" => "భద్రపరచు", +"New folder" => "కొత్త సంచయం", "Folder" => "సంచయం", "Delete" => "తొలగించు" ); diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index 37144ebc8836d6079f55fab879f1939522e6b577..38a67c50679900f018dfdfc0a30d68a6fc08add0 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -2,6 +2,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "ไม่สามารถย้าย %s ได้ - ไฟล์ที่ใช้ชื่อนี้มีอยู่แล้ว", "Could not move %s" => "ไม่สามารถย้าย %s ได้", +"File name cannot be empty." => "ชื่อไฟล์ไม่สามารถเว้นว่างได้", "No file was uploaded. Unknown error" => "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ", "There is no error, the file uploaded with success" => "ไม่พบข้อผิดพลาดใดๆ, ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini", @@ -16,26 +17,21 @@ $TRANSLATIONS = array( "Not enough space available" => "มีพื้นที่เหลือไม่เพียงพอ", "Upload cancelled." => "การอัพโหลดถูกยกเลิก", "File upload is in progress. Leaving the page now will cancel the upload." => "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก", -"URL cannot be empty." => "URL ไม่สามารถเว้นว่างได้", -"Error" => "ข้อผิดพลาด", +"{new_name} already exists" => "{new_name} มีอยู่แล้วในระบบ", "Share" => "แชร์", "Rename" => "เปลี่ยนชื่อ", "Pending" => "อยู่ระหว่างดำเนินการ", -"{new_name} already exists" => "{new_name} มีอยู่แล้วในระบบ", -"replace" => "แทนที่", -"suggest name" => "แนะนำชื่อ", -"cancel" => "ยกเลิก", "replaced {new_name} with {old_name}" => "แทนที่ {new_name} ด้วย {old_name} แล้ว", "undo" => "เลิกทำ", "_%n folder_::_%n folders_" => array(""), "_%n file_::_%n files_" => array(""), "_Uploading %n file_::_Uploading %n files_" => array(""), "'.' is an invalid file name." => "'.' เป็นชื่อไฟล์ที่ไม่ถูกต้อง", -"File name cannot be empty." => "ชื่อไฟล์ไม่สามารถเว้นว่างได้", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "ชื่อที่ใช้ไม่ถูกต้อง, '\\', '/', '<', '>', ':', '\"', '|', '?' และ '*' ไม่ได้รับอนุญาตให้ใช้งานได้", "Your storage is full, files can not be updated or synced anymore!" => "พื้นที่จัดเก็บข้อมูลของคุณเต็มแล้ว ไม่สามารถอัพเดทหรือผสานไฟล์ต่างๆได้อีกต่อไป", "Your storage is almost full ({usedSpacePercent}%)" => "พื้นที่จัดเก็บข้อมูลของคุณใกล้เต็มแล้ว ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "กำลังเตรียมดาวน์โหลดข้อมูล หากไฟล์มีขนาดใหญ่ อาจใช้เวลาสักครู่", +"Error" => "ข้อผิดพลาด", "Name" => "ชื่อ", "Size" => "ขนาด", "Modified" => "แก้ไขแล้ว", @@ -55,7 +51,6 @@ $TRANSLATIONS = array( "Cancel upload" => "ยกเลิกการอัพโหลด", "Nothing in here. Upload something!" => "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!", "Download" => "ดาวน์โหลด", -"Unshare" => "ยกเลิกการแชร์", "Delete" => "ลบ", "Upload too large" => "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 8cb05e16ace42b30fb161c1e449769a978206c32..90b16922a7638baf02b4e3f46d3dfa5f0722b33d 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -1,9 +1,19 @@ "%s taşınamadı. Bu isimde dosya zaten var.", +"Could not move %s - File with this name already exists" => "%s taşınamadı - Bu isimde dosya zaten var", "Could not move %s" => "%s taşınamadı", +"File name cannot be empty." => "Dosya adı boş olamaz.", +"File name must not contain \"/\". Please choose a different name." => "Dosya adı \"/\" içermemelidir. Lütfen farklı bir isim seçin.", +"The name %s is already used in the folder %s. Please choose a different name." => "%s ismi zaten %s klasöründe kullanılıyor. Lütfen farklı bir isim seçin.", +"Not a valid source" => "Geçerli bir kaynak değil", +"Server is not allowed to open URLs, please check the server configuration" => "Sunucunun adresleri açma izi yok, lütfen sunucu yapılandırmasını denetleyin", +"Error while downloading %s to %s" => "%s, %s içine indirilirken hata", +"Error when creating the file" => "Dosya oluşturulurken hata", +"Folder name cannot be empty." => "Klasör adı boş olamaz.", +"Folder name must not contain \"/\". Please choose a different name." => "Klasör adı \"/\" içermemelidir. Lütfen farklı bir isim seçin.", +"Error when creating the folder" => "Klasör oluşturulurken hata", "Unable to set upload directory." => "Yükleme dizini tanımlanamadı.", -"Invalid Token" => "Geçeriz simge", +"Invalid Token" => "Geçersiz Simge", "No file was uploaded. Unknown error" => "Dosya yüklenmedi. Bilinmeyen hata", "There is no error, the file uploaded with success" => "Dosya başarıyla yüklendi, hata oluşmadı", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırı aşıldı.", @@ -13,57 +23,68 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Geçici dizin eksik", "Failed to write to disk" => "Diske yazılamadı", "Not enough storage available" => "Yeterli disk alanı yok", +"Upload failed. Could not get file info." => "Yükleme başarısız. Dosya bilgisi alınamadı.", +"Upload failed. Could not find uploaded file" => "Yükleme başarısız. Yüklenen dosya bulunamadı", "Invalid directory." => "Geçersiz dizin.", "Files" => "Dosyalar", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Bir dizin veya 0 bayt olduğundan {filename} yüklenemedi", "Not enough space available" => "Yeterli disk alanı yok", "Upload cancelled." => "Yükleme iptal edildi.", +"Could not get result from server." => "Sunucudan sonuç alınamadı.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur.", -"URL cannot be empty." => "URL boş olamaz.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Geçersiz dizin adı. 'Shared' dizin ismi kullanımı ownCloud tarafından rezerve edilmiştir.", -"Error" => "Hata", +"URL cannot be empty" => "URL boş olamaz", +"In the home folder 'Shared' is a reserved filename" => "Ev klasöründeki 'Paylaşılan', ayrılmış bir dosya adıdır", +"{new_name} already exists" => "{new_name} zaten mevcut", +"Could not create file" => "Dosya oluşturulamadı", +"Could not create folder" => "Klasör oluşturulamadı", +"Error fetching URL" => "Adres getirilirken hata", "Share" => "Paylaş", "Delete permanently" => "Kalıcı olarak sil", "Rename" => "İsim değiştir.", "Pending" => "Bekliyor", -"{new_name} already exists" => "{new_name} zaten mevcut", -"replace" => "değiştir", -"suggest name" => "Öneri ad", -"cancel" => "iptal", +"Could not rename file" => "Dosya adlandırılamadı", "replaced {new_name} with {old_name}" => "{new_name} ismi {old_name} ile değiştirildi", "undo" => "geri al", +"Error deleting file." => "Dosya silinirken hata.", "_%n folder_::_%n folders_" => array("%n dizin","%n dizin"), "_%n file_::_%n files_" => array("%n dosya","%n dosya"), +"{dirs} and {files}" => "{dirs} ve {files}", "_Uploading %n file_::_Uploading %n files_" => array("%n dosya yükleniyor","%n dosya yükleniyor"), -"'.' is an invalid file name." => "'.' geçersiz dosya adı.", -"File name cannot be empty." => "Dosya adı boş olamaz.", +"'.' is an invalid file name." => "'.' geçersiz bir dosya adı.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir.", -"Your storage is full, files can not be updated or synced anymore!" => "Depolama alanınız dolu, artık dosyalar güncellenmeyecek yada senkronizasyon edilmeyecek.", +"Your storage is full, files can not be updated or synced anymore!" => "Depolama alanınız dolu, artık dosyalar güncellenmeyecek veya eşitlenmeyecek.", "Your storage is almost full ({usedSpacePercent}%)" => "Depolama alanınız neredeyse dolu ({usedSpacePercent}%)", -"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Şifreleme işlemi durduruldu ancak dosyalarınız şifreli. Dosyalarınızın şifresini kaldırmak için lütfen kişisel ayarlar kısmına geçiniz.", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Şifreleme Uygulaması etkin ancak anahtarlarınız başlatılmamış. Lütfen oturumu kapatıp yeniden açın", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Şifreleme Uygulaması için geçersiz özel anahtar. Lütfen şifreli dosyalarınıza erişimi tekrar kazanabilmek için kişisel ayarlarınızdan özel anahtar parolanızı güncelleyin.", +"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Şifreleme işlemi durduruldu ancak dosyalarınız şifreli. Dosyalarınızın şifresini kaldırmak için lütfen kişisel ayarlar kısmına geçin.", "Your download is being prepared. This might take some time if the files are big." => "İndirmeniz hazırlanıyor. Dosya büyük ise biraz zaman alabilir.", +"Error moving file" => "Dosya taşıma hatası", +"Error" => "Hata", "Name" => "İsim", "Size" => "Boyut", "Modified" => "Değiştirilme", +"Invalid folder name. Usage of 'Shared' is reserved." => "Geçersiz dizin adı. 'Shared' ismi ayrılmıştır.", "%s could not be renamed" => "%s yeniden adlandırılamadı", "Upload" => "Yükle", -"File handling" => "Dosya taşıma", +"File handling" => "Dosya işlemleri", "Maximum upload size" => "Maksimum yükleme boyutu", "max. possible: " => "mümkün olan en fazla: ", "Needed for multi-file and folder downloads." => "Çoklu dosya ve dizin indirmesi için gerekli.", -"Enable ZIP-download" => "ZIP indirmeyi aktif et", +"Enable ZIP-download" => "ZIP indirmeyi etkinleştir", "0 is unlimited" => "0 limitsiz demektir", -"Maximum input size for ZIP files" => "ZIP dosyaları için en fazla girdi sayısı", +"Maximum input size for ZIP files" => "ZIP dosyaları için en fazla girdi boyutu", "Save" => "Kaydet", "New" => "Yeni", +"New text file" => "Yeni metin dosyası", "Text file" => "Metin dosyası", +"New folder" => "Yeni klasör", "Folder" => "Klasör", "From link" => "Bağlantıdan", -"Deleted files" => "Dosyalar silindi", +"Deleted files" => "Silinmiş dosyalar", "Cancel upload" => "Yüklemeyi iptal et", -"You don’t have write permissions here." => "Buraya erişim hakkınız yok.", -"Nothing in here. Upload something!" => "Burada hiçbir şey yok. Birşeyler yükleyin!", +"You don’t have permission to upload or create files here" => "Buraya dosya yükleme veya oluşturma izniniz yok", +"Nothing in here. Upload something!" => "Burada hiçbir şey yok. Bir şeyler yükleyin!", "Download" => "İndir", -"Unshare" => "Paylaşılmayan", "Delete" => "Sil", "Upload too large" => "Yükleme çok büyük", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Yüklemeye çalıştığınız dosyalar bu sunucudaki maksimum yükleme boyutunu aşıyor.", diff --git a/apps/files/l10n/tzm.php b/apps/files/l10n/tzm.php new file mode 100644 index 0000000000000000000000000000000000000000..c50e35da623e6da0de48674c910af7064243e7d0 --- /dev/null +++ b/apps/files/l10n/tzm.php @@ -0,0 +1,7 @@ + array("",""), +"_%n file_::_%n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 1;"; diff --git a/apps/files/l10n/ug.php b/apps/files/l10n/ug.php index a38ce706ef9ea1b988de3cc896033c513d6e1ce8..45458c51af077afcdbe211e2303c75181b3b95a9 100644 --- a/apps/files/l10n/ug.php +++ b/apps/files/l10n/ug.php @@ -10,19 +10,16 @@ $TRANSLATIONS = array( "Not enough space available" => "يېتەرلىك بوشلۇق يوق", "Upload cancelled." => "يۈكلەشتىن ۋاز كەچتى.", "File upload is in progress. Leaving the page now will cancel the upload." => "ھۆججەت يۈكلەش مەشغۇلاتى ئېلىپ بېرىلىۋاتىدۇ. Leaving the page now will cancel the upload.", -"Error" => "خاتالىق", +"{new_name} already exists" => "{new_name} مەۋجۇت", "Share" => "ھەمبەھىر", "Delete permanently" => "مەڭگۈلۈك ئۆچۈر", "Rename" => "ئات ئۆزگەرت", "Pending" => "كۈتۈۋاتىدۇ", -"{new_name} already exists" => "{new_name} مەۋجۇت", -"replace" => "ئالماشتۇر", -"suggest name" => "تەۋسىيە ئات", -"cancel" => "ۋاز كەچ", "undo" => "يېنىۋال", "_%n folder_::_%n folders_" => array(""), "_%n file_::_%n files_" => array(""), "_Uploading %n file_::_Uploading %n files_" => array(""), +"Error" => "خاتالىق", "Name" => "ئاتى", "Size" => "چوڭلۇقى", "Modified" => "ئۆزگەرتكەن", @@ -30,12 +27,12 @@ $TRANSLATIONS = array( "Save" => "ساقلا", "New" => "يېڭى", "Text file" => "تېكىست ھۆججەت", +"New folder" => "يېڭى قىسقۇچ", "Folder" => "قىسقۇچ", "Deleted files" => "ئۆچۈرۈلگەن ھۆججەتلەر", "Cancel upload" => "يۈكلەشتىن ۋاز كەچ", "Nothing in here. Upload something!" => "بۇ جايدا ھېچنېمە يوق. Upload something!", "Download" => "چۈشۈر", -"Unshare" => "ھەمبەھىرلىمە", "Delete" => "ئۆچۈر", "Upload too large" => "يۈكلەندىغىنى بەك چوڭ", "Upgrading filesystem cache..." => "ھۆججەت سىستېما غەملىكىنى يۈكسەلدۈرۈۋاتىدۇ…" diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 4aaeca255422ce889863a60613ac83d58261bceb..1e37d3d77d4fcfefb3844aa28f0a0a4a7f0ebbf4 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -2,6 +2,8 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Не вдалося перемістити %s - Файл з таким ім'ям вже існує", "Could not move %s" => "Не вдалося перемістити %s", +"File name cannot be empty." => " Ім'я файлу не може бути порожнім.", +"Folder name cannot be empty." => "Ім'я теки не може бути порожнім.", "Unable to set upload directory." => "Не вдалося встановити каталог завантаження.", "No file was uploaded. Unknown error" => "Не завантажено жодного файлу. Невідома помилка", "There is no error, the file uploaded with success" => "Файл успішно вивантажено без помилок.", @@ -17,28 +19,27 @@ $TRANSLATIONS = array( "Not enough space available" => "Місця більше немає", "Upload cancelled." => "Завантаження перервано.", "File upload is in progress. Leaving the page now will cancel the upload." => "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження.", -"URL cannot be empty." => "URL не може бути пустим.", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Неправильне ім'я теки. Використання 'Shared' зарезервовано ownCloud", -"Error" => "Помилка", +"URL cannot be empty" => "URL не може бути порожнім", +"{new_name} already exists" => "{new_name} вже існує", +"Could not create file" => "Не вдалося створити файл", +"Could not create folder" => "Не вдалося створити теку", "Share" => "Поділитися", "Delete permanently" => "Видалити назавжди", "Rename" => "Перейменувати", "Pending" => "Очікування", -"{new_name} already exists" => "{new_name} вже існує", -"replace" => "заміна", -"suggest name" => "запропонуйте назву", -"cancel" => "відміна", +"Could not rename file" => "Неможливо перейменувати файл", "replaced {new_name} with {old_name}" => "замінено {new_name} на {old_name}", "undo" => "відмінити", "_%n folder_::_%n folders_" => array("%n тека","%n тека","%n теки"), -"_%n file_::_%n files_" => array("","",""), +"_%n file_::_%n files_" => array("%n файл","%n файлів","%n файли"), "_Uploading %n file_::_Uploading %n files_" => array("","",""), "'.' is an invalid file name." => "'.' це невірне ім'я файлу.", -"File name cannot be empty." => " Ім'я файлу не може бути порожнім.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Невірне ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не дозволені.", "Your storage is full, files can not be updated or synced anymore!" => "Ваше сховище переповнене, файли більше не можуть бути оновлені або синхронізовані !", "Your storage is almost full ({usedSpacePercent}%)" => "Ваше сховище майже повне ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Ваше завантаження готується. Це може зайняти деякий час, якщо файли завеликі.", +"Error moving file" => "Помилка переміщення файлу", +"Error" => "Помилка", "Name" => "Ім'я", "Size" => "Розмір", "Modified" => "Змінено", @@ -54,14 +55,13 @@ $TRANSLATIONS = array( "Save" => "Зберегти", "New" => "Створити", "Text file" => "Текстовий файл", +"New folder" => "Нова тека", "Folder" => "Тека", "From link" => "З посилання", "Deleted files" => "Видалено файлів", "Cancel upload" => "Перервати завантаження", -"You don’t have write permissions here." => "У вас тут немає прав на запис.", "Nothing in here. Upload something!" => "Тут нічого немає. Відвантажте що-небудь!", "Download" => "Завантажити", -"Unshare" => "Закрити доступ", "Delete" => "Видалити", "Upload too large" => "Файл занадто великий", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файли,що ви намагаєтесь відвантажити перевищують максимальний дозволений розмір файлів на цьому сервері.", diff --git a/apps/files/l10n/ur.php b/apps/files/l10n/ur.php new file mode 100644 index 0000000000000000000000000000000000000000..0157af093e92200cc7790497227e92e62d80165f --- /dev/null +++ b/apps/files/l10n/ur.php @@ -0,0 +1,7 @@ + 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/ur_PK.php b/apps/files/l10n/ur_PK.php index 6854c421587594c1eb30dd97924044e0cfebd3f5..3e13a7f516d5339043a5ec74c523a73506def9d6 100644 --- a/apps/files/l10n/ur_PK.php +++ b/apps/files/l10n/ur_PK.php @@ -1,9 +1,8 @@ "ایرر", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Unshare" => "شئیرنگ ختم کریں" +"Error" => "ایرر" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/uz.php b/apps/files/l10n/uz.php new file mode 100644 index 0000000000000000000000000000000000000000..70ab6572ba466c23b8066e18b9ee2f9cb2a7a827 --- /dev/null +++ b/apps/files/l10n/uz.php @@ -0,0 +1,7 @@ + array(""), +"_%n file_::_%n files_" => array(""), +"_Uploading %n file_::_Uploading %n files_" => array("") +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index 2d63128aa264abdb48d3e0c85f6d88e03e29f85f..8236d5e7efeb5a17215d4a630419635c8376e85e 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -2,6 +2,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Không thể di chuyển %s - Đã có tên tập tin này trên hệ thống", "Could not move %s" => "Không thể di chuyển %s", +"File name cannot be empty." => "Tên file không được rỗng", "No file was uploaded. Unknown error" => "Không có tập tin nào được tải lên. Lỗi không xác định", "There is no error, the file uploaded with success" => "Không có lỗi, các tập tin đã được tải lên thành công", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "The uploaded file exceeds the upload_max_filesize directive in php.ini: ", @@ -16,27 +17,22 @@ $TRANSLATIONS = array( "Not enough space available" => "Không đủ chỗ trống cần thiết", "Upload cancelled." => "Hủy tải lên", "File upload is in progress. Leaving the page now will cancel the upload." => "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này.", -"URL cannot be empty." => "URL không được để trống.", -"Error" => "Lỗi", +"{new_name} already exists" => "{new_name} đã tồn tại", "Share" => "Chia sẻ", "Delete permanently" => "Xóa vĩnh vễn", "Rename" => "Sửa tên", "Pending" => "Đang chờ", -"{new_name} already exists" => "{new_name} đã tồn tại", -"replace" => "thay thế", -"suggest name" => "tên gợi ý", -"cancel" => "hủy", "replaced {new_name} with {old_name}" => "đã thay thế {new_name} bằng {old_name}", "undo" => "lùi lại", "_%n folder_::_%n folders_" => array(""), "_%n file_::_%n files_" => array(""), "_Uploading %n file_::_Uploading %n files_" => array(""), "'.' is an invalid file name." => "'.' là một tên file không hợp lệ", -"File name cannot be empty." => "Tên file không được rỗng", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Tên không hợp lệ, '\\', '/', '<', '>', ':', '\"', '|', '?' và '*' thì không được phép dùng.", "Your storage is full, files can not be updated or synced anymore!" => "Your storage is full, files can not be updated or synced anymore!", "Your storage is almost full ({usedSpacePercent}%)" => "Your storage is almost full ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Your download is being prepared. This might take some time if the files are big.", +"Error" => "Lỗi", "Name" => "Tên", "Size" => "Kích cỡ", "Modified" => "Thay đổi", @@ -51,14 +47,13 @@ $TRANSLATIONS = array( "Save" => "Lưu", "New" => "Mới", "Text file" => "Tập tin văn bản", +"New folder" => "Tạo thư mục", "Folder" => "Thư mục", "From link" => "Từ liên kết", "Deleted files" => "File đã bị xóa", "Cancel upload" => "Hủy upload", -"You don’t have write permissions here." => "Bạn không có quyền ghi vào đây.", "Nothing in here. Upload something!" => "Không có gì ở đây .Hãy tải lên một cái gì đó !", "Download" => "Tải về", -"Unshare" => "Bỏ chia sẻ", "Delete" => "Xóa", "Upload too large" => "Tập tin tải lên quá lớn", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Các tập tin bạn đang tải lên vượt quá kích thước tối đa cho phép trên máy chủ .", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index b739b72ce7e264773a2cd974e4c06025f009f637..effcb0225cadbf43282ae58be8cd7f200d2eb4c0 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -2,6 +2,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "无法移动 %s - 同名文件已存在", "Could not move %s" => "无法移动 %s", +"File name cannot be empty." => "文件名不能为空。", "Unable to set upload directory." => "无法设置上传文件夹。", "Invalid Token" => "无效密匙", "No file was uploaded. Unknown error" => "没有文件被上传。未知错误", @@ -18,28 +19,22 @@ $TRANSLATIONS = array( "Not enough space available" => "没有足够可用空间", "Upload cancelled." => "上传已取消", "File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传中。现在离开此页会导致上传动作被取消。", -"URL cannot be empty." => "URL不能为空", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "无效的文件夹名。”Shared“ 是 Owncloud 预留的文件夹", -"Error" => "错误", +"{new_name} already exists" => "{new_name} 已存在", "Share" => "分享", "Delete permanently" => "永久删除", "Rename" => "重命名", "Pending" => "等待", -"{new_name} already exists" => "{new_name} 已存在", -"replace" => "替换", -"suggest name" => "建议名称", -"cancel" => "取消", "replaced {new_name} with {old_name}" => "已将 {old_name}替换成 {new_name}", "undo" => "撤销", "_%n folder_::_%n folders_" => array("%n 文件夹"), "_%n file_::_%n files_" => array("%n个文件"), "_Uploading %n file_::_Uploading %n files_" => array(""), "'.' is an invalid file name." => "'.' 是一个无效的文件名。", -"File name cannot be empty." => "文件名不能为空。", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。", "Your storage is full, files can not be updated or synced anymore!" => "您的存储空间已满,文件将无法更新或同步!", "Your storage is almost full ({usedSpacePercent}%)" => "您的存储空间即将用完 ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "下载正在准备中。如果文件较大可能会花费一些时间。", +"Error" => "错误", "Name" => "名称", "Size" => "大小", "Modified" => "修改日期", @@ -55,14 +50,13 @@ $TRANSLATIONS = array( "Save" => "保存", "New" => "新建", "Text file" => "文本文件", +"New folder" => "添加文件夹", "Folder" => "文件夹", "From link" => "来自链接", "Deleted files" => "已删除文件", "Cancel upload" => "取消上传", -"You don’t have write permissions here." => "您没有写权限", "Nothing in here. Upload something!" => "这里还什么都没有。上传些东西吧!", "Download" => "下载", -"Unshare" => "取消共享", "Delete" => "删除", "Upload too large" => "上传文件过大", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "您正尝试上传的文件超过了此服务器可以上传的最大容量限制", diff --git a/apps/files/l10n/zh_HK.php b/apps/files/l10n/zh_HK.php index febed4fe8fb68048048ac876a81ba9ed6b5b53c3..4885500ce43b035c3a52369756bfeb5824425462 100644 --- a/apps/files/l10n/zh_HK.php +++ b/apps/files/l10n/zh_HK.php @@ -1,16 +1,15 @@ "文件", -"Error" => "錯誤", "Share" => "分享", "_%n folder_::_%n folders_" => array(""), "_%n file_::_%n files_" => array(""), "_Uploading %n file_::_Uploading %n files_" => array(""), +"Error" => "錯誤", "Name" => "名稱", "Upload" => "上傳", "Save" => "儲存", "Download" => "下載", -"Unshare" => "取消分享", "Delete" => "刪除" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 214812d7adaf6270faca6af413113b929aa7c07a..dd9cbfdf1a9a2b91694e556635ba1361291b4af7 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -2,6 +2,15 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "無法移動 %s ,同名的檔案已經存在", "Could not move %s" => "無法移動 %s", +"File name cannot be empty." => "檔名不能為空", +"File name must not contain \"/\". Please choose a different name." => "檔名不能包含 \"/\" ,請選其他名字", +"The name %s is already used in the folder %s. Please choose a different name." => "%s 已經被使用於資料夾 %s ,請換一個名字", +"Not a valid source" => "不是有效的來源", +"Error while downloading %s to %s" => "下載 %s 到 %s 失敗", +"Error when creating the file" => "建立檔案失敗", +"Folder name cannot be empty." => "資料夾名稱不能留空", +"Folder name must not contain \"/\". Please choose a different name." => "資料夾名稱不能包含 \"/\" ,請選其他名字", +"Error when creating the folder" => "建立資料夾失敗", "Unable to set upload directory." => "無法設定上傳目錄", "Invalid Token" => "無效的 token", "No file was uploaded. Unknown error" => "沒有檔案被上傳,原因未知", @@ -13,22 +22,25 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "找不到暫存資料夾", "Failed to write to disk" => "寫入硬碟失敗", "Not enough storage available" => "儲存空間不足", +"Upload failed. Could not get file info." => "上傳失敗,無法取得檔案資訊", +"Upload failed. Could not find uploaded file" => "上傳失敗,找不到上傳的檔案", "Invalid directory." => "無效的資料夾", "Files" => "檔案", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "因為 {filename} 是個目錄或是大小為零,所以無法上傳", "Not enough space available" => "沒有足夠的可用空間", "Upload cancelled." => "上傳已取消", +"Could not get result from server." => "無法從伺服器取回結果", "File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中,離開此頁面將會取消上傳。", -"URL cannot be empty." => "URL 不能為空", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "無效的資料夾名稱,'Shared' 的使用被 ownCloud 保留", -"Error" => "錯誤", +"URL cannot be empty" => "URL 不能留空", +"In the home folder 'Shared' is a reserved filename" => "在家目錄中不能使用「共享」作為檔名", +"{new_name} already exists" => "{new_name} 已經存在", +"Could not create file" => "無法建立檔案", +"Could not create folder" => "無法建立資料夾", "Share" => "分享", "Delete permanently" => "永久刪除", "Rename" => "重新命名", "Pending" => "等候中", -"{new_name} already exists" => "{new_name} 已經存在", -"replace" => "取代", -"suggest name" => "建議檔名", -"cancel" => "取消", +"Could not rename file" => "無法重新命名", "replaced {new_name} with {old_name}" => "使用 {new_name} 取代 {old_name}", "undo" => "復原", "_%n folder_::_%n folders_" => array("%n 個資料夾"), @@ -36,12 +48,15 @@ $TRANSLATIONS = array( "{dirs} and {files}" => "{dirs} 和 {files}", "_Uploading %n file_::_Uploading %n files_" => array("%n 個檔案正在上傳"), "'.' is an invalid file name." => "'.' 是不合法的檔名", -"File name cannot be empty." => "檔名不能為空", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "檔名不合法,不允許 \\ / < > : \" | ? * 字元", "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" => "檔案加密已啓用,但是您的金鑰尚未初始化,請重新登入一次", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "無效的檔案加密私鑰,請在個人設定中更新您的私鑰密語以存取加密的檔案。", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "加密已經被停用,但是您的舊檔案還是處於已加密的狀態,請前往個人設定以解密這些檔案。", "Your download is being prepared. This might take some time if the files are big." => "正在準備您的下載,若您的檔案較大,將會需要更多時間。", +"Error moving file" => "移動檔案失敗", +"Error" => "錯誤", "Name" => "名稱", "Size" => "大小", "Modified" => "修改時間", @@ -57,14 +72,14 @@ $TRANSLATIONS = array( "Save" => "儲存", "New" => "新增", "Text file" => "文字檔", +"New folder" => "新資料夾", "Folder" => "資料夾", "From link" => "從連結", "Deleted files" => "回收桶", "Cancel upload" => "取消上傳", -"You don’t have write permissions here." => "您在這裡沒有編輯權", +"You don’t have permission to upload or create files here" => "您沒有權限在這裡上傳或建立檔案", "Nothing in here. Upload something!" => "這裡還沒有東西,上傳一些吧!", "Download" => "下載", -"Unshare" => "取消分享", "Delete" => "刪除", "Upload too large" => "上傳過大", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "您試圖上傳的檔案大小超過伺服器的限制。", diff --git a/apps/files/lib/app.php b/apps/files/lib/app.php index 579e8676cfcfd7d0152a9386688cc8de5267965d..fea88faa92a872cb17b8757b8d2e952004f246f7 100644 --- a/apps/files/lib/app.php +++ b/apps/files/lib/app.php @@ -25,7 +25,14 @@ namespace OCA\Files; class App { + /** + * @var \OC_L10N + */ private $l10n; + + /** + * @var \OC\Files\View + */ private $view; public function __construct($view, $l10n) { @@ -50,9 +57,24 @@ class App { // rename to "/Shared" is denied if( $dir === '/' and $newname === 'Shared' ) { $result['data'] = array( - 'message' => $this->l10n->t("Invalid folder name. Usage of 'Shared' is reserved by ownCloud") + 'message' => $this->l10n->t("Invalid folder name. Usage of 'Shared' is reserved.") ); - } elseif( + // rename to non-existing folder is denied + } else if (!$this->view->file_exists($dir)) { + $result['data'] = array('message' => (string)$this->l10n->t( + 'The target folder has been moved or deleted.', + array($dir)), + 'code' => 'targetnotfound' + ); + // rename to existing file is denied + } else if ($this->view->file_exists($dir . '/' . $newname)) { + + $result['data'] = array( + 'message' => $this->l10n->t( + "The name %s is already used in the folder %s. Please choose a different name.", + array($newname, $dir)) + ); + } else if ( // rename to "." is denied $newname !== '.' and // rename of "/Shared" is denied @@ -61,12 +83,28 @@ class App { $this->view->rename($dir . '/' . $oldname, $dir . '/' . $newname) ) { // successful rename - $result['success'] = true; - $result['data'] = array( - 'dir' => $dir, - 'file' => $oldname, - 'newname' => $newname + $meta = $this->view->getFileInfo($dir . '/' . $newname); + if ($meta['mimetype'] === 'httpd/unix-directory') { + $meta['type'] = 'dir'; + } + else { + $meta['type'] = 'file'; + } + // these need to be set for determineIcon() + $meta['isPreviewAvailable'] = \OC::$server->getPreviewManager()->isMimeSupported($meta['mimetype']); + $meta['directory'] = $dir; + $fileinfo = array( + 'id' => $meta['fileid'], + 'mime' => $meta['mimetype'], + 'size' => $meta['size'], + 'etag' => $meta['etag'], + 'directory' => $meta['directory'], + 'name' => $newname, + 'isPreviewAvailable' => $meta['isPreviewAvailable'], + 'icon' => \OCA\Files\Helper::determineIcon($meta) ); + $result['success'] = true; + $result['data'] = $fileinfo; } else { // rename failed $result['data'] = array( diff --git a/apps/files/lib/helper.php b/apps/files/lib/helper.php index 709d78a4d45cb65aab21c3f8f00613e141337055..eaff28178eaf1341c8e8abf587af6a320eb5887a 100644 --- a/apps/files/lib/helper.php +++ b/apps/files/lib/helper.php @@ -30,7 +30,7 @@ class Helper if ($sid[0] === 'shared') { return \OC_Helper::mimetypeIcon('dir-shared'); } - if ($sid[0] !== 'local') { + if ($sid[0] !== 'local' and $sid[0] !== 'home') { return \OC_Helper::mimetypeIcon('dir-external'); } } @@ -40,7 +40,7 @@ class Helper if($file['isPreviewAvailable']) { $pathForPreview = $file['directory'] . '/' . $file['name']; - return \OC_Helper::previewIcon($pathForPreview); + return \OC_Helper::previewIcon($pathForPreview) . '&c=' . $file['etag']; } return \OC_Helper::mimetypeIcon($file['mimetype']); } diff --git a/apps/files/templates/admin.php b/apps/files/templates/admin.php index e1ca6afc4ada49f11ba2fa1da5c0df8bd242dec0..a5afd55fbc3938263c9e745be7281175f9fe123a 100644 --- a/apps/files/templates/admin.php +++ b/apps/files/templates/admin.php @@ -2,10 +2,10 @@
- t('File handling')); ?> +

t('File handling')); ?>

- '/> + '/> (t('max. possible: ')); p($_['maxPossibleUploadSize']) ?>) diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 96a80738989667198f4605f7705a0b55b6e9e858..ff78f0ca551871437fc12dffffca8dd6ac30a243 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -1,37 +1,38 @@ -
-
+
+
t('New'));?>
  • t('Text file'));?>

  • + data-type='file' data-newname='t('New text file')) ?>.txt'>

    t('Text file'));?>

  • t('Folder'));?>

  • -
  • '>

    t('Folder'));?>

  • +
  • t('From link'));?>

+
= 0):?> - + + + + - +
- - + + />
@@ -42,19 +43,19 @@
-
+ t('You don’t have permission to upload or create files here'))?>
-
0 or $_['ajaxLoad']):?>class="hidden">t('Nothing in here. Upload something!'))?>
+
class="hidden">t('Nothing in here. Upload something!'))?>
- + - - - + @@ -112,7 +104,13 @@ + + + + + + - diff --git a/apps/files/templates/part.list.php b/apps/files/templates/part.list.php index 1e4d4d11c98dbfa6344abe6ec9a1f48e993d7588..f4fb96a7a7c4354cf44a7500058c7ed89dc7ecf1 100644 --- a/apps/files/templates/part.list.php +++ b/apps/files/templates/part.list.php @@ -16,8 +16,9 @@ $totalsize = 0; ?> data-type="" data-mime="" data-size="" + data-etag="" data-permissions=""> - +
+ class="hidden" id='headerName'>
@@ -70,24 +71,15 @@
t('Size')); ?> + class="hidden" id="headerSize">t('Size')); ?>class="hidden" id="headerDate"> t( 'Modified' )); ?> - - - - t('Unshare'))?> - <?php p($l->t('Unshare'))?>" /> - - - - t('Delete'))?> - <?php p($l->t('Delete'))?>" /> - - + + t('Delete'))?> + <?php p($l->t('Delete'))?>" /> +
+ + + - + + + + - - - - - - - diff --git a/apps/files/tests/ajax_rename.php b/apps/files/tests/ajax_rename.php index 8eff978cde095970f24eb93f8253b2ce397b8223..a1a5c8983ba3d304a163776020c02c364dad7d70 100644 --- a/apps/files/tests/ajax_rename.php +++ b/apps/files/tests/ajax_rename.php @@ -22,23 +22,39 @@ */ class Test_OC_Files_App_Rename extends \PHPUnit_Framework_TestCase { + private static $user; function setUp() { // mock OC_L10n + if (!self::$user) { + self::$user = uniqid(); + } + \OC_User::createUser(self::$user, 'password'); + \OC_User::setUserId(self::$user); + + \OC\Files\Filesystem::init(self::$user, '/' . self::$user . '/files'); + $l10nMock = $this->getMock('\OC_L10N', array('t'), array(), '', false); $l10nMock->expects($this->any()) ->method('t') ->will($this->returnArgument(0)); - $viewMock = $this->getMock('\OC\Files\View', array('rename', 'normalizePath'), array(), '', false); + $viewMock = $this->getMock('\OC\Files\View', array('rename', 'normalizePath', 'getFileInfo', 'file_exists'), array(), '', false); $viewMock->expects($this->any()) ->method('normalizePath') ->will($this->returnArgument(0)); $viewMock->expects($this->any()) ->method('rename') ->will($this->returnValue(true)); + $this->viewMock = $viewMock; $this->files = new \OCA\Files\App($viewMock, $l10nMock); } + function tearDown() { + $result = \OC_User::deleteUser(self::$user); + $this->assertTrue($result); + \OC\Files\Filesystem::tearDown(); + } + /** * @brief test rename of file/folder named "Shared" */ @@ -47,6 +63,11 @@ class Test_OC_Files_App_Rename extends \PHPUnit_Framework_TestCase { $oldname = 'Shared'; $newname = 'new_name'; + $this->viewMock->expects($this->at(0)) + ->method('file_exists') + ->with('/') + ->will($this->returnValue(true)); + $result = $this->files->rename($dir, $oldname, $newname); $expected = array( 'success' => false, @@ -64,17 +85,33 @@ class Test_OC_Files_App_Rename extends \PHPUnit_Framework_TestCase { $oldname = 'Shared'; $newname = 'new_name'; + $this->viewMock->expects($this->at(0)) + ->method('file_exists') + ->with('/test') + ->will($this->returnValue(true)); + + $this->viewMock->expects($this->any()) + ->method('getFileInfo') + ->will($this->returnValue(array( + 'fileid' => 123, + 'type' => 'dir', + 'mimetype' => 'httpd/unix-directory', + 'size' => 18, + 'etag' => 'abcdef', + 'directory' => '/', + 'name' => 'new_name', + ))); + $result = $this->files->rename($dir, $oldname, $newname); - $expected = array( - 'success' => true, - 'data' => array( - 'dir' => $dir, - 'file' => $oldname, - 'newname' => $newname - ) - ); - $this->assertEquals($expected, $result); + $this->assertTrue($result['success']); + $this->assertEquals(123, $result['data']['id']); + $this->assertEquals('new_name', $result['data']['name']); + $this->assertEquals('/test', $result['data']['directory']); + $this->assertEquals(18, $result['data']['size']); + $this->assertEquals('httpd/unix-directory', $result['data']['mime']); + $this->assertEquals(\OC_Helper::mimetypeIcon('dir'), $result['data']['icon']); + $this->assertFalse($result['data']['isPreviewAvailable']); } /** @@ -88,7 +125,7 @@ class Test_OC_Files_App_Rename extends \PHPUnit_Framework_TestCase { $result = $this->files->rename($dir, $oldname, $newname); $expected = array( 'success' => false, - 'data' => array('message' => "Invalid folder name. Usage of 'Shared' is reserved by ownCloud") + 'data' => array('message' => "Invalid folder name. Usage of 'Shared' is reserved.") ); $this->assertEquals($expected, $result); @@ -102,16 +139,64 @@ class Test_OC_Files_App_Rename extends \PHPUnit_Framework_TestCase { $oldname = 'oldname'; $newname = 'newname'; + $this->viewMock->expects($this->at(0)) + ->method('file_exists') + ->with('/') + ->will($this->returnValue(true)); + + $this->viewMock->expects($this->any()) + ->method('getFileInfo') + ->will($this->returnValue(array( + 'fileid' => 123, + 'type' => 'dir', + 'mimetype' => 'httpd/unix-directory', + 'size' => 18, + 'etag' => 'abcdef', + 'directory' => '/', + 'name' => 'new_name', + ))); + $result = $this->files->rename($dir, $oldname, $newname); - $expected = array( - 'success' => true, - 'data' => array( - 'dir' => $dir, - 'file' => $oldname, - 'newname' => $newname - ) - ); - $this->assertEquals($expected, $result); + $this->assertTrue($result['success']); + $this->assertEquals(123, $result['data']['id']); + $this->assertEquals('newname', $result['data']['name']); + $this->assertEquals('/', $result['data']['directory']); + $this->assertEquals(18, $result['data']['size']); + $this->assertEquals('httpd/unix-directory', $result['data']['mime']); + $this->assertEquals('abcdef', $result['data']['etag']); + $this->assertEquals(\OC_Helper::mimetypeIcon('dir'), $result['data']['icon']); + $this->assertFalse($result['data']['isPreviewAvailable']); + } + + /** + * Test rename inside a folder that doesn't exist any more + */ + function testRenameInNonExistingFolder() { + $dir = '/unexist'; + $oldname = 'oldname'; + $newname = 'newname'; + + $this->viewMock->expects($this->at(0)) + ->method('file_exists') + ->with('/unexist') + ->will($this->returnValue(false)); + + $this->viewMock->expects($this->any()) + ->method('getFileInfo') + ->will($this->returnValue(array( + 'fileid' => 123, + 'type' => 'dir', + 'mimetype' => 'httpd/unix-directory', + 'size' => 18, + 'etag' => 'abcdef', + 'directory' => '/unexist', + 'name' => 'new_name', + ))); + + $result = $this->files->rename($dir, $oldname, $newname); + + $this->assertFalse($result['success']); + $this->assertEquals('targetnotfound', $result['data']['code']); } } diff --git a/apps/files/tests/js/fileactionsSpec.js b/apps/files/tests/js/fileactionsSpec.js new file mode 100644 index 0000000000000000000000000000000000000000..23f7b58dcd9a1ffb8ec724a8fadc61e00abad13d --- /dev/null +++ b/apps/files/tests/js/fileactionsSpec.js @@ -0,0 +1,61 @@ +/** +* ownCloud +* +* @author Vincent Petry +* @copyright 2014 Vincent Petry +* +* 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 . +* +*/ +describe('FileActions tests', function() { + beforeEach(function() { + // init horrible parameters + var $body = $('body'); + $body.append(''); + $body.append(''); + // dummy files table + $filesTable = $body.append('
'); + }); + afterEach(function() { + $('#dir, #permissions, #filestable').remove(); + }); + it('calling display() sets file actions', function() { + // note: download_url is actually the link target, not the actual download URL... + var $tr = FileList.addFile('testName.txt', 1234, new Date(), false, false, {download_url: 'test/download/url'}); + + // no actions before call + expect($tr.find('.action[data-action=Download]').length).toEqual(0); + expect($tr.find('.action[data-action=Rename]').length).toEqual(0); + expect($tr.find('.action.delete').length).toEqual(0); + + FileActions.display($tr.find('td.filename'), true); + + // actions defined after cal + expect($tr.find('.action[data-action=Download]').length).toEqual(1); + expect($tr.find('.action[data-action=Rename]').length).toEqual(1); + expect($tr.find('.action.delete').length).toEqual(1); + }); + it('redirects to download URL when clicking download', function() { + var redirectStub = sinon.stub(OC, 'redirect'); + // note: download_url is actually the link target, not the actual download URL... + var $tr = FileList.addFile('test download File.txt', 1234, new Date(), false, false, {download_url: 'test/download/url'}); + FileActions.display($tr.find('td.filename'), true); + + $tr.find('.action[data-action=Download]').click(); + + expect(redirectStub.calledOnce).toEqual(true); + expect(redirectStub.getCall(0).args[0]).toEqual(OC.webroot + '/index.php/apps/files/ajax/download.php?files=test%20download%20File.txt&dir=%2Fsubdir&download'); + redirectStub.restore(); + }); +}); diff --git a/apps/files/tests/js/filelistSpec.js b/apps/files/tests/js/filelistSpec.js new file mode 100644 index 0000000000000000000000000000000000000000..61e026c0725abc697a783b76cf32cd2b0c5f5388 --- /dev/null +++ b/apps/files/tests/js/filelistSpec.js @@ -0,0 +1,63 @@ +/** +* ownCloud +* +* @author Vincent Petry +* @copyright 2014 Vincent Petry +* +* 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 . +* +*/ +describe('FileList tests', function() { + beforeEach(function() { + // init horrible parameters + var $body = $('body'); + $body.append(''); + $body.append(''); + // dummy files table + $body.append('
'); + }); + afterEach(function() { + $('#dir, #permissions, #filestable').remove(); + }); + it('generates file element with correct attributes when calling addFile', function() { + var lastMod = new Date(10000); + // note: download_url is actually the link target, not the actual download URL... + var $tr = FileList.addFile('testName.txt', 1234, lastMod, false, false, {download_url: 'test/download/url'}); + + expect($tr).toBeDefined(); + expect($tr[0].tagName.toLowerCase()).toEqual('tr'); + expect($tr.find('a:first').attr('href')).toEqual('test/download/url'); + expect($tr.attr('data-type')).toEqual('file'); + expect($tr.attr('data-file')).toEqual('testName.txt'); + expect($tr.attr('data-size')).toEqual('1234'); + expect($tr.attr('data-permissions')).toEqual('31'); + //expect($tr.attr('data-mime')).toEqual('plain/text'); + }); + it('generates dir element with correct attributes when calling addDir', function() { + var lastMod = new Date(10000); + var $tr = FileList.addDir('testFolder', 1234, lastMod, false); + + expect($tr).toBeDefined(); + expect($tr[0].tagName.toLowerCase()).toEqual('tr'); + expect($tr.attr('data-type')).toEqual('dir'); + expect($tr.attr('data-file')).toEqual('testFolder'); + expect($tr.attr('data-size')).toEqual('1234'); + expect($tr.attr('data-permissions')).toEqual('31'); + //expect($tr.attr('data-mime')).toEqual('httpd/unix-directory'); + }); + it('returns correct download URL', function() { + expect(FileList.getDownloadUrl('some file.txt')).toEqual(OC.webroot + '/index.php/apps/files/ajax/download.php?files=some%20file.txt&dir=%2Fsubdir&download'); + expect(FileList.getDownloadUrl('some file.txt', '/anotherpath/abc')).toEqual(OC.webroot + '/index.php/apps/files/ajax/download.php?files=some%20file.txt&dir=%2Fanotherpath%2Fabc&download'); + }); +}); diff --git a/apps/files/tests/js/filesSpec.js b/apps/files/tests/js/filesSpec.js new file mode 100644 index 0000000000000000000000000000000000000000..9d0a2e4f9d7cf01974a1b82ee934d5c8144a5d90 --- /dev/null +++ b/apps/files/tests/js/filesSpec.js @@ -0,0 +1,81 @@ +/** +* ownCloud +* +* @author Vincent Petry +* @copyright 2014 Vincent Petry +* +* 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 . +* +*/ +describe('Files tests', function() { + describe('File name validation', function() { + it('Validates correct file names', function() { + var fileNames = [ + 'boringname', + 'something.with.extension', + 'now with spaces', + '.a', + '..a', + '.dotfile', + 'single\'quote', + ' spaces before', + 'spaces after ', + 'allowed chars including the crazy ones $%&_-^@!,()[]{}=;#', + '汉字也能用', + 'und Ümläüte sind auch willkommen' + ]; + for ( var i = 0; i < fileNames.length; i++ ) { + try { + expect(Files.isFileNameValid(fileNames[i])).toEqual(true); + } + catch (e) { + fail(); + } + } + }); + it('Detects invalid file names', function() { + var fileNames = [ + '', + ' ', + '.', + '..', + 'back\\slash', + 'sl/ash', + 'ltgt', + 'col:on', + 'double"quote', + 'pi|pe', + 'dont?ask?questions?', + 'super*star', + 'new\nline', + ' ..', + '.. ', + '. ', + ' .' + ]; + for ( var i = 0; i < fileNames.length; i++ ) { + var threwException = false; + try { + Files.isFileNameValid(fileNames[i]); + fail(); + } + catch (e) { + threwException = true; + } + expect(threwException).toEqual(true); + } + }); + }); +}); diff --git a/apps/files/triggerupdate.php b/apps/files/triggerupdate.php index 0e29edbba35ef32f821d9782ba5ebe95e4e21cbd..a37b9823add43ac72061790d987a9ec7610c8ab8 100644 --- a/apps/files/triggerupdate.php +++ b/apps/files/triggerupdate.php @@ -6,6 +6,7 @@ if (OC::$CLI) { if (count($argv) === 2) { $file = $argv[1]; list(, $user) = explode('/', $file); + OCP\JSON::checkUserExists($owner); OC_Util::setupFS($user); $view = new \OC\Files\View(''); /** diff --git a/apps/files_encryption/ajax/getMigrationStatus.php b/apps/files_encryption/ajax/getMigrationStatus.php new file mode 100644 index 0000000000000000000000000000000000000000..17469a1af0c2e7979306d8008a343bb99c8bba2a --- /dev/null +++ b/apps/files_encryption/ajax/getMigrationStatus.php @@ -0,0 +1,28 @@ + + * This file is licensed under the Affero General Public License version 3 or later. + * See the COPYING-README file. + * + * @brief check migration status + */ +use OCA\Encryption\Util; + +\OCP\JSON::checkAppEnabled('files_encryption'); + +$loginname = isset($_POST['user']) ? $_POST['user'] : ''; +$password = isset($_POST['password']) ? $_POST['password'] : ''; + +$migrationCompleted = true; + +if ($loginname !== '' && $password !== '') { + $username = \OCP\User::checkPassword($loginname, $password); + if ($username) { + $util = new Util(new \OC_FilesystemView('/'), $username); + if ($util->getMigrationStatus() !== Util::MIGRATION_COMPLETED) { + $migrationCompleted = false; + } + } +} + +\OCP\JSON::success(array('data' => array('migrationCompleted' => $migrationCompleted))); diff --git a/apps/files_encryption/ajax/updatePrivateKeyPassword.php b/apps/files_encryption/ajax/updatePrivateKeyPassword.php index 1e6644da576f56bd8d8daae01506f2032942658a..29c72952ae9de4457cc5d63340c4caef9658615f 100644 --- a/apps/files_encryption/ajax/updatePrivateKeyPassword.php +++ b/apps/files_encryption/ajax/updatePrivateKeyPassword.php @@ -48,6 +48,7 @@ if ($decryptedKey) { // success or failure if ($return) { + $session->setInitialized(\OCA\Encryption\Session::INIT_SUCCESSFUL); \OCP\JSON::success(array('data' => array('message' => $l->t('Private key password successfully updated.')))); } else { \OCP\JSON::error(array('data' => array('message' => $l->t('Could not update the private key password. Maybe the old password was not correct.')))); diff --git a/apps/files_encryption/appinfo/app.php b/apps/files_encryption/appinfo/app.php index 5b62b84e22366a2ed5233d6fa1bcf72b4bb2e7a7..fd9aa429b01622fee7c1aa719c2bd5c7c66aa711 100644 --- a/apps/files_encryption/appinfo/app.php +++ b/apps/files_encryption/appinfo/app.php @@ -10,6 +10,8 @@ OC::$CLASSPATH['OCA\Encryption\Session'] = 'files_encryption/lib/session.php'; OC::$CLASSPATH['OCA\Encryption\Capabilities'] = 'files_encryption/lib/capabilities.php'; OC::$CLASSPATH['OCA\Encryption\Helper'] = 'files_encryption/lib/helper.php'; +\OCP\Util::addscript('files_encryption', 'detect-migration'); + if (!OC_Config::getValue('maintenance', false)) { OC_FileProxy::register(new OCA\Encryption\Proxy()); @@ -43,23 +45,6 @@ if (!OC_Config::getValue('maintenance', false)) { if($sessionReady) { $session = new \OCA\Encryption\Session($view); } - - $user = \OCP\USER::getUser(); - // check if user has a private key - if ($sessionReady === false - || (!$view->file_exists('/' . $user . '/files_encryption/' . $user . '.private.key') - && OCA\Encryption\Crypt::mode() === 'server') - ) { - - // Force the user to log-in again if the encryption key isn't unlocked - // (happens when a user is logged in before the encryption app is - // enabled) - OCP\User::logout(); - - header("Location: " . OC::$WEBROOT . '/'); - - exit(); - } } } else { // logout user if we are in maintenance to force re-login @@ -69,4 +54,3 @@ if (!OC_Config::getValue('maintenance', false)) { // Register settings scripts OCP\App::registerAdmin('files_encryption', 'settings-admin'); OCP\App::registerPersonal('files_encryption', 'settings-personal'); - diff --git a/apps/files_encryption/appinfo/info.xml b/apps/files_encryption/appinfo/info.xml index 9d495916d26495482312b6838e70e5e1772ea9ec..b6d9d6bb0a3c090f3447577803fab428caefc71c 100644 --- a/apps/files_encryption/appinfo/info.xml +++ b/apps/files_encryption/appinfo/info.xml @@ -2,11 +2,15 @@ files_encryption Encryption - The new ownCloud 5 files encryption system. After the app was enabled you need to re-login to initialize your encryption keys. + The ownCloud files encryption system provides server side-encryption. After the app was enabled you need to re-login to initialize your encryption keys. AGPL Sam Tuke, Bjoern Schiessle, Florin Peter 4 true + + http://doc.owncloud.org/server/6.0/user_manual/files/encryption.html + http://doc.owncloud.org/server/6.0/admin_manual/configuration/configuration_encryption.html + false diff --git a/apps/files_encryption/appinfo/version b/apps/files_encryption/appinfo/version index bd73f47072b1fe4b9914ec14a7f6d47fcc8f816a..2eb3c4fe4eebcdea3da0790cc0ba74cb286ec4f4 100644 --- a/apps/files_encryption/appinfo/version +++ b/apps/files_encryption/appinfo/version @@ -1 +1 @@ -0.4 +0.5 diff --git a/apps/files_encryption/files/error.php b/apps/files_encryption/files/error.php index 2dd27257abe45381c9cf357ffa51e23da9f1df91..317cea05a128cc8a8cc930c3066c12a266486dc4 100644 --- a/apps/files_encryption/files/error.php +++ b/apps/files_encryption/files/error.php @@ -1,23 +1,47 @@ t('Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.'); + if (isset($_GET['errorCode'])) { + $errorCode = $_GET['errorCode']; + switch ($errorCode) { + case \OCA\Encryption\Crypt::ENCRYPTION_NOT_INITIALIZED_ERROR: + $errorMsg = $l->t('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.'); + break; + case \OCA\Encryption\Crypt::ENCRYPTION_PRIVATE_KEY_NOT_VALID_ERROR: + $theme = new OC_Defaults(); + $errorMsg = $l->t('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.', array($theme->getName())); + break; + case \OCA\Encryption\Crypt::ENCRYPTION_NO_SHARE_KEY_FOUND: + $errorMsg = $l->t('Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.'); + break; + default: + $errorMsg = $l->t("Unknown error please check your system settings or contact your administrator"); + break; + } + } else { + $errorCode = \OCA\Encryption\Crypt::ENCRYPTION_UNKNOWN_ERROR; + $errorMsg = $l->t("Unknown error please check your system settings or contact your administrator"); + } - if(isset($_GET['p']) && $_GET['p'] === '1') { - header('HTTP/1.0 404 ' . $errorMsg); + if (isset($_GET['p']) && $_GET['p'] === '1') { + header('HTTP/1.0 403 ' . $errorMsg); } - // check if ajax request - if(!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') { +// check if ajax request + if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') { \OCP\JSON::error(array('data' => array('message' => $errorMsg))); } else { - header('HTTP/1.0 404 ' . $errorMsg); + header('HTTP/1.0 403 ' . $errorMsg); $tmpl = new OC_Template('files_encryption', 'invalid_private_key', 'guest'); + $tmpl->assign('message', $errorMsg); + $tmpl->assign('errorCode', $errorCode); $tmpl->printPage(); } exit; } + diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index d9221c6e828a2539ed61ffe184f7e589ca978444..09d5687e2269f6d6851211c4613b4390ea3a0608 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -30,11 +30,20 @@ use OC\Files\Filesystem; */ class Hooks { + // file for which we want to rename the keys after the rename operation was successful + private static $renamedFiles = array(); + /** * @brief Startup encryption backend upon user login * @note This method should never be called for users using client side encryption */ public static function login($params) { + + if (\OCP\App::isEnabled('files_encryption') === false) { + return true; + } + + $l = new \OC_L10N('files_encryption'); $view = new \OC_FilesystemView('/'); @@ -92,8 +101,6 @@ class Hooks { } // Encrypt existing user files: - // This serves to upgrade old versions of the encryption - // app (see appinfo/spec.txt) if ( $util->encryptAll('/' . $params['uid'] . '/' . 'files', $session->getLegacyKey(), $params['password']) ) { @@ -119,11 +126,12 @@ class Hooks { * @note This method should never be called for users using client side encryption */ public static function postCreateUser($params) { - $view = new \OC_FilesystemView('/'); - - $util = new Util($view, $params['uid']); - Helper::setupUser($util, $params['password']); + if (\OCP\App::isEnabled('files_encryption')) { + $view = new \OC_FilesystemView('/'); + $util = new Util($view, $params['uid']); + Helper::setupUser($util, $params['password']); + } } /** @@ -131,26 +139,31 @@ class Hooks { * @note This method should never be called for users using client side encryption */ public static function postDeleteUser($params) { - $view = new \OC_FilesystemView('/'); - // cleanup public key - $publicKey = '/public-keys/' . $params['uid'] . '.public.key'; + if (\OCP\App::isEnabled('files_encryption')) { + $view = new \OC_FilesystemView('/'); - // Disable encryption proxy to prevent recursive calls - $proxyStatus = \OC_FileProxy::$enabled; - \OC_FileProxy::$enabled = false; + // cleanup public key + $publicKey = '/public-keys/' . $params['uid'] . '.public.key'; - $view->unlink($publicKey); + // Disable encryption proxy to prevent recursive calls + $proxyStatus = \OC_FileProxy::$enabled; + \OC_FileProxy::$enabled = false; - \OC_FileProxy::$enabled = $proxyStatus; + $view->unlink($publicKey); + + \OC_FileProxy::$enabled = $proxyStatus; + } } /** * @brief If the password can't be changed within ownCloud, than update the key password in advance. */ public static function preSetPassphrase($params) { - if ( ! \OC_User::canUserChangePassword($params['uid']) ) { - self::setPassphrase($params); + if (\OCP\App::isEnabled('files_encryption')) { + if ( ! \OC_User::canUserChangePassword($params['uid']) ) { + self::setPassphrase($params); + } } } @@ -160,14 +173,18 @@ class Hooks { */ public static function setPassphrase($params) { + if (\OCP\App::isEnabled('files_encryption') === false) { + return true; + } + // Only attempt to change passphrase if server-side encryption // is in use (client-side encryption does not have access to // the necessary keys) if (Crypt::mode() === 'server') { - if ($params['uid'] === \OCP\User::getUser()) { + $view = new \OC_FilesystemView('/'); - $view = new \OC_FilesystemView('/'); + if ($params['uid'] === \OCP\User::getUser()) { $session = new \OCA\Encryption\Session($view); @@ -188,36 +205,41 @@ class Hooks { } else { // admin changed the password for a different user, create new keys and reencrypt file keys $user = $params['uid']; - $recoveryPassword = $params['recoveryPassword']; - $newUserPassword = $params['password']; + $util = new Util($view, $user); + $recoveryPassword = isset($params['recoveryPassword']) ? $params['recoveryPassword'] : null; - $view = new \OC_FilesystemView('/'); + if (($util->recoveryEnabledForUser() && $recoveryPassword) + || !$util->userKeysExists()) { - // make sure that the users home is mounted - \OC\Files\Filesystem::initMountPoints($user); + $recoveryPassword = $params['recoveryPassword']; + $newUserPassword = $params['password']; - $keypair = Crypt::createKeypair(); + // make sure that the users home is mounted + \OC\Files\Filesystem::initMountPoints($user); - // Disable encryption proxy to prevent recursive calls - $proxyStatus = \OC_FileProxy::$enabled; - \OC_FileProxy::$enabled = false; + $keypair = Crypt::createKeypair(); - // Save public key - $view->file_put_contents('/public-keys/' . $user . '.public.key', $keypair['publicKey']); + // Disable encryption proxy to prevent recursive calls + $proxyStatus = \OC_FileProxy::$enabled; + \OC_FileProxy::$enabled = false; - // Encrypt private key empty passphrase - $encryptedPrivateKey = Crypt::symmetricEncryptFileContent($keypair['privateKey'], $newUserPassword); + // Save public key + $view->file_put_contents('/public-keys/' . $user . '.public.key', $keypair['publicKey']); - // Save private key - $view->file_put_contents( - '/' . $user . '/files_encryption/' . $user . '.private.key', $encryptedPrivateKey); + // Encrypt private key empty passphrase + $encryptedPrivateKey = Crypt::symmetricEncryptFileContent($keypair['privateKey'], $newUserPassword); - if ($recoveryPassword) { // if recovery key is set we can re-encrypt the key files - $util = new Util($view, $user); - $util->recoverUsersFiles($recoveryPassword); - } + // Save private key + $view->file_put_contents( + '/' . $user . '/files_encryption/' . $user . '.private.key', $encryptedPrivateKey); + + if ($recoveryPassword) { // if recovery key is set we can re-encrypt the key files + $util = new Util($view, $user); + $util->recoverUsersFiles($recoveryPassword); + } - \OC_FileProxy::$enabled = $proxyStatus; + \OC_FileProxy::$enabled = $proxyStatus; + } } } } @@ -230,6 +252,10 @@ class Hooks { */ public static function preShared($params) { + if (\OCP\App::isEnabled('files_encryption') === false) { + return true; + } + $l = new \OC_L10N('files_encryption'); $users = array(); $view = new \OC\Files\View('/public-keys/'); @@ -281,6 +307,10 @@ class Hooks { // [run] => whether emitting script should continue to run // TODO: Should other kinds of item be encrypted too? + if (\OCP\App::isEnabled('files_encryption') === false) { + return true; + } + if ($params['itemType'] === 'file' || $params['itemType'] === 'folder') { $view = new \OC_FilesystemView('/'); @@ -296,8 +326,8 @@ class Hooks { // get the parent from current share $parent = $util->getShareParent($params['parent']); - // if parent is file the it is an 1:1 share - if ($parent['item_type'] === 'file') { + // if parent has the same type than the child it is a 1:1 share + if ($parent['item_type'] === $params['itemType']) { // prefix path with Shared $path = '/Shared' . $parent['file_target']; @@ -375,6 +405,10 @@ class Hooks { // [shareWith] => test1 // [itemParent] => + if (\OCP\App::isEnabled('files_encryption') === false) { + return true; + } + if ($params['itemType'] === 'file' || $params['itemType'] === 'folder') { $view = new \OC_FilesystemView('/'); @@ -448,6 +482,18 @@ class Hooks { } } + /** + * @brief mark file as renamed so that we know the original source after the file was renamed + * @param array $params with the old path and the new path + */ + public static function preRename($params) { + $util = new Util(new \OC_FilesystemView('/'), \OCP\User::getUser()); + list($ownerOld, $pathOld) = $util->getUidAndFilename($params['oldpath']); + self::$renamedFiles[$params['oldpath']] = array( + 'uid' => $ownerOld, + 'path' => $pathOld); + } + /** * @brief after a file is renamed, rename its keyfile and share-keys also fix the file size and fix also the sharing * @param array with oldpath and newpath @@ -456,6 +502,11 @@ class Hooks { * of the stored versions along the actual file */ public static function postRename($params) { + + if (\OCP\App::isEnabled('files_encryption') === false) { + return true; + } + // Disable encryption proxy to prevent recursive calls $proxyStatus = \OC_FileProxy::$enabled; \OC_FileProxy::$enabled = false; @@ -465,19 +516,32 @@ class Hooks { $userId = \OCP\User::getUser(); $util = new Util($view, $userId); + if (isset(self::$renamedFiles[$params['oldpath']]['uid']) && + isset(self::$renamedFiles[$params['oldpath']]['path'])) { + $ownerOld = self::$renamedFiles[$params['oldpath']]['uid']; + $pathOld = self::$renamedFiles[$params['oldpath']]['path']; + } else { + \OCP\Util::writeLog('Encryption library', "can't get path and owner from the file before it was renamed", \OCP\Util::ERROR); + return false; + } + + list($ownerNew, $pathNew) = $util->getUidAndFilename($params['newpath']); + // Format paths to be relative to user files dir - if ($util->isSystemWideMountPoint($params['oldpath'])) { - $baseDir = 'files_encryption/'; - $oldKeyfilePath = $baseDir . 'keyfiles/' . $params['oldpath']; + if ($util->isSystemWideMountPoint($pathOld)) { + $oldKeyfilePath = 'files_encryption/keyfiles/' . $pathOld; + $oldShareKeyPath = 'files_encryption/share-keys/' . $pathOld; } else { - $baseDir = $userId . '/' . 'files_encryption/'; - $oldKeyfilePath = $baseDir . 'keyfiles/' . $params['oldpath']; + $oldKeyfilePath = $ownerOld . '/' . 'files_encryption/keyfiles/' . $pathOld; + $oldShareKeyPath = $ownerOld . '/' . 'files_encryption/share-keys/' . $pathOld; } - if ($util->isSystemWideMountPoint($params['newpath'])) { - $newKeyfilePath = $baseDir . 'keyfiles/' . $params['newpath']; + if ($util->isSystemWideMountPoint($pathNew)) { + $newKeyfilePath = 'files_encryption/keyfiles/' . $pathNew; + $newShareKeyPath = 'files_encryption/share-keys/' . $pathNew; } else { - $newKeyfilePath = $baseDir . 'keyfiles/' . $params['newpath']; + $newKeyfilePath = $ownerNew . '/files_encryption/keyfiles/' . $pathNew; + $newShareKeyPath = $ownerNew . '/files_encryption/share-keys/' . $pathNew; } // add key ext if this is not an folder @@ -486,11 +550,11 @@ class Hooks { $newKeyfilePath .= '.key'; // handle share-keys - $localKeyPath = $view->getLocalFile($baseDir . 'share-keys/' . $params['oldpath']); + $localKeyPath = $view->getLocalFile($oldShareKeyPath); $escapedPath = Helper::escapeGlobPattern($localKeyPath); $matches = glob($escapedPath . '*.shareKey'); foreach ($matches as $src) { - $dst = \OC\Files\Filesystem::normalizePath(str_replace($params['oldpath'], $params['newpath'], $src)); + $dst = \OC\Files\Filesystem::normalizePath(str_replace($pathOld, $pathNew, $src)); // create destination folder if not exists if (!file_exists(dirname($dst))) { @@ -502,15 +566,13 @@ class Hooks { } else { // handle share-keys folders - $oldShareKeyfilePath = $baseDir . 'share-keys/' . $params['oldpath']; - $newShareKeyfilePath = $baseDir . 'share-keys/' . $params['newpath']; // create destination folder if not exists - if (!$view->file_exists(dirname($newShareKeyfilePath))) { - $view->mkdir(dirname($newShareKeyfilePath), 0750, true); + if (!$view->file_exists(dirname($newShareKeyPath))) { + $view->mkdir(dirname($newShareKeyPath), 0750, true); } - $view->rename($oldShareKeyfilePath, $newShareKeyfilePath); + $view->rename($oldShareKeyPath, $newShareKeyPath); } // Rename keyfile so it isn't orphaned @@ -525,32 +587,46 @@ class Hooks { } // build the path to the file - $newPath = '/' . $userId . '/files' . $params['newpath']; - $newPathRelative = $params['newpath']; + $newPath = '/' . $ownerNew . '/files' . $pathNew; if ($util->fixFileSize($newPath)) { // get sharing app state $sharingEnabled = \OCP\Share::isEnabled(); // get users - $usersSharing = $util->getSharingUsersArray($sharingEnabled, $newPathRelative); + $usersSharing = $util->getSharingUsersArray($sharingEnabled, $pathNew); // update sharing-keys - $util->setSharedFileKeyfiles($session, $usersSharing, $newPathRelative); + $util->setSharedFileKeyfiles($session, $usersSharing, $pathNew); } \OC_FileProxy::$enabled = $proxyStatus; } /** - * set migration status back to '0' so that all new files get encrypted + * set migration status and the init status back to '0' so that all new files get encrypted * if the app gets enabled again * @param array $params contains the app ID */ public static function preDisable($params) { if ($params['app'] === 'files_encryption') { - $query = \OC_DB::prepare('UPDATE `*PREFIX*encryption` SET `migration_status`=0'); - $query->execute(); + + $setMigrationStatus = \OC_DB::prepare('UPDATE `*PREFIX*encryption` SET `migration_status`=0'); + $setMigrationStatus->execute(); + + $session = new \OCA\Encryption\Session(new \OC\Files\View('/')); + $session->setInitialized(\OCA\Encryption\Session::NOT_INITIALIZED); + } + } + + /** + * set the init status to 'NOT_INITIALIZED' (0) if the app gets enabled + * @param array $params contains the app ID + */ + public static function postEnable($params) { + if ($params['app'] === 'files_encryption') { + $session = new \OCA\Encryption\Session(new \OC\Files\View('/')); + $session->setInitialized(\OCA\Encryption\Session::NOT_INITIALIZED); } } diff --git a/apps/files_encryption/js/detect-migration.js b/apps/files_encryption/js/detect-migration.js new file mode 100644 index 0000000000000000000000000000000000000000..301e77f24f7e88b38ca1678b437cb316432a1573 --- /dev/null +++ b/apps/files_encryption/js/detect-migration.js @@ -0,0 +1,29 @@ +/** + * Copyright (c) 2013 + * Bjoern Schiessle + * This file is licensed under the Affero General Public License version 3 or later. + * See the COPYING-README file. + */ + + +$(document).ready(function(){ + $('form[name="login"]').on('submit', function() { + var user = $('#user').val(); + var password = $('#password').val(); + $.ajax({ + type: 'POST', + url: OC.linkTo('files_encryption', 'ajax/getMigrationStatus.php'), + dataType: 'json', + data: {user: user, password: password}, + async: false, + success: function(response) { + if (response.data.migrationCompleted === false) { + var message = t('files_encryption', 'Initial encryption started... This can take some time. Please wait.'); + $('#messageText').text(message); + $('#message').removeClass('hidden').addClass('update'); + } + } + }); + }); + +}); diff --git a/apps/files_encryption/js/settings-admin.js b/apps/files_encryption/js/settings-admin.js index 6647c621e7b90f3f12c94ed779de577023fd0904..c2140a6f1eb152692e8da411e21099660d5e329c 100644 --- a/apps/files_encryption/js/settings-admin.js +++ b/apps/files_encryption/js/settings-admin.js @@ -1,6 +1,8 @@ /** - * Copyright (c) 2013, Sam Tuke , Robin Appelman - * + * Copyright (c) 2013 + * Sam Tuke + * Robin Appelman + * Bjoern Schiessle * This file is licensed under the Affero General Public License version 3 or later. * See the COPYING-README file. */ @@ -31,22 +33,23 @@ $(document).ready(function(){ // Trigger ajax on recoveryAdmin status change var enabledStatus = $('#adminEnableRecovery').val(); - $('input:password[name="recoveryPassword"]').keyup(function(event) { - var recoveryPassword = $( '#recoveryPassword' ).val(); + $('input:password[name="encryptionRecoveryPassword"]').keyup(function(event) { + var recoveryPassword = $( '#encryptionRecoveryPassword' ).val(); + var recoveryPasswordRepeated = $( '#repeatEncryptionRecoveryPassword' ).val(); var checkedButton = $('input:radio[name="adminEnableRecovery"]:checked').val(); var uncheckedValue = (1+parseInt(checkedButton)) % 2; - if (recoveryPassword != '' ) { + if (recoveryPassword !== '' && recoveryPassword === recoveryPasswordRepeated) { $('input:radio[name="adminEnableRecovery"][value="'+uncheckedValue.toString()+'"]').removeAttr("disabled"); } else { $('input:radio[name="adminEnableRecovery"][value="'+uncheckedValue.toString()+'"]').attr("disabled", "true"); } }); - $( 'input:radio[name="adminEnableRecovery"]' ).change( + $( 'input:radio[name="adminEnableRecovery"]' ).change( function() { var recoveryStatus = $( this ).val(); var oldStatus = (1+parseInt(recoveryStatus)) % 2; - var recoveryPassword = $( '#recoveryPassword' ).val(); + var recoveryPassword = $( '#encryptionRecoveryPassword' ).val(); $.post( OC.filePath( 'files_encryption', 'ajax', 'adminrecovery.php' ) , { adminEnableRecovery: recoveryStatus, recoveryPassword: recoveryPassword } @@ -57,11 +60,10 @@ $(document).ready(function(){ } else { OC.Notification.hide(); if (recoveryStatus === "0") { - $('button:button[name="submitChangeRecoveryKey"]').attr("disabled", "true"); - $('input:password[name="changeRecoveryPassword"]').attr("disabled", "true"); - $('input:password[name="changeRecoveryPassword"]').val(""); + $('p[name="changeRecoveryPasswordBlock"]').addClass("hidden"); } else { - $('input:password[name="changeRecoveryPassword"]').removeAttr("disabled"); + $('input:password[name="changeRecoveryPassword"]').val(""); + $('p[name="changeRecoveryPasswordBlock"]').removeClass("hidden"); } } } @@ -72,9 +74,11 @@ $(document).ready(function(){ // change recovery password $('input:password[name="changeRecoveryPassword"]').keyup(function(event) { - var oldRecoveryPassword = $('input:password[id="oldRecoveryPassword"]').val(); - var newRecoveryPassword = $('input:password[id="newRecoveryPassword"]').val(); - if (newRecoveryPassword != '' && oldRecoveryPassword != '' ) { + var oldRecoveryPassword = $('#oldEncryptionRecoveryPassword').val(); + var newRecoveryPassword = $('#newEncryptionRecoveryPassword').val(); + var newRecoveryPasswordRepeated = $('#repeatedNewEncryptionRecoveryPassword').val(); + + if (newRecoveryPassword !== '' && oldRecoveryPassword !== '' && newRecoveryPassword === newRecoveryPasswordRepeated) { $('button:button[name="submitChangeRecoveryKey"]').removeAttr("disabled"); } else { $('button:button[name="submitChangeRecoveryKey"]').attr("disabled", "true"); @@ -83,8 +87,8 @@ $(document).ready(function(){ $('button:button[name="submitChangeRecoveryKey"]').click(function() { - var oldRecoveryPassword = $('input:password[id="oldRecoveryPassword"]').val(); - var newRecoveryPassword = $('input:password[id="newRecoveryPassword"]').val(); + var oldRecoveryPassword = $('#oldEncryptionRecoveryPassword').val(); + var newRecoveryPassword = $('#newEncryptionRecoveryPassword').val(); OC.msg.startSaving('#encryption .msg'); $.post( OC.filePath( 'files_encryption', 'ajax', 'changeRecoveryPassword.php' ) @@ -98,5 +102,5 @@ $(document).ready(function(){ } ); }); - + }); diff --git a/apps/files_encryption/l10n/ca.php b/apps/files_encryption/l10n/ca.php index 14d7992ad5da4773ce995209e3a9af8b63ce98df..33d2754483c860faf8692d5a46b456a2a153faab 100644 --- a/apps/files_encryption/l10n/ca.php +++ b/apps/files_encryption/l10n/ca.php @@ -8,22 +8,27 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "No s'ha pogut canviar la contrasenya. Potser la contrasenya anterior no era correcta.", "Private key password successfully updated." => "La contrasenya de la clau privada s'ha actualitzat.", "Could not update the private key password. Maybe the old password was not correct." => "No s'ha pogut actualitzar la contrasenya de la clau privada. Potser la contrasenya anterior no era correcta.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "La clau privada no és vàlida! Probablement la contrasenya va ser canviada des de fora del sistema ownCloud (per exemple, en el directori de l'empresa). Vostè pot actualitzar la contrasenya de clau privada en la seva configuració personal per poder recuperar l'accés en els arxius xifrats.", +"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." => "L'aplicació d'encriptació no està inicialitzada! Potser l'aplicació d'encriptació ha estat reiniciada durant la sessió. Intenteu sortir i acreditar-vos de nou per reinicialitzar l'aplicació d'encriptació.", +"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." => "La clau privada no és vàlida! Probablement la contrasenya va ser canviada des de fora de %s (per exemple, en el directori de l'empresa). Vostè pot actualitzar la contrasenya de clau privada en la seva configuració personal per poder recuperar l'accés en els arxius xifrats.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "No es pot desencriptar aquest fitxer, probablement és un fitxer compartit. Demaneu al propietari del fitxer que el comparteixi de nou amb vós.", +"Unknown error please check your system settings or contact your administrator" => "Error desconegut. Comproveu l'arranjament del sistema o contacteu amb l'administrador", "Missing requirements." => "Manca de requisits.", "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." => "Assegureu-vos que teniu instal·lat PHP 5.3.3 o una versió superior i que està activat Open SSL i habilitada i configurada correctament l'extensió de PHP. De moment, l'aplicació d'encriptació s'ha desactivat.", "Following users are not set up for encryption:" => "Els usuaris següents no estan configurats per a l'encriptació:", +"Initial encryption started... This can take some time. Please wait." => "La encriptació inicial ha començat... Pot trigar una estona, espereu.", "Saving..." => "Desant...", -"Your private key is not valid! Maybe the your password was changed from outside." => "La vostra clau privada no és vàlida! Potser la vostra contrasenya ha canviat des de fora.", -"You can unlock your private key in your " => "Podeu desbloquejar la clau privada en el vostre", +"Go directly to your " => "Vés directament a", "personal settings" => "arranjament personal", "Encryption" => "Xifrat", "Enable recovery key (allow to recover users files in case of password loss):" => "Activa la clau de recuperació (permet recuperar fitxers d'usuaris en cas de pèrdua de contrasenya):", "Recovery key password" => "Clau de recuperació de la contrasenya", +"Repeat Recovery key password" => "Repetiu la clau de recuperació de contrasenya", "Enabled" => "Activat", "Disabled" => "Desactivat", "Change recovery key password:" => "Canvia la clau de recuperació de contrasenya:", "Old Recovery key password" => "Antiga clau de recuperació de contrasenya", "New Recovery key password" => "Nova clau de recuperació de contrasenya", +"Repeat New Recovery key password" => "Repetiu la nova clau de recuperació de contrasenya", "Change Password" => "Canvia la contrasenya", "Your private key password no longer match your log-in password:" => "La clau privada ja no es correspon amb la contrasenya d'accés:", "Set your old private key password to your current log-in password." => "Establiu la vostra contrasenya clau en funció de la contrasenya actual d'accés.", diff --git a/apps/files_encryption/l10n/cs_CZ.php b/apps/files_encryption/l10n/cs_CZ.php index 89f63cc1cdd2fd18dd90737aa043f9786c7e5a11..cf2776371df2087f932484ba4ce47d44e5b7fa61 100644 --- a/apps/files_encryption/l10n/cs_CZ.php +++ b/apps/files_encryption/l10n/cs_CZ.php @@ -8,22 +8,27 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Změna hesla se nezdařila. Pravděpodobně nebylo stávající heslo zadáno správně.", "Private key password successfully updated." => "Heslo soukromého klíče úspěšně aktualizováno.", "Could not update the private key password. Maybe the old password was not correct." => "Nelze aktualizovat heslo soukromého klíče. Možná nebylo staré heslo správně.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Váš soukromý klíč není platný! Pravděpodobně bylo heslo změněno vně systému ownCloud (např. ve vašem firemním adresáři). Heslo vašeho soukromého klíče můžete změnit ve svém osobním nastavení pro obnovení přístupu k vašim zašifrovaným souborům.", +"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." => "Aplikace pro šifrování není inicializována! Je možné, že aplikace byla znovu aktivována během vašeho přihlášení. Zkuste se prosím odhlásit a znovu přihlásit pro provedení inicializace šifrovací aplikace.", +"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." => "Váš soukromý klíč není platný! Pravděpodobně bylo vaše heslo změněno vně systému %s (např. ve vašem firemním adresáři). Heslo vašeho soukromého klíče můžete změnit ve svém osobním nastavení pro obnovení přístupu k vašim zašifrovaným souborům.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Tento soubor se nepodařilo dešifrovat, pravděpodobně je sdílený. Požádejte prosím majitele souboru, aby jej s vámi znovu sdílel.", +"Unknown error please check your system settings or contact your administrator" => "Neznámá chyba, zkontrolujte vaše systémová nastavení nebo kontaktujte vašeho správce", "Missing requirements." => "Nesplněné závislosti.", "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.", "Saving..." => "Ukládám...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Váš soukromý klíč není platný! Pravděpodobně bylo vaše heslo změněno zvenčí.", -"You can unlock your private key in your " => "Můžete odemknout váš soukromý klíč ve vašem", +"Go directly to your " => "Běžte přímo do vašeho", "personal settings" => "osobní nastavení", "Encryption" => "Šifrování", "Enable recovery key (allow to recover users files in case of password loss):" => "Povolit klíč pro obnovu (umožňuje obnovu uživatelských souborů v případě ztráty hesla)", "Recovery key password" => "Heslo klíče pro obnovu", +"Repeat Recovery key password" => "Zopakujte heslo klíče pro obnovu", "Enabled" => "Povoleno", "Disabled" => "Zakázáno", "Change recovery key password:" => "Změna hesla klíče pro obnovu:", "Old Recovery key password" => "Původní heslo klíče pro obnovu", "New Recovery key password" => "Nové heslo klíče pro obnovu", +"Repeat New Recovery key password" => "Zopakujte nové heslo klíče pro obnovu", "Change Password" => "Změnit heslo", "Your private key password no longer match your log-in password:" => "Heslo vašeho soukromého klíče se již neshoduje s vaším přihlašovacím heslem:", "Set your old private key password to your current log-in password." => "Změňte heslo vaše soukromého klíče na stejné jako vaše přihlašovací heslo.", diff --git a/apps/files_encryption/l10n/da.php b/apps/files_encryption/l10n/da.php index 1b7069b6784574ae1d4305364b362cd24a484609..9e4290534c01ae7fc65a2bd5b991d783d1d660af 100644 --- a/apps/files_encryption/l10n/da.php +++ b/apps/files_encryption/l10n/da.php @@ -8,22 +8,27 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Kunne ikke ændre kodeordet. Måske var det gamle kodeord ikke korrekt.", "Private key password successfully updated." => "Privat nøgle kodeord succesfuldt opdateret.", "Could not update the private key password. Maybe the old password was not correct." => "Kunne ikke opdatere det private nøgle kodeord-. Måske var det gamle kodeord forkert.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Din private nøgle er gyldig! Sandsynligvis blev dit kodeord ændre uden for ownCloud systemet (f.eks. dit firmas register). Du kan opdatere dit private nøgle kodeord under personlige indstillinger, for at generhverve adgang til dine krypterede filer.", +"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." => "Krypteringsprogrammet er ikke igangsat. Det kan skyldes at krypteringsprogrammet er blevet genaktiveret under din session. Prøv at logge ud og ind igen for at aktivere krypteringsprogrammet. ", +"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." => "Din private nøgle er ikke gyldig. Sandsynligvis er dit kodeord blevet ændret uden for %s (f.eks dit firmas adressebog). Du kan opdatere din private nøglekode i dine personlige indstillinger for at genskabe adgang til dine krypterede filer.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Kan ikke kryptere denne fil, sandsynligvis fordi felen er delt. Bed venligst filens ejer om at dele den med dig på ny.", +"Unknown error please check your system settings or contact your administrator" => "Ukendt fejl. Kontroller venligst dit system eller kontakt din administrator", "Missing requirements." => "Manglende betingelser.", "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." => "Sørg for at PHP 5.3.3 eller nyere er installeret og at OpenSSL sammen med PHP-udvidelsen er aktiveret og korrekt konfigureret. Indtil videre er krypteringsprogrammet deaktiveret.", "Following users are not set up for encryption:" => "Følgende brugere er ikke sat op til kryptering:", +"Initial encryption started... This can take some time. Please wait." => "Førstegangskryptering er påbegyndt... Dette kan tage nogen tid. Vent venligst.", "Saving..." => "Gemmer...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Din private nøgle er ikke gyldig. Måske blev dit kodeord ændre udefra.", -"You can unlock your private key in your " => "Du kan låse din private nøgle op i din ", +"Go directly to your " => "Gå direkte til din ", "personal settings" => "Personlige indstillinger", "Encryption" => "Kryptering", "Enable recovery key (allow to recover users files in case of password loss):" => "Aktiver gendannelsesnøgle (Tillad gendannelse af brugerfiler i tilfælde af tab af kodeord):", "Recovery key password" => "Gendannelsesnøgle kodeord", +"Repeat Recovery key password" => "Gentag gendannelse af nøglekoden", "Enabled" => "Aktiveret", "Disabled" => "Deaktiveret", "Change recovery key password:" => "Skift gendannelsesnøgle kodeord:", "Old Recovery key password" => "Gammel Gendannelsesnøgle kodeord", "New Recovery key password" => "Ny Gendannelsesnøgle kodeord", +"Repeat New Recovery key password" => "Gentag dannelse af ny gendannaleses nøglekode", "Change Password" => "Skift Kodeord", "Your private key password no longer match your log-in password:" => "Dit private nøgle kodeord stemmer ikke længere overens med dit login kodeord:", "Set your old private key password to your current log-in password." => "Sæt dit gamle private nøgle kodeord til at være dit nuværende login kodeord. ", diff --git a/apps/files_encryption/l10n/de.php b/apps/files_encryption/l10n/de.php index 4c36d31ed6bf131275518840d2f107874b4a3172..3ba50f074b919b19be09d2bdd537f6e55b011a53 100644 --- a/apps/files_encryption/l10n/de.php +++ b/apps/files_encryption/l10n/de.php @@ -1,38 +1,43 @@ "Wiederherstellungsschlüssel wurde erfolgreich aktiviert", -"Could not enable recovery key. Please check your recovery key password!" => "Der Wiederherstellungsschlüssel konnte nicht aktiviert werden. Überprüfen Sie Ihr Wiederherstellungspasswort!", +"Could not enable recovery key. Please check your recovery key password!" => "Der Wiederherstellungsschlüssel konnte nicht aktiviert werden. Überprüfe Dein Wiederherstellungspasswort!", "Recovery key successfully disabled" => "Wiederherstellungsschlüssel deaktiviert.", -"Could not disable recovery key. Please check your recovery key password!" => "Der Wiederherstellungsschlüssel konnte nicht deaktiviert werden. Überprüfen Sie Ihr Wiederherstellungspasswort!", +"Could not disable recovery key. Please check your recovery key password!" => "Der Wiederherstellungsschlüssel konnte nicht deaktiviert werden. Überprüfe Dein Wiederherstellungspasswort!", "Password successfully changed." => "Dein Passwort wurde geändert.", "Could not change the password. Maybe the old password was not correct." => "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort falsch.", "Private key password successfully updated." => "Passwort des privaten Schlüssels erfolgreich aktualisiert", "Could not update the private key password. Maybe the old password was not correct." => "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Eventuell war das alte Passwort falsch.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Dein privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Dein Passwort geändert (z.B. in deinem gemeinsamen Verzeichnis). Du kannst das Passwort deines privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an deine Dateien zu gelangen.", +"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." => "Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuche Dich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren.", +"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." => "Dein privater Schlüssel ist ungültig. Möglicher Weise wurde außerhalb von %s Dein Passwort geändert (z.B. in Deinem gemeinsamen Verzeichnis). Du kannst das Passwort Deines privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Deine Dateien zu gelangen.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Die Datei kann nicht entschlüsselt werden, da die Datei möglicherweise eine geteilte Datei ist. Bitte frage den Dateibesitzer, ob er die Datei nochmals mit Dir teilt.", +"Unknown error please check your system settings or contact your administrator" => "Unbekannter Fehler, bitte prüfe Deine Systemeinstellungen oder kontaktiere Deinen Administrator", "Missing requirements." => "Fehlende Vorraussetzungen", "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." => "Bitte stelle sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", "Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", +"Initial encryption started... This can take some time. Please wait." => "Initialverschlüsselung gestartet... Dies kann einige Zeit dauern. Bitte warten.", "Saving..." => "Speichern...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Eventuell wurde Ihr Passwort von außerhalb geändert.", -"You can unlock your private key in your " => "Du kannst den privaten Schlüssel ändern und zwar in deinem", +"Go directly to your " => "Direkt wechseln zu Deinem", "personal settings" => "Private Einstellungen", "Encryption" => "Verschlüsselung", "Enable recovery key (allow to recover users files in case of password loss):" => "Wiederherstellungsschlüssel aktivieren (ermöglicht das Wiederherstellen von Dateien, falls das Passwort vergessen wurde):", "Recovery key password" => "Wiederherstellungsschlüssel-Passwort", +"Repeat Recovery key password" => "Schlüssel-Passwort zur Wiederherstellung wiederholen", "Enabled" => "Aktiviert", "Disabled" => "Deaktiviert", "Change recovery key password:" => "Wiederherstellungsschlüssel-Passwort ändern:", "Old Recovery key password" => "Altes Wiederherstellungsschlüssel-Passwort", "New Recovery key password" => "Neues Wiederherstellungsschlüssel-Passwort", +"Repeat New Recovery key password" => "Neues Schlüssel-Passwort zur Wiederherstellung wiederholen", "Change Password" => "Passwort ändern", -"Your private key password no longer match your log-in password:" => "Ihr Passwort für ihren privaten Schlüssel stimmt nicht mehr mit ihrem Loginpasswort überein.", -"Set your old private key password to your current log-in password." => "Setzen Sie ihr altes Passwort für ihren privaten Schlüssel auf ihr aktuelles Login-Passwort", -" If you don't remember your old password you can ask your administrator to recover your files." => "Wenn Sie Ihr altes Passwort vergessen haben, können Sie den Administrator bitten, Ihre Daten wiederherzustellen.", -"Old log-in password" => "Altes login Passwort", +"Your private key password no longer match your log-in password:" => "Das Passwort für Deinen privaten Schlüssel stimmt nicht mehr mit Deinem Loginpasswort überein.", +"Set your old private key password to your current log-in password." => "Setze Dein altes Passwort für Deinen privaten Schlüssel auf Dein aktuelles Login-Passwort", +" If you don't remember your old password you can ask your administrator to recover your files." => "Wenn Du Dein altes Passwort vergessen hast, könntest Du Deinen Administrator bitten, Deine Daten wiederherzustellen.", +"Old log-in password" => "Altes Login Passwort", "Current log-in password" => "Aktuelles Passwort", "Update Private Key Password" => "Passwort für den privaten Schlüssel aktualisieren", -"Enable password recovery:" => "Passwortwiederherstellung aktivvieren:", -"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Wenn Sie diese Option aktivieren, können Sie Ihre verschlüsselten Dateien wiederherstellen, falls Sie Ihr Passwort vergessen", +"Enable password recovery:" => "Passwortwiederherstellung aktivieren:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Wenn Du diese Option aktivierst, kannst Du Deine verschlüsselten Dateien wiederherstellen, falls Du Dein Passwort vergisst", "File recovery settings updated" => "Einstellungen zur Wiederherstellung von Dateien wurden aktualisiert", "Could not update file recovery" => "Dateiwiederherstellung konnte nicht aktualisiert werden" ); diff --git a/apps/files_encryption/l10n/de_CH.php b/apps/files_encryption/l10n/de_CH.php index aa867645c8d6c8064a64cc92175bb7d9b300d515..a31e82a666f3eaffb3e3aa6c22adc0ffa6a44a2e 100644 --- a/apps/files_encryption/l10n/de_CH.php +++ b/apps/files_encryption/l10n/de_CH.php @@ -8,13 +8,10 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort nicht richtig.", "Private key password successfully updated." => "Das Passwort des privaten Schlüssels wurde erfolgreich aktualisiert.", "Could not update the private key password. Maybe the old password was not correct." => "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von ausserhalb Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen.", "Missing requirements." => "Fehlende Voraussetzungen", "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." => "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", "Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", "Saving..." => "Speichern...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von ausserhalb geändert.", -"You can unlock your private key in your " => "Sie können den privaten Schlüssel ändern und zwar in Ihrem", "personal settings" => "Persönliche Einstellungen", "Encryption" => "Verschlüsselung", "Enable recovery key (allow to recover users files in case of password loss):" => "Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherstellung des Zugangs zu den Benutzerdateien, wenn das Passwort verloren geht).", diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php index 200001e6ebfbbd569024ba366d9665e4b4133c84..6184fd8a898ed6e5f20cf35d9543b05f26005f28 100644 --- a/apps/files_encryption/l10n/de_DE.php +++ b/apps/files_encryption/l10n/de_DE.php @@ -8,22 +8,27 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort nicht richtig.", "Private key password successfully updated." => "Das Passwort des privaten Schlüssels wurde erfolgreich aktualisiert.", "Could not update the private key password. Maybe the old password was not correct." => "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen.", +"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." => "Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuchen Sie sich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren.", +"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." => "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde außerhalb von %s Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Die Datei kann nicht entschlüsselt werden, da die Datei möglicherweise eine geteilte Datei ist. Bitte fragen Sie den Datei-Besitzer, dass er die Datei nochmals mit Ihnen teilt.", +"Unknown error please check your system settings or contact your administrator" => "Unbekannter Fehler, bitte prüfen Sie die Systemeinstellungen oder kontaktieren Sie Ihren Administrator", "Missing requirements." => "Fehlende Voraussetzungen", "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." => "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", "Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", +"Initial encryption started... This can take some time. Please wait." => "Initialverschlüsselung gestartet... Dies kann einige Zeit dauern. Bitte warten.", "Saving..." => "Speichern...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von außerhalb geändert.", -"You can unlock your private key in your " => "Sie können den privaten Schlüssel ändern und zwar in Ihrem", +"Go directly to your " => "Direkt wechseln zu Ihrem", "personal settings" => "Persönliche Einstellungen", "Encryption" => "Verschlüsselung", "Enable recovery key (allow to recover users files in case of password loss):" => "Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherstellung des Zugangs zu den Benutzerdateien, wenn das Passwort verloren geht).", "Recovery key password" => "Wiederherstellungschlüsselpasswort", +"Repeat Recovery key password" => "Schlüssel-Passwort zur Wiederherstellung wiederholen", "Enabled" => "Aktiviert", "Disabled" => "Deaktiviert", "Change recovery key password:" => "Wiederherstellungsschlüsselpasswort ändern", "Old Recovery key password" => "Altes Wiederherstellungsschlüsselpasswort", "New Recovery key password" => "Neues Wiederherstellungsschlüsselpasswort ", +"Repeat New Recovery key password" => "Neues Schlüssel-Passwort zur Wiederherstellung wiederholen", "Change Password" => "Passwort ändern", "Your private key password no longer match your log-in password:" => "Das Privatschlüsselpasswort darf nicht länger mit den Login-Passwort übereinstimmen.", "Set your old private key password to your current log-in password." => "Setzen Sie Ihr altes Privatschlüsselpasswort auf Ihr aktuelles LogIn-Passwort.", diff --git a/apps/files_encryption/l10n/el.php b/apps/files_encryption/l10n/el.php index 70f778f0a5038d6d8a194eb269f89e85892102cc..22c1095e2847fd922b86b2ab425fbf9b7ed0d784 100644 --- a/apps/files_encryption/l10n/el.php +++ b/apps/files_encryption/l10n/el.php @@ -1,13 +1,44 @@ "Επιτυχής ενεργοποίηση κλειδιού ανάκτησης", +"Could not enable recovery key. Please check your recovery key password!" => "Αποτυχία ενεργοποίησης κλειδιού ανάκτησης. Παρακαλώ ελέγξτε τον κωδικό του κλειδιού ανάκτησής σας!", +"Recovery key successfully disabled" => "Επιτυχής απενεργοποίηση κλειδιού ανάκτησης", +"Could not disable recovery key. Please check your recovery key password!" => "Αποτυχία απενεργοποίησης κλειδιού ανάκτησης. Παρακαλώ ελέγξτε τον κωδικό του κλειδιού ανάκτησής σας!", "Password successfully changed." => "Ο κωδικός αλλάχτηκε επιτυχώς.", "Could not change the password. Maybe the old password was not correct." => "Αποτυχία αλλαγής κωδικού ίσως ο παλιός κωδικός να μην ήταν σωστός.", +"Private key password successfully updated." => "Το Προσωπικό κλειδί πρόσβασης ενημερώθηκε επιτυχώς", +"Could not update the private key password. Maybe the old password was not correct." => "Αποτυχία ενημέρωσης του κωδικού για το προσωπικό κλειδί. Ενδεχομένως ο παλιός κωδικός δεν ήταν σωστός.", +"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." => "Η εφαρμογή κρυπτογράφησης δεν έχει εκκινήσει! Ίσως η εφαρμογή κρυπτογράφησης επανενεργοποιήθηκε κατά τη διάρκεια της τρέχουσας σύνδεσής σας. Παρακαλώ προσπαθήστε να αποσυνδεθείτε και να ξανασυνδεθείτε για να εκκινήσετε την εφαρμογή κρυπτογράφησης.", +"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." => "Το προσωπικό σας κλειδί δεν είναι έγκυρο! Πιθανόν ο κωδικός σας να άλλαξε έξω από το %s (π.χ. τη λίστα διευθύνσεων της εταιρείας σας). Μπορείτε να ενημερώσετε το προσωπικό σας κλειδί επαναφοράς κωδικού στις προσωπικές σας ρυθμίσεις για να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Δεν ήταν δυνατό να αποκρυπτογραφηθεί αυτό το αρχείο, πιθανόν πρόκειται για κοινόχρηστο αρχείο. Παρακαλώ ζητήστε από τον ιδιοκτήτη του αρχείου να το ξαναμοιραστεί μαζί σας.", +"Unknown error please check your system settings or contact your administrator" => "Άγνωστο σφάλμα, παρακαλώ ελέγξτε τις ρυθμίσεις συστήματος ή επικοινωνήστε με τον διαχειριστή σας ", +"Missing requirements." => "Προαπαιτούμενα που απουσιάζουν.", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Παρακαλώ επιβεβαιώστε ότι η PHP 5.3.3 ή νεότερη είναι εγκατεστημένη και ότι το OpenSSL μαζί με το PHP extension είναι ενεργοποιήμένο και έχει ρυθμιστεί σωστά. Προς το παρόν, η εφαρμογή κρυπτογράφησης είναι απενεργοποιημένη.", +"Following users are not set up for encryption:" => "Οι κάτωθι χρήστες δεν έχουν ρυθμιστεί για κρυπογράφηση:", +"Initial encryption started... This can take some time. Please wait." => "Η αρχική κρυπτογράφηση άρχισε... Αυτό μπορεί να πάρει κάποια ώρα. Παρακαλώ περιμένετε.", "Saving..." => "Γίνεται αποθήκευση...", +"Go directly to your " => "Πηγαίνε απευθείας στο ", "personal settings" => "προσωπικές ρυθμίσεις", "Encryption" => "Κρυπτογράφηση", +"Enable recovery key (allow to recover users files in case of password loss):" => "Ενεργοποίηση κλειδιού ανάκτησης (επιτρέψτε την ανάκτηση αρχείων χρηστών σε περίπτωση απώλειας κωδικού):", +"Recovery key password" => "Επαναφορά κωδικού κλειδιού", +"Repeat Recovery key password" => "Επαναλάβετε το κλειδί επαναφοράς κωδικού", "Enabled" => "Ενεργοποιημένο", "Disabled" => "Απενεργοποιημένο", +"Change recovery key password:" => "Αλλαγή κλειδιού επαναφοράς κωδικού:", +"Old Recovery key password" => "Παλιό κλειδί επαναφοράς κωδικού", +"New Recovery key password" => "Νέο κλειδί επαναφοράς κωδικού", +"Repeat New Recovery key password" => "Επαναλάβετε νέο κλειδί επαναφοράς κωδικού", "Change Password" => "Αλλαγή Κωδικού Πρόσβασης", -"File recovery settings updated" => "Οι ρυθμίσεις επαναφοράς αρχείων ανανεώθηκαν" +"Your private key password no longer match your log-in password:" => "Ο κωδικός του προσωπικού κλειδιού δεν ταιριάζει πλέον με τον κωδικό σύνδεσής σας:", +"Set your old private key password to your current log-in password." => "Ορίστε το παλιό σας προσωπικό κλειδί ως τον τρέχων κωδικό πρόσβασης.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Εάν δεν θυμάστε τον παλιό σας κωδικό μπορείτε να ζητήσετε από τον διαχειριστή σας να επανακτήσει τα αρχεία σας.", +"Old log-in password" => "Παλαιό συνθηματικό εισόδου", +"Current log-in password" => "Τρέχον συνθηματικό πρόσβασης", +"Update Private Key Password" => "Ενημέρωση Προσωπικού Κλειδού Πρόσβασης", +"Enable password recovery:" => "Ενεργοποιήστε την ανάκτηση κωδικού πρόσβασης", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Η ενεργοποίηση αυτής της επιλογής θα σας επιτρέψει να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία σε περίπτωση απώλειας του κωδικού σας", +"File recovery settings updated" => "Οι ρυθμίσεις επαναφοράς αρχείων ανανεώθηκαν", +"Could not update file recovery" => "Αποτυχία ενημέρωσης ανάκτησης αρχείων" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/en_GB.php b/apps/files_encryption/l10n/en_GB.php index c220a4bdf045c81a57707c04a1a746cf076befe5..55d56b9533e3954fae61e061a3de3457875deb90 100644 --- a/apps/files_encryption/l10n/en_GB.php +++ b/apps/files_encryption/l10n/en_GB.php @@ -8,24 +8,29 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Could not change the password. Maybe the old password was incorrect.", "Private key password successfully updated." => "Private key password updated successfully.", "Could not update the private key password. Maybe the old password was not correct." => "Could not update the private key password. Maybe the old password was not correct.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.", +"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." => "Encryption app not initialised! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialise the encryption app.", +"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." => "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.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Cannot decrypt this file, which is probably a shared file. Please ask the file owner to reshare the file with you.", +"Unknown error please check your system settings or contact your administrator" => "Unknown error. Please check your system settings or contact your administrator", "Missing requirements." => "Missing requirements.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "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.", "Following users are not set up for encryption:" => "Following users are not set up for encryption:", +"Initial encryption started... This can take some time. Please wait." => "Initial encryption started... This can take some time. Please wait.", "Saving..." => "Saving...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Your private key is not valid! Maybe the your password was changed externally.", -"You can unlock your private key in your " => "You can unlock your private key in your ", +"Go directly to your " => "Go directly to your ", "personal settings" => "personal settings", "Encryption" => "Encryption", "Enable recovery key (allow to recover users files in case of password loss):" => "Enable recovery key (allow to recover users files in case of password loss):", "Recovery key password" => "Recovery key password", +"Repeat Recovery key password" => "Repeat recovery key password", "Enabled" => "Enabled", "Disabled" => "Disabled", "Change recovery key password:" => "Change recovery key password:", -"Old Recovery key password" => "Old Recovery key password", -"New Recovery key password" => "New Recovery key password", +"Old Recovery key password" => "Old recovery key password", +"New Recovery key password" => "New recovery key password", +"Repeat New Recovery key password" => "Repeat new recovery key password", "Change Password" => "Change Password", -"Your private key password no longer match your log-in password:" => "Your private key password no longer match your login password:", +"Your private key password no longer match your log-in password:" => "Your private key password no longer matches your login password:", "Set your old private key password to your current log-in password." => "Set your old private key password to your current login password.", " If you don't remember your old password you can ask your administrator to recover your files." => " If you don't remember your old password you can ask your administrator to recover your files.", "Old log-in password" => "Old login password", diff --git a/apps/files_encryption/l10n/eo.php b/apps/files_encryption/l10n/eo.php index d68812530228f5adf2f5268e704165014c702b03..e14c7cd7ac9cde2bfc51b71936363bcac6ffb8c4 100644 --- a/apps/files_encryption/l10n/eo.php +++ b/apps/files_encryption/l10n/eo.php @@ -3,7 +3,9 @@ $TRANSLATIONS = array( "Password successfully changed." => "La pasvorto sukcese ŝanĝiĝis.", "Could not change the password. Maybe the old password was not correct." => "Ne eblis ŝanĝi la pasvorton. Eble la malnova pasvorto malĝustis.", "Private key password successfully updated." => "La pasvorto de la malpublika klavo sukcese ĝisdatiĝis.", +"Missing requirements." => "Mankas neproj.", "Saving..." => "Konservante...", +"Go directly to your " => "Iri direkte al via", "personal settings" => "persona agordo", "Encryption" => "Ĉifrado", "Enabled" => "Kapabligita", diff --git a/apps/files_encryption/l10n/es.php b/apps/files_encryption/l10n/es.php index 2d644708c59ed3ece59af8046b5fab59205c280b..53453986883854f15a9cebc97545367cfc98037e 100644 --- a/apps/files_encryption/l10n/es.php +++ b/apps/files_encryption/l10n/es.php @@ -8,22 +8,27 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta.", "Private key password successfully updated." => "Contraseña de clave privada actualizada con éxito.", "Could not update the private key password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea correcta.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar su clave privada en sus opciones personales para recuperar el acceso a sus ficheros.", +"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." => "¡La aplicación de cifrado no ha sido inicializada! Quizá fue restablecida durante tu sesión. Por favor intenta cerrar la sesión y volver a iniciarla para inicializar la aplicación de cifrado.", +"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." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. de %s (Ej:Su directorio corporativo). Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus archivos.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "No fue posible descifrar este archivo, probablemente se trate de un archivo compartido. Solicite al propietario del mismo que vuelva a compartirlo con usted.", +"Unknown error please check your system settings or contact your administrator" => "Error desconocido. Verifique la configuración de su sistema o póngase en contacto con su administrador", "Missing requirements." => "Requisitos incompletos.", "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." => "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada.", "Following users are not set up for encryption:" => "Los siguientes usuarios no han sido configurados para el cifrado:", +"Initial encryption started... This can take some time. Please wait." => "Encriptación iniciada..... Esto puede tomar un tiempo. Por favor espere.", "Saving..." => "Guardando...", -"Your private key is not valid! Maybe the your password was changed from outside." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera.", -"You can unlock your private key in your " => "Puede desbloquear su clave privada en su", +"Go directly to your " => "Ir directamente a su", "personal settings" => "opciones personales", "Encryption" => "Cifrado", "Enable recovery key (allow to recover users files in case of password loss):" => "Habilitar la clave de recuperación (permite recuperar los ficheros del usuario en caso de pérdida de la contraseña);", "Recovery key password" => "Contraseña de clave de recuperación", +"Repeat Recovery key password" => "Repite la contraseña de clave de recuperación", "Enabled" => "Habilitar", "Disabled" => "Deshabilitado", "Change recovery key password:" => "Cambiar la contraseña de la clave de recuperación", "Old Recovery key password" => "Antigua clave de recuperación", "New Recovery key password" => "Nueva clave de recuperación", +"Repeat New Recovery key password" => "Repetir la nueva clave de recuperación", "Change Password" => "Cambiar contraseña", "Your private key password no longer match your log-in password:" => "Su contraseña de clave privada ya no coincide con su contraseña de acceso:", "Set your old private key password to your current log-in password." => "Establecer la contraseña de su antigua clave privada a su contraseña actual de acceso.", diff --git a/apps/files_encryption/l10n/es_AR.php b/apps/files_encryption/l10n/es_AR.php index 666ea59687c404bb19e088ce0e2a43a7288dd3de..df5bd649d67c833a6c33b3b078aab4f5245ce045 100644 --- a/apps/files_encryption/l10n/es_AR.php +++ b/apps/files_encryption/l10n/es_AR.php @@ -8,13 +8,10 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Comprobá que la contraseña actual sea correcta.", "Private key password successfully updated." => "Contraseña de clave privada actualizada con éxito.", "Could not update the private key password. Maybe the old password was not correct." => "No fue posible actualizar la contraseña de clave privada. Tal vez la contraseña anterior no es correcta.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde fuera del sistema de ownCloud (por ej. desde tu cuenta de sistema). Podés actualizar tu clave privada en la sección de \"configuración personal\", para recuperar el acceso a tus archivos.", "Missing requirements." => "Requisitos incompletos.", "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." => "Por favor, asegúrese de que PHP 5.3.3 o una versión más reciente esté instalado y que OpenSSL junto con la extensión PHP esté habilitado y configurado apropiadamente. Por ahora, la aplicación de encriptación ha sido deshabilitada.", "Following users are not set up for encryption:" => "Los siguientes usuarios no fueron configurados para encriptar:", "Saving..." => "Guardando...", -"Your private key is not valid! Maybe the your password was changed from outside." => "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde afuera.", -"You can unlock your private key in your " => "Podés desbloquear tu clave privada en tu", "personal settings" => "Configuración personal", "Encryption" => "Encriptación", "Enable recovery key (allow to recover users files in case of password loss):" => "Habilitar clave de recuperación (te permite recuperar los archivos de usuario en el caso que pierdas la contraseña):", diff --git a/apps/files_encryption/l10n/es_MX.php b/apps/files_encryption/l10n/es_MX.php new file mode 100644 index 0000000000000000000000000000000000000000..3906e3cacbef7d44d5b981a6bcbe6eae1aa8132a --- /dev/null +++ b/apps/files_encryption/l10n/es_MX.php @@ -0,0 +1,44 @@ + "Se ha habilitado la recuperación de archivos", +"Could not enable recovery key. Please check your recovery key password!" => "No se pudo habilitar la clave de recuperación. Por favor compruebe su contraseña.", +"Recovery key successfully disabled" => "Clave de recuperación deshabilitada", +"Could not disable recovery key. Please check your recovery key password!" => "No se pudo deshabilitar la clave de recuperación. Por favor compruebe su contraseña!", +"Password successfully changed." => "Su contraseña ha sido cambiada", +"Could not change the password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta.", +"Private key password successfully updated." => "Contraseña de clave privada actualizada con éxito.", +"Could not update the private key password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea correcta.", +"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." => "¡La aplicación de cifrado no ha sido inicializada! Quizá fue restablecida durante tu sesión. Por favor intenta cerrar la sesión y volver a iniciarla para inicializar la aplicación de cifrado.", +"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." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. de %s (Ej:Su directorio corporativo). Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus archivos.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "No fue posible descifrar este archivo, probablemente se trate de un archivo compartido. Solicite al propietario del mismo que vuelva a compartirlo con usted.", +"Unknown error please check your system settings or contact your administrator" => "Error desconocido. Verifique la configuración de su sistema o póngase en contacto con su administrador", +"Missing requirements." => "Requisitos incompletos.", +"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." => "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada.", +"Following users are not set up for encryption:" => "Los siguientes usuarios no han sido configurados para el cifrado:", +"Initial encryption started... This can take some time. Please wait." => "Encriptación iniciada... Esto puede tomar un tiempo. Por favor espere.", +"Saving..." => "Guardando...", +"Go directly to your " => "Ir directamente a su", +"personal settings" => "opciones personales", +"Encryption" => "Cifrado", +"Enable recovery key (allow to recover users files in case of password loss):" => "Habilitar la clave de recuperación (permite recuperar los archivos del usuario en caso de pérdida de la contraseña);", +"Recovery key password" => "Contraseña de clave de recuperación", +"Repeat Recovery key password" => "Repite la contraseña de clave de recuperación", +"Enabled" => "Habilitar", +"Disabled" => "Deshabilitado", +"Change recovery key password:" => "Cambiar la contraseña de la clave de recuperación", +"Old Recovery key password" => "Antigua clave de recuperación", +"New Recovery key password" => "Nueva clave de recuperación", +"Repeat New Recovery key password" => "Repetir la nueva clave de recuperación", +"Change Password" => "Cambiar contraseña", +"Your private key password no longer match your log-in password:" => "Su contraseña de clave privada ya no coincide con su contraseña de acceso:", +"Set your old private key password to your current log-in password." => "Establecer la contraseña de su antigua clave privada a su contraseña actual de acceso.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Si no recuerda su antigua contraseña puede pedir a su administrador que le recupere sus archivos.", +"Old log-in password" => "Contraseña de acceso antigua", +"Current log-in password" => "Contraseña de acceso actual", +"Update Private Key Password" => "Actualizar Contraseña de Clave Privada", +"Enable password recovery:" => "Habilitar la recuperación de contraseña:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Habilitar esta opción le permitirá volver a tener acceso a sus archivos cifrados en caso de pérdida de contraseña", +"File recovery settings updated" => "Opciones de recuperación de archivos actualizada", +"Could not update file recovery" => "No se pudo actualizar la recuperación de archivos" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/et_EE.php b/apps/files_encryption/l10n/et_EE.php index 3edb7299c201efff6e0c554658d32715d9fd3da0..9182c5ef196182d7792ff9f6efb0868bfbf8a86e 100644 --- a/apps/files_encryption/l10n/et_EE.php +++ b/apps/files_encryption/l10n/et_EE.php @@ -8,22 +8,27 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Ei suutnud vahetada parooli. Võib-olla on vana parool valesti sisestatud.", "Private key password successfully updated." => "Privaatse võtme parool edukalt uuendatud.", "Could not update the private key password. Maybe the old password was not correct." => "Ei suutnud uuendada privaatse võtme parooli. Võib-olla polnud vana parool õige.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sinu privaatne võti pole toimiv! Tõenäoliselt on sinu parool muutunud väljaspool ownCloud süsteemi (näiteks ettevõtte keskhaldus). Sa saad uuendada oma privaatse võtme parooli seadete all taastamaks ligipääsu oma krüpteeritud failidele.", +"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." => "Krüpteerimise rakend pole käivitatud. Võib-olla krüpteerimise rakend taaskäivitati sinu sessiooni kestel. Palun proovi logida välja ning uuesti sisse käivitamaks krüpteerimise rakendit.", +"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." => "Sinu provaatne võti pole kehtiv! Tõenäoliselt mudueti parooli väljaspool kausta %s (nt. sinu ettevõtte kaust). Sa saad uuendada oma privaatse võtme parooli oma isiklikes seadetes, et taastada ligipääs sinu krüpteeritud failidele.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Sa ei saa seda faili dekrüpteerida, see on tõenäoliselt jagatud fail. Palun lase omanikul seda faili sinuga uuesti jagada.", +"Unknown error please check your system settings or contact your administrator" => "Tundmatu tõrge. Palun kontrolli süsteemi seadeid või võta ühendust oma süsteemi administraatoriga", "Missing requirements." => "Nõutavad on puudu.", "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." => "Palun veendu, et on paigaldatud PHP 5.3.3 või uuem ning PHP OpenSSL laiendus on lubatud ning seadistatud korrektselt. Hetkel krüpteerimise rakendus on peatatud.", "Following users are not set up for encryption:" => "Järgmised kasutajad pole seadistatud krüpteeringuks:", +"Initial encryption started... This can take some time. Please wait." => "Algne krüpteerimine käivitati... See võib võtta natuke aega. Palun oota.", "Saving..." => "Salvestamine...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Sinu privaatne võti ei ole õige. Võib-olla on parool vahetatud süsteemi väliselt.", -"You can unlock your private key in your " => "Saad avada oma privaatse võtme oma", +"Go directly to your " => "Liigu otse oma", "personal settings" => "isiklikes seadetes", "Encryption" => "Krüpteerimine", -"Enable recovery key (allow to recover users files in case of password loss):" => "Luba taastevõti (võimada kasutaja failide taastamine parooli kaotuse puhul):", +"Enable recovery key (allow to recover users files in case of password loss):" => "Luba taastevõti (võimalda kasutaja failide taastamine parooli kaotuse puhul):", "Recovery key password" => "Taastevõtme parool", +"Repeat Recovery key password" => "Korda taastevõtme parooli", "Enabled" => "Sisse lülitatud", "Disabled" => "Väljalülitatud", "Change recovery key password:" => "Muuda taastevõtme parooli:", "Old Recovery key password" => "Vana taastevõtme parool", "New Recovery key password" => "Uus taastevõtme parool", +"Repeat New Recovery key password" => "Korda uut taastevõtme parooli", "Change Password" => "Muuda parooli", "Your private key password no longer match your log-in password:" => "Sinu privaatse võtme parool ei ühti enam sinu sisselogimise parooliga:", "Set your old private key password to your current log-in password." => "Pane oma vana privaatvõtme parooliks oma praegune sisselogimise parool.", diff --git a/apps/files_encryption/l10n/eu.php b/apps/files_encryption/l10n/eu.php index e750c850688d190d78d435a60bcc860312f5599c..6b1bafdda1a9d19235d078f6dcd43f07d5b00f39 100644 --- a/apps/files_encryption/l10n/eu.php +++ b/apps/files_encryption/l10n/eu.php @@ -8,20 +8,27 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Ezin izan da pasahitza aldatu. Agian pasahitz zaharra okerrekoa da.", "Private key password successfully updated." => "Gako pasahitz pribatu behar bezala eguneratu da.", "Could not update the private key password. Maybe the old password was not correct." => "Ezin izan da gako pribatu pasahitza eguneratu. Agian pasahitz zaharra okerrekoa da.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Zure gako pribatua ez da egokia! Seguruaski zure pasahitza ownCloud sistematik kanpo aldatu da (adb. zure direktorio korporatiboa). Zure gako pribatuaren pasahitza eguneratu dezakezu zure ezarpen pertsonaletan zure enkriptatutako fitxategiak berreskuratzeko.", +"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." => "Enkriptazio aplikazioa ez dago hasieratuta! Agian aplikazioa birgaitu egin da zure saioa bitartean. Mesdez atear eta sartu berriz enkriptazio aplikazioa hasierarazteko.", +"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." => "Zure gako pribatua ez da egokia! Seguruaski zure pasahitza %s-tik kanpo aldatu da (adb. zure direktorio korporatiboa). Zure gako pribatuaren pasahitza eguneratu dezakezu zure ezarpen pertsonaletan zure enkriptatutako fitxategiak berreskuratzeko.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Ezin izan da fitxategi hau deszifratu, ziurrenik elkarbanatutako fitxategi bat da. Mesdez, eskatu fitxategiaren jabeari fitxategia zurekin berriz elkarbana dezan.", +"Unknown error please check your system settings or contact your administrator" => "Errore ezezaguna mesedez egiaztatu zure sistemaren ezarpenak edo harremanetan jarri zure administradorearekin", "Missing requirements." => "Eskakizun batzuk ez dira betetzen.", +"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." => "Mesedez ziurtatu PHP 5.3.3 edo berriago bat instalatuta dagoela eta OpenSSL PHP hedapenarekin gaitua eta ongi konfiguratuta dagoela. Oraingoz, enkriptazio aplikazioa desgaituta dago.", +"Following users are not set up for encryption:" => "Hurrengo erabiltzaileak ez daude enktriptatzeko konfiguratutak:", +"Initial encryption started... This can take some time. Please wait." => "Hasierako enkriptazioa hasi da... Honek denbora har dezake. Mesedez itxaron.", "Saving..." => "Gordetzen...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Zure gako pribatua ez da egokia! Agian zure pasahitza kanpotik aldatu da.", -"You can unlock your private key in your " => "Zure gako pribatua desblokeatu dezakezu zure", +"Go directly to your " => "Joan zuzenean zure", "personal settings" => "ezarpen pertsonalak", "Encryption" => "Enkriptazioa", "Enable recovery key (allow to recover users files in case of password loss):" => "Gaitu berreskurapen gakoa (erabiltzaileen fitxategiak berreskuratzea ahalbidetzen du pasahitza galtzen badute ere):", "Recovery key password" => "Berreskuratze gako pasahitza", +"Repeat Recovery key password" => "Errepikatu berreskuratze gakoaren pasahitza", "Enabled" => "Gaitua", "Disabled" => "Ez-gaitua", "Change recovery key password:" => "Aldatu berreskuratze gako pasahitza:", "Old Recovery key password" => "Berreskuratze gako pasahitz zaharra", "New Recovery key password" => "Berreskuratze gako pasahitz berria", +"Repeat New Recovery key password" => "Errepikatu berreskuratze gako berriaren pasahitza", "Change Password" => "Aldatu Pasahitza", "Your private key password no longer match your log-in password:" => "Zure gako pribatuaren pasahitza ez da dagoeneko zure sarrera pasahitza:", "Set your old private key password to your current log-in password." => "Ezarri zure gako pribatu zaharraren pasahitza zure oraingo sarrerako psahitzara.", diff --git a/apps/files_encryption/l10n/fa.php b/apps/files_encryption/l10n/fa.php index 461ec2b92cbaea91ca7e7b8e1b65c1f2d0b2bba4..ed044a4158e23c6337618665c45e6ebf71da68fe 100644 --- a/apps/files_encryption/l10n/fa.php +++ b/apps/files_encryption/l10n/fa.php @@ -8,11 +8,8 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "رمزعبور را نمیتواند تغییر دهد. شاید رمزعبورقدیمی صحیح نمی باشد.", "Private key password successfully updated." => "رمزعبور کلید خصوصی با موفقیت به روز شد.", "Could not update the private key password. Maybe the old password was not correct." => "رمزعبور کلید خصوصی را نمی تواند به روز کند. شاید رمزعبور قدیمی صحیح نمی باشد.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "کلید خصوصی شما معتبر نمی باشد! ظاهرا رمزعبور شما بیرون از سیستم ownCloud تغییر یافته است( به عنوان مثال پوشه سازمان شما ). شما میتوانید رمزعبور کلید خصوصی خود را در تنظیمات شخصیتان به روز کنید تا بتوانید به فایل های رمزگذاری شده خود را دسترسی داشته باشید.", "Missing requirements." => "نیازمندی های گمشده", "Saving..." => "در حال ذخیره سازی...", -"Your private key is not valid! Maybe the your password was changed from outside." => "کلید خصوصی شما معتبر نیست! شاید رمزعبوراز بیرون تغییر یافته است.", -"You can unlock your private key in your " => "شما میتوانید کلید خصوصی خود را باز نمایید.", "personal settings" => "تنظیمات شخصی", "Encryption" => "رمزگذاری", "Enable recovery key (allow to recover users files in case of password loss):" => "فعال کردن کلید بازیابی(اجازه بازیابی فایل های کاربران در صورت از دست دادن رمزعبور):", diff --git a/apps/files_encryption/l10n/fr.php b/apps/files_encryption/l10n/fr.php index 358937441e2c1cf4caef09b746b6b502e179e1f4..dbccbf74dcdaeced9172afb029efee800f4296ff 100644 --- a/apps/files_encryption/l10n/fr.php +++ b/apps/files_encryption/l10n/fr.php @@ -8,22 +8,27 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Ne peut pas changer le mot de passe. L'ancien mot de passe est peut-être incorrect.", "Private key password successfully updated." => "Mot de passe de la clé privé mis à jour avec succès.", "Could not update the private key password. Maybe the old password was not correct." => "Impossible de mettre à jour le mot de passe de la clé privé. Peut-être que l'ancien mot de passe n'était pas correcte.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Votre clé de sécurité privée n'est pas valide! Il est probable que votre mot de passe ait été changé sans passer par le système ownCloud (par éxemple: le serveur de votre entreprise). Ain d'avoir à nouveau accès à vos fichiers cryptés, vous pouvez mettre à jour votre clé de sécurité privée dans les paramètres personnels de votre compte.", +"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." => "L'application de chiffrement n'est pas initialisée ! Peut-être que cette application a été réactivée pendant votre session. Veuillez essayer de vous déconnecter et ensuite de vous reconnecter pour initialiser l'application de chiffrement.", +"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." => "Votre clef privée est invalide ! Votre mot de passe a probablement été modifié hors de %s (ex. votre annuaire d'entreprise). Vous pouvez mettre à jour le mot de passe de votre clef privée dans les paramètres personnels pour pouvoir récupérer l'accès à vos fichiers chiffrés.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Impossible de déchiffrer ce fichier, il s'agit probablement d'un fichier partagé. Veuillez demander au propriétaire de ce fichier de le repartager avec vous.", +"Unknown error please check your system settings or contact your administrator" => "Erreur inconnue. Veuillez vérifier vos paramètres système ou contacter votre administrateur.", "Missing requirements." => "Système minimum requis non respecté.", "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." => "Veuillez vous assurer qu'une version de PHP 5.3.3 ou supérieure est installée et qu'OpenSSL et son extension PHP sont activés et configurés correctement. En attendant, l'application de chiffrement été désactivée.", "Following users are not set up for encryption:" => "Les utilisateurs suivants ne sont pas configurés pour le chiffrement :", +"Initial encryption started... This can take some time. Please wait." => "Chiffrement initial démarré... Cela peut prendre un certain temps. Veuillez patienter.", "Saving..." => "Enregistrement...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Votre clef privée est invalide ! Votre mot de passe a peut-être été modifié depuis l'extérieur.", -"You can unlock your private key in your " => "Vous pouvez déverrouiller votre clé privée dans votre", +"Go directly to your " => "Allez directement à votre", "personal settings" => "paramètres personnel", "Encryption" => "Chiffrement", "Enable recovery key (allow to recover users files in case of password loss):" => "Activer la clef de récupération (permet de récupérer les fichiers des utilisateurs en cas de perte de mot de passe).", "Recovery key password" => "Mot de passe de la clef de récupération", +"Repeat Recovery key password" => "Répétez le mot de passe de la clé de récupération", "Enabled" => "Activer", "Disabled" => "Désactiver", "Change recovery key password:" => "Modifier le mot de passe de la clef de récupération :", "Old Recovery key password" => "Ancien mot de passe de la clef de récupération", "New Recovery key password" => "Nouveau mot de passe de la clef de récupération", +"Repeat New Recovery key password" => "Répétez le nouveau mot de passe de la clé de récupération", "Change Password" => "Changer de mot de passe", "Your private key password no longer match your log-in password:" => "Le mot de passe de votre clef privée ne correspond plus à votre mot de passe de connexion :", "Set your old private key password to your current log-in password." => "Configurez le mot de passe de votre ancienne clef privée avec votre mot de passe courant de connexion. ", diff --git a/apps/files_encryption/l10n/gl.php b/apps/files_encryption/l10n/gl.php index abf12d73d577483a05c1c3d55fda81e24cfe9447..7b3c899d1f5f6dc8e27fa0ee5fedaf84bf4b4539 100644 --- a/apps/files_encryption/l10n/gl.php +++ b/apps/files_encryption/l10n/gl.php @@ -8,22 +8,27 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Non foi posíbel cambiar o contrasinal. Probabelmente o contrasinal antigo non é o correcto.", "Private key password successfully updated." => "A chave privada foi actualizada correctamente.", "Could not update the private key password. Maybe the old password was not correct." => "Non foi posíbel actualizar o contrasinal da chave privada. É probábel que o contrasinal antigo non sexa correcto.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior (p.ex. o seu directorio corporativo). Vostede pode actualizar o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros", +"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." => "Non se iniciou o aplicativo de cifrado! Quizais volva a activarse durante a sesión. Tente pechar a sesión e volver iniciala que tamén se inicie o aplicativo de cifrado.", +"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." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior do %s (p.ex. o seu directorio corporativo). Vostede pode actualizar o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Non foi posíbel descifrar o ficheiro, probabelmente tratase dun ficheiro compartido. Pidalle ao propietario do ficheiro que volva compartir o ficheiro con vostede.", +"Unknown error please check your system settings or contact your administrator" => "Produciuse un erro descoñecido. Comprobe os axustes do sistema ou póñase en contacto co administrador", "Missing requirements." => "Non se cumpren os requisitos.", "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." => "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de o OpenSSL xunto coa extensión PHP estean activados e configurados correctamente. Polo de agora foi desactivado o aplicativo de cifrado.", "Following users are not set up for encryption:" => "Os seguintes usuarios non teñen configuración para o cifrado:", +"Initial encryption started... This can take some time. Please wait." => "Comezou o cifrado inicial... Isto pode levar bastante tempo. Agarde.", "Saving..." => "Gardando...", -"Your private key is not valid! Maybe the your password was changed from outside." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior. ", -"You can unlock your private key in your " => "Pode desbloquear a chave privada nos seus", +"Go directly to your " => "Vaia directamente ao seu", "personal settings" => "axustes persoais", "Encryption" => "Cifrado", "Enable recovery key (allow to recover users files in case of password loss):" => "Activar a chave de recuperación (permitirá recuperar os ficheiros dos usuarios no caso de perda do contrasinal):", "Recovery key password" => "Contrasinal da chave de recuperación", +"Repeat Recovery key password" => "Repita o contrasinal da chave da recuperación", "Enabled" => "Activado", "Disabled" => "Desactivado", "Change recovery key password:" => "Cambiar o contrasinal da chave de la recuperación:", "Old Recovery key password" => "Antigo contrasinal da chave de recuperación", "New Recovery key password" => "Novo contrasinal da chave de recuperación", +"Repeat New Recovery key password" => "Repita o novo contrasinal da chave da recuperación", "Change Password" => "Cambiar o contrasinal", "Your private key password no longer match your log-in password:" => "O seu contrasinal da chave privada non coincide co seu contrasinal de acceso.", "Set your old private key password to your current log-in password." => "Estabeleza o seu contrasinal antigo da chave de recuperación ao seu contrasinal de acceso actual", diff --git a/apps/files_encryption/l10n/hu_HU.php b/apps/files_encryption/l10n/hu_HU.php index 323291bbfbe9fb7172c381012d315b5d3b51038a..163011ff80b468e422c3956c7efb285ee0c6a01b 100644 --- a/apps/files_encryption/l10n/hu_HU.php +++ b/apps/files_encryption/l10n/hu_HU.php @@ -1,18 +1,44 @@ "Visszaállítási kulcs sikeresen kikapcsolva", -"Password successfully changed." => "Jelszó sikeresen megváltoztatva.", +"Recovery key successfully enabled" => "A helyreállítási kulcs sikeresen bekapcsolva", +"Could not enable recovery key. Please check your recovery key password!" => "A helyreállítási kulcsot nem lehetett engedélyezni. Ellenőrizze a helyreállítási kulcsa jelszavát!", +"Recovery key successfully disabled" => "A helyreállítási kulcs sikeresen kikapcsolva", +"Could not disable recovery key. Please check your recovery key password!" => "A helyreállítási kulcsot nem lehetett kikapcsolni. Ellenőrizze a helyreállítási kulcsa jelszavát!", +"Password successfully changed." => "A jelszót sikeresen megváltoztattuk.", "Could not change the password. Maybe the old password was not correct." => "A jelszót nem lehet megváltoztatni! Lehet, hogy hibás volt a régi jelszó.", -"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." => "Kérlek győződj meg arról, hogy PHP 5.3.3 vagy annál frissebb van telepítve, valamint a PHP-hez tartozó OpenSSL bővítmény be van-e kapcsolva és az helyesen van-e konfigurálva! Ki lett kapcsolva ideiglenesen a titkosító alkalmazás.", +"Private key password successfully updated." => "A személyes kulcsának jelszava frissítésre került.", +"Could not update the private key password. Maybe the old password was not correct." => "A személyes kulcsa jelszavát nem lehetett frissíteni. Lehet, hogy hibás volt a régi jelszó.", +"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." => "A titkosítási modul nincs elindítva! Talán a munkafolyamat közben került engedélyezésre. Kérjük jelentkezzen ki majd ismét jelentkezzen be, hogy a titkosítási modul megfelelően elinduljon!", +"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." => "Az állományok titkosításához használt titkos kulcsa érvénytelen. Valószínűleg a %s rendszeren kívül változtatta meg a jelszavát (pl. a munkahelyi címtárban). A személyes beállításoknál frissítheti a titkos kulcsát, hogy ismét elérhesse a titkosított állományait.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Az állományt nem sikerült dekódolni, valószínűleg ez egy megosztott fájl. Kérje meg az állomány tulajdonosát, hogy újra ossza meg Önnel ezt az állományt!", +"Unknown error please check your system settings or contact your administrator" => "Ismeretlen hiba. Ellenőrizze a rendszer beállításait vagy forduljon a rendszergazdához!", +"Missing requirements." => "Hiányzó követelmények.", +"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." => "Kérem gondoskodjon arról, hogy PHP 5.3.3 vagy annál frissebb legyen telepítve, továbbá az OpenSSL a megfelelő PHP-bővítménnyel együtt rendelkezésre álljon és helyesen legyen konfigurálva! A titkosító modul egyelőre kikapcsolásra került.", +"Following users are not set up for encryption:" => "A következő felhasználók nem állították be a titkosítást:", +"Initial encryption started... This can take some time. Please wait." => "A titkosítási folyamat megkezdődött... Ez hosszabb ideig is eltarthat. Kérem várjon.", "Saving..." => "Mentés...", +"Go directly to your " => "Ugrás ide:", "personal settings" => "személyes beállítások", "Encryption" => "Titkosítás", +"Enable recovery key (allow to recover users files in case of password loss):" => "A helyreállítási kulcs beállítása (lehetővé teszi a felhasználók állományainak visszaállítását, ha elfelejtik a jelszavukat):", +"Recovery key password" => "A helyreállítási kulcs jelszava", +"Repeat Recovery key password" => "Ismételje meg a helyreállítási kulcs jelszavát", "Enabled" => "Bekapcsolva", "Disabled" => "Kikapcsolva", +"Change recovery key password:" => "A helyreállítási kulcs jelszavának módosítása:", +"Old Recovery key password" => "Régi Helyreállítási Kulcs Jelszava", +"New Recovery key password" => "Új Helyreállítási kulcs jelszava", +"Repeat New Recovery key password" => "Ismételje meg az új helyreállítási kulcs jelszavát", "Change Password" => "Jelszó megváltoztatása", +"Your private key password no longer match your log-in password:" => "A személyes kulcs jelszava mostantól nem azonos a belépési jelszavával:", +"Set your old private key password to your current log-in password." => "Állítsuk be a személyes kulcs jelszavát a jelenlegi bejelentkezési jelszavunkra.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Ha nem emlékszik a régi jelszavára akkor megkérheti a rendszergazdát, hogy állítsa vissza az állományait.", "Old log-in password" => "Régi bejelentkezési jelszó", "Current log-in password" => "Jelenlegi bejelentkezési jelszó", -"Update Private Key Password" => "Privát kulcs jelszó frissítése", -"Enable password recovery:" => "Jelszó-visszaállítás bekapcsolása" +"Update Private Key Password" => "A személyest kulcs jelszó frissítése", +"Enable password recovery:" => "Jelszó-visszaállítás bekapcsolása", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Ez az opció lehetővé teszi, hogy a titkosított állományok tartalmát visszanyerjük abban az esetben, ha elfelejti a jelszavát", +"File recovery settings updated" => "A fájlhelyreállítási beállítások frissültek", +"Could not update file recovery" => "A fájlhelyreállítás nem frissíthető" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/id.php b/apps/files_encryption/l10n/id.php index 32c348bd8babe2edf83c80fa86402102fc7a04f7..a719d445820264fe537993828f84d33d340b8119 100644 --- a/apps/files_encryption/l10n/id.php +++ b/apps/files_encryption/l10n/id.php @@ -1,6 +1,41 @@ "Kunci pemulihan berhasil diaktifkan", +"Could not enable recovery key. Please check your recovery key password!" => "Tidak dapat mengaktifkan kunci pemulihan. Silakan periksa sandi kunci pemulihan Anda!", +"Recovery key successfully disabled" => "Kunci pemulihan berhasil dinonaktifkan", +"Could not disable recovery key. Please check your recovery key password!" => "Tidak dapat menonaktifkan kunci pemulihan. Silakan periksa sandi kunci pemulihan Anda!", +"Password successfully changed." => "Sandi berhasil diubah", +"Could not change the password. Maybe the old password was not correct." => "Tidak dapat mengubah sandi. Kemungkinan sandi lama yang dimasukkan salah.", +"Private key password successfully updated." => "Sandi kunci privat berhasil diperbarui.", +"Could not update the private key password. Maybe the old password was not correct." => "Tidak dapat memperbarui sandi kunci privat. Kemungkinan sandi lama yang Anda masukkan salah.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Tidak dapat mendekripsi berkas ini, mungkin ini adalah berkas bersama. Silakan meminta pemilik berkas ini untuk membagikan kembali dengan Anda.", +"Unknown error please check your system settings or contact your administrator" => "Kesalahan tak dikenal, silakan periksa pengaturan sistem Anda atau hubungi admin.", +"Missing requirements." => "Persyaratan yang hilang.", +"Following users are not set up for encryption:" => "Pengguna berikut belum diatur untuk enkripsi:", +"Initial encryption started... This can take some time. Please wait." => "Inisial enskripsi dijalankan... Ini dapat memakan waktu. Silakan tunggu.", "Saving..." => "Menyimpan...", -"Encryption" => "Enkripsi" +"Go directly to your " => "Langsung ke anda", +"personal settings" => "pengaturan pribadi", +"Encryption" => "Enkripsi", +"Enable recovery key (allow to recover users files in case of password loss):" => "Aktifkan kunci pemulihan (memungkinkan pengguna untuk memulihkan berkas dalam kasus kehilangan sandi):", +"Recovery key password" => "Sandi kunci pemulihan", +"Repeat Recovery key password" => "Ulangi sandi kunci Pemulihan", +"Enabled" => "Diaktifkan", +"Disabled" => "Dinonaktifkan", +"Change recovery key password:" => "Ubah sandi kunci pemulihan:", +"Old Recovery key password" => "Sandi kunci Pemulihan Lama", +"New Recovery key password" => "Sandi kunci Pemulihan Baru", +"Repeat New Recovery key password" => "Ulangi sandi kunci Pemulihan baru", +"Change Password" => "Ubah sandi", +"Your private key password no longer match your log-in password:" => "Sandi kunci privat Anda tidak lagi cocok dengan sandi masuk:", +"Set your old private key password to your current log-in password." => "Atur sandi kunci privat lama Anda sebagai sandi masuk Anda saat ini.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Jika Anda tidak ingat sandi lama, Anda dapat meminta administrator Anda untuk memulihkan berkas.", +"Old log-in password" => "Sandi masuk yang lama", +"Current log-in password" => "Sandi masuk saat ini", +"Update Private Key Password" => "Perbarui Sandi Kunci Privat", +"Enable password recovery:" => "Aktifkan sandi pemulihan:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Mengaktifkan opsi ini memungkinkan Anda untuk mendapatkan kembali akses ke berkas terenkripsi Anda dalam kasus kehilangan sandi", +"File recovery settings updated" => "Pengaturan pemulihan berkas diperbarui", +"Could not update file recovery" => "Tidak dapat memperbarui pemulihan berkas" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/it.php b/apps/files_encryption/l10n/it.php index f9534d7eca3e152823b1cb5c143c6ee82d7bf808..fc1aaffc0250083a528803d9687c8befe187b826 100644 --- a/apps/files_encryption/l10n/it.php +++ b/apps/files_encryption/l10n/it.php @@ -8,22 +8,27 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Impossibile cambiare la password. Forse la vecchia password non era corretta.", "Private key password successfully updated." => "Password della chiave privata aggiornata correttamente.", "Could not update the private key password. Maybe the old password was not correct." => "Impossibile aggiornare la password della chiave privata. Forse la vecchia password non era corretta.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "La chiave privata non è valida! Forse la password è stata cambiata esternamente al sistema di ownCloud (ad es. la directory aziendale). Puoi aggiornare la password della chiave privata nelle impostazioni personali per ottenere nuovamente l'accesso ai file.", +"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." => "Applicazione di cifratura non inizializzata. Forse l'applicazione è stata riabilitata durante la tua sessione. Prova a disconnetterti e ad effettuare nuovamente l'accesso per inizializzarla.", +"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." => "La tua chiave privata non è valida! Forse la password è stata cambiata al di fuori di %s (ad es. la directory aziendale). Puoi aggiornare la password della chiave privata nelle impostazioni personali per ottenere nuovamente l'accesso ai file cifrati.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Impossibile decifrare questo file, probabilmente è un file condiviso. Chiedi al proprietario del file di condividere nuovamente il file con te.", +"Unknown error please check your system settings or contact your administrator" => "Errore sconosciuto, controlla le impostazioni di sistema o contatta il tuo amministratore", "Missing requirements." => "Requisiti mancanti.", "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." => "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'estensione OpenSSL di PHP sia abilitata e configurata correttamente. Per ora, l'applicazione di cifratura è disabilitata.", "Following users are not set up for encryption:" => "I seguenti utenti non sono configurati per la cifratura:", +"Initial encryption started... This can take some time. Please wait." => "Cifratura iniziale avviata... Potrebbe richiedere del tempo. Attendi.", "Saving..." => "Salvataggio in corso...", -"Your private key is not valid! Maybe the your password was changed from outside." => "La tua chiave privata non è valida! Forse è stata modifica dall'esterno.", -"You can unlock your private key in your " => "Puoi sbloccare la chiave privata nelle tue", +"Go directly to your " => "Passa direttamente a", "personal settings" => "impostazioni personali", "Encryption" => "Cifratura", "Enable recovery key (allow to recover users files in case of password loss):" => "Abilita la chiave di recupero (permette di recuperare i file utenti in caso di perdita della password):", "Recovery key password" => "Password della chiave di recupero", +"Repeat Recovery key password" => "Ripeti la password della chiave di recupero", "Enabled" => "Abilitata", "Disabled" => "Disabilitata", "Change recovery key password:" => "Cambia la password della chiave di recupero:", "Old Recovery key password" => "Vecchia password della chiave di recupero", "New Recovery key password" => "Nuova password della chiave di recupero", +"Repeat New Recovery key password" => "Ripeti la nuova password della chiave di recupero", "Change Password" => "Modifica password", "Your private key password no longer match your log-in password:" => "La password della chiave privata non corrisponde più alla password di accesso:", "Set your old private key password to your current log-in password." => "Imposta la vecchia password della chiave privata sull'attuale password di accesso.", diff --git a/apps/files_encryption/l10n/ja_JP.php b/apps/files_encryption/l10n/ja_JP.php index d1f8303bda741c9a6a5dca5e1f1cb6cce3e781ea..1206969746b689dbc68fe73f0b800f419909091a 100644 --- a/apps/files_encryption/l10n/ja_JP.php +++ b/apps/files_encryption/l10n/ja_JP.php @@ -8,22 +8,27 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "パスワードを変更できませんでした。古いパスワードが間違っているかもしれません。", "Private key password successfully updated." => "秘密鍵のパスワードが正常に更新されました。", "Could not update the private key password. Maybe the old password was not correct." => "秘密鍵のパスワードを更新できませんでした。古いパスワードが正確でない場合があります。", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "秘密鍵が有効ではありません。パスワードがownCloudシステムの外部(例えば、企業ディレクトリ)から変更された恐れがあります。個人設定で秘密鍵のパスワードを更新して、暗号化されたファイルを回復出来ます。", +"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." => "暗号化アプリが初期化されていません。暗号化アプリが接続中に再度有効かされた可能性があります。暗号化アプリを初期化する為に、1回ログアウトしてログインしなおしてください。", +"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." => "プライベートキーが有効ではありません!パスワードが%sの外部で変更された(例: 共同ディレクトリ)と思われます。個人設定でプライベートキーのパスワードを更新して、暗号化ファイルへのアクセスを回復することができます。", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "このファイルを復号化できません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。", +"Unknown error please check your system settings or contact your administrator" => "不明なエラーです。システム設定を確認するか、管理者に問い合わせてください。", "Missing requirements." => "必要要件が満たされていません。", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "必ず、PHP 5.3.3もしくはそれ以上をインストールし、同時にOpenSSLのPHP拡張を有効にした上でOpenSSLも同様にインストール、適切に設定してください。現時点では暗号化アプリは無効になっています。", "Following users are not set up for encryption:" => "以下のユーザーは、暗号化設定がされていません:", +"Initial encryption started... This can take some time. Please wait." => "暗号化の初期化作業を開始しました... この処理にはしばらく時間がかかります。今しばらくお待ちください。", "Saving..." => "保存中...", -"Your private key is not valid! Maybe the your password was changed from outside." => "秘密鍵が有効ではありません。パスワードが外部から変更された恐れがあります。", -"You can unlock your private key in your " => "個人設定で", +"Go directly to your " => "あなたのディレクトリへ", "personal settings" => "秘密鍵をアンロックできます", "Encryption" => "暗号化", "Enable recovery key (allow to recover users files in case of password loss):" => "復旧キーを有効化 (万一パスワードを亡くした場合もユーザーのファイルを回復できる):", "Recovery key password" => "復旧キーのパスワード", +"Repeat Recovery key password" => "復旧キーのパスワードをもう一度入力", "Enabled" => "有効", "Disabled" => "無効", "Change recovery key password:" => "復旧キーのパスワードを変更:", "Old Recovery key password" => "古い復旧キーのパスワード", "New Recovery key password" => "新しい復旧キーのパスワード", +"Repeat New Recovery key password" => "新しい復旧キーのパスワードをもう一度入力", "Change Password" => "パスワードを変更", "Your private key password no longer match your log-in password:" => "もはや秘密鍵はログインパスワードと一致しません:", "Set your old private key password to your current log-in password." => "古い秘密鍵のパスワードを現在のログインパスワードに設定する。", diff --git a/apps/files_encryption/l10n/ko.php b/apps/files_encryption/l10n/ko.php index cfe9f99fa194d7a42df1a8349f2b05756a593aef..d91e861ca5deb95e439f1f6427903a4b47bdd4b8 100644 --- a/apps/files_encryption/l10n/ko.php +++ b/apps/files_encryption/l10n/ko.php @@ -1,20 +1,44 @@ "복구 키가 성공적으로 활성화되었습니다", +"Could not enable recovery key. Please check your recovery key password!" => "복구 키를 활성화 할 수 없습니다. 복구 키의 암호를 확인해 주세요!", +"Recovery key successfully disabled" => "복구 키가 성공적으로 비활성화 되었습니다", +"Could not disable recovery key. Please check your recovery key password!" => "복구 키를 비활성화 할 수 없습니다. 복구 키의 암호를 확인해주세요!", "Password successfully changed." => "암호가 성공적으로 변경되었습니다", -"Could not change the password. Maybe the old password was not correct." => "암호를 변경할수 없습니다. 아마도 예전 암호가 정확하지 않은것 같습니다.", -"Private key password successfully updated." => "개인키 암호가 성공적으로 업데이트 됨.", +"Could not change the password. Maybe the old password was not correct." => "암호를 변경할 수 없습니다. 예전 암호가 정확하지 않은 것 같습니다.", +"Private key password successfully updated." => "개인 키 암호가 성공적으로 업데이트 됨.", +"Could not update the private key password. Maybe the old password was not correct." => "개인 키 암호를 업데이트할 수 없습니다. 이전 암호가 올바르지 않은 것 같습니다.", +"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." => "암호화 앱이 초기화되지 않았습니다! 암호화 앱이 다시 활성화된 것 같습니다. 암호화 앱을 초기화하려면 로그아웃했다 다시 로그인하십시오.", +"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." => "개인 키가 올바르지 않습니다! 암호가 %s(예: 회사 디렉터리) 외부에서 변경된 것 같습니다. 암호화된 파일에 다시 접근하려면 개인 설정에서 개인 키 암호를 수정하십시오.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "이 파일을 복호화할 수 없습니다. 공유된 파일일 수도 있습니다. 파일 소유자에게 공유를 다시 요청하십시오.", +"Unknown error please check your system settings or contact your administrator" => "알 수 없는 오류. 시스템 설정을 확인하거나 관리자에게 문의하십시오.", +"Missing requirements." => "요구 사항이 부족합니다.", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "PHP 5.3.3 이상 설치 여부, PHP의 OpenSSL 확장 기능 활성화 및 설정 여부를 확인하십시오. 암호화 앱이 비활성화 되었습니다.", +"Following users are not set up for encryption:" => "다음 사용자는 암호화를 사용할 수 없습니다:", +"Initial encryption started... This can take some time. Please wait." => "초기 암호화가 시작되었습니다... 시간이 걸릴 수도 있으니 기다려 주십시오.", "Saving..." => "저장 중...", +"Go directly to your " => "다음으로 바로 가기: ", "personal settings" => "개인 설정", "Encryption" => "암호화", -"Recovery key password" => "키 비밀번호 복구", -"Change recovery key password:" => "복구 키 비밀번호 변경", -"Old Recovery key password" => "예전 복구 키 비밀번호", -"New Recovery key password" => "새 복구 키 비밀번호", +"Enable recovery key (allow to recover users files in case of password loss):" => "복구 키 사용 (암호를 잊었을 때 파일을 복구할 수 있도록 함):", +"Recovery key password" => "복구 키 암호", +"Repeat Recovery key password" => "복구 키 암호 재입력", +"Enabled" => "활성화", +"Disabled" => "비활성화", +"Change recovery key password:" => "복구 키 암호 변경:", +"Old Recovery key password" => "이전 복구 키 암호", +"New Recovery key password" => "새 복구 키 암호", +"Repeat New Recovery key password" => "새 복구 키 암호 재입력", "Change Password" => "암호 변경", -"Old log-in password" => "예전 로그인 암호", +"Your private key password no longer match your log-in password:" => "개인 키 암호와 로그인 암호가 일치하지 않습니다:", +"Set your old private key password to your current log-in password." => "이전 개인 키 암호를 현재 로그인 암호로 설정하십시오.", +" If you don't remember your old password you can ask your administrator to recover your files." => " 이전 암호가 기억나지 않으면 시스템 관리자에게 파일 복구를 요청하십시오.", +"Old log-in password" => "이전 로그인 암호", "Current log-in password" => "현재 로그인 암호", "Update Private Key Password" => "개인 키 암호 업데이트", +"Enable password recovery:" => "암호 복구 사용:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "이 옵션을 사용하면 암호를 잊었을 때 암호화된 파일에 다시 접근할 수 있습니다", "File recovery settings updated" => "파일 복구 설정 업데이트됨", -"Could not update file recovery" => "파일 복구를 업데이트 할수 없습니다" +"Could not update file recovery" => "파일 복구를 업데이트할 수 없습니다" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/lt_LT.php b/apps/files_encryption/l10n/lt_LT.php index 4ededb716f4e16badeef5a02d1ff36ba341bcc79..993e03388d9a91d041313b755bee0f62a1270a26 100644 --- a/apps/files_encryption/l10n/lt_LT.php +++ b/apps/files_encryption/l10n/lt_LT.php @@ -8,22 +8,25 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Slaptažodis nebuvo pakeistas. Gali būti, kad buvo neteisingai suvestas senasis.", "Private key password successfully updated." => "Privataus rakto slaptažodis buvo sėkmingai atnaujintas.", "Could not update the private key password. Maybe the old password was not correct." => "Nepavyko atnaujinti privataus rakto slaptažodžio. Gali būti, kad buvo neteisingai suvestas senasis.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Jūsų privatus raktas yra netinkamas! Panašu, kad Jūsų slaptažodis buvo pakeistas išorėje ownCloud sistemos (pvz. Jūsų organizacijos kataloge). Galite atnaujinti savo privataus rakto slaptažodį savo asmeniniuose nustatymuose, kad atkurti prieigą prie savo šifruotų failų.", +"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." => "Šifravimo programa nepaleista! Galbūt šifravimo programa buvo įjungta dar kartą Jūsų sesijos metu. Prašome atsijungti ir vėl prisijungti, kad paleisti šifravimo programą.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Failo iššifruoti nepavyko, gali būti jog jis yra pasidalintas su jumis. Paprašykite failo savininko, kad jums iš naujo pateiktų šį failą.", +"Unknown error please check your system settings or contact your administrator" => "Neatpažinta klaida, patikrinkite sistemos nustatymus arba kreipkitės į savo sistemos aministratorių", "Missing requirements." => "Trūkstami laukai.", "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." => "Prašome įsitikinti, kad PHP 5.3.3 ar naujesnė yra įdiegta ir kad OpenSSL kartu su PHP plėtiniu yra šjungti ir teisingai sukonfigūruoti. Kol kas šifravimo programa bus išjungta.", "Following users are not set up for encryption:" => "Sekantys naudotojai nenustatyti šifravimui:", "Saving..." => "Saugoma...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Jūsų privatus raktas yra netinkamas! Galbūt Jūsų slaptažodis buvo pakeistas iš išorės?", -"You can unlock your private key in your " => "Galite atrakinti savo privatų raktą savo", +"Go directly to your " => "Eiti tiesiai į Jūsų", "personal settings" => "asmeniniai nustatymai", "Encryption" => "Šifravimas", "Enable recovery key (allow to recover users files in case of password loss):" => "Įjunkite atkūrimo raktą, (leisti atkurti naudotojų failus praradus slaptažodį):", "Recovery key password" => "Atkūrimo rakto slaptažodis", +"Repeat Recovery key password" => "Pakartokite atkūrimo rakto slaptažodį", "Enabled" => "Įjungta", "Disabled" => "Išjungta", "Change recovery key password:" => "Pakeisti atkūrimo rakto slaptažodį:", "Old Recovery key password" => "Senas atkūrimo rakto slaptažodis", "New Recovery key password" => "Naujas atkūrimo rakto slaptažodis", +"Repeat New Recovery key password" => "Pakartokite naują atkūrimo rakto slaptažodį", "Change Password" => "Pakeisti slaptažodį", "Your private key password no longer match your log-in password:" => "Privatus rakto slaptažodis daugiau neatitinka Jūsų prisijungimo slaptažodžio:", "Set your old private key password to your current log-in password." => "Nustatyti Jūsų privataus rakto slaptažodį į Jūsų dabartinį prisijungimo.", diff --git a/apps/files_encryption/l10n/mk.php b/apps/files_encryption/l10n/mk.php index fd8dd4e51c1cb71fd4dc35897f1d393efc7029d7..098f4d635ba34c8e8ae991501d874bac49b5d052 100644 --- a/apps/files_encryption/l10n/mk.php +++ b/apps/files_encryption/l10n/mk.php @@ -1,6 +1,20 @@ "Лозинката е успешно променета.", +"Could not change the password. Maybe the old password was not correct." => "Лозинката не можеше да се промени. Можеби старата лозинка не беше исправна.", +"Missing requirements." => "Барања кои недостасуваат.", "Saving..." => "Снимам...", -"Encryption" => "Енкрипција" +"Go directly to your " => "Одете директно на вашиот", +"personal settings" => "лични подесувања", +"Encryption" => "Енкрипција", +"Repeat Recovery key password" => "Повтори ја лозинката за клучот на обновување", +"Enabled" => "Овозможен", +"Disabled" => "Оневозможен", +"Old Recovery key password" => "Старата лозинка за клучот на обновување ", +"Repeat New Recovery key password" => "Повтори ја лозинката за клучот на обновувањето", +"Change Password" => "Смени лозинка", +"Old log-in password" => "Старата лозинка за најавување", +"Current log-in password" => "Тековната лозинка за најавување", +"Enable password recovery:" => "Овозможи го обновувањето на лозинката:" ); $PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/apps/files_encryption/l10n/nl.php b/apps/files_encryption/l10n/nl.php index e37ccf54d6dc375d46f155af464789ca4f9bf3cb..081e46a785cee8caea5a26993a469fcf78d60c4e 100644 --- a/apps/files_encryption/l10n/nl.php +++ b/apps/files_encryption/l10n/nl.php @@ -8,22 +8,27 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Kon wachtwoord niet wijzigen. Wellicht oude wachtwoord niet juist ingevoerd.", "Private key password successfully updated." => "Privésleutel succesvol bijgewerkt.", "Could not update the private key password. Maybe the old password was not correct." => "Kon het wachtwoord van de privésleutel niet wijzigen. Misschien was het oude wachtwoord onjuist.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Uw privésleutel is niet geldig! Misschien was uw wachtwoord van buitenaf gewijzigd. U kunt het wachtwoord van uw privésleutel aanpassen in uw persoonlijke instellingen om toegang tot uw versleutelde bestanden te vergaren.", +"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." => "Crypto app niet geïnitialiseerd. Misschien werd de crypto app geheractiveerd tijdens de sessie. Log uit en log daarna opnieuw in om de crypto app te initialiseren.", +"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." => "Uw privésleutel is niet geldig! Waarschijnlijk is uw wachtwoord gewijzigd buiten %s (bijv. uw corporate directory). U kunt uw privésleutel wachtwoord in uw persoonlijke instellingen bijwerken om toegang te krijgen tot uw versleutelde bestanden.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Kan dit bestand niet ontcijferen, waarschijnlijk is het een gedeeld bestand, Vraag de eigenaar om het bestand opnieuw met u te delen.", +"Unknown error please check your system settings or contact your administrator" => "Onbekende fout, Controleer uw systeeminstellingen of neem contact op met uw systeembeheerder", "Missing requirements." => "Missende benodigdheden.", "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." => "Wees er zeker van dat PHP5.3.3 of nieuwer is geïstalleerd en dat de OpenSSL PHP extensie is ingeschakeld en correct geconfigureerd. De versleutel-app is voorlopig uitgeschakeld.", "Following users are not set up for encryption:" => "De volgende gebruikers hebben geen configuratie voor encryptie:", +"Initial encryption started... This can take some time. Please wait." => "initiële versleuteling gestart... Dit kan even duren, geduld a.u.b.", "Saving..." => "Opslaan", -"Your private key is not valid! Maybe the your password was changed from outside." => "Uw privésleutel is niet geldig. Misschien was uw wachtwoord van buitenaf gewijzigd.", -"You can unlock your private key in your " => "U kunt uw privésleutel deblokkeren in uw", +"Go directly to your " => "Ga meteen naar uw", "personal settings" => "persoonlijke instellingen", "Encryption" => "Versleuteling", "Enable recovery key (allow to recover users files in case of password loss):" => "Activeren herstelsleutel (maakt het mogelijk om gebruikersbestanden terug te halen in geval van verlies van het wachtwoord):", "Recovery key password" => "Wachtwoord herstelsleulel", +"Repeat Recovery key password" => "Herhaal het herstelsleutel wachtwoord", "Enabled" => "Geactiveerd", "Disabled" => "Gedeactiveerd", "Change recovery key password:" => "Wijzig wachtwoord herstelsleutel:", "Old Recovery key password" => "Oude wachtwoord herstelsleutel", "New Recovery key password" => "Nieuwe wachtwoord herstelsleutel", +"Repeat New Recovery key password" => "Herhaal het nieuwe herstelsleutel wachtwoord", "Change Password" => "Wijzigen wachtwoord", "Your private key password no longer match your log-in password:" => "Het wachtwoord van uw privésleutel komt niet meer overeen met uw inlogwachtwoord:", "Set your old private key password to your current log-in password." => "Stel het wachtwoord van uw oude privésleutel in op uw huidige inlogwachtwoord.", diff --git a/apps/files_encryption/l10n/pl.php b/apps/files_encryption/l10n/pl.php index ca4502ff6aa0219e7466657c0b41ba623770d07b..b768bd46f8cfb07bb1219530676abfa2723f798b 100644 --- a/apps/files_encryption/l10n/pl.php +++ b/apps/files_encryption/l10n/pl.php @@ -8,22 +8,27 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Nie można zmienić hasła. Może stare hasło nie było poprawne.", "Private key password successfully updated." => "Pomyślnie zaktualizowano hasło klucza prywatnego.", "Could not update the private key password. Maybe the old password was not correct." => "Nie można zmienić prywatnego hasła. Może stare hasło nie było poprawne.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Klucz prywatny nie jest ważny! Prawdopodobnie Twoje hasło zostało zmienione poza systemem ownCloud (np. w katalogu firmy). Aby odzyskać dostęp do zaszyfrowanych plików można zaktualizować hasło klucza prywatnego w ustawieniach osobistych.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Szyfrowanie aplikacja nie została zainicjowane! Może szyfrowanie aplikacji zostało ponownie włączone podczas tej sesji. Spróbuj się wylogować i zalogować ponownie aby zainicjować szyfrowanie aplikacji.", +"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Klucz prywatny nie jest poprawny! Prawdopodobnie Twoje hasło zostało zmienione poza %s (np. w katalogu firmy). Aby odzyskać dostęp do zaszyfrowanych plików można zaktualizować hasło klucza prywatnego w ustawieniach osobistych.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Nie można odszyfrować tego pliku, prawdopodobnie jest to plik udostępniony. Poproś właściciela pliku o ponowne udostępnianie pliku Tobie.", +"Unknown error please check your system settings or contact your administrator" => "Nieznany błąd proszę sprawdzić ustawienia systemu lub skontaktuj się z administratorem", "Missing requirements." => "Brak wymagań.", "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." => "Proszę upewnić się, że PHP 5.3.3 lub nowszy jest zainstalowany i że OpenSSL oraz rozszerzenie PHP jest włączone i poprawnie skonfigurowane. Obecnie szyfrowanie aplikacji zostało wyłączone.", "Following users are not set up for encryption:" => "Następujący użytkownicy nie mają skonfigurowanego szyfrowania:", +"Initial encryption started... This can take some time. Please wait." => "Rozpoczęto szyfrowanie... To może chwilę potrwać. Proszę czekać.", "Saving..." => "Zapisywanie...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Klucz prywatny nie jest poprawny! Może Twoje hasło zostało zmienione z zewnątrz.", -"You can unlock your private key in your " => "Możesz odblokować swój klucz prywatny w swojej", +"Go directly to your " => "Przejdź bezpośrednio do", "personal settings" => "Ustawienia osobiste", "Encryption" => "Szyfrowanie", "Enable recovery key (allow to recover users files in case of password loss):" => "Włączhasło klucza odzyskiwania (pozwala odzyskać pliki użytkowników w przypadku utraty hasła):", "Recovery key password" => "Hasło klucza odzyskiwania", +"Repeat Recovery key password" => "Powtórz hasło klucza odzyskiwania", "Enabled" => "Włączone", "Disabled" => "Wyłączone", "Change recovery key password:" => "Zmień hasło klucza odzyskiwania", "Old Recovery key password" => "Stare hasło klucza odzyskiwania", "New Recovery key password" => "Nowe hasło klucza odzyskiwania", +"Repeat New Recovery key password" => "Powtórz nowe hasło klucza odzyskiwania", "Change Password" => "Zmień hasło", "Your private key password no longer match your log-in password:" => "Hasło klucza prywatnego nie pasuje do hasła logowania:", "Set your old private key password to your current log-in password." => "Podaj swoje stare prywatne hasło aby ustawić nowe", diff --git a/apps/files_encryption/l10n/pt_BR.php b/apps/files_encryption/l10n/pt_BR.php index 5b8a68657b78d2a5d88c174b9925048b864db970..2fce7fd13a5994dc1ffa2767c25867d4d2d36ada 100644 --- a/apps/files_encryption/l10n/pt_BR.php +++ b/apps/files_encryption/l10n/pt_BR.php @@ -8,22 +8,27 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Não foi possível alterar a senha. Talvez a senha antiga não estava correta.", "Private key password successfully updated." => "Senha de chave privada atualizada com sucesso.", "Could not update the private key password. Maybe the old password was not correct." => "Não foi possível atualizar a senha de chave privada. Talvez a senha antiga esteja incorreta.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sua chave privada não é válida! Provavelmente sua senha foi alterada fora do sistema ownCloud (por exemplo, seu diretório corporativo). Você pode atualizar sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados.", +"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." => "Aplicativo de criptografia não foi inicializado! Talvez o aplicativo de criptografia tenha sido reativado durante essa sessão. Por favor, tente fazer logoff e login novamente para inicializar o aplicativo de criptografia.", +"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." => "Sua chave privada não é válida! Provavelmente sua senha foi alterada fora de %s (por exemplo, seu diretório corporativo). Você pode atualizar sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Este arquivo não pode ser decriptado, provavelmente este é um arquivo compartilhado. Poe favoe peça ao dono do arquivo para compartilha-lo com você.", +"Unknown error please check your system settings or contact your administrator" => "Erro desconhecido, por favor verifique suas configurações ou faça contato com o administrador", "Missing requirements." => "Requisitos não encontrados.", "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." => "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitado e configurado corretamente. Por enquanto, o aplicativo de criptografia foi desativado.", "Following users are not set up for encryption:" => "Seguintes usuários não estão configurados para criptografia:", +"Initial encryption started... This can take some time. Please wait." => "Criptografia inicial inicializada... Isto pode tomar algum tempo. Por favor espere.", "Saving..." => "Salvando...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Sua chave privada não é válida! Talvez sua senha tenha sido mudada.", -"You can unlock your private key in your " => "Você pode desbloquear sua chave privada nas suas", +"Go directly to your " => "Ir diretamente para o seu", "personal settings" => "configurações pessoais.", "Encryption" => "Criptografia", "Enable recovery key (allow to recover users files in case of password loss):" => "Habilitar chave de recuperação (permite recuperar arquivos de usuários em caso de perda de senha):", "Recovery key password" => "Senha da chave de recuperação", +"Repeat Recovery key password" => "Repita Recuperação de senha da chave", "Enabled" => "Habilitado", "Disabled" => "Desabilitado", "Change recovery key password:" => "Mudar a senha da chave de recuperação:", "Old Recovery key password" => "Senha antiga da chave de recuperação", "New Recovery key password" => "Nova senha da chave de recuperação", +"Repeat New Recovery key password" => "Repita Nova senha da chave de recuperação", "Change Password" => "Trocar Senha", "Your private key password no longer match your log-in password:" => "Sua senha de chave privada não coincide mais com sua senha de login:", "Set your old private key password to your current log-in password." => "Configure sua antiga senha de chave privada para sua atual senha de login.", diff --git a/apps/files_encryption/l10n/pt_PT.php b/apps/files_encryption/l10n/pt_PT.php index 53335ab7297e70e608593396f0a6899ca4cb1293..77424005c3e2d23caae4d310262014216b5fe26b 100644 --- a/apps/files_encryption/l10n/pt_PT.php +++ b/apps/files_encryption/l10n/pt_PT.php @@ -7,8 +7,8 @@ $TRANSLATIONS = array( "Password successfully changed." => "Password alterada com sucesso.", "Could not change the password. Maybe the old password was not correct." => "Não foi possivel alterar a password. Possivelmente a password antiga não está correcta.", "Could not update the private key password. Maybe the old password was not correct." => "Não foi possível alterar a chave. Possivelmente a password antiga não está correcta.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Chave privada não é válida! Provavelmente senha foi alterada fora do sistema ownCloud (exemplo, o diretório corporativo). Pode atualizar password da chave privada em configurações personalizadas para recuperar o acesso aos seus arquivos encriptados.", "Missing requirements." => "Faltam alguns requisitos.", +"Following users are not set up for encryption:" => "Os utilizadores seguintes não estão marcados para cifragem:", "Saving..." => "A guardar...", "personal settings" => "configurações personalizadas ", "Encryption" => "Encriptação", diff --git a/apps/files_encryption/l10n/ru.php b/apps/files_encryption/l10n/ru.php index e0d52399c738d6ccdbc5ae625fb7fde03bec469c..e9744b3db4dfdcc90fd3b14a67c7ba5759be70a4 100644 --- a/apps/files_encryption/l10n/ru.php +++ b/apps/files_encryption/l10n/ru.php @@ -8,22 +8,27 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Невозможно изменить пароль. Возможно старый пароль не был верен.", "Private key password successfully updated." => "Пароль секретного ключа успешно обновлён.", "Could not update the private key password. Maybe the old password was not correct." => "Невозможно обновить пароль от секретного ключа. Возможно, старый пароль указан неверно.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Ваш секретный ключ не действителен! Вероятно, ваш пароль был изменен вне системы OwnCloud (например, корпоративный каталог). Вы можете обновить секретный ключ в личных настройках на странице восстановления доступа к зашифрованным файлам. ", +"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." => "Приложение шифрации не инициализированно! Возможно приложение шифрации было реактивировано во время вашей сессии. Пожалуйста, попробуйте выйти и войти снова чтобы проинициализировать приложение шифрации.", +"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." => "Ваш секретный ключ не действителен! Вероятно, ваш пароль был изменен вне %s (например, корпоративный каталог). Вы можете обновить секретный ключ в личных настройках на странице восстановления доступа к зашифрованным файлам. ", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Не могу расшифровать файл, возможно это опубликованный файл. Пожалуйста, попросите владельца файла поделиться им с вами еще раз.", +"Unknown error please check your system settings or contact your administrator" => "Неизвестная ошибка, пожалуйста, проверьте системные настройки или свяжитесь с администратором", "Missing requirements." => "Требования отсутствуют.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Пожалуйста, убедитесь, что версия PHP 5.3.3 или новее, а также, что OpenSSL и соответствующее расширение PHP включены и правильно настроены. На данный момент приложение шифрования отключено.", "Following users are not set up for encryption:" => "Для следующих пользователей шифрование не настроено:", +"Initial encryption started... This can take some time. Please wait." => "Начато начальное шифрование... Это может занять какое-то время. Пожалуйста, подождите.", "Saving..." => "Сохранение...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Секретный ключ недействителен! Возможно, Ваш пароль был изменён в другой программе.", -"You can unlock your private key in your " => "Вы можете разблокировать закрытый ключ в своём ", +"Go directly to your " => "Перейти прямо в", "personal settings" => "персональные настройки", "Encryption" => "Шифрование", "Enable recovery key (allow to recover users files in case of password loss):" => "Включить ключ восстановления (позволяет пользователям восстановить файлы при потере пароля):", "Recovery key password" => "Пароль для ключа восстановления", +"Repeat Recovery key password" => "Повторите пароль восстановления ключа", "Enabled" => "Включено", "Disabled" => "Отключено", "Change recovery key password:" => "Сменить пароль для ключа восстановления:", "Old Recovery key password" => "Старый пароль для ключа восстановления", "New Recovery key password" => "Новый пароль для ключа восстановления", +"Repeat New Recovery key password" => "Повторите новый пароль восстановления ключа", "Change Password" => "Изменить пароль", "Your private key password no longer match your log-in password:" => "Пароль от секретного ключа больше не соответствует паролю входа:", "Set your old private key password to your current log-in password." => "Замените старый пароль от секретного ключа на новый пароль входа.", diff --git a/apps/files_encryption/l10n/sk_SK.php b/apps/files_encryption/l10n/sk_SK.php index a80eb3e65214a8bbbc4d70dff8a801be95cababc..9e2c01eba335dbf9d4e8c27718f4147d6f7189d8 100644 --- a/apps/files_encryption/l10n/sk_SK.php +++ b/apps/files_encryption/l10n/sk_SK.php @@ -8,22 +8,27 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Nemožno zmeniť heslo. Pravdepodobne nebolo staré heslo zadané správne.", "Private key password successfully updated." => "Heslo súkromného kľúča je úspešne aktualizované.", "Could not update the private key password. Maybe the old password was not correct." => "Nemožno aktualizovať heslo súkromného kľúča. Možno nebolo staré heslo správne.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Váš privátny kľúč je nesprávny! Pravdepodobne bolo zmenené vaše heslo mimo systému ownCloud (napr. váš korporátny adresár). Môžte aktualizovať vaše heslo privátneho kľúča v osobných nastaveniach za účelom obnovenia prístupu k zašifrovaným súborom.", +"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." => "Šifrovacia aplikácia nie je inicializovaná. Je možné, že aplikácia bola znova aktivovaná počas vášho prihlasovania. Pokúste sa odhlásiť a znova prihlásiť pre inicializáciu šifrovania.", +"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." => "Váš súkromný kľúč nie je platný! Možno bolo vaše heslo zmenené mimo %s (napr. firemný priečinok). Môžete si aktualizovať heslo svojho ​​súkromného kľúča vo vašom osobnom nastavení, ak si chcete obnoviť prístup k šifrovaným súborom.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Tento súbor sa nepodarilo dešifrovať, pravdepodobne je zdieľaný. Požiadajte majiteľa súboru, aby ho s vami znovu vyzdieľal.", +"Unknown error please check your system settings or contact your administrator" => "Neznáma chyba, skontrolujte si vaše systémové nastavenia alebo kontaktujte administrátora", "Missing requirements." => "Chýbajúce požiadavky.", "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." => "Prosím uistite sa, že PHP verzie 5.3.3 alebo novšej je nainštalované a tiež, že OpenSSL knižnica spolu z PHP rozšírením je povolená a konfigurovaná správne. Nateraz bola aplikácia šifrovania zablokovaná.", "Following users are not set up for encryption:" => "Nasledujúci používatelia nie sú nastavení pre šifrovanie:", +"Initial encryption started... This can take some time. Please wait." => "Počiatočné šifrovanie započalo ... To môže nejakú dobu trvať. Čakajte prosím.", "Saving..." => "Ukladám...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Váš súkromný kľúč je neplatný. Možno bolo Vaše heslo zmenené z vonku.", -"You can unlock your private key in your " => "Môžte odomknúť váš privátny kľúč v", +"Go directly to your " => "Choďte priamo do vášho", "personal settings" => "osobné nastavenia", "Encryption" => "Šifrovanie", "Enable recovery key (allow to recover users files in case of password loss):" => "Povoliť obnovovací kľúč (umožňuje obnoviť používateľské súbory v prípade straty hesla):", "Recovery key password" => "Heslo obnovovacieho kľúča", +"Repeat Recovery key password" => "Zopakujte heslo kľúča pre obnovu", "Enabled" => "Povolené", "Disabled" => "Zakázané", "Change recovery key password:" => "Zmeniť heslo obnovovacieho kľúča:", "Old Recovery key password" => "Staré heslo obnovovacieho kľúča", "New Recovery key password" => "Nové heslo obnovovacieho kľúča", +"Repeat New Recovery key password" => "Zopakujte nové heslo kľúča pre obnovu", "Change Password" => "Zmeniť heslo", "Your private key password no longer match your log-in password:" => "Vaše heslo súkromného kľúča je rovnaké ako Vaše prihlasovacie heslo:", "Set your old private key password to your current log-in password." => "Nastavte si staré heslo súkromného kľúča k Vášmu súčasnému prihlasovaciemu heslu.", diff --git a/apps/files_encryption/l10n/sl.php b/apps/files_encryption/l10n/sl.php index 8b2f264c62e92935d58e1150b49b193cb1806d2e..60faf34cf88c5527d5079ac11f2608609e247ba4 100644 --- a/apps/files_encryption/l10n/sl.php +++ b/apps/files_encryption/l10n/sl.php @@ -1,39 +1,44 @@ "Ključ za obnovitev gesla je bil uspešno nastavljen", -"Could not enable recovery key. Please check your recovery key password!" => "Ključa za obnovitev gesla ni bilo mogoče nastaviti. Preverite ključ!", -"Recovery key successfully disabled" => "Ključ za obnovitev gesla je bil uspešno onemogočen", -"Could not disable recovery key. Please check your recovery key password!" => "Ključa za obnovitev gesla ni bilo mogoče onemogočiti. Preverite ključ!", -"Password successfully changed." => "Geslo je bilo uspešno spremenjeno.", -"Could not change the password. Maybe the old password was not correct." => "Gesla ni bilo mogoče spremeniti. Morda vnos starega gesla ni bil pravilen.", -"Private key password successfully updated." => "Zasebni ključ za geslo je bil uspešno posodobljen.", -"Could not update the private key password. Maybe the old password was not correct." => "Zasebnega ključa za geslo ni bilo mogoče posodobiti. Morda vnos starega gesla ni bil pravilen.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno zunaj sistema ownCloud (npr. v skupnem imeniku). Svoj zasebni ključ, ki vam bo omogočil dostop do šifriranih dokumentov, lahko posodobite v osebnih nastavitvah.", +"Recovery key successfully enabled" => "Ključ za obnovitev gesla je uspešno nastavljen", +"Could not enable recovery key. Please check your recovery key password!" => "Ključa za obnovitev gesla ni mogoče nastaviti. Preverite ključ!", +"Recovery key successfully disabled" => "Ključ za obnovitev gesla je uspešno onemogočen", +"Could not disable recovery key. Please check your recovery key password!" => "Ključa za obnovitev gesla ni mogoče onemogočiti. Preverite ključ!", +"Password successfully changed." => "Geslo je uspešno spremenjeno.", +"Could not change the password. Maybe the old password was not correct." => "Gesla ni mogoče spremeniti. Morda vnos starega gesla ni pravilen.", +"Private key password successfully updated." => "Zasebni ključ za geslo je uspešno posodobljen.", +"Could not update the private key password. Maybe the old password was not correct." => "Zasebnega ključa za geslo ni mogoče posodobiti. Morda vnos starega gesla ni bil pravilen.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Program za šifriranje ni začet. Morda je bil program ponovno omogočen šele med zagonom trenutne seje. Odjavite se in se nato prijavite nazaj. S tem morda razrešite napako.", +"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Zasebni ključ ni veljaven. Najverjetneje je bilo geslo spremenjeno izven %s (najverjetneje je to poslovna mapa). Geslo lahko posodobite med osebnimi nastavitvami in s tem obnovite dostop do šifriranih datotek.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Te datoteke ni mogoče šifrirati, ker je to najverjetneje datoteka v souporabi. Prosite lastnika datoteke, da jo da ponovno v souporabo.", +"Unknown error please check your system settings or contact your administrator" => "Prišlo je do neznane napake. Preverite nastavitve sistema ali pa stopite v stik s skrbnikom sistema.", "Missing requirements." => "Manjkajoče zahteve", -"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Preverite, da imate na strežniku nameščen paket PHP 5.3.3 ali novejši in da je omogočen in pravilno nastavljen PHP OpenSSL . Zaenkrat je šifriranje onemogočeno.", -"Following users are not set up for encryption:" => "Naslednji uporabniki še nimajo nastavljenega šifriranja:", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Preverite, ali je na strežniku nameščen paket PHP 5.3.3 ali novejši, da je omogočen in pravilno nastavljen PHP OpenSSL. Z obstoječimi možnostmi šifriranje ni mogoče.", +"Following users are not set up for encryption:" => "Navedeni uporabniki še nimajo nastavljenega šifriranja:", +"Initial encryption started... This can take some time. Please wait." => "Začetno šifriranje je začeto ... Opravilo je lahko dolgotrajno.", "Saving..." => "Poteka shranjevanje ...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno.", -"You can unlock your private key in your " => "Svoj zasebni ključ lahko odklenite v", +"Go directly to your " => "Skočite neposredno na", "personal settings" => "osebne nastavitve", "Encryption" => "Šifriranje", -"Enable recovery key (allow to recover users files in case of password loss):" => "Omogoči ključ za obnovitev datotek (v primeru izgube gesla)", +"Enable recovery key (allow to recover users files in case of password loss):" => "Omogoči ključ za obnovitev datotek (v primeru izgube gesla):", "Recovery key password" => "Ključ za obnovitev gesla", +"Repeat Recovery key password" => "Ponovi ključ za obnovitev gesla", "Enabled" => "Omogočeno", "Disabled" => "Onemogočeno", "Change recovery key password:" => "Spremeni ključ za obnovitev gesla:", "Old Recovery key password" => "Stari ključ za obnovitev gesla", -"New Recovery key password" => "Nov ključ za obnovitev gesla", +"New Recovery key password" => "Novi ključ za obnovitev gesla", +"Repeat New Recovery key password" => "Ponovi novi ključ za obnovitev gesla", "Change Password" => "Spremeni geslo", -"Your private key password no longer match your log-in password:" => "Vaš zasebni ključ za geslo se ne ujema z vnešenim geslom ob prijavi:", -"Set your old private key password to your current log-in password." => "Nastavite svoj star zasebni ključ v geslo, vnešeno ob prijavi.", -" If you don't remember your old password you can ask your administrator to recover your files." => "Če ste svoje geslo pozabili, lahko vaše datoteke obnovi skrbnik sistema.", +"Your private key password no longer match your log-in password:" => "Vaš zasebni ključ za geslo se ne ujema z geslom, vnesenim ob prijavi:", +"Set your old private key password to your current log-in password." => "Nastavite svoj star zasebni ključ v geslo, vneseno ob prijavi.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Če ste pozabili svoje geslo, lahko vaše datoteke obnovi le skrbnik sistema.", "Old log-in password" => "Staro geslo", "Current log-in password" => "Trenutno geslo", "Update Private Key Password" => "Posodobi zasebni ključ", "Enable password recovery:" => "Omogoči obnovitev gesla:", -"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Nastavitev te možnosti omogoča ponovno pridobitev dostopa do šifriranih datotek, v primeru da boste geslo pozabili.", -"File recovery settings updated" => "Nastavitve obnavljanja dokumentov so bile posodobljene", -"Could not update file recovery" => "Nastavitev za obnavljanje dokumentov ni bilo mogoče posodobiti" +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Nastavitev te možnosti omogoča ponovno pridobitev dostopa do šifriranih datotek, v primeru, da boste geslo pozabili.", +"File recovery settings updated" => "Nastavitve obnavljanja dokumentov so posodobljene", +"Could not update file recovery" => "Nastavitev za obnavljanje dokumentov ni mogoče posodobiti" ); $PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/apps/files_encryption/l10n/sq.php b/apps/files_encryption/l10n/sq.php new file mode 100644 index 0000000000000000000000000000000000000000..dc156ff3bf0d6bff16f761097a6d5bcf2d608d36 --- /dev/null +++ b/apps/files_encryption/l10n/sq.php @@ -0,0 +1,5 @@ + "Duke ruajtur..." +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/sv.php b/apps/files_encryption/l10n/sv.php index 88ba6b471597312f046379199e75f53ea096e868..1e509ea08e7a3eb889aef80fcb9f7812b0490660 100644 --- a/apps/files_encryption/l10n/sv.php +++ b/apps/files_encryption/l10n/sv.php @@ -6,31 +6,35 @@ $TRANSLATIONS = array( "Could not disable recovery key. Please check your recovery key password!" => "Kunde inte inaktivera återställningsnyckeln. Vänligen kontrollera ditt lösenord för återställningsnyckeln!", "Password successfully changed." => "Ändringen av lösenordet lyckades.", "Could not change the password. Maybe the old password was not correct." => "Kunde inte ändra lösenordet. Kanske det gamla lösenordet inte var rätt.", -"Private key password successfully updated." => "Den privata lösenordsnyckeln uppdaterades utan problem.", -"Could not update the private key password. Maybe the old password was not correct." => "Kunde inte uppdatera den privata lösenordsnyckeln. Kanske var det gamla lösenordet fel.", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Din privata lösenordsnyckel är inte giltig! Troligen har ditt lösenord ändrats utanför ownCloud (t.ex. i företagets katalogtjänst). Du kan uppdatera den privata lösenordsnyckeln under dina personliga inställningar för att återfå tillgång till dina filer.", +"Private key password successfully updated." => "Den privata nyckelns lösenord uppdaterades utan problem.", +"Could not update the private key password. Maybe the old password was not correct." => "Kunde inte uppdatera lösenordet för den privata nyckeln. Kanske var det gamla lösenordet fel.", +"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." => "Krypteringsprogrammet kunde inte initieras! Möjligen blev krypteringsprogrammet återaktiverad under din session. Försök med att logga ut och in igen för att initiera krypteringsprogrammet.", +"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." => "Din privata lösenordsnyckel är inte giltig! Troligen har ditt lösenord ändrats utanför %s (t.ex. i företagets katalogtjänst). Du kan uppdatera den privata lösenordsnyckeln under dina personliga inställningar för att återfå tillgång till dina filer.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Kan ej dekryptera denna fil, förmodligen är det en delad fil. Be ägaren av filen att dela den med dig.", +"Unknown error please check your system settings or contact your administrator" => "Oväntat fel, kolla dina system inställningar eller kontakta din administratör", "Missing requirements." => "Krav som saknas", "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." => "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och korrekt konfigurerad. Kryptering är tillsvidare inaktiverad.", "Following users are not set up for encryption:" => "Följande användare har inte aktiverat kryptering:", "Saving..." => "Sparar...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Din privata lösenordsnyckel är inte giltig! Kanske byttes ditt lösenord från utsidan.", -"You can unlock your private key in your " => "Du kan låsa upp din privata nyckel i dina", +"Go directly to your " => "Gå direkt till din", "personal settings" => "personliga inställningar", "Encryption" => "Kryptering", -"Enable recovery key (allow to recover users files in case of password loss):" => "Aktivera lösenordsnyckel (för att kunna återfå användarens filer vid glömt eller förlorat lösenord):", -"Recovery key password" => "Lösenordsnyckel", +"Enable recovery key (allow to recover users files in case of password loss):" => "Aktivera återställningsnyckel (för att kunna återfå användarens filer vid glömt eller förlorat lösenord):", +"Recovery key password" => "Lösenord för återställningsnyckel", +"Repeat Recovery key password" => "Upprepa återställningsnyckelns lösenord", "Enabled" => "Aktiverad", "Disabled" => "Inaktiverad", -"Change recovery key password:" => "Ändra lösenordsnyckel:", -"Old Recovery key password" => "Gammal lösenordsnyckel", -"New Recovery key password" => "Ny lösenordsnyckel", +"Change recovery key password:" => "Ändra lösenord för återställningsnyckel:", +"Old Recovery key password" => "Gammalt lösenord för återställningsnyckel", +"New Recovery key password" => "Nytt lösenord för återställningsnyckel", +"Repeat New Recovery key password" => "Upprepa lösenord för ny återställningsnyckel", "Change Password" => "Byt lösenord", -"Your private key password no longer match your log-in password:" => "Din privata lösenordsnyckel stämmer inte längre överrens med ditt inloggningslösenord:", -"Set your old private key password to your current log-in password." => "Ställ in din gamla privata lösenordsnyckel till ditt aktuella inloggningslösenord.", +"Your private key password no longer match your log-in password:" => "Lösenordet till din privata nyckel stämmer inte längre överens med ditt inloggningslösenord:", +"Set your old private key password to your current log-in password." => "Använd din gamla privata nyckels lösenord som ditt aktuella inloggningslösenord.", " If you don't remember your old password you can ask your administrator to recover your files." => "Om du inte kommer ihåg ditt gamla lösenord kan du be din administratör att återställa dina filer.", "Old log-in password" => "Gammalt inloggningslösenord", "Current log-in password" => "Nuvarande inloggningslösenord", -"Update Private Key Password" => "Uppdatera den privata lösenordsnyckeln", +"Update Private Key Password" => "Uppdatera lösenordet för din privata nyckel", "Enable password recovery:" => "Aktivera lösenordsåterställning", "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Genom att aktivera detta alternativ kommer du kunna återfå tillgång till dina krypterade filer om du skulle förlora/glömma ditt lösenord", "File recovery settings updated" => "Inställningarna för filåterställning har uppdaterats", diff --git a/apps/files_encryption/l10n/tr.php b/apps/files_encryption/l10n/tr.php index 7fdda1a5bf6e6b0d6aa6cd721bbcd1f4b0ef5c66..b8289ab71f9b696e9e6e47301d6dfafcac1ccefc 100644 --- a/apps/files_encryption/l10n/tr.php +++ b/apps/files_encryption/l10n/tr.php @@ -4,13 +4,40 @@ $TRANSLATIONS = array( "Could not enable recovery key. Please check your recovery key password!" => "Kurtarma anahtarı etkinleştirilemedi. Lütfen kurtarma anahtarı parolanızı kontrol edin!", "Recovery key successfully disabled" => "Kurtarma anahtarı başarıyla devre dışı bırakıldı", "Could not disable recovery key. Please check your recovery key password!" => "Kurtarma anahtarı devre dışı bırakılamadı. Lütfen kurtarma anahtarı parolanızı kontrol edin!", -"Password successfully changed." => "Şifreniz başarıyla değiştirildi.", -"Could not change the password. Maybe the old password was not correct." => "Parola değiştirilemedi. Eski parolanız doğru olmayabilir", +"Password successfully changed." => "Parola başarıyla değiştirildi.", +"Could not change the password. Maybe the old password was not correct." => "Parola değiştirilemedi. Eski parolanız doğru olmayabilir.", +"Private key password successfully updated." => "Gizli anahtar parolası başarıyla güncellendi", +"Could not update the private key password. Maybe the old password was not correct." => "Gizli anahtar parolası güncellenemedi. Eski parola hatalı olabilir.", +"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." => "Şifreleme uygulaması başlatılamadı! Oturumunuz sırasında şifreleme uygulaması tekrar etkinleştirilmiş olabilir. Lütfen şifreleme uygulamasını başlatmak için oturumu kapatıp yeniden oturum açmayı deneyin.", +"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." => "Gizli anahtarınız geçerli değil! Muhtemelen parolanız ownCloud sistemi %s dışarısında değiştirildi (örn. şirket dizininde). Gizli anahtar parolanızı kişisel ayarlarınızda güncelleyerek şifreli dosyalarınıza erişimi kurtarabilirsiniz.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Bu dosya muhtemelen bir paylaşılan dosya olduğundan şifresi çözülemiyor. Lütfen dosyayı sizinle bir daha paylaşması için dosya sahibi ile iletişime geçin.", +"Unknown error please check your system settings or contact your administrator" => "Bilinmeyen hata. Lütfen sistem ayarlarınızı denetleyin veya yöneticiniz ile iletişime geçin", +"Missing requirements." => "Gereklilikler eksik.", +"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 veya daha sürümü ile birlikte OpenSSL ve OpenSSL PHP uzantısının birlikte etkin olduğunu ve doğru bir şekilde yapılandırıldığından emin olun. Şimdilik şifreleme uygulaması devre dışı bırakıldı", +"Following users are not set up for encryption:" => "Aşağıdaki kullanıcılar şifreleme için ayarlanmadılar:", +"Initial encryption started... This can take some time. Please wait." => "İlk şifreleme başladı... Bu biraz zaman alabilir. Lütfen bekleyin.", "Saving..." => "Kaydediliyor...", +"Go directly to your " => "Doğrudan şuraya gidin:", +"personal settings" => "kişisel ayarlar", "Encryption" => "Şifreleme", +"Enable recovery key (allow to recover users files in case of password loss):" => "Kurtarma anahtarını etkinleştir (parola kaybı durumunda kullanıcı dosyalarının kurtarılmasına izin verir):", +"Recovery key password" => "Kurtarma anahtarı parolası", +"Repeat Recovery key password" => "Kurtarma anahtarı parolasını yenileyin", "Enabled" => "Etkinleştirildi", "Disabled" => "Devre dışı", -"Change Password" => "Parola değiştir", +"Change recovery key password:" => "Kurtarma anahtarı parolasını değiştir:", +"Old Recovery key password" => "Eski Kurtarma anahtar parolası", +"New Recovery key password" => "Yeni Kurtarma anahtar parolası", +"Repeat New Recovery key password" => "Yeni Kurtarma anahtarı parolasını yenileyin", +"Change Password" => "Parola Değiştir", +"Your private key password no longer match your log-in password:" => "Özel anahtar parolanız artık oturum açma parolanızla eşleşmiyor:", +"Set your old private key password to your current log-in password." => "Eski özel anahtar parolanızı geçerli oturum açma parolanız olarak ayarlayın.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Eğer eski parolanızı hatırlamıyorsanız, yöneticinizden dosyalarınızı kurtarmasını talep edebilirsiniz.", +"Old log-in password" => "Eski oturum açma parolası", +"Current log-in password" => "Geçerli oturum açma parolası", +"Update Private Key Password" => "Özel Anahtar Parolasını Güncelle", +"Enable password recovery:" => "Parola kurtarmayı etkinleştir:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Bu seçeneği etkinleştirmek, parola kaybı durumunda şifrelenmiş dosyalarınıza erişimi yeniden kazanmanızı sağlayacaktır", "File recovery settings updated" => "Dosya kurtarma ayarları güncellendi", "Could not update file recovery" => "Dosya kurtarma güncellenemedi" ); diff --git a/apps/files_encryption/l10n/zh_CN.php b/apps/files_encryption/l10n/zh_CN.php index c4c52f4ac2e72e46112e739e5cdc90d345175528..a51856aec94eca7c82ec0a16f30c5c967bcda352 100644 --- a/apps/files_encryption/l10n/zh_CN.php +++ b/apps/files_encryption/l10n/zh_CN.php @@ -8,10 +8,7 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "不能修改密码。旧密码可能不正确。", "Private key password successfully updated." => "私钥密码成功更新。", "Could not update the private key password. Maybe the old password was not correct." => "无法更新私钥密码。可能旧密码不正确。", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "您的私有密钥无效!也许是您在 ownCloud 系统外更改了密码 (比如,在您的公司目录)。您可以在个人设置里更新您的私钥密码来恢复访问你的加密文件。", "Saving..." => "保存中", -"Your private key is not valid! Maybe the your password was changed from outside." => "您的私钥不正确!可能您在别处更改了密码。", -"You can unlock your private key in your " => "您可以在这里解锁您的私钥:", "personal settings" => "个人设置", "Encryption" => "加密", "Enable recovery key (allow to recover users files in case of password loss):" => "启用恢复密钥(允许你在密码丢失后恢复文件):", diff --git a/apps/files_encryption/l10n/zh_TW.php b/apps/files_encryption/l10n/zh_TW.php index 02dc49cc3d944f70f54b84dfaa8636a80610dd97..8972490ea5a4e1f0e16c410eea20303146d49548 100644 --- a/apps/files_encryption/l10n/zh_TW.php +++ b/apps/files_encryption/l10n/zh_TW.php @@ -1,16 +1,42 @@ "還原金鑰已成功開啟", +"Could not enable recovery key. Please check your recovery key password!" => "無法啟用還原金鑰。請檢查您的還原金鑰密碼!", +"Recovery key successfully disabled" => "還原金鑰已成功停用", +"Could not disable recovery key. Please check your recovery key password!" => "無法停用還原金鑰。請檢查您的還原金鑰密碼!", "Password successfully changed." => "成功變更密碼。", "Could not change the password. Maybe the old password was not correct." => "無法變更密碼,或許是輸入的舊密碼不正確。", -"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "您的私鑰不正確! 感覺像是密碼在 ownCloud 系統之外被改變(例:您的目錄)。 您可以在個人設定中更新私鑰密碼取回已加密的檔案。", +"Private key password successfully updated." => "私人金鑰密碼已成功更新。", +"Could not update the private key password. Maybe the old password was not correct." => "無法更新私人金鑰密碼。可能舊的密碼不正確。", +"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." => "加密功能未初始化!可能加密功能需要重新啟用在現在的連線上。請試著登出再登入來初始化加密功能。", +"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." => "您的私人金鑰不正確!可能您的密碼已經變更在外部的 %s (例如:您的企業目錄)。您可以在您的個人設定中更新私人金鑰密碼來還原存取您的加密檔案。", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "無法解密這個檔案,也許這是分享的檔案。請詢問檔案所有人重新分享檔案給您。", +"Unknown error please check your system settings or contact your administrator" => "未知錯誤請檢查您的系統設定或是聯絡您的管理員", +"Missing requirements." => "遺失必要條件。", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "請確認已安裝 PHP 5.3.3 或是更新的版本以及 OpenSSL 也一併安裝在 PHP extension 裡面並啟用及設置完成。現在,加密功能是停用的。", +"Following users are not set up for encryption:" => "以下的使用者無法設定加密:", "Saving..." => "儲存中...", +"Go directly to your " => "直接到您的", +"personal settings" => "個人設定", "Encryption" => "加密", +"Enable recovery key (allow to recover users files in case of password loss):" => "啟用還原金鑰 (因忘記密碼仍允許還原使用者檔案):", +"Recovery key password" => "還原金鑰密碼", +"Repeat Recovery key password" => "再輸入還原金鑰密碼一次", "Enabled" => "已啓用", "Disabled" => "已停用", +"Change recovery key password:" => "變更還原金鑰密碼:", +"Old Recovery key password" => "舊的還原金鑰密碼", +"New Recovery key password" => "新的還原金鑰密碼", +"Repeat New Recovery key password" => "再輸入新的還原金鑰密碼一次", "Change Password" => "變更密碼", +"Your private key password no longer match your log-in password:" => "您的私人金鑰密碼不符合您的登入密碼:", +"Set your old private key password to your current log-in password." => "設定您的舊私人金鑰密碼到您現在的登入密碼。", " If you don't remember your old password you can ask your administrator to recover your files." => "如果您忘記舊密碼,可以請求管理員協助取回檔案。", "Old log-in password" => "舊登入密碼", "Current log-in password" => "目前的登入密碼", +"Update Private Key Password" => "更新私人金鑰密碼", +"Enable password recovery:" => "啟用密碼還原:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "啟用這個選項將會允許您因忘記密碼但需要存取您的加密檔案", "File recovery settings updated" => "檔案還原設定已更新", "Could not update file recovery" => "無法更新檔案還原設定" ); diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index c009718160ae360d47b4abce3822d9c9fea6fcde..9155d238c771f0afab2ec56008ac42abd83cb14b 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -33,6 +33,12 @@ require_once __DIR__ . '/../3rdparty/Crypt_Blowfish/Blowfish.php'; class Crypt { + const ENCRYPTION_UNKNOWN_ERROR = -1; + const ENCRYPTION_NOT_INITIALIZED_ERROR = 1; + const ENCRYPTION_PRIVATE_KEY_NOT_VALID_ERROR = 2; + const ENCRYPTION_NO_SHARE_KEY_FOUND = 3; + + /** * @brief return encryption mode client or server side encryption * @param string $user name (use system wide setting if name=null) @@ -183,8 +189,8 @@ class Crypt { // Fetch all file metadata from DB $metadata = \OC\Files\Filesystem::getFileInfo($relPath, ''); - // If a file is flagged with encryption in DB, but isn't a - // valid content + IV combination, it's probably using the + // If a file is flagged with encryption in DB, but isn't a + // valid content + IV combination, it's probably using the // legacy encryption system if (isset($metadata['encrypted']) && $metadata['encrypted'] === true @@ -388,7 +394,7 @@ class Crypt { */ public static function multiKeyEncrypt($plainContent, array $publicKeys) { - // openssl_seal returns false without errors if $plainContent + // openssl_seal returns false without errors if $plainContent // is empty, so trigger our own error if (empty($plainContent)) { @@ -405,7 +411,7 @@ class Crypt { $i = 0; - // Ensure each shareKey is labelled with its + // Ensure each shareKey is labelled with its // corresponding userId foreach ($publicKeys as $userId => $publicKey) { @@ -476,7 +482,7 @@ class Crypt { } - // We encode the iv purely for string manipulation + // We encode the iv purely for string manipulation // purposes - it gets decoded before use $iv = base64_encode($random); diff --git a/apps/files_encryption/lib/helper.php b/apps/files_encryption/lib/helper.php index 445d7ff8ca796ed911833df22685935578d2b316..5dcb05fa1961cb3f69406cc16fefe60657b24e37 100755 --- a/apps/files_encryption/lib/helper.php +++ b/apps/files_encryption/lib/helper.php @@ -29,6 +29,8 @@ namespace OCA\Encryption; */ class Helper { + private static $tmpFileMapping; // Map tmp files to files in data/user/files + /** * @brief register share related hooks * @@ -59,6 +61,7 @@ class Helper { */ public static function registerFilesystemHooks() { + \OCP\Util::connectHook('OC_Filesystem', 'rename', 'OCA\Encryption\Hooks', 'preRename'); \OCP\Util::connectHook('OC_Filesystem', 'post_rename', 'OCA\Encryption\Hooks', 'postRename'); } @@ -69,6 +72,7 @@ class Helper { public static function registerAppHooks() { \OCP\Util::connectHook('OC_App', 'pre_disable', 'OCA\Encryption\Hooks', 'preDisable'); + \OCP\Util::connectHook('OC_App', 'post_disable', 'OCA\Encryption\Hooks', 'postEnable'); } /** @@ -156,6 +160,49 @@ class Helper { return $return; } + /** + * @brief Check if a path is a .part file + * @param string $path Path that may identify a .part file + * @return bool + */ + public static function isPartialFilePath($path) { + + $extension = pathinfo($path, PATHINFO_EXTENSION); + if ( $extension === 'part') { + return true; + } else { + return false; + } + + } + + + /** + * @brief Remove .path extension from a file path + * @param string $path Path that may identify a .part file + * @return string File path without .part extension + * @note this is needed for reusing keys + */ + public static function stripPartialFileExtension($path) { + $extension = pathinfo($path, PATHINFO_EXTENSION); + + if ( $extension === 'part') { + + $newLength = strlen($path) - 5; // 5 = strlen(".part") = strlen(".etmp") + $fPath = substr($path, 0, $newLength); + + // if path also contains a transaction id, we remove it too + $extension = pathinfo($fPath, PATHINFO_EXTENSION); + if(substr($extension, 0, 12) === 'ocTransferId') { // 12 = strlen("ocTransferId") + $newLength = strlen($fPath) - strlen($extension) -1; + $fPath = substr($fPath, 0, $newLength); + } + return $fPath; + + } else { + return $path; + } + } /** * @brief disable recovery @@ -181,10 +228,7 @@ class Helper { * @return bool */ public static function isPublicAccess() { - if (\OCP\USER::getUser() === false - || (isset($_GET['service']) && $_GET['service'] == 'files' - && isset($_GET['t'])) - ) { + if (\OCP\User::getUser() === false) { return true; } else { return false; @@ -199,12 +243,12 @@ class Helper { public static function stripUserFilesPath($path) { $trimmed = ltrim($path, '/'); $split = explode('/', $trimmed); - + // it is not a file relative to data/user/files if (count($split) < 3 || $split[1] !== 'files') { return false; } - + $sliced = array_slice($split, 2); $relPath = implode('/', $sliced); @@ -212,37 +256,116 @@ class Helper { } /** - * @brief get path to the correspondig file in data/user/files + * @brief try to get the user from the path if no user is logged in + * @param string $path + * @return mixed user or false if we couldn't determine a user + */ + public static function getUser($path) { + + $user = \OCP\User::getUser(); + + + // if we are logged in, then we return the userid + if ($user) { + return $user; + } + + // if no user is logged in we try to access a publicly shared files. + // In this case we need to try to get the user from the path + + $trimmed = ltrim($path, '/'); + $split = explode('/', $trimmed); + + // it is not a file relative to data/user/files + if (count($split) < 2 || ($split[1] !== 'files' && $split[1] !== 'cache')) { + return false; + } + + $user = $split[0]; + + if (\OCP\User::userExists($user)) { + return $user; + } + + return false; + } + + /** + * @brief get path to the corresponding file in data/user/files if path points + * to a version or to a file in cache * @param string $path path to a version or a file in the trash - * @return string path to correspondig file relative to data/user/files + * @return string path to corresponding file relative to data/user/files */ public static function getPathToRealFile($path) { $trimmed = ltrim($path, '/'); $split = explode('/', $trimmed); - - if (count($split) < 3 || $split[1] !== "files_versions") { - return false; + $result = false; + + if (count($split) >= 3 && ($split[1] === "files_versions" || $split[1] === 'cache')) { + $sliced = array_slice($split, 2); + $result = implode('/', $sliced); + if ($split[1] === "files_versions") { + // we skip user/files + $sliced = array_slice($split, 2); + $relPath = implode('/', $sliced); + //remove the last .v + $result = substr($relPath, 0, strrpos($relPath, '.v')); + } + if ($split[1] === "cache") { + // we skip /user/cache/transactionId + $sliced = array_slice($split, 3); + $result = implode('/', $sliced); + //prepare the folders + self::mkdirr($path, new \OC\Files\View('/')); + } } - - $sliced = array_slice($split, 2); - $realPath = implode('/', $sliced); - //remove the last .v - $realPath = substr($realPath, 0, strrpos($realPath, '.v')); - return $realPath; - } - + return $result; + } + + /** + * @brief create directory recursively + * @param string $path + * @param \OC\Files\View $view + */ + public static function mkdirr($path, $view) { + $dirname = \OC_Filesystem::normalizePath(dirname($path)); + $dirParts = explode('/', $dirname); + $dir = ""; + foreach ($dirParts as $part) { + $dir = $dir . '/' . $part; + if (!$view->file_exists($dir)) { + $view->mkdir($dir); + } + } + } + /** * @brief redirect to a error page */ - public static function redirectToErrorPage() { + public static function redirectToErrorPage($session, $errorCode = null) { + + if ($errorCode === null) { + $init = $session->getInitialized(); + switch ($init) { + case \OCA\Encryption\Session::INIT_EXECUTED: + $errorCode = \OCA\Encryption\Crypt::ENCRYPTION_PRIVATE_KEY_NOT_VALID_ERROR; + break; + case \OCA\Encryption\Session::NOT_INITIALIZED: + $errorCode = \OCA\Encryption\Crypt::ENCRYPTION_NOT_INITIALIZED_ERROR; + break; + default: + $errorCode = \OCA\Encryption\Crypt::ENCRYPTION_UNKNOWN_ERROR; + } + } + $location = \OC_Helper::linkToAbsolute('apps/files_encryption/files', 'error.php'); $post = 0; if(count($_POST) > 0) { $post = 1; - } - header('Location: ' . $location . '?p=' . $post); - exit(); + } + header('Location: ' . $location . '?p=' . $post . '&errorCode=' . $errorCode); + exit(); } /** @@ -259,7 +382,7 @@ class Helper { return (bool) $result; } - + /** * check some common errors if the server isn't configured properly for encryption * @return bool true if configuration seems to be OK @@ -303,5 +426,27 @@ class Helper { public static function escapeGlobPattern($path) { return preg_replace('/(\*|\?|\[)/', '[$1]', $path); } + + /** + * @brief remember from which file the tmp file (getLocalFile() call) was created + * @param string $tmpFile path of tmp file + * @param string $originalFile path of the original file relative to data/ + */ + public static function addTmpFileToMapper($tmpFile, $originalFile) { + self::$tmpFileMapping[$tmpFile] = $originalFile; + } + + /** + * @brief get the path of the original file + * @param string $tmpFile path of the tmp file + * @return mixed path of the original file or false + */ + public static function getPathFromTmpFile($tmpFile) { + if (isset(self::$tmpFileMapping[$tmpFile])) { + return self::$tmpFileMapping[$tmpFile]; + } + + return false; + } } diff --git a/apps/files_encryption/lib/keymanager.php b/apps/files_encryption/lib/keymanager.php index 7143fcff0f63b7719849abc40f2450ed90179494..b2c756894b4a99fc71cccbe9db00d82f635a29a6 100755 --- a/apps/files_encryption/lib/keymanager.php +++ b/apps/files_encryption/lib/keymanager.php @@ -112,21 +112,18 @@ class Keymanager { * @brief store file encryption key * * @param \OC_FilesystemView $view + * @param \OCA\Encryption\Util $util * @param string $path relative path of the file, including filename - * @param $userId - * @param $catfile - * @internal param string $key + * @param string $catfile keyfile content * @return bool true/false * @note The keyfile is not encrypted here. Client code must * asymmetrically encrypt the keyfile before passing it to this method */ - public static function setFileKey(\OC_FilesystemView $view, $path, $userId, $catfile) { + public static function setFileKey(\OC_FilesystemView $view, $util, $path, $catfile) { $proxyStatus = \OC_FileProxy::$enabled; \OC_FileProxy::$enabled = false; - //here we need the currently logged in user, while userId can be a different user - $util = new Util($view, \OCP\User::getUser()); list($owner, $filename) = $util->getUidAndFilename($path); // in case of system wide mount points the keys are stored directly in the data directory @@ -152,10 +149,10 @@ class Keymanager { } // try reusing key file if part file - if (self::isPartialFilePath($targetPath)) { + if (Helper::isPartialFilePath($targetPath)) { $result = $view->file_put_contents( - $basePath . '/' . self::fixPartialFilePath($targetPath) . '.key', $catfile); + $basePath . '/' . Helper::stripPartialFileExtension($targetPath) . '.key', $catfile); } else { @@ -169,64 +166,21 @@ class Keymanager { } - /** - * @brief Remove .path extension from a file path - * @param string $path Path that may identify a .part file - * @return string File path without .part extension - * @note this is needed for reusing keys - */ - public static function fixPartialFilePath($path) { - - if (preg_match('/\.part$/', $path) || preg_match('/\.etmp$/', $path)) { - - $newLength = strlen($path) - 5; - $fPath = substr($path, 0, $newLength); - - return $fPath; - - } else { - - return $path; - - } - - } - - /** - * @brief Check if a path is a .part file - * @param string $path Path that may identify a .part file - * @return bool - */ - public static function isPartialFilePath($path) { - - if (preg_match('/\.part$/', $path) || preg_match('/\.etmp$/', $path)) { - - return true; - - } else { - - return false; - - } - - } - /** * @brief retrieve keyfile for an encrypted file * @param \OC_FilesystemView $view - * @param $userId + * @param \OCA\Encryption\Util $util * @param $filePath * @internal param \OCA\Encryption\file $string name * @return string file key or false * @note The keyfile returned is asymmetrically encrypted. Decryption * of the keyfile must be performed by client code */ - public static function getFileKey(\OC_FilesystemView $view, $userId, $filePath) { + public static function getFileKey($view, $util, $filePath) { - $util = new Util($view, \OCP\User::getUser()); list($owner, $filename) = $util->getUidAndFilename($filePath); - $filename = self::fixPartialFilePath($filename); + $filename = Helper::stripPartialFileExtension($filename); $filePath_f = ltrim($filename, '/'); // in case of system wide mount points the keys are stored directly in the data directory @@ -259,17 +213,17 @@ class Keymanager { * @brief Delete a keyfile * * @param \OC_FilesystemView $view - * @param string $userId username * @param string $path path of the file the key belongs to * @return bool Outcome of unlink operation * @note $path must be relative to data/user/files. e.g. mydoc.txt NOT * /data/admin/files/mydoc.txt */ - public static function deleteFileKey(\OC_FilesystemView $view, $userId, $path) { + public static function deleteFileKey(\OC_FilesystemView $view, $path) { $trimmed = ltrim($path, '/'); - $util = new Util($view, \OCP\User::getUser()); + $userId = Helper::getUser($path); + $util = new Util($view, $userId); if($util->isSystemWideMountPoint($path)) { $keyPath = '/files_encryption/keyfiles/' . $trimmed; @@ -358,16 +312,15 @@ class Keymanager { /** * @brief store multiple share keys for a single file * @param \OC_FilesystemView $view - * @param $path + * @param \OCA\Encryption\Util $util + * @param string $path * @param array $shareKeys * @return bool */ - public static function setShareKeys(\OC_FilesystemView $view, $path, array $shareKeys) { + public static function setShareKeys(\OC_FilesystemView $view, $util, $path, array $shareKeys) { // $shareKeys must be an array with the following format: // [userId] => [encrypted key] - // Here we need the currently logged in user, while userId can be a different user - $util = new Util($view, \OCP\User::getUser()); list($owner, $filename) = $util->getUidAndFilename($path); @@ -385,8 +338,8 @@ class Keymanager { foreach ($shareKeys as $userId => $shareKey) { // try reusing key file if part file - if (self::isPartialFilePath($shareKeyPath)) { - $writePath = $basePath . '/' . self::fixPartialFilePath($shareKeyPath) . '.' . $userId . '.shareKey'; + if (Helper::isPartialFilePath($shareKeyPath)) { + $writePath = $basePath . '/' . Helper::stripPartialFileExtension($shareKeyPath) . '.' . $userId . '.shareKey'; } else { $writePath = $basePath . '/' . $shareKeyPath . '.' . $userId . '.shareKey'; } @@ -406,23 +359,20 @@ class Keymanager { * @brief retrieve shareKey for an encrypted file * @param \OC_FilesystemView $view * @param string $userId + * @param \OCA\Encryption\Util $util * @param string $filePath - * @internal param \OCA\Encryption\file $string name * @return string file key or false * @note The sharekey returned is encrypted. Decryption * of the keyfile must be performed by client code */ - public static function getShareKey(\OC_FilesystemView $view, $userId, $filePath) { + public static function getShareKey(\OC_FilesystemView $view, $userId, $util, $filePath) { // try reusing key file if part file $proxyStatus = \OC_FileProxy::$enabled; \OC_FileProxy::$enabled = false; - //here we need the currently logged in user, while userId can be a different user - $util = new Util($view, \OCP\User::getUser()); - list($owner, $filename) = $util->getUidAndFilename($filePath); - $filename = self::fixPartialFilePath($filename); + $filename = Helper::stripPartialFileExtension($filename); // in case of system wide mount points the keys are stored directly in the data directory if ($util->isSystemWideMountPoint($filename)) { $shareKeyPath = '/files_encryption/share-keys/' . $filename . '.' . $userId . '.shareKey'; @@ -487,8 +437,9 @@ class Keymanager { $proxyStatus = \OC_FileProxy::$enabled; \OC_FileProxy::$enabled = false; - //here we need the currently logged in user, while userId can be a different user - $util = new Util($view, \OCP\User::getUser()); + $userId = Helper::getUser($filePath); + + $util = new Util($view, $userId); list($owner, $filename) = $util->getUidAndFilename($filePath); diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index 4ec810a51996e817cca39324e8a9bbf0ec4fe6c5..4e71ab1dd5dedee81c5ed825f495e7c090b9445e 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -37,8 +37,7 @@ namespace OCA\Encryption; class Proxy extends \OC_FileProxy { private static $blackList = null; //mimetypes blacklisted from encryption - - private static $enableEncryption = null; + private static $unencryptedSizes = array(); // remember unencrypted size /** * Check if a file requires encryption @@ -49,46 +48,25 @@ class Proxy extends \OC_FileProxy { */ private static function shouldEncrypt($path) { - if (is_null(self::$enableEncryption)) { - if ( - \OCP\App::isEnabled('files_encryption') === true - && Crypt::mode() === 'server' - ) { - - self::$enableEncryption = true; - - } else { - - self::$enableEncryption = false; - - } - - } - - if (!self::$enableEncryption) { + $userId = Helper::getUser($path); + if (\OCP\App::isEnabled('files_encryption') === false || Crypt::mode() !== 'server' || + strpos($path, '/' . $userId . '/files') !== 0) { return false; - } if (is_null(self::$blackList)) { - self::$blackList = explode(',', \OCP\Config::getAppValue('files_encryption', 'type_blacklist', '')); - } if (Crypt::isCatfileContent($path)) { - return true; - } $extension = substr($path, strrpos($path, '.') + 1); if (array_search($extension, self::$blackList) === false) { - return true; - } return false; @@ -115,7 +93,13 @@ class Proxy extends \OC_FileProxy { return true; } - $handle = fopen('crypt://' . $path . '.etmp', 'w'); + // create random cache folder + $cacheFolder = rand(); + $path_slices = explode('/', \OC_Filesystem::normalizePath($path)); + $path_slices[2] = "cache/".$cacheFolder; + $tmpPath = implode('/', $path_slices); + + $handle = fopen('crypt://' . $tmpPath, 'w'); if (is_resource($handle)) { // write data to stream @@ -129,10 +113,17 @@ class Proxy extends \OC_FileProxy { \OC_FileProxy::$enabled = false; // get encrypted content - $data = $view->file_get_contents($path . '.etmp'); + $data = $view->file_get_contents($tmpPath); + + // store new unenecrypted size so that it can be updated + // in the post proxy + $tmpFileInfo = $view->getFileInfo($tmpPath); + if ( isset($tmpFileInfo['size']) ) { + self::$unencryptedSizes[\OC_Filesystem::normalizePath($path)] = $tmpFileInfo['size']; + } // remove our temp file - $view->unlink($path . '.etmp'); + $view->deleteAll('/' . \OCP\User::getUser() . '/cache/' . $cacheFolder); // re-enable proxy - our work is done \OC_FileProxy::$enabled = $proxyStatus; @@ -144,6 +135,24 @@ class Proxy extends \OC_FileProxy { } + /** + * @brief update file cache with the new unencrypted size after file was written + * @param string $path + * @param mixed $result + * @return mixed + */ + public function postFile_put_contents($path, $result) { + $normalizedPath = \OC_Filesystem::normalizePath($path); + if ( isset(self::$unencryptedSizes[$normalizedPath]) ) { + $view = new \OC_FilesystemView('/'); + $view->putFileInfo($normalizedPath, + array('encrypted' => true, 'encrypted_size' => self::$unencryptedSizes[$normalizedPath])); + unset(self::$unencryptedSizes[$normalizedPath]); + } + + return $result; + } + /** * @param string $path Path of file from which has been read * @param string $data Data that has been read from file @@ -199,8 +208,11 @@ class Proxy extends \OC_FileProxy { */ public function preUnlink($path) { - // let the trashbin handle this - if (\OCP\App::isEnabled('files_trashbin')) { + $relPath = Helper::stripUserFilesPath($path); + + // skip this method if the trash bin is enabled or if we delete a file + // outside of /data/user/files + if (\OCP\App::isEnabled('files_trashbin') || $relPath === false) { return true; } @@ -214,13 +226,10 @@ class Proxy extends \OC_FileProxy { $util = new Util($view, $userId); - // get relative path - $relativePath = \OCA\Encryption\Helper::stripUserFilesPath($path); - - list($owner, $ownerPath) = $util->getUidAndFilename($relativePath); + list($owner, $ownerPath) = $util->getUidAndFilename($relPath); // Delete keyfile & shareKey so it isn't orphaned - if (!Keymanager::deleteFileKey($view, $owner, $ownerPath)) { + if (!Keymanager::deleteFileKey($view, $ownerPath)) { \OCP\Util::writeLog('Encryption library', 'Keyfile or shareKey could not be deleted for file "' . $ownerPath . '"', \OCP\Util::ERROR); } @@ -263,11 +272,8 @@ class Proxy extends \OC_FileProxy { // split the path parts $pathParts = explode('/', $path); - // get relative path - $relativePath = \OCA\Encryption\Helper::stripUserFilesPath($path); - - // FIXME: handling for /userId/cache used by webdav for chunking. The cache chunks are NOT encrypted - if (isset($pathParts[2]) && $pathParts[2] === 'cache') { + // don't try to encrypt/decrypt cache chunks or files in the trash bin + if (isset($pathParts[2]) && ($pathParts[2] === 'cache' || $pathParts[2] === 'files_trashbin')) { return $result; } @@ -279,7 +285,8 @@ class Proxy extends \OC_FileProxy { $view = new \OC_FilesystemView(''); - $util = new Util($view, \OCP\USER::getUser()); + $userId = Helper::getUser($path); + $util = new Util($view, $userId); // If file is already encrypted, decrypt using crypto protocol if ( @@ -317,7 +324,7 @@ class Proxy extends \OC_FileProxy { public function postGetFileInfo($path, $data) { // if path is a folder do nothing - if (is_array($data) && array_key_exists('size', $data)) { + if (\OCP\App::isEnabled('files_encryption') && is_array($data) && array_key_exists('size', $data)) { // Disable encryption proxy to prevent recursive calls $proxyStatus = \OC_FileProxy::$enabled; @@ -342,6 +349,16 @@ class Proxy extends \OC_FileProxy { $view = new \OC_FilesystemView('/'); + $userId = Helper::getUser($path); + $util = new Util($view, $userId); + + // if encryption is no longer enabled or if the files aren't migrated yet + // we return the default file size + if(!\OCP\App::isEnabled('files_encryption') || + $util->getMigrationStatus() !== Util::MIGRATION_COMPLETED) { + return $size; + } + // if path is a folder do nothing if ($view->is_dir($path)) { return $size; @@ -357,12 +374,24 @@ class Proxy extends \OC_FileProxy { $fileInfo = false; // get file info from database/cache if not .part file - if (!Keymanager::isPartialFilePath($path)) { + if (!Helper::isPartialFilePath($path)) { + $proxyState = \OC_FileProxy::$enabled; + \OC_FileProxy::$enabled = false; $fileInfo = $view->getFileInfo($path); + \OC_FileProxy::$enabled = $proxyState; } // if file is encrypted return real file size if (is_array($fileInfo) && $fileInfo['encrypted'] === true) { + // try to fix unencrypted file size if it doesn't look plausible + if ((int)$fileInfo['size'] > 0 && (int)$fileInfo['unencrypted_size'] === 0 ) { + $fixSize = $util->getFileSize($path); + $fileInfo['unencrypted_size'] = $fixSize; + // put file info if not .part file + if (!Helper::isPartialFilePath($relativePath)) { + $view->putFileInfo($path, $fileInfo); + } + } $size = $fileInfo['unencrypted_size']; } else { // self healing if file was removed from file cache @@ -370,8 +399,6 @@ class Proxy extends \OC_FileProxy { $fileInfo = array(); } - $userId = \OCP\User::getUser(); - $util = new Util($view, $userId); $fixSize = $util->getFileSize($path); if ($fixSize > 0) { $size = $fixSize; @@ -380,7 +407,7 @@ class Proxy extends \OC_FileProxy { $fileInfo['unencrypted_size'] = $size; // put file info if not .part file - if (!Keymanager::isPartialFilePath($relativePath)) { + if (!Helper::isPartialFilePath($relativePath)) { $view->putFileInfo($path, $fileInfo); } } @@ -400,7 +427,7 @@ class Proxy extends \OC_FileProxy { $view = new \OC_FilesystemView('/'); $session = new \OCA\Encryption\Session($view); - $userId = \OCP\User::getUser(); + $userId = Helper::getUser($path); $util = new Util($view, $userId); // split the path parts diff --git a/apps/files_encryption/lib/session.php b/apps/files_encryption/lib/session.php index 1911386cd12f06832d2406071a4092942191c7d7..25f2198181f3db0baddd7924db9c5806da10179e 100644 --- a/apps/files_encryption/lib/session.php +++ b/apps/files_encryption/lib/session.php @@ -30,6 +30,11 @@ class Session { private $view; + const NOT_INITIALIZED = '0'; + const INIT_EXECUTED = '1'; + const INIT_SUCCESSFUL = '2'; + + /** * @brief if session is started, check if ownCloud key pair is set up, if not create it * @param \OC_FilesystemView $view @@ -112,6 +117,36 @@ class Session { } + /** + * @brief Sets status of encryption app + * @param string $init INIT_SUCCESSFUL, INIT_EXECUTED, NOT_INOITIALIZED + * @return bool + * + * @note this doesn not indicate of the init was successful, we just remeber the try! + */ + public function setInitialized($init) { + + \OC::$session->set('encryptionInitialized', $init); + + return true; + + } + + + /** + * @brief Gets status if we already tried to initialize the encryption app + * @returns init status INIT_SUCCESSFUL, INIT_EXECUTED, NOT_INOITIALIZED + * + * @note this doesn not indicate of the init was successful, we just remeber the try! + */ + public function getInitialized() { + if (!is_null(\OC::$session->get('encryptionInitialized'))) { + return \OC::$session->get('encryptionInitialized'); + } else { + return self::NOT_INITIALIZED; + } + } + /** * @brief Gets user or public share private key from session * @returns string $privateKey The user's plaintext private key diff --git a/apps/files_encryption/lib/stream.php b/apps/files_encryption/lib/stream.php index 083b33c03cbf2be40e674a8e509c3d5743975fb7..b3bf34ddb827b6e509a172b96059e60e3b1f418b 100644 --- a/apps/files_encryption/lib/stream.php +++ b/apps/files_encryption/lib/stream.php @@ -55,6 +55,7 @@ class Stream { private $rawPath; // The raw path relative to the data dir private $relPath; // rel path to users file dir private $userId; + private $keyId; private $handle; // Resource returned by fopen private $meta = array(); // Header / meta for source stream private $writeCache; @@ -63,10 +64,14 @@ class Stream { private $publicKey; private $encKeyfile; private $newFile; // helper var, we only need to write the keyfile for new files + private $isLocalTmpFile = false; // do we operate on a local tmp file + private $localTmpFile; // path of local tmp file + /** * @var \OC\Files\View */ private $rootView; // a fsview object set to '/' + /** * @var \OCA\Encryption\Session */ @@ -91,14 +96,24 @@ class Stream { $this->session = new \OCA\Encryption\Session($this->rootView); - $this->privateKey = $this->session->getPrivateKey($this->userId); + $this->privateKey = $this->session->getPrivateKey(); + + $normalizedPath = \OC\Files\Filesystem::normalizePath(str_replace('crypt://', '', $path)); + if ($originalFile = Helper::getPathFromTmpFile($normalizedPath)) { + $this->rawPath = $originalFile; + $this->isLocalTmpFile = true; + $this->localTmpFile = $normalizedPath; + } else { + $this->rawPath = $normalizedPath; + } - $util = new Util($this->rootView, \OCP\USER::getUser()); + $this->userId = Helper::getUser($this->rawPath); - $this->userId = $util->getUserId(); + $util = new Util($this->rootView, $this->userId); - // rawPath is relative to the data directory - $this->rawPath = \OC\Files\Filesystem::normalizePath(str_replace('crypt://', '', $path)); + // get the key ID which we want to use, can be the users key or the + // public share key + $this->keyId = $util->getKeyId(); // Strip identifier text from path, this gives us the path relative to data//files $this->relPath = Helper::stripUserFilesPath($this->rawPath); @@ -108,7 +123,7 @@ class Stream { } if($this->relPath === false) { - \OCP\Util::writeLog('Encryption library', 'failed to open file "' . $this->rawPath . '" expecting a path to user/files or to user/files_versions', \OCP\Util::ERROR); + \OCP\Util::writeLog('Encryption library', 'failed to open file "' . $this->rawPath . '" expecting a path to "files", "files_versions" or "cache"', \OCP\Util::ERROR); return false; } @@ -131,13 +146,17 @@ class Stream { if($this->privateKey === false) { // if private key is not valid redirect user to a error page - \OCA\Encryption\Helper::redirectToErrorPage(); + \OCA\Encryption\Helper::redirectToErrorPage($this->session); } - $this->size = $this->rootView->filesize($this->rawPath, $mode); + $this->size = $this->rootView->filesize($this->rawPath); } - $this->handle = $this->rootView->fopen($this->rawPath, $mode); + if ($this->isLocalTmpFile) { + $this->handle = fopen($this->localTmpFile, $mode); + } else { + $this->handle = $this->rootView->fopen($this->rawPath, $mode); + } \OC_FileProxy::$enabled = $proxyStatus; @@ -156,15 +175,26 @@ class Stream { } + /** + * @brief Returns the current position of the file pointer + * @return int position of the file pointer + */ + public function stream_tell() { + return ftell($this->handle); + } + /** * @param $offset * @param int $whence + * @return bool true if fseek was successful, otherwise false */ public function stream_seek($offset, $whence = SEEK_SET) { $this->flush(); - fseek($this->handle, $offset, $whence); + // this wrapper needs to return "true" for success. + // the fseek call itself returns 0 on succeess + return !fseek($this->handle, $offset, $whence); } @@ -249,21 +279,26 @@ class Stream { // Fetch and decrypt keyfile // Fetch existing keyfile - $this->encKeyfile = Keymanager::getFileKey($this->rootView, $this->userId, $this->relPath); + $util = new \OCA\Encryption\Util($this->rootView, $this->userId); + $this->encKeyfile = Keymanager::getFileKey($this->rootView, $util, $this->relPath); // If a keyfile already exists if ($this->encKeyfile) { + $shareKey = Keymanager::getShareKey($this->rootView, $this->keyId, $util, $this->relPath); + // if there is no valid private key return false if ($this->privateKey === false) { - // if private key is not valid redirect user to a error page - \OCA\Encryption\Helper::redirectToErrorPage(); - + \OCA\Encryption\Helper::redirectToErrorPage($this->session); return false; } - $shareKey = Keymanager::getShareKey($this->rootView, $this->userId, $this->relPath); + if ($shareKey === false) { + // if no share key is available redirect user to a error page + \OCA\Encryption\Helper::redirectToErrorPage($this->session, \OCA\Encryption\Crypt::ENCRYPTION_NO_SHARE_KEY_FOUND); + return false; + } $this->plainKey = Crypt::multiKeyDecrypt($this->encKeyfile, $shareKey, $this->privateKey); @@ -465,7 +500,7 @@ class Stream { if ($this->privateKey === false) { // cleanup - if ($this->meta['mode'] !== 'r' && $this->meta['mode'] !== 'rb') { + if ($this->meta['mode'] !== 'r' && $this->meta['mode'] !== 'rb' && !$this->isLocalTmpFile) { // Disable encryption proxy to prevent recursive calls $proxyStatus = \OC_FileProxy::$enabled; @@ -480,13 +515,15 @@ class Stream { } // if private key is not valid redirect user to a error page - \OCA\Encryption\Helper::redirectToErrorPage(); + \OCA\Encryption\Helper::redirectToErrorPage($this->session); } if ( $this->meta['mode'] !== 'r' && $this->meta['mode'] !== 'rb' && - $this->size > 0 + $this->isLocalTmpFile === false && + $this->size > 0 && + $this->unencryptedSize > 0 ) { // only write keyfiles if it was a new file @@ -497,7 +534,7 @@ class Stream { \OC_FileProxy::$enabled = false; // Fetch user's public key - $this->publicKey = Keymanager::getPublicKey($this->rootView, $this->userId); + $this->publicKey = Keymanager::getPublicKey($this->rootView, $this->keyId); // Check if OC sharing api is enabled $sharingEnabled = \OCP\Share::isEnabled(); @@ -506,37 +543,40 @@ class Stream { // Get all users sharing the file includes current user $uniqueUserIds = $util->getSharingUsersArray($sharingEnabled, $this->relPath, $this->userId); + $checkedUserIds = $util->filterShareReadyUsers($uniqueUserIds); // Fetch public keys for all sharing users - $publicKeys = Keymanager::getPublicKeys($this->rootView, $uniqueUserIds); + $publicKeys = Keymanager::getPublicKeys($this->rootView, $checkedUserIds['ready']); // Encrypt enc key for all sharing users $this->encKeyfiles = Crypt::multiKeyEncrypt($this->plainKey, $publicKeys); // Save the new encrypted file key - Keymanager::setFileKey($this->rootView, $this->relPath, $this->userId, $this->encKeyfiles['data']); + Keymanager::setFileKey($this->rootView, $util, $this->relPath, $this->encKeyfiles['data']); // Save the sharekeys - Keymanager::setShareKeys($this->rootView, $this->relPath, $this->encKeyfiles['keys']); + Keymanager::setShareKeys($this->rootView, $util, $this->relPath, $this->encKeyfiles['keys']); // Re-enable proxy - our work is done \OC_FileProxy::$enabled = $proxyStatus; } + // we need to update the file info for the real file, not for the + // part file. + $path = Helper::stripPartialFileExtension($this->rawPath); + // get file info - $fileInfo = $this->rootView->getFileInfo($this->rawPath); - if (!is_array($fileInfo)) { - $fileInfo = array(); + $fileInfo = $this->rootView->getFileInfo($path); + if (is_array($fileInfo)) { + // set encryption data + $fileInfo['encrypted'] = true; + $fileInfo['size'] = $this->size; + $fileInfo['unencrypted_size'] = $this->unencryptedSize; + + // set fileinfo + $this->rootView->putFileInfo($path, $fileInfo); } - // set encryption data - $fileInfo['encrypted'] = true; - $fileInfo['size'] = $this->size; - $fileInfo['unencrypted_size'] = $this->unencryptedSize; - - // set fileinfo - $this->rootView->putFileInfo($this->rawPath, $fileInfo); - } return fclose($this->handle); diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index df4d35cab0b42076108403b380e0249425f13e33..8816d4d649a55ca7f834502613f3aa653a96e586 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -2,9 +2,10 @@ /** * ownCloud * - * @author Sam Tuke, Frank Karlitschek + * @author Sam Tuke, Frank Karlitschek, Bjoern Schiessle * @copyright 2012 Sam Tuke , - * Frank Karlitschek + * Frank Karlitschek , + * Bjoern Schiessle * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE @@ -37,9 +38,9 @@ class Util { const MIGRATION_IN_PROGRESS = -1; // migration is running const MIGRATION_OPEN = 0; // user still needs to be migrated - private $view; // OC_FilesystemView object for filesystem operations - private $userId; // ID of the currently logged-in user + private $userId; // ID of the user we use to encrypt/decrypt files + private $keyId; // ID of the key we want to manipulate private $client; // Client side encryption mode flag private $publicKeyDir; // Dir containing all public user keys private $encryptionDir; // Dir containing user's files_encryption @@ -59,47 +60,33 @@ class Util { public function __construct(\OC_FilesystemView $view, $userId, $client = false) { $this->view = $view; - $this->userId = $userId; $this->client = $client; - $this->isPublic = false; + $this->userId = $userId; $this->publicShareKeyId = \OC_Appconfig::getValue('files_encryption', 'publicShareKeyId'); $this->recoveryKeyId = \OC_Appconfig::getValue('files_encryption', 'recoveryKeyId'); - // if we are anonymous/public - if (\OCA\Encryption\Helper::isPublicAccess()) { - $this->userId = $this->publicShareKeyId; - - // only handle for files_sharing app - if (isset($GLOBALS['app']) && $GLOBALS['app'] === 'files_sharing') { - $this->userDir = '/' . $GLOBALS['fileOwner']; - $this->fileFolderName = 'files'; - $this->userFilesDir = '/' . $GLOBALS['fileOwner'] . '/' - . $this->fileFolderName; // TODO: Does this need to be user configurable? - $this->publicKeyDir = '/' . 'public-keys'; - $this->encryptionDir = '/' . $GLOBALS['fileOwner'] . '/' . 'files_encryption'; - $this->keyfilesPath = $this->encryptionDir . '/' . 'keyfiles'; - $this->shareKeysPath = $this->encryptionDir . '/' . 'share-keys'; - $this->publicKeyPath = - $this->publicKeyDir . '/' . $this->userId . '.public.key'; // e.g. data/public-keys/admin.public.key - $this->privateKeyPath = - '/owncloud_private_key/' . $this->userId . '.private.key'; // e.g. data/admin/admin.private.key - $this->isPublic = true; - } - - } else { - $this->userDir = '/' . $this->userId; - $this->fileFolderName = 'files'; - $this->userFilesDir = - '/' . $this->userId . '/' . $this->fileFolderName; // TODO: Does this need to be user configurable? - $this->publicKeyDir = '/' . 'public-keys'; - $this->encryptionDir = '/' . $this->userId . '/' . 'files_encryption'; - $this->keyfilesPath = $this->encryptionDir . '/' . 'keyfiles'; - $this->shareKeysPath = $this->encryptionDir . '/' . 'share-keys'; - $this->publicKeyPath = + $this->userDir = '/' . $this->userId; + $this->fileFolderName = 'files'; + $this->userFilesDir = + '/' . $userId . '/' . $this->fileFolderName; // TODO: Does this need to be user configurable? + $this->publicKeyDir = '/' . 'public-keys'; + $this->encryptionDir = '/' . $this->userId . '/' . 'files_encryption'; + $this->keyfilesPath = $this->encryptionDir . '/' . 'keyfiles'; + $this->shareKeysPath = $this->encryptionDir . '/' . 'share-keys'; + $this->publicKeyPath = $this->publicKeyDir . '/' . $this->userId . '.public.key'; // e.g. data/public-keys/admin.public.key - $this->privateKeyPath = + $this->privateKeyPath = $this->encryptionDir . '/' . $this->userId . '.private.key'; // e.g. data/admin/admin.private.key + // make sure that the owners home is mounted + \OC\Files\Filesystem::initMountPoints($userId); + + if (\OCA\Encryption\Helper::isPublicAccess()) { + $this->keyId = $this->publicShareKeyId; + $this->isPublic = true; + } else { + $this->keyId = $this->userId; + $this->isPublic = false; } } @@ -115,15 +102,24 @@ class Util { or !$this->view->file_exists($this->publicKeyPath) or !$this->view->file_exists($this->privateKeyPath) ) { - return false; - } else { - return true; - } + } + /** + * @brief check if the users private & public key exists + * @return boolean + */ + public function userKeysExists() { + if ( + $this->view->file_exists($this->privateKeyPath) && + $this->view->file_exists($this->publicKeyPath)) { + return true; + } else { + return false; + } } /** @@ -185,13 +181,13 @@ class Util { // check if public-key exists but private-key is missing if ($this->view->file_exists($this->publicKeyPath) && !$this->view->file_exists($this->privateKeyPath)) { \OCP\Util::writeLog('Encryption library', - 'public key exists but private key is missing for "' . $this->userId . '"', \OCP\Util::FATAL); + 'public key exists but private key is missing for "' . $this->keyId . '"', \OCP\Util::FATAL); return false; } else { if (!$this->view->file_exists($this->publicKeyPath) && $this->view->file_exists($this->privateKeyPath) ) { \OCP\Util::writeLog('Encryption library', - 'private key exists but public key is missing for "' . $this->userId . '"', \OCP\Util::FATAL); + 'private key exists but public key is missing for "' . $this->keyId . '"', \OCP\Util::FATAL); return false; } } @@ -206,7 +202,7 @@ class Util { $this->userId, 'server-side', 0, - 0 + self::MIGRATION_OPEN ); $query = \OCP\DB::prepare($sql); $query->execute($args); @@ -246,11 +242,9 @@ class Util { if (\OCP\DB::isError($result)) { \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); } else { - if ($result->numRows() > 0) { - $row = $result->fetchRow(); - if (isset($row['recovery_enabled'])) { - $recoveryEnabled[] = $row['recovery_enabled']; - } + $row = $result->fetchRow(); + if ($row && isset($row['recovery_enabled'])) { + $recoveryEnabled[] = $row['recovery_enabled']; } } @@ -294,7 +288,7 @@ class Util { $sql = 'UPDATE `*PREFIX*encryption` SET `recovery_enabled` = ? WHERE `uid` = ?'; $args = array( - $enabled, + $enabled ? '1' : '0', $this->userId ); @@ -364,7 +358,7 @@ class Util { // scanning every file like this // will eat server resources :( if ( - Keymanager::getFileKey($this->view, $this->userId, $relPath) + Keymanager::getFileKey($this->view, $this, $relPath) && $isEncryptedPath ) { @@ -419,49 +413,6 @@ class Util { } - /** - * @brief Fetch the last lines of a file efficiently - * @note Safe to use on large files; does not read entire file to memory - * @note Derivative of http://tekkie.flashbit.net/php/tail-functionality-in-php - */ - public function tail($filename, $numLines) { - - \OC_FileProxy::$enabled = false; - - $text = ''; - $pos = -1; - $handle = $this->view->fopen($filename, 'r'); - - while ($numLines > 0) { - - --$pos; - - if (fseek($handle, $pos, SEEK_END) !== 0) { - - rewind($handle); - $numLines = 0; - - } elseif (fgetc($handle) === "\n") { - - --$numLines; - - } - - $block_size = (-$pos) % 8192; - if ($block_size === 0 || $numLines === 0) { - - $text = fread($handle, ($block_size === 0 ? 8192 : $block_size)) . $text; - - } - } - - fclose($handle); - - \OC_FileProxy::$enabled = true; - - return $text; - } - /** * @brief Check if a given path identifies an encrypted file * @param string $path @@ -477,15 +428,28 @@ class Util { // we only need 24 byte from the last chunk $data = ''; $handle = $this->view->fopen($path, 'r'); - if (is_resource($handle) && !fseek($handle, -24, SEEK_END)) { - $data = fgets($handle); + if (is_resource($handle)) { + // suppress fseek warining, we handle the case that fseek doesn't + // work in the else branch + if (@fseek($handle, -24, SEEK_END) === 0) { + $data = fgets($handle); + } else { + // if fseek failed on the storage we create a local copy from the file + // and read this one + fclose($handle); + $localFile = $this->view->getLocalFile($path); + $handle = fopen($localFile, 'r'); + if (is_resource($handle) && fseek($handle, -24, SEEK_END) === 0) { + $data = fgets($handle); + } + } + fclose($handle); } // re-enable proxy \OC_FileProxy::$enabled = $proxyStatus; return Crypt::isCatfileContent($data); - } /** @@ -509,11 +473,18 @@ class Util { ) { // get the size from filesystem - $fullPath = $this->view->getLocalFile($path); $size = $this->view->filesize($path); + // fast path, else the calculation for $lastChunkNr is bogus + if ($size === 0) { + \OC_FileProxy::$enabled = $proxyStatus; + return 0; + } + // calculate last chunk nr - $lastChunkNr = floor($size / 8192); + // next highest is end of chunks, one subtracted is last one + // we have to read the last chunk, we can't just calculate it (because of padding etc) + $lastChunkNr = ceil($size/ 8192) - 1; $lastChunkSize = $size - ($lastChunkNr * 8192); // open stream @@ -524,7 +495,20 @@ class Util { $lastChunckPos = ($lastChunkNr * 8192); // seek to end - fseek($stream, $lastChunckPos); + if (@fseek($stream, $lastChunckPos) === -1) { + // storage doesn't support fseek, we need a local copy + fclose($stream); + $localFile = $this->view->getLocalFile($path); + Helper::addTmpFileToMapper($localFile, $path); + $stream = fopen('crypt://' . $localFile, "r"); + if (fseek($stream, $lastChunckPos) === -1) { + // if fseek also fails on the local storage, than + // there is nothing we can do + fclose($stream); + \OCP\Util::writeLog('Encryption library', 'couldn\'t determine size of "' . $path, \OCP\Util::ERROR); + return $result; + } + } // get the content of the last chunk $lastChunkContent = fread($stream, $lastChunkSize); @@ -711,17 +695,17 @@ class Util { // Encrypt unencrypted files foreach ($found['encrypted'] as $encryptedFile) { - //get file info - $fileInfo = \OC\Files\Filesystem::getFileInfo($encryptedFile['path']); - //relative to data//file $relPath = Helper::stripUserFilesPath($encryptedFile['path']); + //get file info + $fileInfo = \OC\Files\Filesystem::getFileInfo($relPath); + //relative to /data $rawPath = $encryptedFile['path']; //get timestamp - $timestamp = $this->view->filemtime($rawPath); + $timestamp = $fileInfo['mtime']; //enable proxy to use OC\Files\View to access the original file \OC_FileProxy::$enabled = true; @@ -762,16 +746,16 @@ class Util { $this->view->rename($relPath . '.part', $relPath); - $this->view->chroot($fakeRoot); - //set timestamp - $this->view->touch($rawPath, $timestamp); + $this->view->touch($relPath, $timestamp); + + $this->view->chroot($fakeRoot); // Add the file to the cache \OC\Files\Filesystem::putFileInfo($relPath, array( 'encrypted' => false, 'size' => $size, - 'unencrypted_size' => $size, + 'unencrypted_size' => 0, 'etag' => $fileInfo['etag'] )); @@ -833,7 +817,7 @@ class Util { $rawPath = '/' . $this->userId . '/files/' . $plainFile['path']; // keep timestamp - $timestamp = $this->view->filemtime($rawPath); + $timestamp = $fileInfo['mtime']; // Open plain file handle for binary reading $plainHandle = $this->view->fopen($rawPath, 'rb'); @@ -841,32 +825,35 @@ class Util { // Open enc file handle for binary writing, with same filename as original plain file $encHandle = fopen('crypt://' . $rawPath . '.part', 'wb'); - // Move plain file to a temporary location - $size = stream_copy_to_stream($plainHandle, $encHandle); + if (is_resource($encHandle)) { + // Move plain file to a temporary location + $size = stream_copy_to_stream($plainHandle, $encHandle); - fclose($encHandle); - fclose($plainHandle); + fclose($encHandle); + fclose($plainHandle); - $fakeRoot = $this->view->getRoot(); - $this->view->chroot('/' . $this->userId . '/files'); + $fakeRoot = $this->view->getRoot(); + $this->view->chroot('/' . $this->userId . '/files'); - $this->view->rename($relPath . '.part', $relPath); + $this->view->rename($relPath . '.part', $relPath); - $this->view->chroot($fakeRoot); + // set timestamp + $this->view->touch($relPath, $timestamp); - // set timestamp - $this->view->touch($rawPath, $timestamp); + $encSize = $this->view->filesize($relPath); - // Add the file to the cache - \OC\Files\Filesystem::putFileInfo($relPath, array( - 'encrypted' => true, - 'size' => $size, - 'unencrypted_size' => $size, - 'etag' => $fileInfo['etag'] - )); + $this->view->chroot($fakeRoot); - $encryptedFiles[] = $relPath; + // Add the file to the cache + \OC\Files\Filesystem::putFileInfo($relPath, array( + 'encrypted' => true, + 'size' => $encSize, + 'unencrypted_size' => $size, + 'etag' => $fileInfo['etag'] + )); + $encryptedFiles[] = $relPath; + } } // Encrypt legacy encrypted files @@ -983,8 +970,8 @@ class Util { if (\OCP\DB::isError($result)) { \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); } else { - if ($result->numRows() > 0) { - $row = $result->fetchRow(); + $row = $result->fetchRow(); + if ($row) { $path = substr($row['path'], strlen('files')); } } @@ -1049,10 +1036,10 @@ class Util { private function decryptKeyfile($filePath, $privateKey) { // Get the encrypted keyfile - $encKeyfile = Keymanager::getFileKey($this->view, $this->userId, $filePath); + $encKeyfile = Keymanager::getFileKey($this->view, $this, $filePath); // The file has a shareKey and must use it for decryption - $shareKey = Keymanager::getShareKey($this->view, $this->userId, $filePath); + $shareKey = Keymanager::getShareKey($this->view, $this->keyId, $this, $filePath); $plainKeyfile = Crypt::multiKeyDecrypt($encKeyfile, $shareKey, $privateKey); @@ -1103,8 +1090,8 @@ class Util { // Save the recrypted key to it's owner's keyfiles directory // Save new sharekeys to all necessary user directory if ( - !Keymanager::setFileKey($this->view, $filePath, $fileOwner, $multiEncKey['data']) - || !Keymanager::setShareKeys($this->view, $filePath, $multiEncKey['keys']) + !Keymanager::setFileKey($this->view, $this, $filePath, $multiEncKey['data']) + || !Keymanager::setShareKeys($this->view, $this, $filePath, $multiEncKey['keys']) ) { \OCP\Util::writeLog('Encryption library', @@ -1139,10 +1126,7 @@ class Util { // Make sure that a share key is generated for the owner too list($owner, $ownerPath) = $this->getUidAndFilename($filePath); - $pathinfo = pathinfo($ownerPath); - if(array_key_exists('extension', $pathinfo) && $pathinfo['extension'] === 'part') { - $ownerPath = $pathinfo['dirname'] . '/' . $pathinfo['filename']; - } + $ownerPath = \OCA\Encryption\Helper::stripPartialFileExtension($ownerPath); $userIds = array(); if ($sharingEnabled) { @@ -1258,7 +1242,6 @@ class Util { $sql = 'SELECT `migration_status` FROM `*PREFIX*encryption` WHERE `uid` = ?'; $args = array($this->userId); - $query = \OCP\DB::prepare($sql); $result = $query->execute($args); @@ -1268,20 +1251,32 @@ class Util { if (\OCP\DB::isError($result)) { \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); } else { - if ($result->numRows() > 0) { - $row = $result->fetchRow(); - if (isset($row['migration_status'])) { - $migrationStatus[] = $row['migration_status']; - } + $row = $result->fetchRow(); + if ($row && isset($row['migration_status'])) { + $migrationStatus[] = $row['migration_status']; } } // If no record is found if (empty($migrationStatus)) { \OCP\Util::writeLog('Encryption library', "Could not get migration status for " . $this->userId . ", no record found", \OCP\Util::ERROR); - return false; - // If a record is found - } else { + // insert missing entry in DB with status open if the user exists + if (\OCP\User::userExists($this->userId)) { + $sql = 'INSERT INTO `*PREFIX*encryption` (`uid`,`mode`,`recovery_enabled`,`migration_status`) VALUES (?,?,?,?)'; + $args = array( + $this->userId, + 'server-side', + 0, + self::MIGRATION_OPEN + ); + $query = \OCP\DB::prepare($sql); + $query->execute($args); + + return self::MIGRATION_OPEN; + } else { + return false; + } + } else { // If a record is found return (int)$migrationStatus[0]; } @@ -1320,7 +1315,7 @@ class Util { // handle public access if ($this->isPublic) { $filename = $path; - $fileOwnerUid = $GLOBALS['fileOwner']; + $fileOwnerUid = $this->userId; return array( $fileOwnerUid, @@ -1366,59 +1361,32 @@ class Util { } } - /** * @brief go recursively through a dir and collect all files and sub files. * @param string $dir relative to the users files folder * @return array with list of files relative to the users files folder */ public function getAllFiles($dir) { - $result = array(); + $dirList = array($dir); - $content = $this->view->getDirectoryContent(\OC\Files\Filesystem::normalizePath( - $this->userFilesDir . '/' . $dir)); - - // handling for re shared folders - $pathSplit = explode('/', $dir); - - foreach ($content as $c) { - - $sharedPart = $pathSplit[sizeof($pathSplit) - 1]; - $targetPathSplit = array_reverse(explode('/', $c['path'])); - - $path = ''; - - // rebuild path - foreach ($targetPathSplit as $pathPart) { - - if ($pathPart !== $sharedPart) { - - $path = '/' . $pathPart . $path; + while ($dirList) { + $dir = array_pop($dirList); + $content = $this->view->getDirectoryContent(\OC\Files\Filesystem::normalizePath( + $this->userFilesDir . '/' . $dir)); + foreach ($content as $c) { + $usersPath = isset($c['usersPath']) ? $c['usersPath'] : $c['path']; + if ($c['type'] === 'dir') { + $dirList[] = substr($usersPath, strlen("files")); } else { - - break; - + $result[] = substr($usersPath, strlen("files")); } - } - $path = $dir . $path; - - if ($c['type'] === 'dir') { - - $result = array_merge($result, $this->getAllFiles($path)); - - } else { - - $result[] = $path; - - } } return $result; - } /** @@ -1438,9 +1406,7 @@ class Util { if (\OCP\DB::isError($result)) { \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); } else { - if ($result->numRows() > 0) { - $row = $result->fetchRow(); - } + $row = $result->fetchRow(); } return $row; @@ -1464,9 +1430,7 @@ class Util { if (\OCP\DB::isError($result)) { \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); } else { - if ($result->numRows() > 0) { - $row = $result->fetchRow(); - } + $row = $result->fetchRow(); } return $row; @@ -1485,18 +1449,16 @@ class Util { $result = $query->execute(array($id)); - $source = array(); + $source = null; if (\OCP\DB::isError($result)) { \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); } else { - if ($result->numRows() > 0) { - $source = $result->fetchRow(); - } + $source = $result->fetchRow(); } $fileOwner = false; - if (isset($source['parent'])) { + if ($source && isset($source['parent'])) { $parent = $source['parent']; @@ -1506,16 +1468,14 @@ class Util { $result = $query->execute(array($parent)); - $item = array(); + $item = null; if (\OCP\DB::isError($result)) { \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); } else { - if ($result->numRows() > 0) { - $item = $result->fetchRow(); - } + $item = $result->fetchRow(); } - if (isset($item['parent'])) { + if ($item && isset($item['parent'])) { $parent = $item['parent']; @@ -1545,6 +1505,13 @@ class Util { return $this->userId; } + /** + * @return string + */ + public function getKeyId() { + return $this->keyId; + } + /** * @return string */ @@ -1752,6 +1719,11 @@ class Util { */ public function initEncryption($params) { + $session = new \OCA\Encryption\Session($this->view); + + // we tried to initialize the encryption app for this session + $session->setInitialized(\OCA\Encryption\Session::INIT_EXECUTED); + $encryptedKey = Keymanager::getPrivateKey($this->view, $params['uid']); $privateKey = Crypt::decryptPrivateKey($encryptedKey, $params['password']); @@ -1762,9 +1734,8 @@ class Util { return false; } - $session = new \OCA\Encryption\Session($this->view); - $session->setPrivateKey($privateKey); + $session->setInitialized(\OCA\Encryption\Session::INIT_SUCCESSFUL); return $session; } diff --git a/apps/files_encryption/settings-admin.php b/apps/files_encryption/settings-admin.php index 5367605898262f3d66b0e83a5aa9c06859fa8182..9ad9bfb88770a2fe00953bbaf27fdf5bf9223aeb 100644 --- a/apps/files_encryption/settings-admin.php +++ b/apps/files_encryption/settings-admin.php @@ -11,9 +11,7 @@ $tmpl = new OCP\Template('files_encryption', 'settings-admin'); // Check if an adminRecovery account is enabled for recovering files after lost pwd -$view = new OC_FilesystemView(''); - -$recoveryAdminEnabled = OC_Appconfig::getValue('files_encryption', 'recoveryAdminEnabled'); +$recoveryAdminEnabled = OC_Appconfig::getValue('files_encryption', 'recoveryAdminEnabled', '0'); $tmpl->assign('recoveryEnabled', $recoveryAdminEnabled); diff --git a/apps/files_encryption/settings-personal.php b/apps/files_encryption/settings-personal.php index 589219f32ada5c05fcc112140861fe535ae62ce9..ffcb99602e2f6350affd7523a8b46d0d432572fa 100644 --- a/apps/files_encryption/settings-personal.php +++ b/apps/files_encryption/settings-personal.php @@ -16,7 +16,9 @@ $view = new \OC_FilesystemView('/'); $util = new \OCA\Encryption\Util($view, $user); $session = new \OCA\Encryption\Session($view); -$privateKeySet = $session->getPrivateKey() !== false; +$privateKeySet = $session->getPrivateKey() !== false; +// did we tried to initialize the keys for this session? +$initialized = $session->getInitialized(); $recoveryAdminEnabled = OC_Appconfig::getValue('files_encryption', 'recoveryAdminEnabled'); $recoveryEnabledForUser = $util->recoveryEnabledForUser(); @@ -31,6 +33,7 @@ if ($recoveryAdminEnabled || !$privateKeySet) { $tmpl->assign('recoveryEnabled', $recoveryAdminEnabled); $tmpl->assign('recoveryEnabledForUser', $recoveryEnabledForUser); $tmpl->assign('privateKeySet', $privateKeySet); + $tmpl->assign('initialized', $initialized); $result = $tmpl->fetchPage(); } diff --git a/apps/files_encryption/templates/invalid_private_key.php b/apps/files_encryption/templates/invalid_private_key.php index 5c086d6514c1297fb80d5aaea13b9cf90ff3a5ba..a3cae60b1da5656ec542323586b6bfce84b982a4 100644 --- a/apps/files_encryption/templates/invalid_private_key.php +++ b/apps/files_encryption/templates/invalid_private_key.php @@ -2,9 +2,11 @@
  • - t('Your private key is not valid! Maybe the your password was changed from outside.')); ?> +
    - t('You can unlock your private key in your ')); ?> t('personal settings')); ?>. + + p($l->t('Go directly to your ')); ?> t('personal settings')); ?>. +
  • diff --git a/apps/files_encryption/templates/settings-admin.php b/apps/files_encryption/templates/settings-admin.php index f5f7582c2a69d141e49232f76e49e9fc14c708ac..231a68b6a587d51ed097593b60407da2d55426a1 100644 --- a/apps/files_encryption/templates/settings-admin.php +++ b/apps/files_encryption/templates/settings-admin.php @@ -1,23 +1,23 @@
    -

    - t('Encryption')); ?> -
    -

    +

    t('Encryption')); ?>

    t("Enable recovery key (allow to recover users files in case of password loss):")); ?>

    - +
    + + +
    /> + /> t("Enabled")); ?>
    @@ -25,27 +25,32 @@ type='radio' name='adminEnableRecovery' value='0' - /> + /> t("Disabled")); ?>



    -

    +

    > t("Change recovery key password:")); ?>

    /> - + id="oldEncryptionRecoveryPassword" + +
    +
    + t("New Recovery key password")); ?>
    /> - + id="repeatedNewEncryptionRecoveryPassword" +

    diff --git a/apps/files_trashbin/appinfo/info.xml b/apps/files_trashbin/appinfo/info.xml index e9cbdafc1cdc2738dced01293e85313e21dc2c1c..2cc7d9a7ac3a0fc2779f0ca32811260df2a72888 100644 --- a/apps/files_trashbin/appinfo/info.xml +++ b/apps/files_trashbin/appinfo/info.xml @@ -6,7 +6,7 @@ ownCloud keeps a copy of your deleted files in case you need them again. To make sure that the user doesn't run out of memory the deleted files app manages the size of the deleted files for the user. By default deleted files - stay in the trash bin for 180 days. ownCloud checks the age of the files + stay in the trash bin for 90 days. ownCloud checks the age of the files every time a new files gets moved to the deleted files and remove all files older than 180 days. The user can adjust this value in the config.php by setting the "trashbin_retention_obligation" value. diff --git a/apps/files_trashbin/appinfo/version b/apps/files_trashbin/appinfo/version index bd73f47072b1fe4b9914ec14a7f6d47fcc8f816a..2eb3c4fe4eebcdea3da0790cc0ba74cb286ec4f4 100644 --- a/apps/files_trashbin/appinfo/version +++ b/apps/files_trashbin/appinfo/version @@ -1 +1 @@ -0.4 +0.5 diff --git a/apps/files_trashbin/css/trash.css b/apps/files_trashbin/css/trash.css new file mode 100644 index 0000000000000000000000000000000000000000..97819f4e80b5b15fcd4e31077821075aa907af7c --- /dev/null +++ b/apps/files_trashbin/css/trash.css @@ -0,0 +1,3 @@ +#fileList td a.file, #fileList td a.file span { + cursor: default; +} diff --git a/apps/files_trashbin/download.php b/apps/files_trashbin/download.php deleted file mode 100644 index 60328e1dddbef395f01567cf0b21cc157125b951..0000000000000000000000000000000000000000 --- a/apps/files_trashbin/download.php +++ /dev/null @@ -1,51 +0,0 @@ -. -* -*/ - -// Check if we are a user -OCP\User::checkLoggedIn(); - -$filename = $_GET["file"]; - -$view = new OC_FilesystemView('/'.\OCP\User::getUser().'/files_trashbin/files'); - -if(!$view->file_exists($filename)) { - header("HTTP/1.0 404 Not Found"); - $tmpl = new OCP\Template( '', '404', 'guest' ); - $tmpl->assign('file', $filename); - $tmpl->printPage(); - exit; -} - -$ftype=$view->getMimeType( $filename ); - -header('Content-Type:'.$ftype);if ( preg_match( "/MSIE/", $_SERVER["HTTP_USER_AGENT"] ) ) { - header( 'Content-Disposition: attachment; filename="' . rawurlencode( basename($filename) ) . '"' ); -} else { - header( 'Content-Disposition: attachment; filename*=UTF-8\'\'' . rawurlencode( basename($filename) ) - . '; filename="' . rawurlencode( basename($filename) ) . '"' ); -} -OCP\Response::disableCaching(); -header('Content-Length: '. $view->filesize($filename)); - -OC_Util::obEnd(); -$view->readfile( $filename ); diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php index d8661e170a58cd69ebde886cb0fa92192969916f..93f385dd30b57054767f9fd448a85642bf881f14 100644 --- a/apps/files_trashbin/index.php +++ b/apps/files_trashbin/index.php @@ -5,16 +5,17 @@ OCP\User::checkLoggedIn(); OCP\App::setActiveNavigationEntry('files_index'); -OCP\Util::addScript('files_trashbin', 'trash'); OCP\Util::addScript('files_trashbin', 'disableDefaultActions'); OCP\Util::addScript('files', 'fileactions'); $tmpl = new OCP\Template('files_trashbin', 'index', 'user'); OCP\Util::addStyle('files', 'files'); +OCP\Util::addStyle('files_trashbin', 'trash'); OCP\Util::addScript('files', 'filelist'); // filelist overrides OCP\Util::addScript('files_trashbin', 'filelist'); OCP\Util::addscript('files', 'files'); +OCP\Util::addScript('files_trashbin', 'trash'); $dir = isset($_GET['dir']) ? stripslashes($_GET['dir']) : ''; diff --git a/apps/files_trashbin/js/filelist.js b/apps/files_trashbin/js/filelist.js index cd5a67ddfe002d502d013074b1baf496a948cbbf..f42abb6d029dc9a526713754ae89e7d8a44ccaf7 100644 --- a/apps/files_trashbin/js/filelist.js +++ b/apps/files_trashbin/js/filelist.js @@ -22,3 +22,10 @@ FileList.reload = function(){ FileList.linkTo = function(dir){ return OC.linkTo('files_trashbin', 'index.php')+"?dir="+ encodeURIComponent(dir).replace(/%2F/g, '/'); } + +FileList.updateEmptyContent = function(){ + var $fileList = $('#fileList'); + var exists = $fileList.find('tr:first').exists(); + $('#emptycontent').toggleClass('hidden', exists); + $('#filestable th').toggleClass('hidden', !exists); +} diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index d73eadb6011d40ac73797b617e4e26bb493e5c45..46d8b56308c8dfe82b1a346dbb5c6318be54b44f 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -3,15 +3,40 @@ $(document).ready(function() { if (typeof FileActions !== 'undefined') { FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/history'), function(filename) { - var tr=$('tr').filterAttr('data-file', filename); - var spinner = ''; - var undeleteAction = $('tr').filterAttr('data-file',filename).children("td.date"); - var files = tr.attr('data-file'); - undeleteAction[0].innerHTML = undeleteAction[0].innerHTML+spinner; + var tr = FileList.findFileEl(filename); + var deleteAction = tr.children("td.date").children(".action.delete"); + deleteAction.removeClass('delete-icon').addClass('progress-icon'); disableActions(); - $.post(OC.filePath('files_trashbin','ajax','undelete.php'), - {files:JSON.stringify([files]), dirlisting:tr.attr('data-dirlisting') }, - function(result){ + $.post(OC.filePath('files_trashbin', 'ajax', 'undelete.php'), + {files: JSON.stringify([$('#dir').val() + '/' + filename]), dirlisting: tr.attr('data-dirlisting')}, + function(result) { + for (var i = 0; i < result.data.success.length; i++) { + var row = document.getElementById(result.data.success[i].filename); + row.parentNode.removeChild(row); + } + if (result.status !== 'success') { + OC.dialogs.alert(result.data.message, t('core', 'Error')); + } + enableActions(); + FileList.updateFileSummary(); + FileList.updateEmptyContent(); + } + ); + + }); + }; + + FileActions.register('all', 'Delete', OC.PERMISSION_READ, function() { + return OC.imagePath('core', 'actions/delete'); + }, function(filename) { + $('.tipsy').remove(); + var tr = FileList.findFileEl(filename); + var deleteAction = tr.children("td.date").children(".action.delete"); + deleteAction.removeClass('delete-icon').addClass('progress-icon'); + disableActions(); + $.post(OC.filePath('files_trashbin', 'ajax', 'delete.php'), + {files: JSON.stringify([$('#dir').val() + '/' +filename]), dirlisting: tr.attr('data-dirlisting')}, + function(result) { for (var i = 0; i < result.data.success.length; i++) { var row = document.getElementById(result.data.success[i].filename); row.parentNode.removeChild(row); @@ -21,26 +46,40 @@ $(document).ready(function() { } enableActions(); FileList.updateFileSummary(); - }); + FileList.updateEmptyContent(); + } + ); - }); - }; + }); + + // Sets the select_all checkbox behaviour : + $('#select_all').click(function() { + if ($(this).attr('checked')) { + // Check all + $('td.filename input:checkbox').attr('checked', true); + $('td.filename input:checkbox').parent().parent().addClass('selected'); + } else { + // Uncheck all + $('td.filename input:checkbox').attr('checked', false); + $('td.filename input:checkbox').parent().parent().removeClass('selected'); + } + procesSelection(); + }); - FileActions.register('all', 'Delete', OC.PERMISSION_READ, function () { - return OC.imagePath('core', 'actions/delete'); - }, function (filename) { - $('.tipsy').remove(); + $('.undelete').click('click', function(event) { + event.preventDefault(); + var files = getSelectedFiles('file'); + var fileslist = JSON.stringify(files); + var dirlisting = getSelectedFiles('dirlisting')[0]; + disableActions(); + for (var i = 0; i < files.length; i++) { + var deleteAction = FileList.findFileEl(files[i]).children("td.date").children(".action.delete"); + deleteAction.removeClass('delete-icon').addClass('progress-icon'); + } - var tr=$('tr').filterAttr('data-file', filename); - var deleteAction = $('tr').filterAttr('data-file',filename).children("td.date").children(".action.delete"); - var oldHTML = deleteAction[0].outerHTML; - var newHTML = ''; - var files = tr.attr('data-file'); - deleteAction[0].outerHTML = newHTML; - disableActions(); - $.post(OC.filePath('files_trashbin','ajax','delete.php'), - {files:JSON.stringify([files]), dirlisting:tr.attr('data-dirlisting') }, - function(result){ + $.post(OC.filePath('files_trashbin', 'ajax', 'undelete.php'), + {files: fileslist, dirlisting: dirlisting}, + function(result) { for (var i = 0; i < result.data.success.length; i++) { var row = document.getElementById(result.data.success[i].filename); row.parentNode.removeChild(row); @@ -50,106 +89,79 @@ $(document).ready(function() { } enableActions(); FileList.updateFileSummary(); - }); - - }); - - // Sets the select_all checkbox behaviour : - $('#select_all').click(function() { - if($(this).attr('checked')){ - // Check all - $('td.filename input:checkbox').attr('checked', true); - $('td.filename input:checkbox').parent().parent().addClass('selected'); - }else{ - // Uncheck all - $('td.filename input:checkbox').attr('checked', false); - $('td.filename input:checkbox').parent().parent().removeClass('selected'); - } - processSelection(); - }); - - $('td.filename input:checkbox').live('change',function(event) { - if (event.shiftKey) { - var last = $(lastChecked).parent().parent().prevAll().length; - var first = $(this).parent().parent().prevAll().length; - var start = Math.min(first, last); - var end = Math.max(first, last); - var rows = $(this).parent().parent().parent().children('tr'); - for (var i = start; i < end; i++) { - $(rows).each(function(index) { - if (index === i) { - var checkbox = $(this).children().children('input:checkbox'); - $(checkbox).attr('checked', 'checked'); - $(checkbox).parent().parent().addClass('selected'); - } - }); + FileList.updateEmptyContent(); } - } - var selectedCount=$('td.filename input:checkbox:checked').length; - $(this).parent().parent().toggleClass('selected'); - if(!$(this).attr('checked')){ - $('#select_all').attr('checked',false); - }else{ - if(selectedCount==$('td.filename input:checkbox').length){ - $('#select_all').attr('checked',true); - } - } - processSelection(); - }); + ); + }); - $('.undelete').click('click',function(event) { - event.preventDefault(); - var spinner = ''; - var files=getSelectedFiles('file'); - var fileslist = JSON.stringify(files); - var dirlisting=getSelectedFiles('dirlisting')[0]; - disableActions(); - for (var i=0; i'; - var files=getSelectedFiles('file'); - var fileslist = JSON.stringify(files); - var dirlisting=getSelectedFiles('dirlisting')[0]; + }); - disableActions(); - for (var i=0; ispan.name').text(t('files','Name')); - $('#modified').text(t('files','Deleted')); - $('table').removeClass('multiselect'); - $('.selectedActions').hide(); - } - else { - $('.selectedActions').show(); - var selection=''; - if(selectedFolders.length>0){ - selection += n('files', '%n folder', '%n folders', selectedFolders.length); - if(selectedFiles.length>0){ - selection+=' & '; - } - } - if(selectedFiles.length>0){ - selection += n('files', '%n file', '%n files', selectedFiles.length); - } - $('#headerName>span.name').text(selection); - $('#modified').text(''); - $('table').addClass('multiselect'); - } -} - /** * @brief get a list of selected files * @param string property (option) the property of the file requested @@ -225,7 +209,7 @@ function getSelectedFiles(property){ elements.each(function(i,element){ var file={ name:$(element).attr('data-filename'), - file:$(element).attr('data-file'), + file:$('#dir').val() + "/" + $(element).attr('data-file'), timestamp:$(element).attr('data-timestamp'), type:$(element).attr('data-type'), dirlisting:$(element).attr('data-dirlisting') @@ -252,9 +236,4 @@ function disableActions() { $(".action").css("display", "none"); $(":input:checkbox").css("display", "none"); } -function onClickBreadcrumb(e){ - var $el = $(e.target).closest('.crumb'); - e.preventDefault(); - FileList.changeDirectory(decodeURIComponent($el.data('dir'))); -} diff --git a/apps/files_trashbin/l10n/ady.php b/apps/files_trashbin/l10n/ady.php new file mode 100644 index 0000000000000000000000000000000000000000..0acad00e8b58f9aeba594f70d8957213bf899c9a --- /dev/null +++ b/apps/files_trashbin/l10n/ady.php @@ -0,0 +1,6 @@ + array("",""), +"_%n file_::_%n files_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ar.php b/apps/files_trashbin/l10n/ar.php index 710a9d14196ee4704c5265c2239fd03b76f35f38..9733e6b100e35e8a0a73f71b26a7e9155f7c0cb2 100644 --- a/apps/files_trashbin/l10n/ar.php +++ b/apps/files_trashbin/l10n/ar.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "تعذّر حذف%s بشكل دائم", "Couldn't restore %s" => "تعذّر استرجاع %s ", -"perform restore operation" => "إبدء عملية الإستعادة", "Error" => "خطأ", -"delete file permanently" => "حذف بشكل دائم", -"Delete permanently" => "حذف بشكل دائم", -"Name" => "اسم", -"Deleted" => "تم الحذف", -"_%n folder_::_%n folders_" => array("","","","","",""), -"_%n file_::_%n files_" => array("","","","","",""), "Nothing in here. Your trash bin is empty!" => "لا يوجد شيء هنا. سلة المهملات خاليه.", +"Name" => "اسم", "Restore" => "استعيد", +"Deleted" => "تم الحذف", "Delete" => "إلغاء", "Deleted Files" => "الملفات المحذوفه" ); diff --git a/apps/files_trashbin/l10n/be.php b/apps/files_trashbin/l10n/be.php index 50df7ff5a972ed321c03533ed72e520d7d3a496c..6a34f1fe246d28fe871ac9f85b0be7e2ea75723c 100644 --- a/apps/files_trashbin/l10n/be.php +++ b/apps/files_trashbin/l10n/be.php @@ -1,6 +1,5 @@ array("","","",""), -"_%n file_::_%n files_" => array("","","","") +"Error" => "Памылка" ); $PLURAL_FORMS = "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_trashbin/l10n/bg_BG.php b/apps/files_trashbin/l10n/bg_BG.php index 3c12e6906ed661ef08bed666f120de9f40bc3d0d..2f1521feaa51f7e413ecb2d62881aa749712bb8b 100644 --- a/apps/files_trashbin/l10n/bg_BG.php +++ b/apps/files_trashbin/l10n/bg_BG.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Невъзможно перманентното изтриване на %s", "Couldn't restore %s" => "Невъзможно възтановяване на %s", -"perform restore operation" => "извършване на действие по възстановяване", "Error" => "Грешка", -"delete file permanently" => "изтриване на файла завинаги", -"Delete permanently" => "Изтриване завинаги", -"Name" => "Име", -"Deleted" => "Изтрито", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "Няма нищо. Кофата е празна!", +"Name" => "Име", "Restore" => "Възтановяване", +"Deleted" => "Изтрито", "Delete" => "Изтриване", "Deleted Files" => "Изтрити файлове" ); diff --git a/apps/files_trashbin/l10n/bn_BD.php b/apps/files_trashbin/l10n/bn_BD.php index c3741dbd1dba4bf49cc903babc1217403cde6c30..d3a9f23b3777e7644fb22df44626bde1189d4ebe 100644 --- a/apps/files_trashbin/l10n/bn_BD.php +++ b/apps/files_trashbin/l10n/bn_BD.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "সমস্যা", "Name" => "রাম", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "মুছে" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/bs.php b/apps/files_trashbin/l10n/bs.php index af7033bd1832e7243ab3e19486a21727eeedb32d..08ef9b4fdbbfb656ce8171918b0b73644c6c66d4 100644 --- a/apps/files_trashbin/l10n/bs.php +++ b/apps/files_trashbin/l10n/bs.php @@ -1,7 +1,5 @@ "Ime", -"_%n folder_::_%n folders_" => array("","",""), -"_%n file_::_%n files_" => array("","","") +"Name" => "Ime" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_trashbin/l10n/ca.php b/apps/files_trashbin/l10n/ca.php index eb57aa16aa51a955e5c7985d92c54a44c822023e..fa3f63ddb2237c3a6a8327c2bb97f430cae1baa9 100644 --- a/apps/files_trashbin/l10n/ca.php +++ b/apps/files_trashbin/l10n/ca.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "No s'ha pogut esborrar permanentment %s", "Couldn't restore %s" => "No s'ha pogut restaurar %s", -"perform restore operation" => "executa l'operació de restauració", "Error" => "Error", -"delete file permanently" => "esborra el fitxer permanentment", -"Delete permanently" => "Esborra permanentment", -"Name" => "Nom", -"Deleted" => "Eliminat", -"_%n folder_::_%n folders_" => array("","%n carpetes"), -"_%n file_::_%n files_" => array("","%n fitxers"), "restored" => "restaurat", "Nothing in here. Your trash bin is empty!" => "La paperera està buida!", +"Name" => "Nom", "Restore" => "Recupera", +"Deleted" => "Eliminat", "Delete" => "Esborra", "Deleted Files" => "Fitxers eliminats" ); diff --git a/apps/files_trashbin/l10n/cs_CZ.php b/apps/files_trashbin/l10n/cs_CZ.php index f0bebee742f48de5f4475d3ca9158c71d47101b9..ff0a69572f56ee475949e8c97869d6e0098306ae 100644 --- a/apps/files_trashbin/l10n/cs_CZ.php +++ b/apps/files_trashbin/l10n/cs_CZ.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nelze trvale odstranit %s", "Couldn't restore %s" => "Nelze obnovit %s", -"perform restore operation" => "provést obnovu", "Error" => "Chyba", -"delete file permanently" => "trvale odstranit soubor", -"Delete permanently" => "Trvale odstranit", -"Name" => "Název", -"Deleted" => "Smazáno", -"_%n folder_::_%n folders_" => array("%n adresář","%n adresáře","%n adresářů"), -"_%n file_::_%n files_" => array("%n soubor","%n soubory","%n souborů"), "restored" => "obnoveno", "Nothing in here. Your trash bin is empty!" => "Žádný obsah. Váš koš je prázdný.", +"Name" => "Název", "Restore" => "Obnovit", +"Deleted" => "Smazáno", "Delete" => "Smazat", "Deleted Files" => "Smazané soubory" ); diff --git a/apps/files_trashbin/l10n/cy_GB.php b/apps/files_trashbin/l10n/cy_GB.php index 123a445c2c1d0697a615d2043f0e31b75c12c37f..f2eb81d67d2abba05ea74c439ba57601084de237 100644 --- a/apps/files_trashbin/l10n/cy_GB.php +++ b/apps/files_trashbin/l10n/cy_GB.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Methwyd dileu %s yn barhaol", "Couldn't restore %s" => "Methwyd adfer %s", -"perform restore operation" => "gweithrediad adfer", "Error" => "Gwall", -"delete file permanently" => "dileu ffeil yn barhaol", -"Delete permanently" => "Dileu'n barhaol", -"Name" => "Enw", -"Deleted" => "Wedi dileu", -"_%n folder_::_%n folders_" => array("","","",""), -"_%n file_::_%n files_" => array("","","",""), "Nothing in here. Your trash bin is empty!" => "Does dim byd yma. Mae eich bin sbwriel yn wag!", +"Name" => "Enw", "Restore" => "Adfer", +"Deleted" => "Wedi dileu", "Delete" => "Dileu", "Deleted Files" => "Ffeiliau Ddilewyd" ); diff --git a/apps/files_trashbin/l10n/da.php b/apps/files_trashbin/l10n/da.php index 2fbc08938789690676e04c6c8e4e196d586bdb2d..c396706d1525badae3efcd674dd2eb7f50d7b5bf 100644 --- a/apps/files_trashbin/l10n/da.php +++ b/apps/files_trashbin/l10n/da.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Kunne ikke slette %s permanent", "Couldn't restore %s" => "Kunne ikke gendanne %s", -"perform restore operation" => "udfør gendannelsesoperation", "Error" => "Fejl", -"delete file permanently" => "slet fil permanent", -"Delete permanently" => "Slet permanent", -"Name" => "Navn", -"Deleted" => "Slettet", -"_%n folder_::_%n folders_" => array("%n mappe","%n mapper"), -"_%n file_::_%n files_" => array("%n fil","%n filer"), "restored" => "Gendannet", "Nothing in here. Your trash bin is empty!" => "Intet at se her. Din papirkurv er tom!", +"Name" => "Navn", "Restore" => "Gendan", +"Deleted" => "Slettet", "Delete" => "Slet", "Deleted Files" => "Slettede filer" ); diff --git a/apps/files_trashbin/l10n/de.php b/apps/files_trashbin/l10n/de.php index ad6e0839bd61481f401842dbeacb0ef3158faf84..2b6703dd058180421c3ff09a5be13713a4ded32e 100644 --- a/apps/files_trashbin/l10n/de.php +++ b/apps/files_trashbin/l10n/de.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Konnte %s nicht dauerhaft löschen", "Couldn't restore %s" => "Konnte %s nicht wiederherstellen", -"perform restore operation" => "Wiederherstellung ausführen", "Error" => "Fehler", -"delete file permanently" => "Datei dauerhaft löschen", -"Delete permanently" => "Endgültig löschen", -"Name" => "Name", -"Deleted" => "gelöscht", -"_%n folder_::_%n folders_" => array("","%n Ordner"), -"_%n file_::_%n files_" => array("","%n Dateien"), "restored" => "Wiederhergestellt", "Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, der Papierkorb ist leer!", +"Name" => "Name", "Restore" => "Wiederherstellen", +"Deleted" => "gelöscht", "Delete" => "Löschen", "Deleted Files" => "Gelöschte Dateien" ); diff --git a/apps/files_trashbin/l10n/de_CH.php b/apps/files_trashbin/l10n/de_CH.php index 92290a0de50f438389d010a038c8e65392bb1ede..ec9f0b5309d4392f866773370408c1ff52209b4c 100644 --- a/apps/files_trashbin/l10n/de_CH.php +++ b/apps/files_trashbin/l10n/de_CH.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Konnte %s nicht dauerhaft löschen", "Couldn't restore %s" => "Konnte %s nicht wiederherstellen", -"perform restore operation" => "Wiederherstellung ausführen", "Error" => "Fehler", -"delete file permanently" => "Datei dauerhaft löschen", -"Delete permanently" => "Endgültig löschen", -"Name" => "Name", -"Deleted" => "Gelöscht", -"_%n folder_::_%n folders_" => array("%n Ordner","%n Ordner"), -"_%n file_::_%n files_" => array("%n Datei","%n Dateien"), "restored" => "Wiederhergestellt", "Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, Ihr Papierkorb ist leer!", +"Name" => "Name", "Restore" => "Wiederherstellen", +"Deleted" => "Gelöscht", "Delete" => "Löschen", "Deleted Files" => "Gelöschte Dateien" ); diff --git a/apps/files_trashbin/l10n/de_DE.php b/apps/files_trashbin/l10n/de_DE.php index 0df6941280109e1d617e421447a21aa0e5e4aa35..ec9f0b5309d4392f866773370408c1ff52209b4c 100644 --- a/apps/files_trashbin/l10n/de_DE.php +++ b/apps/files_trashbin/l10n/de_DE.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Konnte %s nicht dauerhaft löschen", "Couldn't restore %s" => "Konnte %s nicht wiederherstellen", -"perform restore operation" => "Wiederherstellung ausführen", "Error" => "Fehler", -"delete file permanently" => "Datei dauerhaft löschen", -"Delete permanently" => "Endgültig löschen", -"Name" => "Name", -"Deleted" => "Gelöscht", -"_%n folder_::_%n folders_" => array("%n Ordner","%n Ordner"), -"_%n file_::_%n files_" => array("%n Dateien","%n Dateien"), "restored" => "Wiederhergestellt", "Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, Ihr Papierkorb ist leer!", +"Name" => "Name", "Restore" => "Wiederherstellen", +"Deleted" => "Gelöscht", "Delete" => "Löschen", "Deleted Files" => "Gelöschte Dateien" ); diff --git a/apps/files_trashbin/l10n/el.php b/apps/files_trashbin/l10n/el.php index 939c7fed6143e7879254bf7f1ec9eece441fd298..b4ee30c578d353b372210dfa97841398a4b25cff 100644 --- a/apps/files_trashbin/l10n/el.php +++ b/apps/files_trashbin/l10n/el.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Αδύνατη η μόνιμη διαγραφή του %s", "Couldn't restore %s" => "Αδυναμία επαναφοράς %s", -"perform restore operation" => "εκτέλεση λειτουργία επαναφοράς", "Error" => "Σφάλμα", -"delete file permanently" => "μόνιμη διαγραφή αρχείου", -"Delete permanently" => "Μόνιμη διαγραφή", -"Name" => "Όνομα", -"Deleted" => "Διαγράφηκε", -"_%n folder_::_%n folders_" => array("","%n φάκελοι"), -"_%n file_::_%n files_" => array("","%n αρχεία"), -"restored" => "έγινε επαναφορά", +"restored" => "επαναφέρθηκαν", "Nothing in here. Your trash bin is empty!" => "Δεν υπάρχει τίποτα εδώ. Ο κάδος σας είναι άδειος!", +"Name" => "Όνομα", "Restore" => "Επαναφορά", +"Deleted" => "Διαγραμμένα", "Delete" => "Διαγραφή", "Deleted Files" => "Διαγραμμένα Αρχεία" ); diff --git a/apps/files_trashbin/l10n/en_GB.php b/apps/files_trashbin/l10n/en_GB.php index be9d8b9f520dca6890f1bcf6f4d2cb94282e8113..6b179c86532bdf631c62e62e02e98d35d422051d 100644 --- a/apps/files_trashbin/l10n/en_GB.php +++ b/apps/files_trashbin/l10n/en_GB.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Couldn't delete %s permanently", "Couldn't restore %s" => "Couldn't restore %s", -"perform restore operation" => "perform restore operation", "Error" => "Error", -"delete file permanently" => "delete file permanently", -"Delete permanently" => "Delete permanently", -"Name" => "Name", -"Deleted" => "Deleted", -"_%n folder_::_%n folders_" => array("%n folder","%n folders"), -"_%n file_::_%n files_" => array("%n file","%n files"), "restored" => "restored", "Nothing in here. Your trash bin is empty!" => "Nothing in here. Your recycle bin is empty!", +"Name" => "Name", "Restore" => "Restore", +"Deleted" => "Deleted", "Delete" => "Delete", "Deleted Files" => "Deleted Files" ); diff --git a/apps/files_trashbin/l10n/eo.php b/apps/files_trashbin/l10n/eo.php index d1e30cba58883a032b8e099d308a9cf8cafaf0e4..b8f999eaafa28484968fc82aac2877fdc83fab4f 100644 --- a/apps/files_trashbin/l10n/eo.php +++ b/apps/files_trashbin/l10n/eo.php @@ -1,11 +1,13 @@ "Ne povis foriĝi %s por ĉiam", +"Couldn't restore %s" => "Ne povis restaŭriĝi %s", "Error" => "Eraro", -"Delete permanently" => "Forigi por ĉiam", +"restored" => "restaŭrita", +"Nothing in here. Your trash bin is empty!" => "Nenio estas ĉi tie. Via rubujo malplenas!", "Name" => "Nomo", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Restore" => "Restaŭri", +"Deleted" => "Forigita", "Delete" => "Forigi", "Deleted Files" => "Forigitaj dosieroj" ); diff --git a/apps/files_trashbin/l10n/es.php b/apps/files_trashbin/l10n/es.php index a5639c2c71454d6d1e5aa4210b4b94acec21b7c6..db7a617729b3393dc4439895d21abe0b9689aa94 100644 --- a/apps/files_trashbin/l10n/es.php +++ b/apps/files_trashbin/l10n/es.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "No se puede eliminar %s permanentemente", "Couldn't restore %s" => "No se puede restaurar %s", -"perform restore operation" => "restaurar", "Error" => "Error", -"delete file permanently" => "eliminar archivo permanentemente", -"Delete permanently" => "Eliminar permanentemente", -"Name" => "Nombre", -"Deleted" => "Eliminado", -"_%n folder_::_%n folders_" => array("%n carpeta","%n carpetas"), -"_%n file_::_%n files_" => array("%n archivo","%n archivos"), "restored" => "recuperado", "Nothing in here. Your trash bin is empty!" => "No hay nada aquí. ¡Tu papelera esta vacía!", +"Name" => "Nombre", "Restore" => "Recuperar", +"Deleted" => "Eliminado", "Delete" => "Eliminar", "Deleted Files" => "Archivos Eliminados" ); diff --git a/apps/files_trashbin/l10n/es_AR.php b/apps/files_trashbin/l10n/es_AR.php index 0cb969a3483b4f1ce7c83aabfe6f6867510bacdd..842101d33be6deecb2f56d1a397f77ecde87910b 100644 --- a/apps/files_trashbin/l10n/es_AR.php +++ b/apps/files_trashbin/l10n/es_AR.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "No fue posible borrar %s de manera permanente", "Couldn't restore %s" => "No se pudo restaurar %s", -"perform restore operation" => "Restaurar", "Error" => "Error", -"delete file permanently" => "Borrar archivo de manera permanente", -"Delete permanently" => "Borrar de manera permanente", -"Name" => "Nombre", -"Deleted" => "Borrado", -"_%n folder_::_%n folders_" => array("%n directorio","%n directorios"), -"_%n file_::_%n files_" => array("%n archivo","%n archivos"), "restored" => "recuperado", "Nothing in here. Your trash bin is empty!" => "No hay nada acá. ¡La papelera está vacía!", +"Name" => "Nombre", "Restore" => "Recuperar", +"Deleted" => "Borrado", "Delete" => "Borrar", "Deleted Files" => "Archivos eliminados" ); diff --git a/apps/files_trashbin/l10n/es_MX.php b/apps/files_trashbin/l10n/es_MX.php index 0acad00e8b58f9aeba594f70d8957213bf899c9a..db7a617729b3393dc4439895d21abe0b9689aa94 100644 --- a/apps/files_trashbin/l10n/es_MX.php +++ b/apps/files_trashbin/l10n/es_MX.php @@ -1,6 +1,14 @@ array("",""), -"_%n file_::_%n files_" => array("","") +"Couldn't delete %s permanently" => "No se puede eliminar %s permanentemente", +"Couldn't restore %s" => "No se puede restaurar %s", +"Error" => "Error", +"restored" => "recuperado", +"Nothing in here. Your trash bin is empty!" => "No hay nada aquí. ¡Tu papelera esta vacía!", +"Name" => "Nombre", +"Restore" => "Recuperar", +"Deleted" => "Eliminado", +"Delete" => "Eliminar", +"Deleted Files" => "Archivos Eliminados" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/et_EE.php b/apps/files_trashbin/l10n/et_EE.php index 43c182ea7b38b63422b85fb62fcbac6f7d513734..56eebc79f0b60391f84d932d97b6bd1a7642f77b 100644 --- a/apps/files_trashbin/l10n/et_EE.php +++ b/apps/files_trashbin/l10n/et_EE.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "%s jäädavalt kustutamine ebaõnnestus", "Couldn't restore %s" => "%s ei saa taastada", -"perform restore operation" => "soorita taastamine", "Error" => "Viga", -"delete file permanently" => "kustuta fail jäädavalt", -"Delete permanently" => "Kustuta jäädavalt", -"Name" => "Nimi", -"Deleted" => "Kustutatud", -"_%n folder_::_%n folders_" => array("","%n kataloogi"), -"_%n file_::_%n files_" => array("%n fail","%n faili"), "restored" => "taastatud", "Nothing in here. Your trash bin is empty!" => "Siin pole midagi. Sinu prügikast on tühi!", +"Name" => "Nimi", "Restore" => "Taasta", +"Deleted" => "Kustutatud", "Delete" => "Kustuta", "Deleted Files" => "Kustutatud failid" ); diff --git a/apps/files_trashbin/l10n/eu.php b/apps/files_trashbin/l10n/eu.php index 240582a7ea6c60d57f9e05e76849a509f4f36f26..04d92e01b36d2e1b79783c6859d6a5e47abc0687 100644 --- a/apps/files_trashbin/l10n/eu.php +++ b/apps/files_trashbin/l10n/eu.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Ezin izan da %s betirako ezabatu", "Couldn't restore %s" => "Ezin izan da %s berreskuratu", -"perform restore operation" => "berreskuratu", "Error" => "Errorea", -"delete file permanently" => "ezabatu fitxategia betirako", -"Delete permanently" => "Ezabatu betirako", -"Name" => "Izena", -"Deleted" => "Ezabatuta", -"_%n folder_::_%n folders_" => array("karpeta %n","%n karpeta"), -"_%n file_::_%n files_" => array("fitxategi %n","%n fitxategi"), "restored" => "Berrezarrita", "Nothing in here. Your trash bin is empty!" => "Ez dago ezer ez. Zure zakarrontzia hutsik dago!", +"Name" => "Izena", "Restore" => "Berrezarri", +"Deleted" => "Ezabatuta", "Delete" => "Ezabatu", "Deleted Files" => "Ezabatutako Fitxategiak" ); diff --git a/apps/files_trashbin/l10n/fa.php b/apps/files_trashbin/l10n/fa.php index 654f20a5f1c7418a3cfd073db073a586099f8401..8409987b897fca49efa6226c97fa6da02bba1721 100644 --- a/apps/files_trashbin/l10n/fa.php +++ b/apps/files_trashbin/l10n/fa.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "%s را نمی توان برای همیشه حذف کرد", "Couldn't restore %s" => "%s را نمی توان بازگرداند", -"perform restore operation" => "انجام عمل بازگرداندن", "Error" => "خطا", -"delete file permanently" => "حذف فایل برای همیشه", -"Delete permanently" => "حذف قطعی", -"Name" => "نام", -"Deleted" => "حذف شده", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "هیچ چیزی اینجا نیست. سطل زباله ی شما خالی است.", +"Name" => "نام", "Restore" => "بازیابی", +"Deleted" => "حذف شده", "Delete" => "حذف", "Deleted Files" => "فایلهای حذف شده" ); diff --git a/apps/files_trashbin/l10n/fi_FI.php b/apps/files_trashbin/l10n/fi_FI.php index f03950981c08c00cbc6036b99ed3d39f16ce4539..b956c1c1e4c555f45219f38b0a7f305c269ce802 100644 --- a/apps/files_trashbin/l10n/fi_FI.php +++ b/apps/files_trashbin/l10n/fi_FI.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Kohdetta %s ei voitu poistaa pysyvästi", "Couldn't restore %s" => "Kohteen %s palautus epäonnistui", -"perform restore operation" => "suorita palautustoiminto", "Error" => "Virhe", -"delete file permanently" => "poista tiedosto pysyvästi", -"Delete permanently" => "Poista pysyvästi", -"Name" => "Nimi", -"Deleted" => "Poistettu", -"_%n folder_::_%n folders_" => array("%n kansio","%n kansiota"), -"_%n file_::_%n files_" => array("%n tiedosto","%n tiedostoa"), "restored" => "palautettu", "Nothing in here. Your trash bin is empty!" => "Tyhjää täynnä! Roskakorissa ei ole mitään.", +"Name" => "Nimi", "Restore" => "Palauta", +"Deleted" => "Poistettu", "Delete" => "Poista", "Deleted Files" => "Poistetut tiedostot" ); diff --git a/apps/files_trashbin/l10n/fr.php b/apps/files_trashbin/l10n/fr.php index 45527805ce1af23c00193da2c838a7cfb3d50f3a..593310e2c3296247b2d88f10a747503672892d51 100644 --- a/apps/files_trashbin/l10n/fr.php +++ b/apps/files_trashbin/l10n/fr.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Impossible d'effacer %s de façon permanente", "Couldn't restore %s" => "Impossible de restaurer %s", -"perform restore operation" => "effectuer l'opération de restauration", "Error" => "Erreur", -"delete file permanently" => "effacer définitivement le fichier", -"Delete permanently" => "Supprimer de façon définitive", -"Name" => "Nom", -"Deleted" => "Effacé", -"_%n folder_::_%n folders_" => array("","%n dossiers"), -"_%n file_::_%n files_" => array("","%n fichiers"), "restored" => "restauré", "Nothing in here. Your trash bin is empty!" => "Il n'y a rien ici. Votre corbeille est vide !", +"Name" => "Nom", "Restore" => "Restaurer", +"Deleted" => "Effacé", "Delete" => "Supprimer", "Deleted Files" => "Fichiers effacés" ); diff --git a/apps/files_trashbin/l10n/gl.php b/apps/files_trashbin/l10n/gl.php index 568c17607fe0eb90554711df084aae6ce981bf21..ae7ef8b319bb3113ee7599ecaa7c3a7765018ba2 100644 --- a/apps/files_trashbin/l10n/gl.php +++ b/apps/files_trashbin/l10n/gl.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Non foi posíbel eliminar %s permanente", "Couldn't restore %s" => "Non foi posíbel restaurar %s", -"perform restore operation" => "realizar a operación de restauración", "Error" => "Erro", -"delete file permanently" => "eliminar o ficheiro permanentemente", -"Delete permanently" => "Eliminar permanentemente", -"Name" => "Nome", -"Deleted" => "Eliminado", -"_%n folder_::_%n folders_" => array("%n cartafol","%n cartafoles"), -"_%n file_::_%n files_" => array("%n ficheiro","%n ficheiros"), "restored" => "restaurado", "Nothing in here. Your trash bin is empty!" => "Aquí non hai nada. O cesto do lixo está baleiro!", +"Name" => "Nome", "Restore" => "Restablecer", +"Deleted" => "Eliminado", "Delete" => "Eliminar", "Deleted Files" => "Ficheiros eliminados" ); diff --git a/apps/files_trashbin/l10n/he.php b/apps/files_trashbin/l10n/he.php index 6aa6264a315914829450a6a1cc4069de9e12d92e..d0bcb327d4a639634d7c40037b77589e5a4a9334 100644 --- a/apps/files_trashbin/l10n/he.php +++ b/apps/files_trashbin/l10n/he.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "לא ניתן למחוק את %s לצמיתות", "Couldn't restore %s" => "לא ניתן לשחזר את %s", -"perform restore operation" => "ביצוע פעולת שחזור", "Error" => "שגיאה", -"delete file permanently" => "מחיקת קובץ לצמיתות", -"Delete permanently" => "מחיקה לצמיתות", -"Name" => "שם", -"Deleted" => "נמחק", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "אין כאן שום דבר. סל המיחזור שלך ריק!", +"Name" => "שם", "Restore" => "שחזור", +"Deleted" => "נמחק", "Delete" => "מחיקה", "Deleted Files" => "קבצים שנמחקו" ); diff --git a/apps/files_trashbin/l10n/hi.php b/apps/files_trashbin/l10n/hi.php index 71711218b14dad40bfa6fafa6987278cdd1b45e0..d4a26011b58cafd50b8a07eef17308d779f69eb1 100644 --- a/apps/files_trashbin/l10n/hi.php +++ b/apps/files_trashbin/l10n/hi.php @@ -1,7 +1,5 @@ "त्रुटि", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("","") +"Error" => "त्रुटि" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/hr.php b/apps/files_trashbin/l10n/hr.php index d227b4979aadbc0e0929e603a69b682b34c88469..8e8fd22f8ef0280b60f5d8f2f76c85e72755a0ef 100644 --- a/apps/files_trashbin/l10n/hr.php +++ b/apps/files_trashbin/l10n/hr.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Greška", "Name" => "Ime", -"_%n folder_::_%n folders_" => array("","",""), -"_%n file_::_%n files_" => array("","",""), "Delete" => "Obriši" ); $PLURAL_FORMS = "nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"; diff --git a/apps/files_trashbin/l10n/hu_HU.php b/apps/files_trashbin/l10n/hu_HU.php index 766ddcbce4de9dd91d471315cd81f663239091b1..aa8b45a7d65c8bd15f469aeeedabb4de39547433 100644 --- a/apps/files_trashbin/l10n/hu_HU.php +++ b/apps/files_trashbin/l10n/hu_HU.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nem sikerült %s végleges törlése", "Couldn't restore %s" => "Nem sikerült %s visszaállítása", -"perform restore operation" => "a visszaállítás végrehajtása", "Error" => "Hiba", -"delete file permanently" => "az állomány végleges törlése", -"Delete permanently" => "Végleges törlés", -"Name" => "Név", -"Deleted" => "Törölve", -"_%n folder_::_%n folders_" => array("","%n mappa"), -"_%n file_::_%n files_" => array("","%n állomány"), "restored" => "visszaállítva", "Nothing in here. Your trash bin is empty!" => "Itt nincs semmi. Az Ön szemetes mappája üres!", +"Name" => "Név", "Restore" => "Visszaállítás", +"Deleted" => "Törölve", "Delete" => "Törlés", "Deleted Files" => "Törölt fájlok" ); diff --git a/apps/files_trashbin/l10n/hy.php b/apps/files_trashbin/l10n/hy.php index 6ff58b56202081827d5ef70cc85325aa7c0803e0..f933bec8feb91959b1303f8d028dda1c815ccf3e 100644 --- a/apps/files_trashbin/l10n/hy.php +++ b/apps/files_trashbin/l10n/hy.php @@ -1,7 +1,5 @@ array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "Ջնջել" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ia.php b/apps/files_trashbin/l10n/ia.php index c583344a81e1b624563f77b1be7ec8f0654082a2..7709ef030e365faac2c10e44a0abafbc78215736 100644 --- a/apps/files_trashbin/l10n/ia.php +++ b/apps/files_trashbin/l10n/ia.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Error", "Name" => "Nomine", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "Deler" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/id.php b/apps/files_trashbin/l10n/id.php index 6aad1302f43e4442d7c50d3d2f7acbd5877e221a..a55520fc117c8b143ed2ad1aafdfaf2ac806c119 100644 --- a/apps/files_trashbin/l10n/id.php +++ b/apps/files_trashbin/l10n/id.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Tidak dapat menghapus permanen %s", "Couldn't restore %s" => "Tidak dapat memulihkan %s", -"perform restore operation" => "jalankan operasi pemulihan", "Error" => "Galat", -"delete file permanently" => "hapus berkas secara permanen", -"Delete permanently" => "Hapus secara permanen", -"Name" => "Nama", -"Deleted" => "Dihapus", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "Tempat sampah anda kosong!", +"Name" => "Nama", "Restore" => "Pulihkan", +"Deleted" => "Dihapus", "Delete" => "Hapus", "Deleted Files" => "Berkas yang Dihapus" ); diff --git a/apps/files_trashbin/l10n/is.php b/apps/files_trashbin/l10n/is.php index 55ae433646147d0694d9324c949d3de602173718..8ccf89739fca1dc486d2c5ac98aae71e557c2d7d 100644 --- a/apps/files_trashbin/l10n/is.php +++ b/apps/files_trashbin/l10n/is.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Villa", "Name" => "Nafn", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "Eyða" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/it.php b/apps/files_trashbin/l10n/it.php index e4b39c4a6d59d9becc9bbb1ff070c45caa8f1300..b631e0c9e4ffa80dd419f6219f8b786a0094ea86 100644 --- a/apps/files_trashbin/l10n/it.php +++ b/apps/files_trashbin/l10n/it.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Impossibile eliminare %s definitivamente", "Couldn't restore %s" => "Impossibile ripristinare %s", -"perform restore operation" => "esegui operazione di ripristino", "Error" => "Errore", -"delete file permanently" => "elimina il file definitivamente", -"Delete permanently" => "Elimina definitivamente", -"Name" => "Nome", -"Deleted" => "Eliminati", -"_%n folder_::_%n folders_" => array("%n cartella","%n cartelle"), -"_%n file_::_%n files_" => array("%n file","%n file"), "restored" => "ripristinati", "Nothing in here. Your trash bin is empty!" => "Qui non c'è niente. Il tuo cestino è vuoto.", +"Name" => "Nome", "Restore" => "Ripristina", +"Deleted" => "Eliminati", "Delete" => "Elimina", "Deleted Files" => "File eliminati" ); diff --git a/apps/files_trashbin/l10n/ja_JP.php b/apps/files_trashbin/l10n/ja_JP.php index eb9748d57c04af064215003511089c12b805b199..8d896625b5239acb6f0a22c8157aa2ec7b1fe37b 100644 --- a/apps/files_trashbin/l10n/ja_JP.php +++ b/apps/files_trashbin/l10n/ja_JP.php @@ -2,18 +2,13 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "%s を完全に削除出来ませんでした", "Couldn't restore %s" => "%s を復元出来ませんでした", -"perform restore operation" => "復元操作を実行する", "Error" => "エラー", -"delete file permanently" => "ファイルを完全に削除する", -"Delete permanently" => "完全に削除する", -"Name" => "名前", -"Deleted" => "削除済み", -"_%n folder_::_%n folders_" => array("%n個のフォルダ"), -"_%n file_::_%n files_" => array("%n個のファイル"), "restored" => "復元済", "Nothing in here. Your trash bin is empty!" => "ここには何もありません。ゴミ箱は空です!", +"Name" => "名前", "Restore" => "復元", +"Deleted" => "削除済み", "Delete" => "削除", -"Deleted Files" => "削除されたファイル" +"Deleted Files" => "ゴミ箱" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/ka_GE.php b/apps/files_trashbin/l10n/ka_GE.php index 236d8951e9dcf47368d21fab951bbd7b5e0a7967..7440171deef94b7eebdafb0bfab8258251c35cbf 100644 --- a/apps/files_trashbin/l10n/ka_GE.php +++ b/apps/files_trashbin/l10n/ka_GE.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "ფაილი %s–ის სრულად წაშლა ვერ მოხერხდა", "Couldn't restore %s" => "%s–ის აღდგენა ვერ მოხერხდა", -"perform restore operation" => "მიმდინარეობს აღდგენის ოპერაცია", "Error" => "შეცდომა", -"delete file permanently" => "ფაილის სრულად წაშლა", -"Delete permanently" => "სრულად წაშლა", -"Name" => "სახელი", -"Deleted" => "წაშლილი", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "აქ არაფერი არ არის. სანაგვე ყუთი ცარიელია!", +"Name" => "სახელი", "Restore" => "აღდგენა", +"Deleted" => "წაშლილი", "Delete" => "წაშლა", "Deleted Files" => "წაშლილი ფაილები" ); diff --git a/apps/files_trashbin/l10n/km.php b/apps/files_trashbin/l10n/km.php index 70f10d7c0bf5f12667a902c57aeb1cb8215703ef..f7d9faa38c566877990a5955d661b7cd09218414 100644 --- a/apps/files_trashbin/l10n/km.php +++ b/apps/files_trashbin/l10n/km.php @@ -1,6 +1,5 @@ array(""), -"_%n file_::_%n files_" => array("") +"Delete" => "លុប" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/ko.php b/apps/files_trashbin/l10n/ko.php index 9ac5f9802c683671fe3d156e9fb39655fddbcda9..9c3cd2de15f37f392edea4aca73f669bab235cc2 100644 --- a/apps/files_trashbin/l10n/ko.php +++ b/apps/files_trashbin/l10n/ko.php @@ -1,19 +1,14 @@ "%s를 영구적으로 삭제할수 없습니다", -"Couldn't restore %s" => "%s를 복원할수 없습니다", -"perform restore operation" => "복원 작업중", +"Couldn't delete %s permanently" => "%s을(를_ 영구적으로 삭제할 수 없습니다", +"Couldn't restore %s" => "%s을(를) 복원할 수 없습니다", "Error" => "오류", -"delete file permanently" => "영구적으로 파일 삭제하기", -"Delete permanently" => "영원히 삭제", -"Name" => "이름", -"Deleted" => "삭제됨", -"_%n folder_::_%n folders_" => array("폴더 %n개"), -"_%n file_::_%n files_" => array("파일 %n개 "), "restored" => "복원됨", -"Nothing in here. Your trash bin is empty!" => "현재 휴지통은 비어있습니다!", +"Nothing in here. Your trash bin is empty!" => "휴지통이 비어 있습니다!", +"Name" => "이름", "Restore" => "복원", +"Deleted" => "삭제됨", "Delete" => "삭제", -"Deleted Files" => "삭제된 파일들" +"Deleted Files" => "삭제된 파일" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/ku_IQ.php b/apps/files_trashbin/l10n/ku_IQ.php index 3f110f06002b4386638af1efde66098d4cd25096..c1962a4075d4c203cca3bd8424ab2cb951c3040a 100644 --- a/apps/files_trashbin/l10n/ku_IQ.php +++ b/apps/files_trashbin/l10n/ku_IQ.php @@ -1,8 +1,6 @@ "هه‌ڵه", -"Name" => "ناو", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("","") +"Name" => "ناو" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/lb.php b/apps/files_trashbin/l10n/lb.php index cbfd515a8b3fd2c335ae318a7eca8af7fe3b554f..b434ae72176e44391d4a0a256d3c3e46a40ccea9 100644 --- a/apps/files_trashbin/l10n/lb.php +++ b/apps/files_trashbin/l10n/lb.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Fehler", "Name" => "Numm", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "Läschen" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/lt_LT.php b/apps/files_trashbin/l10n/lt_LT.php index 0a51290f4d99bf12f2ffea6417eb951179df7efc..c4a8463fd0e9df0a0177ba8ab33fac2282ba43bf 100644 --- a/apps/files_trashbin/l10n/lt_LT.php +++ b/apps/files_trashbin/l10n/lt_LT.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nepavyko negrįžtamai ištrinti %s", "Couldn't restore %s" => "Nepavyko atkurti %s", -"perform restore operation" => "atkurti", "Error" => "Klaida", -"delete file permanently" => "failą ištrinti negrįžtamai", -"Delete permanently" => "Ištrinti negrįžtamai", -"Name" => "Pavadinimas", -"Deleted" => "Ištrinti", -"_%n folder_::_%n folders_" => array("","","%n aplankų"), -"_%n file_::_%n files_" => array("","","%n failų"), "restored" => "atstatyta", "Nothing in here. Your trash bin is empty!" => "Nieko nėra. Jūsų šiukšliadėžė tuščia!", +"Name" => "Pavadinimas", "Restore" => "Atstatyti", +"Deleted" => "Ištrinti", "Delete" => "Ištrinti", "Deleted Files" => "Ištrinti failai" ); diff --git a/apps/files_trashbin/l10n/lv.php b/apps/files_trashbin/l10n/lv.php index ca833b2420883c15dd69073f6c932344551edb71..5c04a0c97d15948553276bc99a989c620b90e500 100644 --- a/apps/files_trashbin/l10n/lv.php +++ b/apps/files_trashbin/l10n/lv.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nevarēja pilnībā izdzēst %s", "Couldn't restore %s" => "Nevarēja atjaunot %s", -"perform restore operation" => "veikt atjaunošanu", "Error" => "Kļūda", -"delete file permanently" => "dzēst datni pavisam", -"Delete permanently" => "Dzēst pavisam", -"Name" => "Nosaukums", -"Deleted" => "Dzēsts", -"_%n folder_::_%n folders_" => array("Nekas, %n mapes","%n mape","%n mapes"), -"_%n file_::_%n files_" => array("Neviens! %n faaili","%n fails","%n faili"), "restored" => "atjaunots", "Nothing in here. Your trash bin is empty!" => "Šeit nekā nav. Jūsu miskaste ir tukša!", +"Name" => "Nosaukums", "Restore" => "Atjaunot", +"Deleted" => "Dzēsts", "Delete" => "Dzēst", "Deleted Files" => "Dzēstās datnes" ); diff --git a/apps/files_trashbin/l10n/mk.php b/apps/files_trashbin/l10n/mk.php index 965518dbc86e043c42cb8c7ac0246a9eb9365f54..06a9dcfb2418cd7ead07aec36e53947698acc211 100644 --- a/apps/files_trashbin/l10n/mk.php +++ b/apps/files_trashbin/l10n/mk.php @@ -1,9 +1,14 @@ "Не можеше трајно да се избрише %s", +"Couldn't restore %s" => "Не можеше да се поврати %s", "Error" => "Грешка", +"restored" => "повратени", +"Nothing in here. Your trash bin is empty!" => "Тука нема ништо. Вашата корпа за отпадоци е празна!", "Name" => "Име", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), -"Delete" => "Избриши" +"Restore" => "Поврати", +"Deleted" => "Избришан", +"Delete" => "Избриши", +"Deleted Files" => "Избришани датотеки" ); $PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/apps/files_trashbin/l10n/ms_MY.php b/apps/files_trashbin/l10n/ms_MY.php index 1b5ca07c70cff20792d903193d4cf04b1fa6b19f..e772131391820353ed43f45aaca8b612be17a2de 100644 --- a/apps/files_trashbin/l10n/ms_MY.php +++ b/apps/files_trashbin/l10n/ms_MY.php @@ -1,9 +1,14 @@ "Tidak dapat menghapuskan %s secara kekal", +"Couldn't restore %s" => "Tidak dapat memulihkan %s", "Error" => "Ralat", +"restored" => "dipulihkan", +"Nothing in here. Your trash bin is empty!" => "Tiada apa disini. Tong sampah anda kosong!", "Name" => "Nama", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), -"Delete" => "Padam" +"Restore" => "Pulihkan", +"Deleted" => "Dihapuskan", +"Delete" => "Padam", +"Deleted Files" => "Fail Dihapus" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/nb_NO.php b/apps/files_trashbin/l10n/nb_NO.php index 8eb3bc1846fbd746fad12313e32ddd32beeba87c..eb917e3dde6af699b68713ab3b74b879bd0ac505 100644 --- a/apps/files_trashbin/l10n/nb_NO.php +++ b/apps/files_trashbin/l10n/nb_NO.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Kunne ikke slette %s fullstendig", "Couldn't restore %s" => "Kunne ikke gjenopprette %s", -"perform restore operation" => "utfør gjenopprettings operasjon", "Error" => "Feil", -"delete file permanently" => "slett filer permanent", -"Delete permanently" => "Slett permanent", -"Name" => "Navn", -"Deleted" => "Slettet", -"_%n folder_::_%n folders_" => array("","%n mapper"), -"_%n file_::_%n files_" => array("","%n filer"), "Nothing in here. Your trash bin is empty!" => "Ingenting her. Søppelkassen din er tom!", +"Name" => "Navn", "Restore" => "Gjenopprett", +"Deleted" => "Slettet", "Delete" => "Slett", "Deleted Files" => "Slettet filer" ); diff --git a/apps/files_trashbin/l10n/nl.php b/apps/files_trashbin/l10n/nl.php index b3ae57da56337ddb8bfdf35f140539533b7b6a7e..37a8ca654097a7b9164f62a683e4f93f55282a81 100644 --- a/apps/files_trashbin/l10n/nl.php +++ b/apps/files_trashbin/l10n/nl.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Kon %s niet permanent verwijderen", "Couldn't restore %s" => "Kon %s niet herstellen", -"perform restore operation" => "uitvoeren restore operatie", "Error" => "Fout", -"delete file permanently" => "verwijder bestanden definitief", -"Delete permanently" => "Verwijder definitief", -"Name" => "Naam", -"Deleted" => "Verwijderd", -"_%n folder_::_%n folders_" => array("%n map","%n mappen"), -"_%n file_::_%n files_" => array("%n bestand","%n bestanden"), "restored" => "hersteld", "Nothing in here. Your trash bin is empty!" => "Niets te vinden. Uw prullenbak is leeg!", +"Name" => "Naam", "Restore" => "Herstellen", +"Deleted" => "Verwijderd", "Delete" => "Verwijder", "Deleted Files" => "Verwijderde bestanden" ); diff --git a/apps/files_trashbin/l10n/nn_NO.php b/apps/files_trashbin/l10n/nn_NO.php index 73fe48211c293719e167c1c4c0f7722cfd0cc735..39e2d5cda91a2535cb0464a199b684b142e2411f 100644 --- a/apps/files_trashbin/l10n/nn_NO.php +++ b/apps/files_trashbin/l10n/nn_NO.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Klarte ikkje sletta %s for godt", "Couldn't restore %s" => "Klarte ikkje gjenoppretta %s", -"perform restore operation" => "utfør gjenoppretting", "Error" => "Feil", -"delete file permanently" => "slett fila for godt", -"Delete permanently" => "Slett for godt", -"Name" => "Namn", -"Deleted" => "Sletta", -"_%n folder_::_%n folders_" => array("%n mappe","%n mapper"), -"_%n file_::_%n files_" => array("%n fil","%n filer"), "restored" => "gjenoppretta", "Nothing in here. Your trash bin is empty!" => "Ingenting her. Papirkorga di er tom!", +"Name" => "Namn", "Restore" => "Gjenopprett", +"Deleted" => "Sletta", "Delete" => "Slett", "Deleted Files" => "Sletta filer" ); diff --git a/apps/files_trashbin/l10n/oc.php b/apps/files_trashbin/l10n/oc.php index a62902c3b7e89ca6bc1d54f4a4c3d798d7bfc997..b472683f08d43f63e59e2fd5102af364bee5bf65 100644 --- a/apps/files_trashbin/l10n/oc.php +++ b/apps/files_trashbin/l10n/oc.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Error", "Name" => "Nom", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "Escafa" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_trashbin/l10n/pa.php b/apps/files_trashbin/l10n/pa.php index e53707fd7077c2fdcada3484af32c770f87b841f..825a49aaea4305e771208f3e96a7bb46d2fbc403 100644 --- a/apps/files_trashbin/l10n/pa.php +++ b/apps/files_trashbin/l10n/pa.php @@ -1,8 +1,6 @@ "ਗਲਤੀ", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "ਹਟਾਓ" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/pl.php b/apps/files_trashbin/l10n/pl.php index c838a6b956c2e583964dcc186fc9d7ebaac6509b..961b77278241eebd23f0ac2042542a9ffe31e79c 100644 --- a/apps/files_trashbin/l10n/pl.php +++ b/apps/files_trashbin/l10n/pl.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nie można trwale usunąć %s", "Couldn't restore %s" => "Nie można przywrócić %s", -"perform restore operation" => "wykonywanie operacji przywracania", "Error" => "Błąd", -"delete file permanently" => "trwale usuń plik", -"Delete permanently" => "Trwale usuń", -"Name" => "Nazwa", -"Deleted" => "Usunięte", -"_%n folder_::_%n folders_" => array("","","%n katalogów"), -"_%n file_::_%n files_" => array("","","%n plików"), "restored" => "przywrócony", "Nothing in here. Your trash bin is empty!" => "Nic tu nie ma. Twój kosz jest pusty!", +"Name" => "Nazwa", "Restore" => "Przywróć", +"Deleted" => "Usunięte", "Delete" => "Usuń", "Deleted Files" => "Usunięte pliki" ); diff --git a/apps/files_trashbin/l10n/pt_BR.php b/apps/files_trashbin/l10n/pt_BR.php index e0e8c8faec6b7f87f0e62a6e3557474514fac548..c2100efe96e2d955cc9888b8f006d78f3bb12a4a 100644 --- a/apps/files_trashbin/l10n/pt_BR.php +++ b/apps/files_trashbin/l10n/pt_BR.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Não foi possível excluir %s permanentemente", "Couldn't restore %s" => "Não foi possível restaurar %s", -"perform restore operation" => "realizar operação de restauração", "Error" => "Erro", -"delete file permanently" => "excluir arquivo permanentemente", -"Delete permanently" => "Excluir permanentemente", -"Name" => "Nome", -"Deleted" => "Excluído", -"_%n folder_::_%n folders_" => array("","%n pastas"), -"_%n file_::_%n files_" => array("%n arquivo","%n arquivos"), "restored" => "restaurado", "Nothing in here. Your trash bin is empty!" => "Nada aqui. Sua lixeira está vazia!", +"Name" => "Nome", "Restore" => "Restaurar", +"Deleted" => "Excluído", "Delete" => "Excluir", "Deleted Files" => "Arquivos Apagados" ); diff --git a/apps/files_trashbin/l10n/pt_PT.php b/apps/files_trashbin/l10n/pt_PT.php index 9dccc773cb1adfcb222cb46cab541f9dc7d3e9b4..89e84a84d283b9c441d6d0862e3e6309c318c8f1 100644 --- a/apps/files_trashbin/l10n/pt_PT.php +++ b/apps/files_trashbin/l10n/pt_PT.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Não foi possível eliminar %s de forma permanente", "Couldn't restore %s" => "Não foi possível restaurar %s", -"perform restore operation" => "executar a operação de restauro", "Error" => "Erro", -"delete file permanently" => "Eliminar permanentemente o(s) ficheiro(s)", -"Delete permanently" => "Eliminar permanentemente", -"Name" => "Nome", -"Deleted" => "Apagado", -"_%n folder_::_%n folders_" => array("%n pasta","%n pastas"), -"_%n file_::_%n files_" => array("%n ficheiro","%n ficheiros"), "restored" => "Restaurado", "Nothing in here. Your trash bin is empty!" => "Não hà ficheiros. O lixo está vazio!", +"Name" => "Nome", "Restore" => "Restaurar", +"Deleted" => "Apagado", "Delete" => "Eliminar", "Deleted Files" => "Ficheiros Apagados" ); diff --git a/apps/files_trashbin/l10n/ro.php b/apps/files_trashbin/l10n/ro.php index 12377bb065249cf371c38a6e7730baf988541877..f285dcc164ed0a990155a1ba01f7f11ed2bbd5f3 100644 --- a/apps/files_trashbin/l10n/ro.php +++ b/apps/files_trashbin/l10n/ro.php @@ -1,10 +1,7 @@ "Eroare", -"Delete permanently" => "Stergere permanenta", "Name" => "Nume", -"_%n folder_::_%n folders_" => array("","","%n directoare"), -"_%n file_::_%n files_" => array("","","%n fișiere"), "Delete" => "Șterge" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/apps/files_trashbin/l10n/ru.php b/apps/files_trashbin/l10n/ru.php index 5f52263a1185a613625b20d4b6e8a2c90386ce2c..06a4f864c6753f5c7216cde64061c0dd01f45703 100644 --- a/apps/files_trashbin/l10n/ru.php +++ b/apps/files_trashbin/l10n/ru.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "%s не может быть удалён навсегда", "Couldn't restore %s" => "%s не может быть восстановлен", -"perform restore operation" => "выполнить операцию восстановления", "Error" => "Ошибка", -"delete file permanently" => "удалить файл навсегда", -"Delete permanently" => "Удалено навсегда", -"Name" => "Имя", -"Deleted" => "Удалён", -"_%n folder_::_%n folders_" => array("","","%n папок"), -"_%n file_::_%n files_" => array("","","%n файлов"), "restored" => "восстановлен", "Nothing in here. Your trash bin is empty!" => "Здесь ничего нет. Ваша корзина пуста!", +"Name" => "Имя", "Restore" => "Восстановить", +"Deleted" => "Удалён", "Delete" => "Удалить", "Deleted Files" => "Удаленные файлы" ); diff --git a/apps/files_trashbin/l10n/si_LK.php b/apps/files_trashbin/l10n/si_LK.php index 6dad84437cf37981ac08e7593a85c60e3a1d7739..87e928989e40e077720a9364452824d6f63dd293 100644 --- a/apps/files_trashbin/l10n/si_LK.php +++ b/apps/files_trashbin/l10n/si_LK.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "දෝෂයක්", "Name" => "නම", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "මකා දමන්න" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/sk.php b/apps/files_trashbin/l10n/sk.php index 94aaf9b3a94937649bf432d87449003038f80c7d..3129cf5c411c867008748908c2c8c614f32d5a4c 100644 --- a/apps/files_trashbin/l10n/sk.php +++ b/apps/files_trashbin/l10n/sk.php @@ -1,6 +1,5 @@ array("","",""), -"_%n file_::_%n files_" => array("","","") +"Delete" => "Odstrániť" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_trashbin/l10n/sk_SK.php b/apps/files_trashbin/l10n/sk_SK.php index 50fb58a44e267275c800dba706b35d3a3b7e3626..b23383c1214f928e185e998f6997478358b56093 100644 --- a/apps/files_trashbin/l10n/sk_SK.php +++ b/apps/files_trashbin/l10n/sk_SK.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nemožno zmazať %s navždy", "Couldn't restore %s" => "Nemožno obnoviť %s", -"perform restore operation" => "vykonať obnovu", "Error" => "Chyba", -"delete file permanently" => "trvalo zmazať súbor", -"Delete permanently" => "Zmazať trvalo", -"Name" => "Názov", -"Deleted" => "Zmazané", -"_%n folder_::_%n folders_" => array("%n priečinok","%n priečinky","%n priečinkov"), -"_%n file_::_%n files_" => array("%n súbor","%n súbory","%n súborov"), "restored" => "obnovené", "Nothing in here. Your trash bin is empty!" => "Žiadny obsah. Kôš je prázdny!", +"Name" => "Názov", "Restore" => "Obnoviť", +"Deleted" => "Zmazané", "Delete" => "Zmazať", "Deleted Files" => "Zmazané súbory" ); diff --git a/apps/files_trashbin/l10n/sl.php b/apps/files_trashbin/l10n/sl.php index eb2d42a18ff4d489d722c06fb06f630c10e505ab..9f164ae709c6507b181270225104faa5020df730 100644 --- a/apps/files_trashbin/l10n/sl.php +++ b/apps/files_trashbin/l10n/sl.php @@ -1,17 +1,13 @@ "Datoteke %s ni mogoče dokončno izbrisati.", +"Couldn't delete %s permanently" => "Datoteke %s ni mogoče trajno izbrisati.", "Couldn't restore %s" => "Ni mogoče obnoviti %s", -"perform restore operation" => "izvedi opravilo obnavljanja", "Error" => "Napaka", -"delete file permanently" => "dokončno izbriši datoteko", -"Delete permanently" => "Izbriši dokončno", -"Name" => "Ime", -"Deleted" => "Izbrisano", -"_%n folder_::_%n folders_" => array("","","",""), -"_%n file_::_%n files_" => array("","","",""), +"restored" => "obnovljeno", "Nothing in here. Your trash bin is empty!" => "Mapa smeti je prazna.", +"Name" => "Ime", "Restore" => "Obnovi", +"Deleted" => "Izbrisano", "Delete" => "Izbriši", "Deleted Files" => "Izbrisane datoteke" ); diff --git a/apps/files_trashbin/l10n/sq.php b/apps/files_trashbin/l10n/sq.php index 50ca7d901b598f10dd6502c22e4e24f955d01f97..63957080f375a669f617c1266f6265eba79e14fb 100644 --- a/apps/files_trashbin/l10n/sq.php +++ b/apps/files_trashbin/l10n/sq.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nuk munda ta eliminoj përfundimisht %s", "Couldn't restore %s" => "Nuk munda ta rivendos %s", -"perform restore operation" => "ekzekuto operacionin e rivendosjes", "Error" => "Veprim i gabuar", -"delete file permanently" => "eliminoje përfundimisht skedarin", -"Delete permanently" => "Elimino përfundimisht", -"Name" => "Emri", -"Deleted" => "Eliminuar", -"_%n folder_::_%n folders_" => array("%n dosje","%n dosje"), -"_%n file_::_%n files_" => array("%n skedar","%n skedarë"), "restored" => "rivendosur", "Nothing in here. Your trash bin is empty!" => "Këtu nuk ka asgjë. Koshi juaj është bosh!", +"Name" => "Emri", "Restore" => "Rivendos", +"Deleted" => "Eliminuar", "Delete" => "Elimino", "Deleted Files" => "Skedarë të eliminuar" ); diff --git a/apps/files_trashbin/l10n/sr.php b/apps/files_trashbin/l10n/sr.php index 7311e759f989ca7747c0a47533d6011c4a2efa82..c893dba118b825efe88acff8e36da639c78eaf3f 100644 --- a/apps/files_trashbin/l10n/sr.php +++ b/apps/files_trashbin/l10n/sr.php @@ -1,14 +1,10 @@ "врати у претходно стање", "Error" => "Грешка", -"Delete permanently" => "Обриши за стално", -"Name" => "Име", -"Deleted" => "Обрисано", -"_%n folder_::_%n folders_" => array("","",""), -"_%n file_::_%n files_" => array("","",""), "Nothing in here. Your trash bin is empty!" => "Овде нема ништа. Корпа за отпатке је празна.", +"Name" => "Име", "Restore" => "Врати", +"Deleted" => "Обрисано", "Delete" => "Обриши" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_trashbin/l10n/sr@latin.php b/apps/files_trashbin/l10n/sr@latin.php index fa30afcf4bf53d8ca8e5c79382df29212513d315..9f18ac8be7d547f0440c72a28eb15ffcf33840e9 100644 --- a/apps/files_trashbin/l10n/sr@latin.php +++ b/apps/files_trashbin/l10n/sr@latin.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Greška", "Name" => "Ime", -"_%n folder_::_%n folders_" => array("","",""), -"_%n file_::_%n files_" => array("","",""), "Delete" => "Obriši" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_trashbin/l10n/sv.php b/apps/files_trashbin/l10n/sv.php index 47a52f25736459b9078bad87064b56b85d6f9771..21d4d15e9ccbf23dd9a4e751eafec90bd43b1d9d 100644 --- a/apps/files_trashbin/l10n/sv.php +++ b/apps/files_trashbin/l10n/sv.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Kunde inte radera %s permanent", "Couldn't restore %s" => "Kunde inte återställa %s", -"perform restore operation" => "utför återställning", "Error" => "Fel", -"delete file permanently" => "radera filen permanent", -"Delete permanently" => "Radera permanent", -"Name" => "Namn", -"Deleted" => "Raderad", -"_%n folder_::_%n folders_" => array("%n mapp","%n mappar"), -"_%n file_::_%n files_" => array("%n fil","%n filer"), "restored" => "återställd", "Nothing in here. Your trash bin is empty!" => "Ingenting här. Din papperskorg är tom!", +"Name" => "Namn", "Restore" => "Återskapa", +"Deleted" => "Raderad", "Delete" => "Radera", "Deleted Files" => "Raderade filer" ); diff --git a/apps/files_trashbin/l10n/ta_LK.php b/apps/files_trashbin/l10n/ta_LK.php index ed93b459c7db36046316ae7af68f8c9cdd60a7fc..79349919b52eff9277d776bade1f97fc3ca38280 100644 --- a/apps/files_trashbin/l10n/ta_LK.php +++ b/apps/files_trashbin/l10n/ta_LK.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "வழு", "Name" => "பெயர்", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "நீக்குக" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/te.php b/apps/files_trashbin/l10n/te.php index 0d803a8e648535a642a395e14e6ea56dee5edc6f..01262b78232920852f3d72ec69257f9d2274155f 100644 --- a/apps/files_trashbin/l10n/te.php +++ b/apps/files_trashbin/l10n/te.php @@ -1,10 +1,7 @@ "పొరపాటు", -"Delete permanently" => "శాశ్వతంగా తొలగించు", "Name" => "పేరు", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "తొలగించు" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/th_TH.php b/apps/files_trashbin/l10n/th_TH.php index 31caa11aac303bc0226b360145f37404b31858e7..65fd081a952e2226dc8d72966acd1f47cb1b8a11 100644 --- a/apps/files_trashbin/l10n/th_TH.php +++ b/apps/files_trashbin/l10n/th_TH.php @@ -1,13 +1,10 @@ "ดำเนินการคืนค่า", "Error" => "ข้อผิดพลาด", -"Name" => "ชื่อ", -"Deleted" => "ลบแล้ว", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "ไม่มีอะไรอยู่ในนี้ ถังขยะของคุณยังว่างอยู่", +"Name" => "ชื่อ", "Restore" => "คืนค่า", +"Deleted" => "ลบแล้ว", "Delete" => "ลบ", "Deleted Files" => "ไฟล์ที่ลบทิ้ง" ); diff --git a/apps/files_trashbin/l10n/tr.php b/apps/files_trashbin/l10n/tr.php index f25b179bc1efbcbc47cb3da9e86f6c77663e64c2..00a3b4d32a54d484a646f456093ed3a89b8eefe3 100644 --- a/apps/files_trashbin/l10n/tr.php +++ b/apps/files_trashbin/l10n/tr.php @@ -1,18 +1,13 @@ "%s Kalıcı olarak silinemedi", -"Couldn't restore %s" => "%s Geri yüklenemedi", -"perform restore operation" => "Geri yükleme işlemini gerçekleştir", +"Couldn't delete %s permanently" => "%s alıcı olarak silinemedi", +"Couldn't restore %s" => "%s eri yüklenemedi", "Error" => "Hata", -"delete file permanently" => "Dosyayı kalıcı olarak sil", -"Delete permanently" => "Kalıcı olarak sil", -"Name" => "İsim", -"Deleted" => "Silindi", -"_%n folder_::_%n folders_" => array("","%n dizin"), -"_%n file_::_%n files_" => array("","%n dosya"), "restored" => "geri yüklendi", -"Nothing in here. Your trash bin is empty!" => "Burası boş. Çöp kutun tamamen boş.", +"Nothing in here. Your trash bin is empty!" => "Burada hiçbir şey yok. Çöp kutunuz tamamen boş!", +"Name" => "İsim", "Restore" => "Geri yükle", +"Deleted" => "Silindi", "Delete" => "Sil", "Deleted Files" => "Silinen Dosyalar" ); diff --git a/apps/files_trashbin/l10n/ug.php b/apps/files_trashbin/l10n/ug.php index ad983aee18b7cc425e530b0e0466355a18b9adfb..54c040c88a7dd935b57e52f5ec4042240bb78374 100644 --- a/apps/files_trashbin/l10n/ug.php +++ b/apps/files_trashbin/l10n/ug.php @@ -1,12 +1,9 @@ "خاتالىق", -"Delete permanently" => "مەڭگۈلۈك ئۆچۈر", +"Nothing in here. Your trash bin is empty!" => "بۇ جايدا ھېچنېمە يوق. Your trash bin is empty!", "Name" => "ئاتى", "Deleted" => "ئۆچۈرۈلدى", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), -"Nothing in here. Your trash bin is empty!" => "بۇ جايدا ھېچنېمە يوق. Your trash bin is empty!", "Delete" => "ئۆچۈر" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/uk.php b/apps/files_trashbin/l10n/uk.php index aa4b65950323fffba703987029b83c41ccf884d5..c54d45aaa824f78c1478abb410e219c3313d8e9a 100644 --- a/apps/files_trashbin/l10n/uk.php +++ b/apps/files_trashbin/l10n/uk.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Неможливо видалити %s назавжди", "Couldn't restore %s" => "Неможливо відновити %s", -"perform restore operation" => "виконати операцію відновлення", "Error" => "Помилка", -"delete file permanently" => "видалити файл назавжди", -"Delete permanently" => "Видалити назавжди", -"Name" => "Ім'я", -"Deleted" => "Видалено", -"_%n folder_::_%n folders_" => array("","",""), -"_%n file_::_%n files_" => array("","",""), "restored" => "відновлено", "Nothing in here. Your trash bin is empty!" => "Нічого немає. Ваший кошик для сміття пустий!", +"Name" => "Ім'я", "Restore" => "Відновити", +"Deleted" => "Видалено", "Delete" => "Видалити", "Deleted Files" => "Видалено Файлів" ); diff --git a/apps/files_trashbin/l10n/ur_PK.php b/apps/files_trashbin/l10n/ur_PK.php index f6c6a3da3c84b3f5c08590b20530b8c2e84a5d01..49c82f53872c84830aff3465f8f713e57363bded 100644 --- a/apps/files_trashbin/l10n/ur_PK.php +++ b/apps/files_trashbin/l10n/ur_PK.php @@ -1,7 +1,5 @@ "ایرر", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("","") +"Error" => "ایرر" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/vi.php b/apps/files_trashbin/l10n/vi.php index 072d799fa6819d0cedd041904f80463b338f9b83..c5e899392bfb2f2d40d045fd7d38b437cf313db4 100644 --- a/apps/files_trashbin/l10n/vi.php +++ b/apps/files_trashbin/l10n/vi.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Không thể óa %s vĩnh viễn", "Couldn't restore %s" => "Không thể khôi phục %s", -"perform restore operation" => "thực hiện phục hồi", "Error" => "Lỗi", -"delete file permanently" => "xóa file vĩnh viễn", -"Delete permanently" => "Xóa vĩnh vễn", -"Name" => "Tên", -"Deleted" => "Đã xóa", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "Không có gì ở đây. Thùng rác của bạn rỗng!", +"Name" => "Tên", "Restore" => "Khôi phục", +"Deleted" => "Đã xóa", "Delete" => "Xóa", "Deleted Files" => "File đã xóa" ); diff --git a/apps/files_trashbin/l10n/zh_CN.php b/apps/files_trashbin/l10n/zh_CN.php index dc2d5b4c00e8d1960d9dc6ec5132811ea3a15864..24d9002adcb224772a18fb0be594d69d4c46c53f 100644 --- a/apps/files_trashbin/l10n/zh_CN.php +++ b/apps/files_trashbin/l10n/zh_CN.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "无法彻底删除文件%s", "Couldn't restore %s" => "无法恢复%s", -"perform restore operation" => "执行恢复操作", "Error" => "错误", -"delete file permanently" => "彻底删除文件", -"Delete permanently" => "永久删除", -"Name" => "名称", -"Deleted" => "已删除", -"_%n folder_::_%n folders_" => array("%n 文件夹"), -"_%n file_::_%n files_" => array("%n个文件"), "restored" => "已恢复", "Nothing in here. Your trash bin is empty!" => "这里没有东西. 你的回收站是空的!", +"Name" => "名称", "Restore" => "恢复", +"Deleted" => "已删除", "Delete" => "删除", "Deleted Files" => "已删除文件" ); diff --git a/apps/files_trashbin/l10n/zh_HK.php b/apps/files_trashbin/l10n/zh_HK.php index 3f0d663baeb10ee308c1ca65edae8e5bbd1a63c6..877912e9c4258c2cad4b24b1b4221fef8f383738 100644 --- a/apps/files_trashbin/l10n/zh_HK.php +++ b/apps/files_trashbin/l10n/zh_HK.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "錯誤", "Name" => "名稱", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Delete" => "刪除" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/zh_TW.php b/apps/files_trashbin/l10n/zh_TW.php index bfc2fc659de35b74a49a5db6452b28f6004a24ba..1f05a2687b6a33851d5272212d1c0f8876fef4b3 100644 --- a/apps/files_trashbin/l10n/zh_TW.php +++ b/apps/files_trashbin/l10n/zh_TW.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "無法永久刪除 %s", "Couldn't restore %s" => "無法還原 %s", -"perform restore operation" => "進行還原動作", "Error" => "錯誤", -"delete file permanently" => "永久刪除檔案", -"Delete permanently" => "永久刪除", -"Name" => "名稱", -"Deleted" => "已刪除", -"_%n folder_::_%n folders_" => array("%n 個資料夾"), -"_%n file_::_%n files_" => array("%n 個檔案"), "restored" => "已還原", "Nothing in here. Your trash bin is empty!" => "您的回收桶是空的!", +"Name" => "名稱", "Restore" => "還原", +"Deleted" => "已刪除", "Delete" => "刪除", "Deleted Files" => "已刪除的檔案" ); diff --git a/apps/files_trashbin/lib/helper.php b/apps/files_trashbin/lib/helper.php index 4f442ee930471cf39023059c071a79cd53376bf8..c454b35a5f2f231bb216836f33be665481ebe549 100644 --- a/apps/files_trashbin/lib/helper.php +++ b/apps/files_trashbin/lib/helper.php @@ -44,8 +44,10 @@ class Helper } $files = array(); + $id = 0; foreach ($result as $r) { $i = array(); + $i['id'] = $id++; $i['name'] = $r['id']; $i['date'] = \OCP\Util::formatDate($r['timestamp']); $i['timestamp'] = $r['timestamp']; diff --git a/apps/files_trashbin/lib/trashbin.php b/apps/files_trashbin/lib/trashbin.php index c79afdc0c2ec91c11a3bd1f968335d0607d77103..7544980e0719ccc39bb2b5aa14178b64c94d8c1d 100644 --- a/apps/files_trashbin/lib/trashbin.php +++ b/apps/files_trashbin/lib/trashbin.php @@ -41,13 +41,7 @@ class Trashbin { return array($uid, $filename); } - /** - * move file to the trash bin - * - * @param $file_path path to the deleted file/directory relative to the files root directory - */ - public static function move2trash($file_path) { - $user = \OCP\User::getUser(); + private static function setUpTrash($user) { $view = new \OC\Files\View('/' . $user); if (!$view->is_dir('files_trashbin')) { $view->mkdir('files_trashbin'); @@ -64,6 +58,48 @@ class Trashbin { if (!$view->is_dir('files_trashbin/share-keys')) { $view->mkdir('files_trashbin/share-keys'); } + } + + + private static function copyFilesToOwner($sourcePath, $owner, $ownerPath, $timestamp, $type, $mime) { + self::setUpTrash($owner); + + $ownerFilename = basename($ownerPath); + $ownerLocation = dirname($ownerPath); + + $sourceFilename = basename($sourcePath); + + $view = new \OC\Files\View('/'); + + $source = \OCP\User::getUser().'/files_trashbin/files/' . $sourceFilename . '.d' . $timestamp; + $target = $owner.'/files_trashbin/files/' . $ownerFilename . '.d' . $timestamp; + self::copy_recursive($source, $target, $view); + + + if ($view->file_exists($target)) { + $query = \OC_DB::prepare("INSERT INTO `*PREFIX*files_trash` (`id`,`timestamp`,`location`,`type`,`mime`,`user`) VALUES (?,?,?,?,?,?)"); + $result = $query->execute(array($ownerFilename, $timestamp, $ownerLocation, $type, $mime, $owner)); + if (!$result) { // if file couldn't be added to the database than also don't store it in the trash bin. + $view->deleteAll($owner.'/files_trashbin/files/' . $ownerFilename . '.d' . $timestamp); + \OC_Log::write('files_trashbin', 'trash bin database couldn\'t be updated for the files owner', \OC_log::ERROR); + return; + } + } + } + + + /** + * move file to the trash bin + * + * @param $file_path path to the deleted file/directory relative to the files root directory + */ + public static function move2trash($file_path) { + $user = \OCP\User::getUser(); + $size = 0; + list($owner, $ownerPath) = self::getUidAndFilename($file_path); + self::setUpTrash($user); + + $view = new \OC\Files\View('/' . $user); $path_parts = pathinfo($file_path); $filename = $path_parts['basename']; @@ -77,19 +113,20 @@ class Trashbin { $type = 'file'; } - $trashbinSize = self::getTrashbinSize($user); - if ($trashbinSize === false || $trashbinSize < 0) { - $trashbinSize = self::calculateSize(new \OC\Files\View('/' . $user . '/files_trashbin')); + $userTrashSize = self::getTrashbinSize($user); + if ($userTrashSize === false || $userTrashSize < 0) { + $userTrashSize = self::calculateSize(new \OC\Files\View('/' . $user . '/files_trashbin')); } // disable proxy to prevent recursive calls $proxyStatus = \OC_FileProxy::$enabled; \OC_FileProxy::$enabled = false; - $sizeOfAddedFiles = self::copy_recursive($file_path, 'files_trashbin/files/' . $filename . '.d' . $timestamp, $view); + $trashPath = '/files_trashbin/files/' . $filename . '.d' . $timestamp; + $sizeOfAddedFiles = self::copy_recursive('/files/'.$file_path, $trashPath, $view); \OC_FileProxy::$enabled = $proxyStatus; if ($view->file_exists('files_trashbin/files/' . $filename . '.d' . $timestamp)) { - $trashbinSize += $sizeOfAddedFiles; + $size = $sizeOfAddedFiles; $query = \OC_DB::prepare("INSERT INTO `*PREFIX*files_trash` (`id`,`timestamp`,`location`,`type`,`mime`,`user`) VALUES (?,?,?,?,?,?)"); $result = $query->execute(array($filename, $timestamp, $location, $type, $mime, $user)); if (!$result) { // if file couldn't be added to the database than also don't store it in the trash bin. @@ -100,15 +137,31 @@ class Trashbin { \OCP\Util::emitHook('\OCA\Files_Trashbin\Trashbin', 'post_moveToTrash', array('filePath' => \OC\Files\Filesystem::normalizePath($file_path), 'trashPath' => \OC\Files\Filesystem::normalizePath($filename . '.d' . $timestamp))); - $trashbinSize += self::retainVersions($file_path, $filename, $timestamp); - $trashbinSize += self::retainEncryptionKeys($file_path, $filename, $timestamp); + $size += self::retainVersions($file_path, $filename, $timestamp); + $size += self::retainEncryptionKeys($file_path, $filename, $timestamp); + + // if owner !== user we need to also add a copy to the owners trash + if ($user !== $owner) { + self::copyFilesToOwner($file_path, $owner, $ownerPath, $timestamp, $type, $mime); + } } else { \OC_Log::write('files_trashbin', 'Couldn\'t move ' . $file_path . ' to the trash bin', \OC_log::ERROR); } - $trashbinSize -= self::expire($trashbinSize); + $userTrashSize += $size; + $userTrashSize -= self::expire($userTrashSize, $user); + self::setTrashbinSize($user, $userTrashSize); - self::setTrashbinSize($user, $trashbinSize); + // if owner !== user we also need to update the owners trash size + if($owner !== $user) { + $ownerTrashSize = self::getTrashbinSize($owner); + if ($ownerTrashSize === false || $ownerTrashSize < 0) { + $ownerTrashSize = self::calculateSize(new \OC\Files\View('/' . $owner . '/files_trashbin')); + } + $ownerTrashSize += $size; + $ownerTrashSize -= self::expire($ownerTrashSize, $owner); + self::setTrashbinSize($owner, $ownerTrashSize); + } } /** @@ -135,10 +188,16 @@ class Trashbin { if ($rootView->is_dir($owner . '/files_versions/' . $ownerPath)) { $size += self::calculateSize(new \OC\Files\View('/' . $owner . '/files_versions/' . $ownerPath)); + if ($owner !== $user) { + self::copy_recursive($owner . '/files_versions/' . $ownerPath, $owner . '/files_trashbin/versions/' . basename($ownerPath) . '.d' . $timestamp, $rootView); + } $rootView->rename($owner . '/files_versions/' . $ownerPath, $user . '/files_trashbin/versions/' . $filename . '.d' . $timestamp); } else if ($versions = \OCA\Files_Versions\Storage::getVersions($owner, $ownerPath)) { foreach ($versions as $v) { $size += $rootView->filesize($owner . '/files_versions' . $v['path'] . '.v' . $v['version']); + if ($owner !== $user) { + $rootView->copy($owner . '/files_versions' . $v['path'] . '.v' . $v['version'], $owner . '/files_trashbin/versions/' . $v['name'] . '.v' . $v['version'] . '.d' . $timestamp); + } $rootView->rename($owner . '/files_versions' . $v['path'] . '.v' . $v['version'], $user . '/files_trashbin/versions/' . $filename . '.v' . $v['version'] . '.d' . $timestamp); } } @@ -187,9 +246,15 @@ class Trashbin { // move keyfiles if ($rootView->is_dir($keyfile)) { $size += self::calculateSize(new \OC\Files\View($keyfile)); + if ($owner !== $user) { + self::copy_recursive($keyfile, $owner . '/files_trashbin/keyfiles/' . basename($ownerPath) . '.d' . $timestamp, $rootView); + } $rootView->rename($keyfile, $user . '/files_trashbin/keyfiles/' . $filename . '.d' . $timestamp); } else { $size += $rootView->filesize($keyfile . '.key'); + if ($owner !== $user) { + $rootView->copy($keyfile . '.key', $owner . '/files_trashbin/keyfiles/' . basename($ownerPath) . '.key.d' . $timestamp); + } $rootView->rename($keyfile . '.key', $user . '/files_trashbin/keyfiles/' . $filename . '.key.d' . $timestamp); } } @@ -199,6 +264,9 @@ class Trashbin { if ($rootView->is_dir($sharekeys)) { $size += self::calculateSize(new \OC\Files\View($sharekeys)); + if ($owner !== $user) { + self::copy_recursive($sharekeys, $owner . '/files_trashbin/share-keys/' . basename($ownerPath) . '.d' . $timestamp, $rootView); + } $rootView->rename($sharekeys, $user . '/files_trashbin/share-keys/' . $filename . '.d' . $timestamp); } else { // get local path to share-keys @@ -211,22 +279,23 @@ class Trashbin { // get source file parts $pathinfo = pathinfo($src); - // we only want to keep the owners key so we can access the private key - $ownerShareKey = $filename . '.' . $user . '.shareKey'; + // we only want to keep the users key so we can access the private key + $userShareKey = $filename . '.' . $user . '.shareKey'; // if we found the share-key for the owner, we need to move it to files_trashbin - if ($pathinfo['basename'] == $ownerShareKey) { + if ($pathinfo['basename'] == $userShareKey) { // calculate size $size += $rootView->filesize($sharekeys . '.' . $user . '.shareKey'); // move file - $rootView->rename($sharekeys . '.' . $user . '.shareKey', $user . '/files_trashbin/share-keys/' . $ownerShareKey . '.d' . $timestamp); + $rootView->rename($sharekeys . '.' . $user . '.shareKey', $user . '/files_trashbin/share-keys/' . $userShareKey . '.d' . $timestamp); + } elseif ($owner !== $user) { + $ownerShareKey = basename($ownerPath) . '.' . $owner . '.shareKey'; + if ($pathinfo['basename'] == $ownerShareKey) { + $rootView->rename($sharekeys . '.' . $owner . '.shareKey', $owner . '/files_trashbin/share-keys/' . $ownerShareKey . '.d' . $timestamp); + } } else { - - // calculate size - $size += filesize($src); - // don't keep other share-keys unlink($src); } @@ -495,6 +564,21 @@ class Trashbin { return $size; } + /** + * @brief delete all files from the trash + */ + public static function deleteAll() { + $user = \OCP\User::getUser(); + $view = new \OC\Files\View('/' . $user); + $view->deleteAll('files_trashbin'); + self::setTrashbinSize($user, 0); + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*files_trash` WHERE `user`=?'); + $query->execute(array($user)); + + return true; + } + + /** * @brief delete file from trash bin permanently * @@ -530,6 +614,7 @@ class Trashbin { $size += $view->filesize('/files_trashbin/files/' . $file); } $view->unlink('/files_trashbin/files/' . $file); + \OC_Hook::emit('\OCP\Trashbin', 'delete', array('path' => '/files_trashbin/files/' . $file)); $trashbinSize -= $size; self::setTrashbinSize($user, $trashbinSize); @@ -649,7 +734,7 @@ class Trashbin { // calculate available space for trash bin // subtract size of files and current trash bin size from quota if ($softQuota) { - $rootInfo = $view->getFileInfo('/files/'); + $rootInfo = $view->getFileInfo('/files/', false); $free = $quota - $rootInfo['size']; // remaining free space for user if ($free > 0) { $availableSpace = ($free * self::DEFAULTMAXSIZE / 100) - $trashbinSize; // how much space can be used for versions @@ -678,7 +763,7 @@ class Trashbin { $freeSpace = self::calculateFreeSpace($size); if ($freeSpace < 0) { - $newSize = $size - self::expire($size); + $newSize = $size - self::expire($size, $user); if ($newSize !== $size) { self::setTrashbinSize($user, $newSize); } @@ -687,13 +772,19 @@ class Trashbin { /** * clean up the trash bin - * @param current size of the trash bin - * @return size of expired files + * @param int $trashbinSize current size of the trash bin + * @param string $user + * @return int size of expired files */ - private static function expire($trashbinSize) { + private static function expire($trashbinSize, $user) { + + // let the admin disable auto expire + $autoExpire = \OC_Config::getValue('trashbin_auto_expire', true); + if ($autoExpire === false) { + return 0; + } $user = \OCP\User::getUser(); - $view = new \OC\Files\View('/' . $user); $availableSpace = self::calculateFreeSpace($trashbinSize); $size = 0; @@ -741,23 +832,23 @@ class Trashbin { */ private static function copy_recursive($source, $destination, $view) { $size = 0; - if ($view->is_dir('files' . $source)) { + if ($view->is_dir($source)) { $view->mkdir($destination); - $view->touch($destination, $view->filemtime('files' . $source)); - foreach (\OC_Files::getDirectoryContent($source) as $i) { + $view->touch($destination, $view->filemtime($source)); + foreach ($view->getDirectoryContent($source) as $i) { $pathDir = $source . '/' . $i['name']; - if ($view->is_dir('files' . $pathDir)) { + if ($view->is_dir($pathDir)) { $size += self::copy_recursive($pathDir, $destination . '/' . $i['name'], $view); } else { - $size += $view->filesize('files' . $pathDir); - $view->copy('files' . $pathDir, $destination . '/' . $i['name']); - $view->touch($destination . '/' . $i['name'], $view->filemtime('files' . $pathDir)); + $size += $view->filesize($pathDir); + $view->copy($pathDir, $destination . '/' . $i['name']); + $view->touch($destination . '/' . $i['name'], $view->filemtime($pathDir)); } } } else { - $size += $view->filesize('files' . $source); - $view->copy('files' . $source, $destination); - $view->touch($destination, $view->filemtime('files' . $source)); + $size += $view->filesize($source); + $view->copy($source, $destination); + $view->touch($destination, $view->filemtime($source)); } return $size; } diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index 82ba0608834c95e6fcdc2632dd694235c90613b7..f9264d4352cca017004e6a3021f304bd5feb5dde 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -1,13 +1,10 @@ -
    - -
    t('Nothing in here. Your trash bin is empty!'))?>
    - +
    class="hidden">t('Nothing in here. Your trash bin is empty!'))?>
    @@ -17,7 +14,9 @@ + t( 'Deleted' )); ?> diff --git a/apps/files_trashbin/templates/part.breadcrumb.php b/apps/files_trashbin/templates/part.breadcrumb.php index 4acc298adbe3c2cdb65e59eb56148f5335e06608..fdf78c190d0bbe1ed03096dba4768b8203723645 100644 --- a/apps/files_trashbin/templates/part.breadcrumb.php +++ b/apps/files_trashbin/templates/part.breadcrumb.php @@ -3,11 +3,11 @@
    - - + > - + + + + - + - + - + - + diff --git a/apps/files_versions/ajax/getVersions.php b/apps/files_versions/ajax/getVersions.php index 4f48f71d8ca3b756e46c8066133e0b5bbb0130ca..4cc1c4288985760429695e0ecdb5cc725b15c96d 100644 --- a/apps/files_versions/ajax/getVersions.php +++ b/apps/files_versions/ajax/getVersions.php @@ -5,7 +5,8 @@ $source = $_GET['source']; $start = $_GET['start']; list ($uid, $filename) = OCA\Files_Versions\Storage::getUidAndFilename($source); $count = 5; //show the newest revisions -if( ($versions = OCA\Files_Versions\Storage::getVersions($uid, $filename)) ) { +$versions = OCA\Files_Versions\Storage::getVersions($uid, $filename, $source); +if( $versions ) { $endReached = false; if (count($versions) <= $start+$count) { diff --git a/apps/files_versions/ajax/preview.php b/apps/files_versions/ajax/preview.php new file mode 100644 index 0000000000000000000000000000000000000000..bd9b7366ab06b54523b7d5c9ceaa60e25009442a --- /dev/null +++ b/apps/files_versions/ajax/preview.php @@ -0,0 +1,45 @@ +setMimetype($mimetype); + $preview->setMaxX($maxX); + $preview->setMaxY($maxY); + $preview->setScalingUp($scalingUp); + + $preview->showPreview(); +}catch(\Exception $e) { + \OC_Response::setStatus(500); + \OC_Log::write('core', $e->getmessage(), \OC_Log::DEBUG); +} diff --git a/apps/files_versions/appinfo/app.php b/apps/files_versions/appinfo/app.php index 5b1e464ba6cadc72f861d86a7ae74f5d3dadb5fb..8f2071dd7b6d35c248a26d22f6b603f4b014584e 100644 --- a/apps/files_versions/appinfo/app.php +++ b/apps/files_versions/appinfo/app.php @@ -12,6 +12,7 @@ OCP\Util::addStyle('files_versions', 'versions'); OCP\Util::connectHook('OC_Filesystem', 'write', "OCA\Files_Versions\Hooks", "write_hook"); // Listen to delete and rename signals OCP\Util::connectHook('OC_Filesystem', 'post_delete', "OCA\Files_Versions\Hooks", "remove_hook"); +OCP\Util::connectHook('OC_Filesystem', 'delete', "OCA\Files_Versions\Hooks", "pre_remove_hook"); OCP\Util::connectHook('OC_Filesystem', 'rename', "OCA\Files_Versions\Hooks", "rename_hook"); //Listen to delete user signal OCP\Util::connectHook('OC_User', 'pre_deleteUser', "OCA\Files_Versions\Hooks", "deleteUser_hook"); diff --git a/apps/files_versions/appinfo/routes.php b/apps/files_versions/appinfo/routes.php index 38c288adf9d2a6ecc91970d62820b9dbb6def254..8d2abaa89e5ed80cc8a5585e41394a6774d62f9b 100644 --- a/apps/files_versions/appinfo/routes.php +++ b/apps/files_versions/appinfo/routes.php @@ -7,3 +7,8 @@ // Register with the capabilities API OC_API::register('get', '/cloud/capabilities', array('OCA\Files_Versions\Capabilities', 'getCapabilities'), 'files_versions', OC_API::USER_AUTH); + +$this->create('core_ajax_versions_preview', '/preview.png')->action( +function() { + require_once __DIR__ . '/../ajax/preview.php'; +}); diff --git a/apps/files_versions/css/versions.css b/apps/files_versions/css/versions.css index 6a9b3a95698a8cb8da9f4d3624a934c9980a39a2..16755f35a7688863f1f76adf239e686044ec7522 100644 --- a/apps/files_versions/css/versions.css +++ b/apps/files_versions/css/versions.css @@ -1,11 +1,11 @@ #dropdown.drop-versions { - width:22em; + width:320px; } #found_versions li { width: 100%; cursor: default; - height: 36px; + height: 56px; float: left; border-bottom: 1px solid rgba(100,100,100,.1); } @@ -21,6 +21,12 @@ filter: alpha(opacity=50); opacity: .5; } + +#found_versions li > a, +#found_versions li > span { + padding: 17px 7px; +} + #found_versions li > *:hover, #found_versions li > *:focus { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; @@ -33,6 +39,11 @@ padding-right: 4px; } +#found_versions img.preview { + cursor: default; + opacity: 1; +} + #found_versions .versionDate { min-width: 100px; vertical-align: text-bottom; diff --git a/apps/files_versions/download.php b/apps/files_versions/download.php index 040a662e61bf70511d7fdffa716d462d8d812a4e..2fe56d2e6383e4089729b9d53f3b4409c0ced431 100644 --- a/apps/files_versions/download.php +++ b/apps/files_versions/download.php @@ -36,12 +36,7 @@ $view = new OC\Files\View('/'); $ftype = $view->getMimeType('/'.$uid.'/files/'.$filename); header('Content-Type:'.$ftype); -if ( preg_match( "/MSIE/", $_SERVER["HTTP_USER_AGENT"] ) ) { - header( 'Content-Disposition: attachment; filename="' . rawurlencode( basename($filename) ) . '"' ); -} else { - header( 'Content-Disposition: attachment; filename*=UTF-8\'\'' . rawurlencode( basename($filename) ) - . '; filename="' . rawurlencode( basename($filename) ) . '"' ); -} +OCP\Response::setContentDispositionHeader(basename($filename), 'attachment'); OCP\Response::disableCaching(); header('Content-Length: '.$view->filesize($versionName)); diff --git a/apps/files_versions/js/versions.js b/apps/files_versions/js/versions.js index f57e931bad9aa328dd2d6c504ee86f82567e61bc..4adf14745de06c54fd495e63568ebaa89e882cc7 100644 --- a/apps/files_versions/js/versions.js +++ b/apps/files_versions/js/versions.js @@ -1,5 +1,12 @@ $(document).ready(function(){ + if ($('#isPublic').val()){ + // no versions actions in public mode + // beware of https://github.com/owncloud/core/issues/4545 + // as enabling this might hang Chrome + return; + } + if (typeof FileActions !== 'undefined') { // Add versions button to 'files/index.php' FileActions.register( @@ -14,7 +21,7 @@ $(document).ready(function(){ // Action to perform when clicked if (scanFiles.scanning){return;}//workaround to prevent additional http request block scanning feedback - var file = $('#dir').val()+'/'+filename; + var file = $('#dir').val().replace(/(?!<=\/)$|\/$/, '/' + filename); var createDropDown = true; // Check if drop down is already visible for a different file if (($('#dropdown').length > 0) ) { @@ -70,6 +77,7 @@ function goToVersionPage(url){ function createVersionsDropdown(filename, files) { var start = 0; + var fileEl; var html = '
    -
    + 0): ?> +
    t( 'Advanced' )); ?> +
    + + + 0): ?> +
    + + 0): ?>
    @@ -171,6 +181,7 @@
    + -
    +
    diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php index ea10c3042b592f7f192d9723be89e68493a14e6e..bae52a732344436c5cdec5b4e5efa57561a7c955 100644 --- a/core/templates/layout.base.php +++ b/core/templates/layout.base.php @@ -11,6 +11,7 @@ getTitle()); ?> + diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index 9c9eb63382fff615bb93777b226c6570f94e9e89..6a96b17b100a03ab84693b6fe8b5b2a05c8bf247 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -11,6 +11,7 @@ getTitle()); ?> + diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 71bec11d219b7bfb342a413f76b729f8a8e3095c..89987625d63d9d5bcc506895563adf725f1cc37a 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -8,12 +8,14 @@ - <?php p(!empty($_['application'])?$_['application'].' | ':''); - p($theme->getTitle()); - p(trim($_['user_displayname']) != '' ?' ('.$_['user_displayname'].') ':'') ?> + <?php + p(!empty($_['application'])?$_['application'].' - ':''); + p($theme->getTitle()); + ?> + @@ -35,6 +37,7 @@ + + +
    + t('Server side authentication failed!')); ?>
    + t('Please contact your administrator.')); ?> +
    + +
    +

    diff --git a/core/templates/mail.php b/core/templates/mail.php index de72b136b135149a73b09bf04b7dbb2b55b12cc4..b8b0a2bfe96824d1b53cf6d65dcd19105f37e2fa 100644 --- a/core/templates/mail.php +++ b/core/templates/mail.php @@ -12,7 +12,12 @@   t('Hey there,

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

    Cheers!', array($_['user_displayname'], $_['filename'], $_['link']))); +print_unescaped($l->t('Hey there,

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

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

    '); +} +p($l->t('Cheers!')); ?> @@ -22,7 +27,8 @@ print_unescaped($l->t('Hey there,

    just letting you know that %s shared » --
    getName()); ?> - getSlogan()); ?> -
    getBaseUrl());?> +
    getBaseUrl());?> +   diff --git a/core/templates/message.html b/core/templates/message.html index 59048100f32031358ef32d6cc1c8e49e401ed64b..cd642231a9eabe0b8400872c369d87af2d930882 100644 --- a/core/templates/message.html +++ b/core/templates/message.html @@ -1,3 +1,3 @@ -

    +

    {message}

    diff --git a/core/templates/singleuser.user.php b/core/templates/singleuser.user.php new file mode 100644 index 0000000000000000000000000000000000000000..a5f56f6e2c40fac126fe376724f19bf119593c1e --- /dev/null +++ b/core/templates/singleuser.user.php @@ -0,0 +1,10 @@ +
      +
    • + t('This ownCloud instance is currently in single user mode.')) ?>

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

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

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

      + >t('Log out')); ?> +
    • +
    diff --git a/core/templates/tags.html b/core/templates/tags.html new file mode 100644 index 0000000000000000000000000000000000000000..ae3d072b381eea1970d218522d0cb3ea2feca876 --- /dev/null +++ b/core/templates/tags.html @@ -0,0 +1,14 @@ +
    +
    +
    +
      +
    • + +
    • +
    +
    +
    + +
    +
    +
    diff --git a/core/templates/update.php b/core/templates/update.admin.php similarity index 100% rename from core/templates/update.php rename to core/templates/update.admin.php diff --git a/core/templates/update.user.php b/core/templates/update.user.php new file mode 100644 index 0000000000000000000000000000000000000000..bb93f0fad0080b662d112e6bfe49dea76dd1ac40 --- /dev/null +++ b/core/templates/update.user.php @@ -0,0 +1,8 @@ +
      +
    • + t('This ownCloud instance is currently being updated, which may take a while.')) ?>

      + t('Please reload this page after a short time to continue using ownCloud.')) ?>

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

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

      +
    • +
    diff --git a/cron.php b/cron.php index 8e1a3376d53dba768a9e891adc8c3a38c1766d5a..0d2c07b2d956aa17a3fd61cfa27c47e65368f122 100644 --- a/cron.php +++ b/cron.php @@ -50,6 +50,8 @@ try { session_write_close(); + $logger = \OC_Log::$object; + // Don't do anything if ownCloud has not been installed if (!OC_Config::getValue('installed', false)) { exit(0); @@ -98,7 +100,7 @@ try { $jobList = new \OC\BackgroundJob\JobList(); $jobs = $jobList->getAll(); foreach ($jobs as $job) { - $job->execute($jobList); + $job->execute($jobList, $logger); } } else { // We call cron.php from some website @@ -109,7 +111,7 @@ try { // Work and success :-) $jobList = new \OC\BackgroundJob\JobList(); $job = $jobList->getNext(); - $job->execute($jobList); + $job->execute($jobList, $logger); $jobList->setLastJob($job); OC_JSON::success(); } diff --git a/db_structure.xml b/db_structure.xml index 86f9989e1c237e7c035c40157e01dddbd3ca7340..3cb2af287afe5175faa5498f36a83a2d4334e3fe 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -9,6 +9,11 @@ + *dbprefix*appconfig @@ -55,6 +60,13 @@ ascending + + appconfig_appid_key + + appid + ascending + + @@ -62,6 +74,13 @@
    + *dbprefix*storages @@ -159,6 +178,12 @@
    + *dbprefix*mimetypes @@ -195,6 +220,16 @@
    + *dbprefix*filecache @@ -208,6 +243,7 @@ 4 + storage integer @@ -232,6 +268,7 @@ 32 + parent integer @@ -248,6 +285,7 @@ 250 + mimetype integer @@ -256,6 +294,7 @@ 4 + mimepart integer @@ -367,10 +406,15 @@
    + *dbprefix*permissions + fileid integer @@ -379,6 +423,7 @@ 4 + user text @@ -413,10 +458,16 @@
    + *dbprefix*group_user + gid text @@ -425,6 +476,7 @@ 64 + uid text @@ -453,10 +505,19 @@
    + *dbprefix*group_admin + gid text @@ -465,6 +526,7 @@ 64 + uid text @@ -500,6 +562,9 @@
    + *dbprefix*groups @@ -527,6 +592,9 @@
    + *dbprefix*locks @@ -541,6 +609,7 @@ 4 + userid text @@ -606,10 +675,16 @@
    + *dbprefix*preferences + userid text @@ -664,6 +739,9 @@
    + *dbprefix*properties @@ -677,6 +755,7 @@ 4 + userid text @@ -722,6 +801,9 @@
    + *dbprefix*share @@ -735,6 +817,7 @@ 4 + share_type integer @@ -743,6 +826,7 @@ 1 + share_with text @@ -751,6 +835,7 @@ 255 + uid_owner text @@ -759,6 +844,7 @@ 255 + parent integer @@ -766,6 +852,7 @@ 4 + item_type text @@ -774,6 +861,7 @@ 64 + item_source text @@ -790,6 +878,7 @@ 255 + file_source integer @@ -805,6 +894,7 @@ 512 + permissions integer @@ -813,6 +903,7 @@ 1 + stime integer @@ -821,6 +912,7 @@ 8 + accepted integer @@ -829,6 +921,7 @@ 1 + expiration timestamp @@ -844,6 +937,32 @@ 32 + + mail_send + integer + 0 + true + 1 + + + + item_share_type_index + + item_type + ascending + + + share_type + ascending + + + + file_source_index + + file_source + ascending + + token_index @@ -857,6 +976,10 @@
    + *dbprefix*jobs @@ -876,7 +999,7 @@ text true - 256 + 255 @@ -908,6 +1031,9 @@
    + *dbprefix*users @@ -950,6 +1076,9 @@
    + *dbprefix*vcategory @@ -964,6 +1093,7 @@ 4 + uid text @@ -1017,6 +1147,9 @@
    + *dbprefix*vcategory_to_object @@ -1030,6 +1163,7 @@ 4 + categoryid integer @@ -1065,8 +1199,89 @@ + + vcategory_objectd_index + + objid + ascending + + + type + ascending + + + + + +
    + + + + + *dbprefix*privatedata + + + + + keyid + integer + 0 + true + true + 4 + 1 + + + + + user + text + + true + 255 + + + + app + text + + true + 255 + + + + key + text + + true + 255 + + + + value + text + + true + 255 + + + + true + true + keyid_index + + keyid + ascending + + +
    + diff --git a/index.php b/index.php index 40063fa6e05b44305807b88926d331e6477b5bba..0a2f15f9f5e74de24e2b5da2d908b8ee62796b00 100755 --- a/index.php +++ b/index.php @@ -30,8 +30,9 @@ try { OC::handleRequest(); } catch (Exception $ex) { + \OCP\Util::logException('index', $ex); + //show the user a detailed error page - \OCP\Util::writeLog('index', $ex->getMessage(), \OCP\Util::FATAL); OC_Response::setStatus(OC_Response::STATUS_INTERNAL_SERVER_ERROR); OC_Template::printExceptionErrorPage($ex); } diff --git a/issue_template.md b/issue_template.md index f9bff71af97cb972d766e9e195215c6c5f679974..0ddc7667bf3dd457210eae9d54452151d89369da 100644 --- a/issue_template.md +++ b/issue_template.md @@ -18,7 +18,15 @@ Database: PHP version: -ownCloud version: +ownCloud version: (see ownCloud admin page) + +Updated from an older ownCloud or fresh install: + +List of activated app: + +The content of config/config.php: (Without the database password and passwordsalt) + +Are you using external storage, if yes which one: ### Client configuration Browser: diff --git a/l10n/ach/core.po b/l10n/ach/core.po index 070293766e8d780b6bff86c813b19e34dc1b43fe..9808a0ee036338e174d41917887f8a639a1315a9 100644 --- a/l10n/ach/core.po +++ b/l10n/ach/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-08 03:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,14 @@ msgstr "" "Language: ach\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -190,55 +152,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "" @@ -306,155 +268,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" +#: js/share.js:213 +msgid "Share with user or group …" msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -503,12 +493,12 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" msgstr "" #: lostpassword/templates/resetpassword.php:4 @@ -535,7 +525,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "" @@ -547,6 +537,34 @@ msgstr "" 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 "" @@ -563,108 +581,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -682,19 +711,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -702,10 +739,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " msgstr "" -#: templates/update.php:3 +#: 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/ach/files.po b/l10n/ach/files.po index b8a81660f4d313cce3166f790deac20af47592f8..169f2307c38d51f2771dbf604e78152ad977c3d1 100644 --- a/l10n/ach/files.po +++ b/l10n/ach/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06: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" @@ -27,220 +27,286 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" msgstr "" -#: js/fileactions.js:119 -msgid "Share" +#: js/file-upload.js:595 +msgid "Could not create file" msgstr "" -#: js/fileactions.js:131 -msgid "Delete permanently" +#: js/file-upload.js:611 +msgid "Could not create folder" msgstr "" -#: js/fileactions.js:197 -msgid "Rename" +#: js/file-upload.js:661 +msgid "Error fetching URL" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 -msgid "Pending" +#: js/fileactions.js:125 +msgid "Share" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/fileactions.js:137 +msgid "Delete permanently" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" +#: js/fileactions.js:194 +msgid "Rename" msgstr "" -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "" @@ -276,65 +342,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/ach/files_encryption.po b/l10n/ach/files_encryption.po index bc509f34dc4b245fbcf598e1d6de38a523e2de20..576cbab3749874c08048526ae5a478cd400ac0a8 100644 --- a/l10n/ach/files_encryption.po +++ b/l10n/ach/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:39-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:51 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:52 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:250 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 -msgid "Saving..." +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." +#: js/settings-admin.js:13 +msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ach/files_sharing.po b/l10n/ach/files_sharing.po index a6aa642bca6eef26a044405f4f83c96f91a169df..ed2a3de1d7de8f84933e60565308be7cab45d6f0 100644 --- a/l10n/ach/files_sharing.po +++ b/l10n/ach/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" +"POT-Creation-Date: 2013-10-21 13:01-0400\n" +"PO-Revision-Date: 2013-10-21 17:02+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" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" + +#: templates/public.php:98 +msgid "Direct link" +msgstr "" diff --git a/l10n/ach/files_trashbin.po b/l10n/ach/files_trashbin.po index 327f892ea05e9bb711c58a3faea0436fe8886671..1eeccfe967462b888c69733adf2f1721e8e7e00e 100644 --- a/l10n/ach/files_trashbin.po +++ b/l10n/ach/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:37 -msgid "delete file permanently" +#: lib/trashbin.php:814 lib/trashbin.php:816 +msgid "restored" msgstr "" -#: js/trash.js:129 -msgid "Delete permanently" +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:184 templates/index.php:17 +#: templates/index.php:23 msgid "Name" msgstr "" -#: js/trash.js:185 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:193 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:199 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:814 lib/trash.php:816 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:26 templates/index.php:28 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:34 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/ach/lib.po b/l10n/ach/lib.po index efa6747b0fb17c06e3b730b49f090a382bfd0d76..188f480eab572183251caa0002b81e56e5cfbe62 100644 --- a/l10n/ach/lib.po +++ b/l10n/ach/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,317 @@ msgstr "" "Language: ach\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/ach/settings.po b/l10n/ach/settings.po index 591268ad3876e2a936da818d7090bc24d954d2d8..8b891176d1ea1af2d1ece19f51195e7700334a9f 100644 --- a/l10n/ach/settings.po +++ b/l10n/ach/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,31 +129,31 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/ach/user_ldap.po b/l10n/ach/user_ldap.po index 8c2514234b3303e0ad50bc7a99a7b9749996090b..b4fe8bb26198edf6500801aa42908a4b48bc7e32 100644 --- a/l10n/ach/user_ldap.po +++ b/l10n/ach/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-27 17:09+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" @@ -25,314 +25,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "" -#: js/settings.js:141 +#: js/settings.js:777 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:786 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:795 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:812 js/settings.js:821 +msgid "Select groups" +msgstr "" + +#: js/settings.js:815 js/settings.js:824 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:818 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:845 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:852 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:861 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:862 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:779 lib/wizard.php:791 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:952 +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 "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "" diff --git a/l10n/ady/core.po b/l10n/ady/core.po new file mode 100644 index 0000000000000000000000000000000000000000..21767522354b76e76e13073bf5bbf5a8760fe309 --- /dev/null +++ b/l10n/ady/core.po @@ -0,0 +1,775 @@ +# 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: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-08 03:26+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:119 ajax/share.php:198 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: ajax/share.php:169 +#, 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 "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +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:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:33 +msgid "Monday" +msgstr "" + +#: js/config.php:34 +msgid "Tuesday" +msgstr "" + +#: js/config.php:35 +msgid "Wednesday" +msgstr "" + +#: js/config.php:36 +msgid "Thursday" +msgstr "" + +#: js/config.php:37 +msgid "Friday" +msgstr "" + +#: js/config.php:38 +msgid "Saturday" +msgstr "" + +#: js/config.php:43 +msgid "January" +msgstr "" + +#: js/config.php:44 +msgid "February" +msgstr "" + +#: js/config.php:45 +msgid "March" +msgstr "" + +#: js/config.php:46 +msgid "April" +msgstr "" + +#: js/config.php:47 +msgid "May" +msgstr "" + +#: js/config.php:48 +msgid "June" +msgstr "" + +#: js/config.php:49 +msgid "July" +msgstr "" + +#: js/config.php:50 +msgid "August" +msgstr "" + +#: js/config.php:51 +msgid "September" +msgstr "" + +#: js/config.php:52 +msgid "October" +msgstr "" + +#: js/config.php:53 +msgid "November" +msgstr "" + +#: js/config.php:54 +msgid "December" +msgstr "" + +#: js/js.js:387 +msgid "Settings" +msgstr "" + +#: js/js.js:858 +msgid "seconds ago" +msgstr "" + +#: js/js.js:859 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:860 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:861 +msgid "today" +msgstr "" + +#: js/js.js:862 +msgid "yesterday" +msgstr "" + +#: js/js.js:863 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:864 +msgid "last month" +msgstr "" + +#: js/js.js:865 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:866 +msgid "months ago" +msgstr "" + +#: js/js.js:867 +msgid "last year" +msgstr "" + +#: js/js.js:868 +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/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:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 +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:187 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:189 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:219 +msgid "Share link" +msgstr "" + +#: js/share.js:222 +msgid "Password protect" +msgstr "" + +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +msgid "Password" +msgstr "" + +#: js/share.js:229 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:233 +msgid "Email link to person" +msgstr "" + +#: js/share.js:234 +msgid "Send" +msgstr "" + +#: js/share.js:239 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:240 +msgid "Expiration date" +msgstr "" + +#: js/share.js:275 +msgid "Share via email:" +msgstr "" + +#: js/share.js:278 +msgid "No people found" +msgstr "" + +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:375 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:397 +msgid "Unshare" +msgstr "" + +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 +msgid "can edit" +msgstr "" + +#: js/share.js:410 +msgid "access control" +msgstr "" + +#: js/share.js:413 +msgid "create" +msgstr "" + +#: js/share.js:416 +msgid "update" +msgstr "" + +#: js/share.js:419 +msgid "delete" +msgstr "" + +#: js/share.js:422 +msgid "share" +msgstr "" + +#: js/share.js:694 +msgid "Password protected" +msgstr "" + +#: js/share.js:707 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:719 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:734 +msgid "Sending ..." +msgstr "" + +#: js/share.js:745 +msgid "Email sent" +msgstr "" + +#: js/share.js:769 +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 ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:62 +#, php-format +msgid "%s password reset" +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.
    If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
    If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
    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:52 +#: templates/login.php:31 +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 "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:111 +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 documentation." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:67 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:74 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:86 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 +msgid "will be used" +msgstr "" + +#: templates/installation.php:149 +msgid "Database user" +msgstr "" + +#: templates/installation.php:156 +msgid "Database password" +msgstr "" + +#: templates/installation.php:161 +msgid "Database name" +msgstr "" + +#: templates/installation.php:169 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:176 +msgid "Database host" +msgstr "" + +#: templates/installation.php:185 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:72 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:44 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:49 +msgid "remember" +msgstr "" + +#: templates/login.php:52 +msgid "Log in" +msgstr "" + +#: templates/login.php:58 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    " +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/ady/files.po b/l10n/ady/files.po new file mode 100644 index 0000000000000000000000000000000000000000..95bd2e10d1dbdad4524898335afd4af9716f7ed9 --- /dev/null +++ b/l10n/ady/files.po @@ -0,0 +1,413 @@ +# 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: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06: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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:27 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:64 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:71 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:72 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:74 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:75 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:76 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:77 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:78 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:96 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:127 ajax/upload.php:154 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:144 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:172 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 +msgid "Files" +msgstr "" + +#: js/file-upload.js:228 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:239 +msgid "Not enough space available" +msgstr "" + +#: js/file-upload.js:306 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:344 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:436 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 +msgid "Share" +msgstr "" + +#: js/fileactions.js:137 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:194 +msgid "Rename" +msgstr "" + +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" +msgstr "" + +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:539 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:539 +msgid "undo" +msgstr "" + +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:617 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:828 js/filelist.js:866 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:72 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:81 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:93 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:97 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:349 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error moving file" +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 +msgid "Name" +msgstr "" + +#: js/files.js:614 templates/index.php:68 +msgid "Size" +msgstr "" + +#: js/files.js:615 templates/index.php:70 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:11 templates/index.php:16 +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:5 +msgid "New" +msgstr "" + +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 +msgid "Text file" +msgstr "" + +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From link" +msgstr "" + +#: templates/index.php:29 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:34 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:45 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:62 +msgid "Download" +msgstr "" + +#: templates/index.php:73 templates/index.php:74 +msgid "Delete" +msgstr "" + +#: templates/index.php:86 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:88 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:93 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:96 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/ady/files_encryption.po b/l10n/ady/files_encryption.po new file mode 100644 index 0000000000000000000000000000000000000000..d36a8d8deff2df02ce55dbee4348805a9d664bd1 --- /dev/null +++ b/l10n/ady/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: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\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:59 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:60 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "" + +#: hooks/hooks.php:273 +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/settings-admin.js:13 +msgid "Saving..." +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/ady/files_external.po b/l10n/ady/files_external.po new file mode 100644 index 0000000000000000000000000000000000000000..9715fc2bc005d32cf96eb0663b20803d1b55e7ef --- /dev/null +++ b/l10n/ady/files_external.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 15:03+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:86 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:42 js/google.js:121 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:453 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:457 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:460 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/ady/files_sharing.po b/l10n/ady/files_sharing.po new file mode 100644 index 0000000000000000000000000000000000000000..c155c36bdaa5d7b4aea9eb3b4c673547d501a2a3 --- /dev/null +++ b/l10n/ady/files_sharing.po @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-21 13:01-0400\n" +"PO-Revision-Date: 2013-10-21 17:02+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: 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 "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:20 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:28 templates/public.php:94 +msgid "Download" +msgstr "" + +#: templates/public.php:45 templates/public.php:48 +msgid "Upload" +msgstr "" + +#: templates/public.php:58 +msgid "Cancel upload" +msgstr "" + +#: templates/public.php:91 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:98 +msgid "Direct link" +msgstr "" diff --git a/l10n/ady/files_trashbin.po b/l10n/ady/files_trashbin.po new file mode 100644 index 0000000000000000000000000000000000000000..c8916178f73c34df34ae054a45e1a98e1f653fcb --- /dev/null +++ b/l10n/ady/files_trashbin.po @@ -0,0 +1,60 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:42 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:42 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +msgid "Error" +msgstr "" + +#: lib/trashbin.php:814 lib/trashbin.php:816 +msgid "restored" +msgstr "" + +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:23 +msgid "Name" +msgstr "" + +#: templates/index.php:26 templates/index.php:28 +msgid "Restore" +msgstr "" + +#: templates/index.php:34 +msgid "Deleted" +msgstr "" + +#: templates/index.php:37 templates/index.php:38 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/ady/files_versions.po b/l10n/ady/files_versions.po new file mode 100644 index 0000000000000000000000000000000000000000..5e9e0e8f2a70e9af0fc0c50e2fabb307c787af30 --- /dev/null +++ b/l10n/ady/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: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 15:03+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:7 +msgid "Versions" +msgstr "" + +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:79 +msgid "More versions..." +msgstr "" + +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:147 +msgid "Restore" +msgstr "" diff --git a/l10n/ady/lib.po b/l10n/ady/lib.po new file mode 100644 index 0000000000000000000000000000000000000000..6043ba35ec8853c868b076a0c9e54f928c477e5a --- /dev/null +++ b/l10n/ady/lib.po @@ -0,0 +1,333 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: private/app.php:243 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:255 +msgid "No app name specified" +msgstr "" + +#: private/app.php:360 +msgid "Help" +msgstr "" + +#: private/app.php:373 +msgid "Personal" +msgstr "" + +#: private/app.php:384 +msgid "Settings" +msgstr "" + +#: private/app.php:396 +msgid "Users" +msgstr "" + +#: private/app.php:409 +msgid "Admin" +msgstr "" + +#: private/app.php:873 +#, 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:34 +msgid "web services under your control" +msgstr "" + +#: private/files.php:66 private/files.php:98 +#, php-format +msgid "cannot open \"%s\"" +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:63 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:125 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:131 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:140 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:146 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:159 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:169 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:182 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:39 private/json.php:62 private/json.php:73 +msgid "Authentication error" +msgstr "" + +#: private/json.php:51 +msgid "Token expired. Please reload page." +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:24 +#: private/setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL 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:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#, 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL." +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:23 private/setup/postgresql.php:69 +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:195 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:196 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:131 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:132 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:133 +msgid "today" +msgstr "" + +#: private/template/functions.php:134 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:136 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:138 +msgid "last month" +msgstr "" + +#: private/template/functions.php:139 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:141 +msgid "last year" +msgstr "" + +#: private/template/functions.php:142 +msgid "years ago" +msgstr "" diff --git a/l10n/ady/settings.po b/l10n/ady/settings.po new file mode 100644 index 0000000000000000000000000000000000000000..72191d83824264565f35ec188dd68bda7883d468 --- /dev/null +++ b/l10n/ady/settings.po @@ -0,0 +1,668 @@ +# 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: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 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/apps.js:43 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +msgid "Disable" +msgstr "" + +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +msgid "Enable" +msgstr "" + +#: js/apps.js:71 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:125 +msgid "Updating...." +msgstr "" + +#: js/apps.js:128 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:128 +msgid "Error" +msgstr "" + +#: js/apps.js:129 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:132 +msgid "Updated" +msgstr "" + +#: js/personal.js:220 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:266 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/personal.js:287 +msgid "Saving..." +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:95 templates/users.php:26 templates/users.php:90 +#: templates/users.php:118 +msgid "Groups" +msgstr "" + +#: js/users.js:100 templates/users.php:92 templates/users.php:130 +msgid "Group Admin" +msgstr "" + +#: js/users.js:123 templates/users.php:170 +msgid "Delete" +msgstr "" + +#: js/users.js:284 +msgid "add group" +msgstr "" + +#: js/users.js:451 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:452 js/users.js:458 js/users.js:473 +msgid "Error creating user" +msgstr "" + +#: js/users.js:457 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:45 personal.php:46 +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:22 templates/admin.php:36 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:25 +#, 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:39 +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:50 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:53 +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:54 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:65 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:68 +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:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 +#, 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:118 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:121 +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:135 +msgid "Cron" +msgstr "" + +#: templates/admin.php:142 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:150 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:163 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:169 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:170 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:177 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:178 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:186 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:187 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:195 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:196 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:203 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:206 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 +msgid "Security" +msgstr "" + +#: templates/admin.php:234 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:236 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:242 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:254 +msgid "Log" +msgstr "" + +#: templates/admin.php:255 +msgid "Log level" +msgstr "" + +#: templates/admin.php:287 +msgid "More" +msgstr "" + +#: templates/admin.php:288 +msgid "Less" +msgstr "" + +#: templates/admin.php:294 templates/personal.php:173 +msgid "Version" +msgstr "" + +#: templates/admin.php:298 templates/personal.php:176 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:13 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:28 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:33 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:39 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:41 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +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 %s of the available %s" +msgstr "" + +#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +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:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:44 +msgid "New password" +msgstr "" + +#: templates/personal.php:46 +msgid "Change password" +msgstr "" + +#: templates/personal.php:58 templates/users.php:88 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:73 +msgid "Email" +msgstr "" + +#: templates/personal.php:75 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:76 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:86 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:91 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:93 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:94 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:95 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:97 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:101 +msgid "Abort" +msgstr "" + +#: templates/personal.php:102 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:110 templates/personal.php:111 +msgid "Language" +msgstr "" + +#: templates/personal.php:130 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:137 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:139 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "" + +#: templates/personal.php:150 +msgid "Encryption" +msgstr "" + +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:158 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:163 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:21 +msgid "Login Name" +msgstr "" + +#: templates/users.php:30 +msgid "Create" +msgstr "" + +#: templates/users.php:36 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:48 templates/users.php:148 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:66 templates/users.php:163 +msgid "Other" +msgstr "" + +#: templates/users.php:87 +msgid "Username" +msgstr "" + +#: templates/users.php:94 +msgid "Storage" +msgstr "" + +#: templates/users.php:108 +msgid "change full name" +msgstr "" + +#: templates/users.php:112 +msgid "set new password" +msgstr "" + +#: templates/users.php:143 +msgid "Default" +msgstr "" diff --git a/l10n/ady/user_ldap.po b/l10n/ady/user_ldap.po new file mode 100644 index 0000000000000000000000000000000000000000..9c997191382c83b50f473ea5a5318f73222cbb60 --- /dev/null +++ b/l10n/ady/user_ldap.po @@ -0,0 +1,513 @@ +# 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: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-27 17:09+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\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:37 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:40 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:44 +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:777 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:786 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:795 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:812 js/settings.js:821 +msgid "Select groups" +msgstr "" + +#: js/settings.js:815 js/settings.js:824 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:818 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:845 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:852 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:861 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:862 +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:779 lib/wizard.php:791 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:952 +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 "Limit the access to %s to groups meeting this criteria:" +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 "What attribute shall be used as login name:" +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 the access to %s to users meeting this 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 "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php: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:40 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:42 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:43 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:43 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:44 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:45 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:45 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:51 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:52 +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:53 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:54 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:55 +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:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:58 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:59 +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:60 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:60 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/ady/user_webdavauth.po b/l10n/ady/user_webdavauth.po new file mode 100644 index 0000000000000000000000000000000000000000..d20828e05ef807db1d3e6d24d458a00ffc391804 --- /dev/null +++ b/l10n/ady/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 15:03+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\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/af/core.po b/l10n/af/core.po index d2470d10b9266200af4b9ebd98661f18750f1127..a93e0580171629fe4c85ad35e7dbd1af4a3fce68 100644 --- a/l10n/af/core.po +++ b/l10n/af/core.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-18 02:03+0200\n" -"PO-Revision-Date: 2012-10-18 00:04+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-08 03:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,227 +17,488 @@ msgstr "" "Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 -msgid "Application name not provided." +#: ajax/share.php:119 ajax/share.php:198 +#, php-format +msgid "%s shared »%s« with you" msgstr "" -#: ajax/vcategories/add.php:29 -msgid "No category to add?" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/vcategories/add.php:36 -msgid "This category already exists: " +#: ajax/update.php:11 +msgid "Turned on maintenance mode" msgstr "" -#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 -msgid "Settings" +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +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:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:33 +msgid "Monday" msgstr "" -#: js/js.js:670 +#: js/config.php:34 +msgid "Tuesday" +msgstr "" + +#: js/config.php:35 +msgid "Wednesday" +msgstr "" + +#: js/config.php:36 +msgid "Thursday" +msgstr "" + +#: js/config.php:37 +msgid "Friday" +msgstr "" + +#: js/config.php:38 +msgid "Saturday" +msgstr "" + +#: js/config.php:43 msgid "January" msgstr "" -#: js/js.js:670 +#: js/config.php:44 msgid "February" msgstr "" -#: js/js.js:670 +#: js/config.php:45 msgid "March" msgstr "" -#: js/js.js:670 +#: js/config.php:46 msgid "April" msgstr "" -#: js/js.js:670 +#: js/config.php:47 msgid "May" msgstr "" -#: js/js.js:670 +#: js/config.php:48 msgid "June" msgstr "" -#: js/js.js:671 +#: js/config.php:49 msgid "July" msgstr "" -#: js/js.js:671 +#: js/config.php:50 msgid "August" msgstr "" -#: js/js.js:671 +#: js/config.php:51 msgid "September" msgstr "" -#: js/js.js:671 +#: js/config.php:52 msgid "October" msgstr "" -#: js/js.js:671 +#: js/config.php:53 msgid "November" msgstr "" -#: js/js.js:671 +#: js/config.php:54 msgid "December" msgstr "" +#: js/js.js:387 +msgid "Settings" +msgstr "" + +#: js/js.js:858 +msgid "seconds ago" +msgstr "" + +#: js/js.js:859 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:860 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:861 +msgid "today" +msgstr "" + +#: js/js.js:862 +msgid "yesterday" +msgstr "" + +#: js/js.js:863 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:864 +msgid "last month" +msgstr "" + +#: js/js.js:865 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:866 +msgid "months ago" +msgstr "" + +#: js/js.js:867 +msgid "last year" +msgstr "" + +#: js/js.js:868 +msgid "years ago" +msgstr "" + #: js/oc-dialogs.js:123 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:143 js/oc-dialogs.js:163 -msgid "Cancel" +#: js/oc-dialogs.js:146 +msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:159 -msgid "No" +#: js/oc-dialogs.js:172 +msgid "Yes" msgstr "" -#: js/oc-dialogs.js:160 -msgid "Yes" +#: js/oc-dialogs.js:182 +msgid "No" msgstr "" -#: js/oc-dialogs.js:177 +#: js/oc-dialogs.js:199 msgid "Ok" msgstr "" -#: js/oc-vcategories.js:68 -msgid "No categories selected for deletion." +#: 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-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 -#: js/share.js:509 +#: 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/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:707 +#: js/share.js:719 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:103 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:114 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:121 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:130 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:132 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:137 -msgid "Share with" +#: js/share.js:213 +msgid "Share with user or group …" msgstr "" -#: js/share.js:142 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:143 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "" -#: js/share.js:152 +#: js/share.js:229 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:233 +msgid "Email link to person" +msgstr "" + +#: js/share.js:234 +msgid "Send" +msgstr "" + +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:153 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:185 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:187 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:214 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:250 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:271 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:283 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:285 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:288 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:291 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:294 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:297 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:322 js/share.js:484 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:497 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:509 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: lostpassword/index.php:26 -msgid "ownCloud password reset" +#: js/share.js:734 +msgid "Sending ..." +msgstr "" + +#: js/share.js:745 +msgid "Email sent" +msgstr "" + +#: js/share.js:769 +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 ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:62 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" -#: lostpassword/templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." +#: lostpassword/templates/lostpassword.php:7 +msgid "" +"The link to reset your password has been sent to your email.
    If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:5 -msgid "Requested" +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:8 -msgid "Login failed!" +#: lostpassword/templates/lostpassword.php:18 +msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:14 -msgid "Request reset" +#: 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 @@ -264,7 +525,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "" @@ -276,148 +537,239 @@ msgstr "" 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:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" +#: 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/edit_categories_dialog.php:14 -msgid "Add" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." msgstr "" -#: templates/installation.php:23 templates/installation.php:31 +#: 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:24 +#: 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:26 +#: 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:32 +#: templates/installation.php:40 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." msgstr "" -#: templates/installation.php:36 -msgid "Create an admin account" +#: templates/installation.php:42 +#, php-format +msgid "" +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:48 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:67 msgid "Advanced" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:74 msgid "Data folder" msgstr "" -#: templates/installation.php:57 +#: templates/installation.php:86 msgid "Configure the database" msgstr "" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "" -#: templates/installation.php:105 +#: templates/installation.php:149 msgid "Database user" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:156 msgid "Database password" msgstr "" -#: templates/installation.php:113 +#: templates/installation.php:161 msgid "Database name" msgstr "" -#: templates/installation.php:121 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:176 msgid "Database host" msgstr "" -#: templates/installation.php:132 +#: templates/installation.php:185 msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:38 -msgid "web services under your control" +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:34 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "" -#: templates/login.php:8 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "" -#: templates/login.php:27 +#: templates/login.php:49 msgid "remember" msgstr "" -#: templates/login.php:28 +#: templates/login.php:52 msgid "Log in" msgstr "" -#: templates/logout.php:1 -msgid "You are logged out." +#: templates/login.php:58 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    " msgstr "" -#: templates/part.pagenavi.php:3 -msgid "prev" +#: 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/part.pagenavi.php:20 -msgid "next" +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." msgstr "" -#: templates/verify.php:5 -msgid "Security Warning!" +#: templates/update.admin.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" -#: templates/verify.php:6 +#: templates/update.user.php:3 msgid "" -"Please verify your password.
    For security reasons you may be " -"occasionally asked to enter your password again." +"This ownCloud instance is currently being updated, which may take a while." msgstr "" -#: templates/verify.php:16 -msgid "Verify" +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." msgstr "" diff --git a/l10n/af/files.po b/l10n/af/files.po index 5f5576757327f99a9d90836f1f4f2129e94a6067..b5cf6a2f4ba2db932516799565847643c089bf43 100644 --- a/l10n/af/files.po +++ b/l10n/af/files.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-19 02:03+0200\n" -"PO-Revision-Date: 2012-10-19 00:04+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,199 +17,297 @@ msgstr "" "Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:27 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:64 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:21 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +#: ajax/upload.php:72 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: appinfo/app.php:6 -msgid "Files" +#: ajax/upload.php:96 +msgid "Not enough storage available" msgstr "" -#: js/fileactions.js:108 templates/index.php:62 -msgid "Unshare" +#: ajax/upload.php:127 ajax/upload.php:154 +msgid "Upload failed. Could not get file info." msgstr "" -#: js/fileactions.js:110 templates/index.php:64 -msgid "Delete" +#: ajax/upload.php:144 +msgid "Upload failed. Could not find uploaded file" msgstr "" -#: js/fileactions.js:182 -msgid "Rename" +#: ajax/upload.php:172 +msgid "Invalid directory." msgstr "" -#: js/filelist.js:194 js/filelist.js:196 -msgid "{new_name} already exists" +#: appinfo/app.php:11 +msgid "Files" msgstr "" -#: js/filelist.js:194 js/filelist.js:196 -msgid "replace" +#: js/file-upload.js:228 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/filelist.js:194 -msgid "suggest name" +#: js/file-upload.js:239 +msgid "Not enough space available" msgstr "" -#: js/filelist.js:194 js/filelist.js:196 -msgid "cancel" +#: js/file-upload.js:306 +msgid "Upload cancelled." msgstr "" -#: js/filelist.js:243 -msgid "replaced {new_name}" +#: js/file-upload.js:344 +msgid "Could not get result from server." msgstr "" -#: js/filelist.js:243 js/filelist.js:245 js/filelist.js:277 js/filelist.js:279 -msgid "undo" +#: js/file-upload.js:436 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/filelist.js:245 -msgid "replaced {new_name} with {old_name}" +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/filelist.js:277 -msgid "unshared {files}" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/filelist.js:279 -msgid "deleted {files}" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" msgstr "" -#: js/files.js:179 -msgid "generating ZIP-file, it may take some time." +#: js/file-upload.js:595 +msgid "Could not create file" msgstr "" -#: js/files.js:214 -msgid "Unable to upload your file as it is a directory or has 0 bytes" +#: js/file-upload.js:611 +msgid "Could not create folder" msgstr "" -#: js/files.js:214 -msgid "Upload Error" +#: js/file-upload.js:661 +msgid "Error fetching URL" msgstr "" -#: js/files.js:242 js/files.js:347 js/files.js:377 -msgid "Pending" +#: js/fileactions.js:125 +msgid "Share" msgstr "" -#: js/files.js:262 -msgid "1 file uploading" +#: js/fileactions.js:137 +msgid "Delete permanently" msgstr "" -#: js/files.js:265 js/files.js:310 js/files.js:325 -msgid "{count} files uploading" +#: js/fileactions.js:194 +msgid "Rename" msgstr "" -#: js/files.js:328 js/files.js:361 -msgid "Upload cancelled." +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" msgstr "" -#: js/files.js:430 -msgid "" -"File upload is in progress. Leaving the page now will cancel the upload." +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/files.js:500 -msgid "Invalid name, '/' is not allowed." +#: js/filelist.js:539 +msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/files.js:681 -msgid "{count} files scanned" +#: js/filelist.js:539 +msgid "undo" msgstr "" -#: js/files.js:689 -msgid "error while scanning" +#: js/filelist.js:591 +msgid "Error deleting file." msgstr "" -#: js/files.js:762 templates/index.php:48 -msgid "Name" +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:617 +msgid "{dirs} and {files}" msgstr "" -#: js/files.js:763 templates/index.php:56 -msgid "Size" +#: js/filelist.js:828 js/filelist.js:866 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:72 +msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:764 templates/index.php:58 -msgid "Modified" +#: js/files.js:81 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." msgstr "" -#: js/files.js:791 -msgid "1 folder" +#: js/files.js:93 +msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:793 -msgid "{count} folders" +#: js/files.js:97 +msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:801 -msgid "1 file" +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" msgstr "" -#: js/files.js:803 -msgid "{count} files" +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." msgstr "" -#: js/files.js:846 -msgid "seconds ago" +#: js/files.js:118 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." msgstr "" -#: js/files.js:847 -msgid "1 minute ago" +#: js/files.js:349 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." msgstr "" -#: js/files.js:848 -msgid "{minutes} minutes ago" +#: js/files.js:558 js/files.js:596 +msgid "Error moving file" msgstr "" -#: js/files.js:851 -msgid "today" +#: js/files.js:558 js/files.js:596 +msgid "Error" msgstr "" -#: js/files.js:852 -msgid "yesterday" +#: js/files.js:613 templates/index.php:56 +msgid "Name" msgstr "" -#: js/files.js:853 -msgid "{days} days ago" +#: js/files.js:614 templates/index.php:68 +msgid "Size" msgstr "" -#: js/files.js:854 -msgid "last month" +#: js/files.js:615 templates/index.php:70 +msgid "Modified" msgstr "" -#: js/files.js:856 -msgid "months ago" +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: js/files.js:857 -msgid "last year" +#: lib/app.php:101 +#, php-format +msgid "%s could not be renamed" msgstr "" -#: js/files.js:858 -msgid "years ago" +#: lib/helper.php:11 templates/index.php:16 +msgid "Upload" msgstr "" #: templates/admin.php:5 @@ -220,80 +318,96 @@ msgstr "" msgid "Maximum upload size" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:11 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:26 msgid "Save" msgstr "" -#: templates/index.php:7 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" +#: templates/index.php:10 +msgid "New folder" +msgstr "" + #: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:11 -msgid "From url" +#: templates/index.php:12 +msgid "From link" msgstr "" -#: templates/index.php:20 -msgid "Upload" +#: templates/index.php:29 +msgid "Deleted files" msgstr "" -#: templates/index.php:27 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" #: templates/index.php:40 -msgid "Nothing in here. Upload something!" +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 -msgid "Share" +#: templates/index.php:45 +msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:52 +#: templates/index.php:62 msgid "Download" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 templates/index.php:74 +msgid "Delete" +msgstr "" + +#: templates/index.php:86 msgid "Upload too large" msgstr "" -#: templates/index.php:77 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:82 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:85 +#: templates/index.php:96 msgid "Current scanning" msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/af/files_encryption.po b/l10n/af/files_encryption.po index ba20608786dbbdb7f4341cc9f7e4466818bb4555..a8ac7007bd7706e0b4d6a93965ac1e7059f8c597 100644 --- a/l10n/af/files_encryption.po +++ b/l10n/af/files_encryption.po @@ -6,29 +6,196 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: templates/settings.php:3 +#: 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:59 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:60 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "" + +#: hooks/hooks.php:273 +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/settings-admin.js:13 +msgid "Saving..." +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.php:4 -msgid "Exclude the following file types from encryption" +#: 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.php:5 -msgid "None" +#: templates/settings-personal.php:60 +msgid "File recovery settings updated" msgstr "" -#: templates/settings.php:10 -msgid "Enable Encryption" +#: templates/settings-personal.php:61 +msgid "Could not update file recovery" msgstr "" diff --git a/l10n/af/files_external.po b/l10n/af/files_external.po index 1c1530dd031333f645bbf6939d91ddc50eddf3a0..12bc380c9770b9cfe4d5999bccb40dfb629ae2cc 100644 --- a/l10n/af/files_external.po +++ b/l10n/af/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-02 23:16+0200\n" -"PO-Revision-Date: 2012-10-02 21:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-27 02:28-0400\n" +"PO-Revision-Date: 2013-10-21 18:25+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,90 +17,107 @@ msgstr "" "Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "" -#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" -#: js/dropbox.js:73 js/google.js:72 -msgid "Fill out all required fields" -msgstr "" - -#: js/dropbox.js:85 +#: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:26 js/google.js:73 js/google.js:78 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" +#: lib/config.php:453 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:457 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:460 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" -#: templates/settings.php:7 templates/settings.php:19 -msgid "Mount point" +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" msgstr "" -#: templates/settings.php:8 -msgid "Backend" +#: templates/settings.php:10 +msgid "External storage" msgstr "" -#: templates/settings.php:9 +#: templates/settings.php:11 msgid "Configuration" msgstr "" -#: templates/settings.php:10 +#: templates/settings.php:12 msgid "Options" msgstr "" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Applicable" msgstr "" -#: templates/settings.php:23 -msgid "Add mount point" +#: templates/settings.php:33 +msgid "Add storage" msgstr "" -#: templates/settings.php:54 templates/settings.php:62 +#: templates/settings.php:90 msgid "None set" msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:91 msgid "All Users" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:92 msgid "Groups" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:100 msgid "Users" msgstr "" -#: templates/settings.php:77 templates/settings.php:107 +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 msgid "Delete" msgstr "" -#: templates/settings.php:87 +#: templates/settings.php:129 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:130 msgid "Allow users to mount their own external storage" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:141 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:113 +#: templates/settings.php:159 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/af/files_sharing.po b/l10n/af/files_sharing.po index 8bf34f8b16467ea89d7ec7035c4eff00a9c6a443..1321de36427c3a03124f4b446193d8df202ffc27 100644 --- a/l10n/af/files_sharing.po +++ b/l10n/af/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-27 02:28-0400\n" +"PO-Revision-Date: 2013-10-21 18:25+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,31 +18,67 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: 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/authenticate.php:6 -msgid "Submit" +#: 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:9 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:45 templates/public.php:48 +msgid "Upload" +msgstr "" + +#: templates/public.php:58 +msgid "Cancel upload" +msgstr "" + +#: templates/public.php:91 msgid "No preview available for" msgstr "" -#: templates/public.php:37 -msgid "web services under your control" +#: templates/public.php:98 +msgid "Direct link" msgstr "" diff --git a/l10n/af/files_trashbin.po b/l10n/af/files_trashbin.po new file mode 100644 index 0000000000000000000000000000000000000000..d5ff3ad381639b22cc6f3be920614d6d35d6a39e --- /dev/null +++ b/l10n/af/files_trashbin.po @@ -0,0 +1,60 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-27 02:28-0400\n" +"PO-Revision-Date: 2013-10-21 18:25+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:42 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:42 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +msgid "Error" +msgstr "" + +#: lib/trashbin.php:814 lib/trashbin.php:816 +msgid "restored" +msgstr "" + +#: templates/index.php:8 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:22 +msgid "Name" +msgstr "" + +#: templates/index.php:25 templates/index.php:27 +msgid "Restore" +msgstr "" + +#: templates/index.php:33 +msgid "Deleted" +msgstr "" + +#: templates/index.php:36 templates/index.php:37 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/af/files_versions.po b/l10n/af/files_versions.po index 27b0fa365229c18b0c6e1569466e23d7a10a8574..7fd959bbb78d0aa36206438cf9cd8674e2111ccc 100644 --- a/l10n/af/files_versions.po +++ b/l10n/af/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-27 02:28-0400\n" +"PO-Revision-Date: 2013-10-21 18:25+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,26 +17,27 @@ msgstr "" "Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" msgstr "" -#: js/versions.js:16 -msgid "History" +#: js/versions.js:14 +msgid "Versions" msgstr "" -#: templates/settings-personal.php:4 -msgid "Versions" +#: js/versions.js:60 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" +#: js/versions.js:86 +msgid "More versions..." msgstr "" -#: templates/settings.php:3 -msgid "Files Versioning" +#: js/versions.js:123 +msgid "No other versions available" msgstr "" -#: templates/settings.php:4 -msgid "Enable" +#: js/versions.js:154 +msgid "Restore" msgstr "" diff --git a/l10n/af/lib.po b/l10n/af/lib.po index a38949f2308af04013a986d6e1e252a3cbd51bbf..8954006a8a73f4fd0426b3225b215e48b539c336 100644 --- a/l10n/af/lib.po +++ b/l10n/af/lib.po @@ -6,120 +6,328 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:288 +#: private/app.php:243 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:255 +msgid "No app name specified" +msgstr "" + +#: private/app.php:360 msgid "Help" msgstr "" -#: app.php:295 +#: private/app.php:373 msgid "Personal" msgstr "" -#: app.php:300 +#: private/app.php:384 msgid "Settings" msgstr "" -#: app.php:305 +#: private/app.php:396 msgid "Users" msgstr "" -#: app.php:312 -msgid "Apps" +#: private/app.php:409 +msgid "Admin" +msgstr "" + +#: private/app.php:873 +#, php-format +msgid "Failed to upgrade \"%s\"." msgstr "" -#: app.php:314 -msgid "Admin" +#: private/avatar.php:66 +msgid "Unknown filetype" +msgstr "" + +#: private/avatar.php:71 +msgid "Invalid image" +msgstr "" + +#: private/defaults.php:34 +msgid "web services under your control" +msgstr "" + +#: private/files.php:66 private/files.php:98 +#, php-format +msgid "cannot open \"%s\"" msgstr "" -#: files.php:280 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:281 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:281 files.php:306 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:305 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: json.php:28 +#: private/files.php:259 +msgid "" +"Please download the files separately in smaller chunks or kindly ask your " +"administrator." +msgstr "" + +#: private/installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:125 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:131 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:140 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:146 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:159 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:169 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:182 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:63 json.php:75 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: template.php:86 -msgid "seconds ago" +#: 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 "" -#: template.php:87 -msgid "1 minute ago" +#: private/search/provider/file.php:30 +msgid "Images" msgstr "" -#: template.php:88 +#: private/setup/abstractdatabase.php:26 #, php-format -msgid "%d minutes ago" +msgid "%s enter the database username." msgstr "" -#: template.php:91 -msgid "today" +#: private/setup/abstractdatabase.php:29 +#, php-format +msgid "%s enter the database name." msgstr "" -#: template.php:92 -msgid "yesterday" +#: private/setup/abstractdatabase.php:32 +#, php-format +msgid "%s you may not use dots in the database name" msgstr "" -#: template.php:93 +#: private/setup/mssql.php:20 #, php-format -msgid "%d days ago" +msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: template.php:94 -msgid "last month" +#: 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 +msgid "You need to enter either an existing account or the administrator." msgstr "" -#: template.php:95 -msgid "months ago" +#: private/setup/mysql.php:12 +msgid "MySQL username and/or password not valid" msgstr "" -#: template.php:96 -msgid "last year" +#: 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 +#, php-format +msgid "DB Error: \"%s\"" msgstr "" -#: template.php:97 -msgid "years ago" +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL." +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:23 private/setup/postgresql.php:69 +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:195 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:196 +#, php-format +msgid "Please double check the installation guides." msgstr "" -#: updater.php:66 +#: private/tags.php:194 #, php-format -msgid "%s is available. Get more information" +msgid "Could not find category \"%s\"" msgstr "" -#: updater.php:68 -msgid "up to date" +#: private/template/functions.php:130 +msgid "seconds ago" msgstr "" -#: updater.php:71 -msgid "updates check is disabled" +#: private/template/functions.php:131 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:132 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:133 +msgid "today" +msgstr "" + +#: private/template/functions.php:134 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:136 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:138 +msgid "last month" +msgstr "" + +#: private/template/functions.php:139 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:141 +msgid "last year" +msgstr "" + +#: private/template/functions.php:142 +msgid "years ago" msgstr "" diff --git a/l10n/af/settings.po b/l10n/af/settings.po index 498430daa783f65b2b6b4f72a4c9c06525f44006..542ebc1bb0c0457d9962322397f854b42588e1b7 100644 --- a/l10n/af/settings.po +++ b/l10n/af/settings.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-09 02:03+0200\n" -"PO-Revision-Date: 2012-10-09 00:04+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,159 +17,429 @@ msgstr "" "Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/apps/ocs.php:23 +#: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" -#: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:15 +#: 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/creategroup.php:19 -msgid "Group already exists" +#: ajax/changedisplayname.php:31 +msgid "Your full name has been changed." msgstr "" -#: ajax/creategroup.php:28 -msgid "Unable to add group" +#: ajax/changedisplayname.php:34 +msgid "Unable to change full name" msgstr "" -#: ajax/enableapp.php:14 -msgid "Could not enable app. " +#: ajax/creategroup.php:10 +msgid "Group already exists" msgstr "" -#: ajax/lostpassword.php:14 +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" -#: ajax/lostpassword.php:16 +#: ajax/lostpassword.php:14 msgid "Invalid email" msgstr "" -#: ajax/openid.php:16 -msgid "OpenID Changed" +#: ajax/removegroup.php:13 +msgid "Unable to delete group" msgstr "" -#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 -msgid "Invalid request" +#: ajax/removeuser.php:25 +msgid "Unable to delete user" msgstr "" -#: ajax/removegroup.php:16 -msgid "Unable to delete group" +#: ajax/setlanguage.php:15 +msgid "Language changed" msgstr "" -#: ajax/removeuser.php:22 -msgid "Unable to delete user" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" msgstr "" -#: ajax/setlanguage.php:18 -msgid "Language changed" +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" msgstr "" -#: ajax/togglegroups.php:25 +#: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" msgstr "" -#: ajax/togglegroups.php:31 +#: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:28 js/apps.js:65 +#: 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/apps.js:43 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:28 js/apps.js:54 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" -#: js/personal.js:69 +#: js/apps.js:71 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:125 +msgid "Updating...." +msgstr "" + +#: js/apps.js:128 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:128 +msgid "Error" +msgstr "" + +#: js/apps.js:129 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:132 +msgid "Updated" +msgstr "" + +#: js/personal.js:220 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:266 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/personal.js:287 msgid "Saving..." msgstr "" -#: personal.php:47 personal.php:48 +#: 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:95 templates/users.php:26 templates/users.php:90 +#: templates/users.php:118 +msgid "Groups" +msgstr "" + +#: js/users.js:100 templates/users.php:92 templates/users.php:130 +msgid "Group Admin" +msgstr "" + +#: js/users.js:123 templates/users.php:170 +msgid "Delete" +msgstr "" + +#: js/users.js:284 +msgid "add group" +msgstr "" + +#: js/users.js:451 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:452 js/users.js:458 js/users.js:473 +msgid "Error creating user" +msgstr "" + +#: js/users.js:457 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:14 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"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:31 +#: templates/admin.php:50 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:53 +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:54 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:65 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:68 +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:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 +#, 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:118 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:121 +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:135 msgid "Cron" msgstr "" -#: templates/admin.php:37 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:43 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service. Call the cron.php page in the " -"owncloud root once a minute over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:49 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:61 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:62 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:67 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:73 +#: templates/admin.php:186 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:187 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:81 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 +msgid "Security" +msgstr "" + +#: templates/admin.php:234 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:236 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:242 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:116 +#: templates/admin.php:255 +msgid "Log level" +msgstr "" + +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:124 +#: templates/admin.php:288 +msgid "Less" +msgstr "" + +#: templates/admin.php:294 templates/personal.php:173 +msgid "Version" +msgstr "" + +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:10 +#: templates/apps.php:13 msgid "Add your App" msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:27 +#: templates/apps.php:33 msgid "Select an App" msgstr "" -#: templates/apps.php:31 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:32 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/help.php:9 -msgid "Documentation" +#: templates/help.php:4 +msgid "User Documentation" msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" +#: templates/help.php:6 +msgid "Administrator Documentation" msgstr "" -#: templates/help.php:11 -msgid "Ask a question" +#: templates/help.php:9 +msgid "Online Documentation" msgstr "" -#: templates/help.php:23 -msgid "Problems connecting to help database." +#: templates/help.php:11 +msgid "Forum" msgstr "" -#: templates/help.php:24 -msgid "Go there manually." +#: templates/help.php:14 +msgid "Bugtracker" msgstr "" -#: templates/help.php:32 -msgid "Answer" +#: templates/help.php:17 +msgid "Commercial Support" msgstr "" #: templates/personal.php:8 -#, php-format -msgid "You have used %s of the available %s" +msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" +#: templates/personal.php:19 +msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:13 -msgid "Download" +#: templates/personal.php:27 +#, php-format +msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +msgid "Password" +msgstr "" + +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:21 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:22 +#: templates/personal.php:44 msgid "New password" msgstr "" -#: templates/personal.php:23 -msgid "show" +#: templates/personal.php:46 +msgid "Change password" msgstr "" -#: templates/personal.php:24 -msgid "Change password" +#: templates/personal.php:58 templates/users.php:88 +msgid "Full Name" msgstr "" -#: templates/personal.php:30 +#: templates/personal.php:73 msgid "Email" msgstr "" -#: templates/personal.php:31 +#: templates/personal.php:75 msgid "Your email address" msgstr "" -#: templates/personal.php:32 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:86 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:91 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:93 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:94 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:95 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:97 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:101 +msgid "Abort" +msgstr "" + +#: templates/personal.php:102 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:110 templates/personal.php:111 msgid "Language" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:130 msgid "Help translate" msgstr "" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" +#: templates/personal.php:137 +msgid "WebDAV" msgstr "" -#: templates/users.php:21 templates/users.php:76 -msgid "Name" +#: templates/personal.php:139 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/users.php:23 templates/users.php:77 -msgid "Password" +#: templates/personal.php:150 +msgid "Encryption" msgstr "" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 -msgid "Groups" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:158 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:163 +msgid "Decrypt all Files" msgstr "" -#: templates/users.php:32 +#: templates/users.php:21 +msgid "Login Name" +msgstr "" + +#: templates/users.php:30 msgid "Create" msgstr "" -#: templates/users.php:35 -msgid "Default Quota" +#: templates/users.php:36 +msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:48 templates/users.php:148 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:66 templates/users.php:163 msgid "Other" msgstr "" -#: templates/users.php:80 templates/users.php:112 -msgid "Group Admin" +#: templates/users.php:87 +msgid "Username" msgstr "" -#: templates/users.php:82 -msgid "Quota" +#: templates/users.php:94 +msgid "Storage" msgstr "" -#: templates/users.php:146 -msgid "Delete" +#: templates/users.php:108 +msgid "change full name" +msgstr "" + +#: templates/users.php:112 +msgid "set new password" +msgstr "" + +#: templates/users.php:143 +msgid "Default" msgstr "" diff --git a/l10n/af/user_ldap.po b/l10n/af/user_ldap.po index 37f2c1ae38c509e6cebbc812085b13f055798c6e..e9d0724a46ce7d14033808a62574934590ae2785 100644 --- a/l10n/af/user_ldap.po +++ b/l10n/af/user_ldap.po @@ -6,165 +6,508 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:01+0200\n" -"PO-Revision-Date: 2012-08-29 00:03+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-27 17:09+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: templates/settings.php:8 -msgid "Host" +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" msgstr "" -#: templates/settings.php:8 +#: ajax/testConfiguration.php:37 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:40 msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:44 +msgid "" +"The configuration is invalid. Please have a look at the logs for further " +"details." msgstr "" -#: templates/settings.php:9 -msgid "Base DN" +#: ajax/wizard.php:32 +msgid "No action specified" msgstr "" -#: templates/settings.php:9 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: 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 "" -#: templates/settings.php:10 +#: js/settings.js:133 +msgid "Error" +msgstr "" + +#: js/settings.js:777 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:786 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:795 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:812 js/settings.js:821 +msgid "Select groups" +msgstr "" + +#: js/settings.js:815 js/settings.js:824 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:818 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:845 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:852 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:861 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:862 +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:779 lib/wizard.php:791 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:952 +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 "Limit the access to %s to groups meeting this criteria:" +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 "What attribute shall be used as login name:" +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/settings.php:10 +#: 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/settings.php:11 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "" -#: templates/settings.php:11 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:12 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:12 +#: 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 "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action." +msgid "Limit the access to %s to users meeting this criteria:" msgstr "" -#: templates/settings.php:12 +#: templates/part.wizard-userfilter.php:31 #, php-format -msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgid "" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:13 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:13 -msgid "Defines the filter to apply, when retrieving users." +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:13 -msgid "without any placeholder, e.g. \"objectClass=person\"." +#: templates/part.wizardcontrols.php:8 +msgid "Continue" msgstr "" -#: templates/settings.php:14 -msgid "Group Filter" +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" #: templates/settings.php:14 -msgid "Defines the filter to apply, when retrieving groups." +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:14 -msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +#: templates/settings.php:20 +msgid "Connection Settings" msgstr "" -#: templates/settings.php:17 -msgid "Port" +#: templates/settings.php:22 +msgid "Configuration Active" msgstr "" -#: templates/settings.php:18 -msgid "Base User Tree" +#: templates/settings.php:22 +msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:19 -msgid "Base Group Tree" +#: templates/settings.php:23 +msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:20 -msgid "Group-Member association" +#: 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:21 -msgid "Use TLS" +#: templates/settings.php:25 +msgid "Disable Main Server" msgstr "" -#: templates/settings.php:21 -msgid "Do not use it for SSL connections, it will fail." +#: templates/settings.php:25 +msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:22 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:27 +#, php-format msgid "" -"If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"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:23 -msgid "Not recommended, use for testing only." +#: templates/settings.php:28 +msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:24 +#: 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:24 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:25 +#: 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:25 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +#: templates/settings.php:35 +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:27 +#: 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:40 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:42 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:43 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:29 -msgid "in seconds. A change empties the cache." +#: templates/settings.php:44 +msgid "Email Field" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:45 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:32 -msgid "Help" +#: templates/settings.php:51 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:52 +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:53 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:54 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:55 +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:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:58 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:59 +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:60 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:60 +msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/af/user_webdavauth.po b/l10n/af/user_webdavauth.po new file mode 100644 index 0000000000000000000000000000000000000000..d6d4d4cd62f8de102b6afdb7787d1146e60616db --- /dev/null +++ b/l10n/af/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-27 02:28-0400\n" +"PO-Revision-Date: 2013-10-21 18:25+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\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/af_ZA/core.po b/l10n/af_ZA/core.po index ba46eb4cfa690b5fbfb13cb4750117225634b08c..618d4d305d9c1797a9fdbcc7cdab7af8efbfd531 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,14 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -186,59 +148,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Instellings" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "" @@ -306,155 +268,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" +#: js/share.js:213 +msgid "Share with user or group …" msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Wagwoord" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Jy sal `n skakel via e-pos ontvang om jou wagwoord te herstel." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Gebruikersnaam" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -503,13 +493,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Herstel-versoek" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -535,7 +525,7 @@ msgstr "Persoonlik" msgid "Users" msgstr "Gebruikers" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Toepassings" @@ -547,6 +537,34 @@ msgstr "Admin" msgid "Help" msgstr "Hulp" +#: 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 "" @@ -563,108 +581,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Skep `n admin-rekening" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Gevorderd" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Stel databasis op" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "sal gebruik word" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Databasis-gebruiker" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Databasis-wagwoord" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Databasis naam" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Maak opstelling klaar" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Teken uit" @@ -682,19 +711,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Jou wagwoord verloor?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "onthou" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Teken aan" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -702,10 +739,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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.php:3 +#: 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/af_ZA/files.po b/l10n/af_ZA/files.po index 1a0f6c3fbf7d70be410a235c8dab7d79018f886e..c871aaa6c480c2fee64684961dad97cb719216aa 100644 --- a/l10n/af_ZA/files.po +++ b/l10n/af_ZA/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06: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" @@ -27,220 +27,286 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" msgstr "" -#: js/fileactions.js:119 -msgid "Share" +#: js/file-upload.js:595 +msgid "Could not create file" msgstr "" -#: js/fileactions.js:131 -msgid "Delete permanently" +#: js/file-upload.js:611 +msgid "Could not create folder" msgstr "" -#: js/fileactions.js:197 -msgid "Rename" +#: js/file-upload.js:661 +msgid "Error fetching URL" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 -msgid "Pending" +#: js/fileactions.js:125 +msgid "Share" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/fileactions.js:137 +msgid "Delete permanently" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" +#: js/fileactions.js:194 +msgid "Rename" msgstr "" -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "" @@ -276,65 +342,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/af_ZA/files_encryption.po b/l10n/af_ZA/files_encryption.po index 6e1898259c6d85035948e9632aff07bac270a62f..926d021d25022f768a8e072daa4631968f8a4fc3 100644 --- a/l10n/af_ZA/files_encryption.po +++ b/l10n/af_ZA/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:44 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 -msgid "Saving..." +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." +#: js/settings-admin.js:13 +msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/af_ZA/files_sharing.po b/l10n/af_ZA/files_sharing.po index 1aa1c35c8b1ee28915a194ba056806db07574b98..79ee3237518614bfb4d68efc888436a36a7e3b90 100644 --- a/l10n/af_ZA/files_sharing.po +++ b/l10n/af_ZA/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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 "Wagwoord" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/af_ZA/files_trashbin.po b/l10n/af_ZA/files_trashbin.po index 020abe02dd91b116e7d1bd9b06ba32f1c280efd2..4d4d4b186ec3c692c046fb57985cc62e3d855d8d 100644 --- a/l10n/af_ZA/files_trashbin.po +++ b/l10n/af_ZA/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:814 lib/trashbin.php:816 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:23 msgid "Name" msgstr "" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:26 templates/index.php:28 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:34 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 39af3220442c403183158ba0f65840b4923d0aa8..7d0718c77d44432069c8b8e96a6741810ef55925 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,317 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Hulp" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Persoonlik" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Instellings" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Gebruikers" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "webdienste onder jou beheer" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index 1a474f8b038839e3113b46efee077c4b650be7b5..ea0e485d5c7c80cc9e27b353447cb8a074a21d32 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,31 +129,31 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/af_ZA/user_ldap.po b/l10n/af_ZA/user_ldap.po index 4c25c9eb18781e7f90a6a04c6c49dceb14071d9c..ffa1923ad1e78150817775ffb4c2806f3e604955 100644 --- a/l10n/af_ZA/user_ldap.po +++ b/l10n/af_ZA/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-27 17:09+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" @@ -25,314 +25,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "" -#: js/settings.js:141 +#: js/settings.js:777 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:786 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:795 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:812 js/settings.js:821 +msgid "Select groups" +msgstr "" + +#: js/settings.js:815 js/settings.js:824 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:818 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:845 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:852 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:861 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:862 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:779 lib/wizard.php:791 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:952 +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 "Hulp" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Wagwoord" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Hulp" diff --git a/l10n/ak/core.po b/l10n/ak/core.po new file mode 100644 index 0000000000000000000000000000000000000000..71758432e20f4f00126dc8ba0ecd41d737c21f32 --- /dev/null +++ b/l10n/ak/core.po @@ -0,0 +1,775 @@ +# 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: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: ajax/share.php:119 ajax/share.php:198 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: ajax/share.php:169 +#, 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 "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +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:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:33 +msgid "Monday" +msgstr "" + +#: js/config.php:34 +msgid "Tuesday" +msgstr "" + +#: js/config.php:35 +msgid "Wednesday" +msgstr "" + +#: js/config.php:36 +msgid "Thursday" +msgstr "" + +#: js/config.php:37 +msgid "Friday" +msgstr "" + +#: js/config.php:38 +msgid "Saturday" +msgstr "" + +#: js/config.php:43 +msgid "January" +msgstr "" + +#: js/config.php:44 +msgid "February" +msgstr "" + +#: js/config.php:45 +msgid "March" +msgstr "" + +#: js/config.php:46 +msgid "April" +msgstr "" + +#: js/config.php:47 +msgid "May" +msgstr "" + +#: js/config.php:48 +msgid "June" +msgstr "" + +#: js/config.php:49 +msgid "July" +msgstr "" + +#: js/config.php:50 +msgid "August" +msgstr "" + +#: js/config.php:51 +msgid "September" +msgstr "" + +#: js/config.php:52 +msgid "October" +msgstr "" + +#: js/config.php:53 +msgid "November" +msgstr "" + +#: js/config.php:54 +msgid "December" +msgstr "" + +#: js/js.js:398 +msgid "Settings" +msgstr "" + +#: js/js.js:869 +msgid "seconds ago" +msgstr "" + +#: js/js.js:870 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:871 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:872 +msgid "today" +msgstr "" + +#: js/js.js:873 +msgid "yesterday" +msgstr "" + +#: js/js.js:874 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:875 +msgid "last month" +msgstr "" + +#: js/js.js:876 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:877 +msgid "months ago" +msgstr "" + +#: js/js.js:878 +msgid "last year" +msgstr "" + +#: js/js.js:879 +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/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:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 +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:187 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:189 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:219 +msgid "Share link" +msgstr "" + +#: js/share.js:222 +msgid "Password protect" +msgstr "" + +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +msgid "Password" +msgstr "" + +#: js/share.js:229 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:233 +msgid "Email link to person" +msgstr "" + +#: js/share.js:234 +msgid "Send" +msgstr "" + +#: js/share.js:239 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:240 +msgid "Expiration date" +msgstr "" + +#: js/share.js:275 +msgid "Share via email:" +msgstr "" + +#: js/share.js:278 +msgid "No people found" +msgstr "" + +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:375 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:397 +msgid "Unshare" +msgstr "" + +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 +msgid "can edit" +msgstr "" + +#: js/share.js:410 +msgid "access control" +msgstr "" + +#: js/share.js:413 +msgid "create" +msgstr "" + +#: js/share.js:416 +msgid "update" +msgstr "" + +#: js/share.js:419 +msgid "delete" +msgstr "" + +#: js/share.js:422 +msgid "share" +msgstr "" + +#: js/share.js:694 +msgid "Password protected" +msgstr "" + +#: js/share.js:707 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:719 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:734 +msgid "Sending ..." +msgstr "" + +#: js/share.js:745 +msgid "Email sent" +msgstr "" + +#: js/share.js:769 +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 ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:62 +#, php-format +msgid "%s password reset" +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.
    If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
    If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
    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:52 +#: templates/login.php:31 +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 "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:111 +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 documentation." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:67 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:74 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:86 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 +msgid "will be used" +msgstr "" + +#: templates/installation.php:149 +msgid "Database user" +msgstr "" + +#: templates/installation.php:156 +msgid "Database password" +msgstr "" + +#: templates/installation.php:161 +msgid "Database name" +msgstr "" + +#: templates/installation.php:169 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:176 +msgid "Database host" +msgstr "" + +#: templates/installation.php:185 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:72 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:44 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:49 +msgid "remember" +msgstr "" + +#: templates/login.php:52 +msgid "Log in" +msgstr "" + +#: templates/login.php:58 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    " +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/ak/files.po b/l10n/ak/files.po new file mode 100644 index 0000000000000000000000000000000000000000..4544710bb343f1d695c5d14ed0ab8f03abd9b8d2 --- /dev/null +++ b/l10n/ak/files.po @@ -0,0 +1,413 @@ +# 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: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:27 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:64 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:71 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:72 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:74 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:75 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:76 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:77 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:78 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:96 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:127 ajax/upload.php:154 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:144 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:172 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 +msgid "Files" +msgstr "" + +#: js/file-upload.js:228 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:239 +msgid "Not enough space available" +msgstr "" + +#: js/file-upload.js:306 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:344 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:436 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 +msgid "Share" +msgstr "" + +#: js/fileactions.js:137 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:194 +msgid "Rename" +msgstr "" + +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" +msgstr "" + +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:539 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:539 +msgid "undo" +msgstr "" + +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:617 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:828 js/filelist.js:866 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:72 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:81 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:93 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:97 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:349 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error moving file" +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 +msgid "Name" +msgstr "" + +#: js/files.js:614 templates/index.php:68 +msgid "Size" +msgstr "" + +#: js/files.js:615 templates/index.php:70 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:11 templates/index.php:16 +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:5 +msgid "New" +msgstr "" + +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 +msgid "Text file" +msgstr "" + +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From link" +msgstr "" + +#: templates/index.php:29 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:34 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:45 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:62 +msgid "Download" +msgstr "" + +#: templates/index.php:73 templates/index.php:74 +msgid "Delete" +msgstr "" + +#: templates/index.php:86 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:88 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:93 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:96 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/ak/files_encryption.po b/l10n/ak/files_encryption.po new file mode 100644 index 0000000000000000000000000000000000000000..b2b29d74f0a746bb3d8479c3a95bc2890535227d --- /dev/null +++ b/l10n/ak/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: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\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:62 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:63 +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:281 +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/settings-admin.js:13 +msgid "Saving..." +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/ak/files_external.po b/l10n/ak/files_external.po new file mode 100644 index 0000000000000000000000000000000000000000..95dcbe86db8774281220c8b79ed424f8e0750f3f --- /dev/null +++ b/l10n/ak/files_external.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:86 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:42 js/google.js:121 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:467 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:471 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:474 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/ak/files_sharing.po b/l10n/ak/files_sharing.po new file mode 100644 index 0000000000000000000000000000000000000000..da92ef7b372448e3c826b0bf80ce21d31b3eb8a7 --- /dev/null +++ b/l10n/ak/files_sharing.po @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: 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:18 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:21 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:29 templates/public.php:95 +msgid "Download" +msgstr "" + +#: templates/public.php:46 templates/public.php:49 +msgid "Upload" +msgstr "" + +#: templates/public.php:59 +msgid "Cancel upload" +msgstr "" + +#: templates/public.php:92 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/ak/files_trashbin.po b/l10n/ak/files_trashbin.po new file mode 100644 index 0000000000000000000000000000000000000000..ee5c134734d755b8c1fc1c04f9a3f3e33b2bc2b2 --- /dev/null +++ b/l10n/ak/files_trashbin.po @@ -0,0 +1,60 @@ +# 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: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: ajax/delete.php:63 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:43 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 +msgid "Error" +msgstr "" + +#: lib/trashbin.php:905 lib/trashbin.php:907 +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/ak/files_versions.po b/l10n/ak/files_versions.po new file mode 100644 index 0000000000000000000000000000000000000000..8d9c2e6ff628493893d8b7fae665bb05f6a4fd3d --- /dev/null +++ b/l10n/ak/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: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\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:86 +msgid "More versions..." +msgstr "" + +#: js/versions.js:123 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:154 +msgid "Restore" +msgstr "" diff --git a/l10n/ak/lib.po b/l10n/ak/lib.po new file mode 100644 index 0000000000000000000000000000000000000000..3778c524ce2a856b3b46f9cda63703742c042d96 --- /dev/null +++ b/l10n/ak/lib.po @@ -0,0 +1,333 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: private/app.php:245 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:257 +msgid "No app name specified" +msgstr "" + +#: private/app.php:362 +msgid "Help" +msgstr "" + +#: private/app.php:375 +msgid "Personal" +msgstr "" + +#: private/app.php:386 +msgid "Settings" +msgstr "" + +#: private/app.php:398 +msgid "Users" +msgstr "" + +#: private/app.php:411 +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:34 +msgid "web services under your control" +msgstr "" + +#: private/files.php:66 private/files.php:98 +#, php-format +msgid "cannot open \"%s\"" +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:63 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:125 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:131 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:140 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:146 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:159 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:169 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:182 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:39 private/json.php:62 private/json.php:73 +msgid "Authentication error" +msgstr "" + +#: private/json.php:51 +msgid "Token expired. Please reload page." +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:24 +#: private/setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL 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:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#, 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL." +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:23 private/setup/postgresql.php:69 +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:195 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:196 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:131 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:132 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:133 +msgid "today" +msgstr "" + +#: private/template/functions.php:134 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:136 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:138 +msgid "last month" +msgstr "" + +#: private/template/functions.php:139 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:141 +msgid "last year" +msgstr "" + +#: private/template/functions.php:142 +msgid "years ago" +msgstr "" diff --git a/l10n/ak/settings.po b/l10n/ak/settings.po new file mode 100644 index 0000000000000000000000000000000000000000..90a872fc261a252c07e6aecca5bc96a75eb78e49 --- /dev/null +++ b/l10n/ak/settings.po @@ -0,0 +1,668 @@ +# 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: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 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/apps.js:43 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +msgid "Disable" +msgstr "" + +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +msgid "Enable" +msgstr "" + +#: js/apps.js:71 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:125 +msgid "Updating...." +msgstr "" + +#: js/apps.js:128 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:128 +msgid "Error" +msgstr "" + +#: js/apps.js:129 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:132 +msgid "Updated" +msgstr "" + +#: js/personal.js:220 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:266 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/personal.js:287 +msgid "Saving..." +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:95 templates/users.php:26 templates/users.php:90 +#: templates/users.php:118 +msgid "Groups" +msgstr "" + +#: js/users.js:100 templates/users.php:92 templates/users.php:130 +msgid "Group Admin" +msgstr "" + +#: js/users.js:123 templates/users.php:170 +msgid "Delete" +msgstr "" + +#: js/users.js:284 +msgid "add group" +msgstr "" + +#: js/users.js:454 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:455 js/users.js:461 js/users.js:476 +msgid "Error creating user" +msgstr "" + +#: js/users.js:460 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:45 personal.php:46 +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:22 templates/admin.php:36 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:25 +#, 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:39 +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:50 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:53 +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:54 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:65 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:68 +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:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 +#, 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:118 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:121 +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:135 +msgid "Cron" +msgstr "" + +#: templates/admin.php:142 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:150 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:163 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:169 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:170 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:177 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:178 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:186 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:187 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:195 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:196 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:203 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:206 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 +msgid "Security" +msgstr "" + +#: templates/admin.php:234 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:236 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:242 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:254 +msgid "Log" +msgstr "" + +#: templates/admin.php:255 +msgid "Log level" +msgstr "" + +#: templates/admin.php:287 +msgid "More" +msgstr "" + +#: templates/admin.php:288 +msgid "Less" +msgstr "" + +#: templates/admin.php:294 templates/personal.php:173 +msgid "Version" +msgstr "" + +#: templates/admin.php:298 templates/personal.php:176 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:13 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:28 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:33 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:39 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:41 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +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 %s of the available %s" +msgstr "" + +#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +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:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:44 +msgid "New password" +msgstr "" + +#: templates/personal.php:46 +msgid "Change password" +msgstr "" + +#: templates/personal.php:58 templates/users.php:88 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:73 +msgid "Email" +msgstr "" + +#: templates/personal.php:75 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:76 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:86 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:91 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:93 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:94 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:95 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:97 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:101 +msgid "Abort" +msgstr "" + +#: templates/personal.php:102 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:110 templates/personal.php:111 +msgid "Language" +msgstr "" + +#: templates/personal.php:130 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:137 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:139 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "" + +#: templates/personal.php:150 +msgid "Encryption" +msgstr "" + +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:158 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:163 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:21 +msgid "Login Name" +msgstr "" + +#: templates/users.php:30 +msgid "Create" +msgstr "" + +#: templates/users.php:36 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:48 templates/users.php:148 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:66 templates/users.php:163 +msgid "Other" +msgstr "" + +#: templates/users.php:87 +msgid "Username" +msgstr "" + +#: templates/users.php:94 +msgid "Storage" +msgstr "" + +#: templates/users.php:108 +msgid "change full name" +msgstr "" + +#: templates/users.php:112 +msgid "set new password" +msgstr "" + +#: templates/users.php:143 +msgid "Default" +msgstr "" diff --git a/l10n/ak/user_ldap.po b/l10n/ak/user_ldap.po new file mode 100644 index 0000000000000000000000000000000000000000..3e48b498995b81a18f1fa4cd373829f5e8d0e81f --- /dev/null +++ b/l10n/ak/user_ldap.po @@ -0,0 +1,513 @@ +# 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: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\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:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:912 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:921 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:922 +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:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +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 "Limit the access to %s to groups meeting this criteria:" +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 "What attribute shall be used as login name:" +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 the access to %s to users meeting this 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 "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php: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:40 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:42 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:43 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:43 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:44 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:45 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:45 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:51 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:52 +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:53 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:54 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:55 +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:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:58 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:59 +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:60 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:60 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/ak/user_webdavauth.po b/l10n/ak/user_webdavauth.po new file mode 100644 index 0000000000000000000000000000000000000000..d1477c074ad269e2db950936260b1a7e4312fdb9 --- /dev/null +++ b/l10n/ak/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: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 13:18+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ak\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 56e2c293e47ab7e2d9dedc146382ebc033c4a4bf..5cc97810f1f7ca0caf6b566f03d64d22f2a14f77 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-22 00:50+0000\n" -"Last-Translator: blackcoder \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -18,14 +18,15 @@ 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/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" -msgstr "مجموعة" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -52,45 +53,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "نوع التصنيف لم يدخل" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "ألا توجد فئة للإضافة؟" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "هذا التصنيف موجود مسبقا : %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "نوع العنصر لم يدخل" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "رقم %s لم يدخل" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "خطأ في اضافة %s الى المفضلة" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "لم يتم اختيار فئة للحذف" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "خطأ في حذف %s من المفضلة" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -187,15 +149,15 @@ msgstr "تشرين الثاني" msgid "December" msgstr "كانون الاول" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "إعدادات" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -205,7 +167,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -215,15 +177,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "اليوم" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "يوم أمس" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -233,11 +195,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "الشهر الماضي" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -247,15 +209,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "شهر مضى" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "السنةالماضية" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "سنة مضت" @@ -327,155 +289,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "نوع العنصر غير محدد." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "خطأ" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "اسم التطبيق غير محدد." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "الملف المطلوب {file} غير منصّب." - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "مشارك" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "شارك" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "خطأ" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "حصل خطأ عند عملية المشاركة" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "حصل خطأ عند عملية إزالة المشاركة" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "حصل خطأ عند عملية إعادة تعيين التصريح بالتوصل" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "شورك معك ومع المجموعة {group} من قبل {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "شورك معك من قبل {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "شارك مع" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "شارك مع رابط" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "حماية كلمة السر" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "كلمة المرور" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "ارسل الرابط بالبريد الى صديق" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "أرسل" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "تاريخ إنتهاء الصلاحية" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "مشاركة عبر البريد الإلكتروني:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "لم يتم العثور على أي شخص" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "مجموعة" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "لا يسمح بعملية إعادة المشاركة" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "شورك في {item} مع {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "إلغاء مشاركة" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "التحرير مسموح" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "ضبط الوصول" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "إنشاء" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "تحديث" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "حذف" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "مشاركة" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "محمي بكلمة السر" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "جاري الارسال ..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "تم ارسال البريد الالكتروني" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "وصلة تحديث كلمة المرور بعثت الى بريدك الالكتروني.
    اذا لم تستقبل البريد خلال فترة زمنية قصيره, ابحث في سلة مهملات بريدك." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "الطلب رفض!
    هل انت متأكد أن الاسم/العنوان البريدي صحيح؟" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "سوف نرسل لك بريد يحتوي على وصلة لتجديد كلمة السر." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "إسم المستخدم" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -524,13 +514,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "طلب تعديل" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -556,7 +546,7 @@ msgstr "شخصي" msgid "Users" msgstr "المستخدمين" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "التطبيقات" @@ -568,6 +558,34 @@ msgstr "المدير" 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 "التوصّل محظور" @@ -584,108 +602,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "عدل الفئات" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "اضف" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "تحذير أمان" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "لا يوجد مولّد أرقام عشوائية ، الرجاء تفعيل الـ PHP OpenSSL extension." -#: templates/installation.php:33 +#: 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:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "مجلدات البيانات والملفات الخاصة قد تكون قابلة للوصول اليها عن طريق شبكة الانترنت وذلك بسبب ان ملف .htaccess لا يعمل بشكل صحيح." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "أضف
    مستخدم رئيسي " -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "تعديلات متقدمه" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "مجلد المعلومات" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "أسس قاعدة البيانات" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "سيتم استخدمه" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "مستخدم قاعدة البيانات" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "كلمة سر مستخدم قاعدة البيانات" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "إسم قاعدة البيانات" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "مساحة جدول قاعدة البيانات" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "خادم قاعدة البيانات" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "انهاء التعديلات" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "الخروج" @@ -703,19 +732,27 @@ msgstr "قد يكون حسابك في خطر إن لم تقم بإعادة تع msgid "Please change your password to secure your account again." msgstr "الرجاء إعادة تعيين كلمة السر لتأمين حسابك." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "هل نسيت كلمة السر؟" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "تذكر" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "أدخل" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "اسماء دخول بديلة" @@ -723,10 +760,37 @@ msgstr "اسماء دخول بديلة" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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 "جاري تحديث Owncloud الى اصدار %s , قد يستغرق هذا بعض الوقت." + +#: 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/ar/files.po b/l10n/ar/files.po index 5e431360f9609e2d6010baf2ca7e2459dbef29a2..90e08509578dd14ab5fdcf8202e271657c32bf6e 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -4,12 +4,13 @@ # # Translators: # ibrahim_9090 , 2013 +# Meesh , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -28,232 +29,298 @@ msgstr "فشل في نقل الملف %s - يوجد ملف بنفس هذا ال msgid "Could not move %s" msgstr "فشل في نقل %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "اسم الملف لا يجوز أن يكون فارغا" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "غير قادر على تحميل المجلد" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "علامة غير صالحة" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "لم يتم رفع أي ملف , خطأ غير معروف" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "تم ترفيع الملفات بنجاح." -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "حجم الملف المرفوع تجاوز قيمة upload_max_filesize الموجودة في ملف php.ini " -#: ajax/upload.php:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "لم يتم ترفيع أي من الملفات" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "المجلد المؤقت غير موجود" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "خطأ في الكتابة على القرص الصلب" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "لا يوجد مساحة تخزينية كافية" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "فشلت عملية الرفع. تعذر الحصول على معلومات الملف." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "*فشلت علمية الرفع. تعذر إيجاد الملف الذي تم رفعه.\n*فشلت علمية التحميل. تعذر إيجاد الملف الذي تم تحميله." -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "مسار غير صحيح." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "الملفات" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "تعذر رفع الملف {filename} إما لأنه مجلد أو لان حجم الملف 0 بايت" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "لا توجد مساحة كافية" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "تم إلغاء عملية رفع الملفات ." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "" +msgstr "تعذر الحصول على نتيجة من الخادم" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "عملية رفع الملفات قيد التنفيذ. اغلاق الصفحة سوف يلغي عملية رفع الملفات." -#: js/file-upload.js:520 -msgid "URL cannot be empty." -msgstr "عنوان ال URL لا يجوز أن يكون فارغا." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "تسمية ملف غير صالحة. استخدام الاسم \"shared\" محجوز بواسطة ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "خطأ" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} موجود مسبقا" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" -#: js/fileactions.js:119 +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "شارك" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "حذف بشكل دائم" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "إعادة تسميه" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "قيد الانتظار" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} موجود مسبقا" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "استبدال" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "اقترح إسم" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "إلغاء" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "استبدل {new_name} بـ {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "تراجع" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +msgstr[0] "لا يوجد مجلدات %n" +msgstr[1] "1 مجلد %n" +msgstr[2] "2 مجلد %n" +msgstr[3] "عدد قليل من مجلدات %n" +msgstr[4] "عدد كبير من مجلدات %n" +msgstr[5] "مجلدات %n" + +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: js/filelist.js:541 +msgstr[0] "لا يوجد ملفات %n" +msgstr[1] "ملف %n" +msgstr[2] "2 ملف %n" +msgstr[3] "قليل من ملفات %n" +msgstr[4] "الكثير من ملفات %n" +msgstr[5] " ملفات %n" + +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} و {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: js/files.js:25 +msgstr[0] "لا يوجد ملفات %n لتحميلها" +msgstr[1] "تحميل 1 ملف %n" +msgstr[2] "تحميل 2 ملف %n" +msgstr[3] "يتم تحميل عدد قليل من ملفات %n" +msgstr[4] "يتم تحميل عدد كبير من ملفات %n" +msgstr[5] "يتم تحميل ملفات %n" + +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "\".\" اسم ملف غير صحيح." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "اسم الملف لا يجوز أن يكون فارغا" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "مساحتك التخزينية ممتلئة, لا يمكم تحديث ملفاتك أو مزامنتها بعد الآن !" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "مساحتك التخزينية امتلأت تقريبا " -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "تم تمكين تشفير البرامج لكن لم يتم تهيئة المفاتيح لذا يرجى تسجيل الخروج ثم تسجيل الدخول مرة آخرى." + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "المفتاح الخاص بتشفير التطبيقات غير صالح. يرجى تحديث كلمة السر الخاصة بالمفتاح الخاص من الإعدادت الشخصية حتى تتمكن من الوصول للملفات المشفرة." + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "تم تعطيل التشفير لكن ملفاتك لا تزال مشفرة. فضلا اذهب إلى الإعدادات الشخصية لإزالة التشفير عن ملفاتك." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "جاري تجهيز عملية التحميل. قد تستغرق بعض الوقت اذا كان حجم الملفات كبير." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" -msgstr "" +msgstr "حدث خطأ أثناء نقل الملف" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "خطأ" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "اسم" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "حجم" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "معدل" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s لا يمكن إعادة تسميته. " -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "رفع" @@ -289,65 +356,69 @@ msgstr "الحد الأقصى المسموح به لملفات ZIP" msgid "Save" msgstr "حفظ" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "جديد" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "ملف" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "مجلد" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "من رابط" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "حذف الملفات" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "إلغاء رفع الملفات" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "لا تملك صلاحيات الكتابة هنا." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "لا يوجد شيء هنا. إرفع بعض الملفات!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "تحميل" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "إلغاء مشاركة" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "إلغاء" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "حجم الترفيع أعلى من المسموح" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "يرجى الانتظار , جاري فحص الملفات ." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "الفحص الحالي" diff --git a/l10n/ar/files_encryption.po b/l10n/ar/files_encryption.po index 9732c95e1adad438347c6e9b8b9b3036c1e75fa5..db77c258f9391ff4eed5b826400803f1b44ef651 100644 --- a/l10n/ar/files_encryption.po +++ b/l10n/ar/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:41 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "جاري الحفظ..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "التشفير" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index 598bb2d827da32e7b936423d3017f2d54ad7f594..e3eb7cc2577e02ee1be5a9f4643c1775ce12f433 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Meesh , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 11:40+0000\n" +"Last-Translator: Meesh \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,7 +18,7 @@ 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" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "" @@ -25,7 +26,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +34,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -63,7 +64,7 @@ msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "" +msgstr "اسم المجلد" #: templates/settings.php:10 msgid "External storage" @@ -75,7 +76,7 @@ msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "" +msgstr "خيارات" #: templates/settings.php:13 msgid "Applicable" @@ -91,7 +92,7 @@ msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "" +msgstr "كل المستخدمين" #: templates/settings.php:92 msgid "Groups" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index df2684b93db32385abb7beb322abfc3880ccb511..1c6d266c5432eeb4320a8239dd4e3270afbeb45e 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "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" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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/authenticate.php:9 -msgid "Submit" -msgstr "تطبيق" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s شارك المجلد %s معك" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s شارك الملف %s معك" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "تحميل" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "رفع" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "إلغاء رفع الملفات" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "لا يوجد عرض مسبق لـ" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index f07045eb588d3c08914429a3fe984f2a95fcb279..bcd9ab3f5334ee89062ab6b741783b34af021216 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -27,63 +27,31 @@ msgstr "تعذّر حذف%s بشكل دائم" msgid "Couldn't restore %s" msgstr "تعذّر استرجاع %s " -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "إبدء عملية الإستعادة" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "خطأ" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "حذف بشكل دائم" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "حذف بشكل دائم" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "اسم" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "تم الحذف" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "لا يوجد شيء هنا. سلة المهملات خاليه." -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "اسم" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "استعيد" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "تم الحذف" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "إلغاء" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 0cc9b5b1c8c730a7b61bd052c39509739e9e903c..1bbf18cbd76d4512d95875619a77915406819b54 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -17,270 +17,278 @@ 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" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "المساعدة" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "شخصي" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "إعدادات" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "المستخدمين" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "المدير" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "خدمات الشبكة تحت سيطرتك" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "تحميل ملفات ZIP متوقف" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "الملفات بحاجة الى ان يتم تحميلها واحد تلو الاخر" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "العودة الى الملفات" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "الملفات المحددة كبيرة جدا ليتم ضغطها في ملف zip" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "التطبيق غير مفعّل" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "لم يتم التأكد من الشخصية بنجاح" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "انتهت صلاحية الكلمة , يرجى اعادة تحميل الصفحة" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "الملفات" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "معلومات إضافية" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "صور" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s ادخل اسم المستخدم الخاص بقاعدة البيانات." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s ادخل اسم فاعدة البيانات" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s لا يسمح لك باستخدام نقطه (.) في اسم قاعدة البيانات" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "اسم المستخدم و/أو كلمة المرور لنظام MS SQL غير صحيح : %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "انت بحاجة لكتابة اسم مستخدم موجود أو حساب المدير." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "اسم المستخدم و/أو كلمة المرور لنظام MySQL غير صحيح" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "خطأ في قواعد البيانات : \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "الأمر المخالف كان : \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "أسم المستخدم '%s'@'localhost' الخاص بـ MySQL موجود مسبقا" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "احذف اسم المستخدم هذا من الـ MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "أسم المستخدم '%s'@'%%' الخاص بـ MySQL موجود مسبقا" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "احذف اسم المستخدم هذا من الـ MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "اسم المستخدم و/أو كلمة المرور لنظام Oracle غير صحيح" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "الأمر المخالف كان : \"%s\", اسم المستخدم : %s, كلمة المرور: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "اسم المستخدم / أو كلمة المرور الخاصة بـPostgreSQL غير صحيحة" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "اعداد اسم مستخدم للمدير" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "اعداد كلمة مرور للمدير" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "الرجاء التحقق من دليل التنصيب." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "تعذر العثور على المجلد \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "منذ ثواني" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -290,7 +298,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -300,15 +308,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "اليوم" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "يوم أمس" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" @@ -318,11 +326,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "الشهر الماضي" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -332,19 +340,10 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "السنةالماضية" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "سنة مضت" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "تعذر العثور على المجلد \"%s\"" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 42761603ac661050fcc6eea598c8a6cc1083767b..1b5b893cc81da49bb8c201c4b553831028d764e8 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -27,12 +27,12 @@ msgid "Authentication error" msgstr "لم يتم التأكد من الشخصية بنجاح" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "تعذر تغيير اسم الحساب" +msgid "Unable to change full name" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "تم التحديث الى " -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "إيقاف" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "تفعيل" @@ -129,31 +129,31 @@ msgstr "تفعيل" msgid "Please wait...." msgstr "الرجاء الانتظار ..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "جاري التحديث ..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "حصل خطأ أثناء تحديث التطبيق" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "خطأ" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "حدث" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "تم التحديث بنجاح" @@ -161,7 +161,7 @@ msgstr "تم التحديث بنجاح" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "تراجع" msgid "Unable to remove user" msgstr "تعذر حذف المستخدم" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "مجموعات" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "مدير المجموعة" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "إلغاء" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "اضافة مجموعة" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "يجب ادخال اسم مستخدم صحيح" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "حصل خطأ اثناء انشاء مستخدم" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "يجب ادخال كلمة مرور صحيحة" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "تحذير أمان" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "تحذير في التنصيب" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "الموديل 'fileinfo' مفقود" -#: templates/admin.php:47 +#: templates/admin.php:68 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 مفقود . نوصي بتفعيل هذا الموديل للحصول على أفضل النتائج مع خاصية التحقق " -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "اللغه لا تعمل" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "الاتصال بالانترنت لا يعمل" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "مجدول" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "قم بتنفيذ مهمة واحدة مع كل صفحة تم تحميلها" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "مشاركة" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "السماح بالمشاركة عن طريق الAPI " -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "السماح للتطبيقات بالمشاركة عن طريق الAPI" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "السماح بالعناوين" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "السماح للمستعملين بمشاركة البنود للعموم عن طريق الروابط " -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "السماح بإعادة المشاركة " -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "السماح للمستخدمين باعادة مشاركة الملفات التي تم مشاركتها معهم" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "السماح للمستعملين بإعادة المشاركة مع أي أحد " -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "السماح للمستعمينٍ لإعادة المشاركة فقط مع المستعملين في مجموعاتهم" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "حماية" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "فرض HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "سجل" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "مستوى السجل" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "المزيد" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "أقل" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "إصدار" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "التشفير" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "وحدة التخزين الافتراضية" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "غير محدود" @@ -589,8 +656,8 @@ msgid "Storage" msgstr "وحدة التخزين" #: templates/users.php:108 -msgid "change display name" -msgstr "تغيير اسم الحساب" +msgid "change full name" +msgstr "" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index c18c2b146fe341b84a48f449e0d61ae74bebde01..3afffadb9e0c690082d09a35ae5ad941908f56e9 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,433 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "خطأ" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "إختر مجموعة" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" msgstr "" -#: templates/settings.php:12 +#: lib/wizard.php:951 +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 "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" msgstr "" -#: templates/settings.php:39 +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: 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/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:36 +msgid "Port" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "كلمة المرور" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "رجوع" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +467,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +486,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +512,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "المساعدة" diff --git a/l10n/az/core.po b/l10n/az/core.po new file mode 100644 index 0000000000000000000000000000000000000000..2b88a23c4662cd128d0726f5a44773136070afdd --- /dev/null +++ b/l10n/az/core.po @@ -0,0 +1,770 @@ +# 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: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-09 11:10+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" + +#: ajax/share.php:119 ajax/share.php:198 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: ajax/share.php:169 +#, 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 "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +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:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:33 +msgid "Monday" +msgstr "" + +#: js/config.php:34 +msgid "Tuesday" +msgstr "" + +#: js/config.php:35 +msgid "Wednesday" +msgstr "" + +#: js/config.php:36 +msgid "Thursday" +msgstr "" + +#: js/config.php:37 +msgid "Friday" +msgstr "" + +#: js/config.php:38 +msgid "Saturday" +msgstr "" + +#: js/config.php:43 +msgid "January" +msgstr "" + +#: js/config.php:44 +msgid "February" +msgstr "" + +#: js/config.php:45 +msgid "March" +msgstr "" + +#: js/config.php:46 +msgid "April" +msgstr "" + +#: js/config.php:47 +msgid "May" +msgstr "" + +#: js/config.php:48 +msgid "June" +msgstr "" + +#: js/config.php:49 +msgid "July" +msgstr "" + +#: js/config.php:50 +msgid "August" +msgstr "" + +#: js/config.php:51 +msgid "September" +msgstr "" + +#: js/config.php:52 +msgid "October" +msgstr "" + +#: js/config.php:53 +msgid "November" +msgstr "" + +#: js/config.php:54 +msgid "December" +msgstr "" + +#: js/js.js:387 +msgid "Settings" +msgstr "" + +#: js/js.js:858 +msgid "seconds ago" +msgstr "" + +#: js/js.js:859 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" + +#: js/js.js:860 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" + +#: js/js.js:861 +msgid "today" +msgstr "" + +#: js/js.js:862 +msgid "yesterday" +msgstr "" + +#: js/js.js:863 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" + +#: js/js.js:864 +msgid "last month" +msgstr "" + +#: js/js.js:865 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" + +#: js/js.js:866 +msgid "months ago" +msgstr "" + +#: js/js.js:867 +msgid "last year" +msgstr "" + +#: js/js.js:868 +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] "" + +#: 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/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:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 +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:187 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:189 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:219 +msgid "Share link" +msgstr "" + +#: js/share.js:222 +msgid "Password protect" +msgstr "" + +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +msgid "Password" +msgstr "" + +#: js/share.js:229 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:233 +msgid "Email link to person" +msgstr "" + +#: js/share.js:234 +msgid "Send" +msgstr "" + +#: js/share.js:239 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:240 +msgid "Expiration date" +msgstr "" + +#: js/share.js:275 +msgid "Share via email:" +msgstr "" + +#: js/share.js:278 +msgid "No people found" +msgstr "" + +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:375 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:397 +msgid "Unshare" +msgstr "" + +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 +msgid "can edit" +msgstr "" + +#: js/share.js:410 +msgid "access control" +msgstr "" + +#: js/share.js:413 +msgid "create" +msgstr "" + +#: js/share.js:416 +msgid "update" +msgstr "" + +#: js/share.js:419 +msgid "delete" +msgstr "" + +#: js/share.js:422 +msgid "share" +msgstr "" + +#: js/share.js:694 +msgid "Password protected" +msgstr "" + +#: js/share.js:707 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:719 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:734 +msgid "Sending ..." +msgstr "" + +#: js/share.js:745 +msgid "Email sent" +msgstr "" + +#: js/share.js:769 +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 ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:62 +#, php-format +msgid "%s password reset" +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.
    If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
    If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
    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:52 +#: templates/login.php:31 +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 "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:111 +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 documentation." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:67 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:74 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:86 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 +msgid "will be used" +msgstr "" + +#: templates/installation.php:149 +msgid "Database user" +msgstr "" + +#: templates/installation.php:156 +msgid "Database password" +msgstr "" + +#: templates/installation.php:161 +msgid "Database name" +msgstr "" + +#: templates/installation.php:169 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:176 +msgid "Database host" +msgstr "" + +#: templates/installation.php:185 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:72 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:44 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:49 +msgid "remember" +msgstr "" + +#: templates/login.php:52 +msgid "Log in" +msgstr "" + +#: templates/login.php:58 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    " +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/az/files.po b/l10n/az/files.po new file mode 100644 index 0000000000000000000000000000000000000000..75cfc77660aea10d873bb2f5fc210d07b5e1aab1 --- /dev/null +++ b/l10n/az/files.po @@ -0,0 +1,410 @@ +# 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: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06: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" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:27 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:64 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:71 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:72 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:74 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:75 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:76 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:77 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:78 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:96 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:127 ajax/upload.php:154 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:144 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:172 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 +msgid "Files" +msgstr "" + +#: js/file-upload.js:228 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:239 +msgid "Not enough space available" +msgstr "" + +#: js/file-upload.js:306 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:344 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:436 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 +msgid "Share" +msgstr "" + +#: js/fileactions.js:137 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:194 +msgid "Rename" +msgstr "" + +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" +msgstr "" + +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:539 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:539 +msgid "undo" +msgstr "" + +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" + +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" + +#: js/filelist.js:617 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:828 js/filelist.js:866 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" + +#: js/files.js:72 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:81 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:93 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:97 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:349 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error moving file" +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 +msgid "Name" +msgstr "" + +#: js/files.js:614 templates/index.php:68 +msgid "Size" +msgstr "" + +#: js/files.js:615 templates/index.php:70 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:11 templates/index.php:16 +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:5 +msgid "New" +msgstr "" + +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 +msgid "Text file" +msgstr "" + +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From link" +msgstr "" + +#: templates/index.php:29 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:34 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:45 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:62 +msgid "Download" +msgstr "" + +#: templates/index.php:73 templates/index.php:74 +msgid "Delete" +msgstr "" + +#: templates/index.php:86 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:88 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:93 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:96 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/az/files_encryption.po b/l10n/az/files_encryption.po new file mode 100644 index 0000000000000000000000000000000000000000..c145df966c7feb8a45bfc124d1338df3c9749a1f --- /dev/null +++ b/l10n/az/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: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-09 11:10+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" + +#: 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:59 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:60 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "" + +#: hooks/hooks.php:278 +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/settings-admin.js:13 +msgid "Saving..." +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/az/files_external.po b/l10n/az/files_external.po new file mode 100644 index 0000000000000000000000000000000000000000..020c2fbc41fb36aed254de1c87ffbbc011a10859 --- /dev/null +++ b/l10n/az/files_external.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-09 11:10+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" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:86 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:42 js/google.js:121 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:467 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:471 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:474 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/az/files_sharing.po b/l10n/az/files_sharing.po new file mode 100644 index 0000000000000000000000000000000000000000..d4965ff8371ad0f89af3c999cc50ef729de8ae6c --- /dev/null +++ b/l10n/az/files_sharing.po @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-09 11:10+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" + +#: 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:18 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:21 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:29 templates/public.php:95 +msgid "Download" +msgstr "" + +#: templates/public.php:46 templates/public.php:49 +msgid "Upload" +msgstr "" + +#: templates/public.php:59 +msgid "Cancel upload" +msgstr "" + +#: templates/public.php:92 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/az/files_trashbin.po b/l10n/az/files_trashbin.po new file mode 100644 index 0000000000000000000000000000000000000000..539bb5a6f2e5a7b24134f029ca1ea191ccb6f792 --- /dev/null +++ b/l10n/az/files_trashbin.po @@ -0,0 +1,60 @@ +# 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: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-09 11:10+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" + +#: ajax/delete.php:63 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:43 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 +msgid "Error" +msgstr "" + +#: lib/trashbin.php:905 lib/trashbin.php:907 +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:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/az/files_versions.po b/l10n/az/files_versions.po new file mode 100644 index 0000000000000000000000000000000000000000..be77dcb54c4dc84e7357bfae9fefd0df92b9614e --- /dev/null +++ b/l10n/az/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: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-09 11:10+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" + +#: 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:86 +msgid "More versions..." +msgstr "" + +#: js/versions.js:123 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:154 +msgid "Restore" +msgstr "" diff --git a/l10n/az/lib.po b/l10n/az/lib.po new file mode 100644 index 0000000000000000000000000000000000000000..525d68a4713727ad63eac4b2cc8ecdb559e38ff7 --- /dev/null +++ b/l10n/az/lib.po @@ -0,0 +1,329 @@ +# 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: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" + +#: private/app.php:243 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:255 +msgid "No app name specified" +msgstr "" + +#: private/app.php:360 +msgid "Help" +msgstr "" + +#: private/app.php:373 +msgid "Personal" +msgstr "" + +#: private/app.php:384 +msgid "Settings" +msgstr "" + +#: private/app.php:396 +msgid "Users" +msgstr "" + +#: private/app.php:409 +msgid "Admin" +msgstr "" + +#: private/app.php:873 +#, 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:34 +msgid "web services under your control" +msgstr "" + +#: private/files.php:66 private/files.php:98 +#, php-format +msgid "cannot open \"%s\"" +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:63 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:125 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:131 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:140 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:146 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:159 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:169 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:182 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:39 private/json.php:62 private/json.php:73 +msgid "Authentication error" +msgstr "" + +#: private/json.php:51 +msgid "Token expired. Please reload page." +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:24 +#: private/setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL 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:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#, 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL." +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:23 private/setup/postgresql.php:69 +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:195 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:196 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:131 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" + +#: private/template/functions.php:132 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" + +#: private/template/functions.php:133 +msgid "today" +msgstr "" + +#: private/template/functions.php:134 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:136 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" + +#: private/template/functions.php:138 +msgid "last month" +msgstr "" + +#: private/template/functions.php:139 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" + +#: private/template/functions.php:141 +msgid "last year" +msgstr "" + +#: private/template/functions.php:142 +msgid "years ago" +msgstr "" diff --git a/l10n/az/settings.po b/l10n/az/settings.po new file mode 100644 index 0000000000000000000000000000000000000000..e54d4e5a6136b593f825b0e4bb2f14db13a41844 --- /dev/null +++ b/l10n/az/settings.po @@ -0,0 +1,668 @@ +# 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: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-09 11:10+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" + +#: 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/apps.js:43 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +msgid "Disable" +msgstr "" + +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +msgid "Enable" +msgstr "" + +#: js/apps.js:71 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:125 +msgid "Updating...." +msgstr "" + +#: js/apps.js:128 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:128 +msgid "Error" +msgstr "" + +#: js/apps.js:129 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:132 +msgid "Updated" +msgstr "" + +#: js/personal.js:220 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:266 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/personal.js:287 +msgid "Saving..." +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:95 templates/users.php:26 templates/users.php:90 +#: templates/users.php:118 +msgid "Groups" +msgstr "" + +#: js/users.js:100 templates/users.php:92 templates/users.php:130 +msgid "Group Admin" +msgstr "" + +#: js/users.js:123 templates/users.php:170 +msgid "Delete" +msgstr "" + +#: js/users.js:284 +msgid "add group" +msgstr "" + +#: js/users.js:454 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:455 js/users.js:461 js/users.js:476 +msgid "Error creating user" +msgstr "" + +#: js/users.js:460 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:45 personal.php:46 +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:22 templates/admin.php:36 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:25 +#, 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:39 +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:50 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:53 +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:54 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:65 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:68 +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:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 +#, 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:118 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:121 +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:135 +msgid "Cron" +msgstr "" + +#: templates/admin.php:142 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:150 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:163 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:169 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:170 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:177 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:178 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:186 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:187 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:195 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:196 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:203 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:206 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 +msgid "Security" +msgstr "" + +#: templates/admin.php:234 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:236 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:242 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:254 +msgid "Log" +msgstr "" + +#: templates/admin.php:255 +msgid "Log level" +msgstr "" + +#: templates/admin.php:287 +msgid "More" +msgstr "" + +#: templates/admin.php:288 +msgid "Less" +msgstr "" + +#: templates/admin.php:294 templates/personal.php:173 +msgid "Version" +msgstr "" + +#: templates/admin.php:298 templates/personal.php:176 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:13 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:28 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:33 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:39 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:41 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +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 %s of the available %s" +msgstr "" + +#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +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:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:44 +msgid "New password" +msgstr "" + +#: templates/personal.php:46 +msgid "Change password" +msgstr "" + +#: templates/personal.php:58 templates/users.php:88 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:73 +msgid "Email" +msgstr "" + +#: templates/personal.php:75 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:76 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:86 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:91 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:93 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:94 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:95 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:97 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:101 +msgid "Abort" +msgstr "" + +#: templates/personal.php:102 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:110 templates/personal.php:111 +msgid "Language" +msgstr "" + +#: templates/personal.php:130 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:137 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:139 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "" + +#: templates/personal.php:150 +msgid "Encryption" +msgstr "" + +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:158 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:163 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:21 +msgid "Login Name" +msgstr "" + +#: templates/users.php:30 +msgid "Create" +msgstr "" + +#: templates/users.php:36 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:48 templates/users.php:148 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:66 templates/users.php:163 +msgid "Other" +msgstr "" + +#: templates/users.php:87 +msgid "Username" +msgstr "" + +#: templates/users.php:94 +msgid "Storage" +msgstr "" + +#: templates/users.php:108 +msgid "change full name" +msgstr "" + +#: templates/users.php:112 +msgid "set new password" +msgstr "" + +#: templates/users.php:143 +msgid "Default" +msgstr "" diff --git a/l10n/az/user_ldap.po b/l10n/az/user_ldap.po new file mode 100644 index 0000000000000000000000000000000000000000..c3dc07d7251ffa5bbb813e31460d39a333e78c3a --- /dev/null +++ b/l10n/az/user_ldap.po @@ -0,0 +1,511 @@ +# 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: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-09 11:10+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" + +#: 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:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:912 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:921 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:922 +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] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +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 "Limit the access to %s to groups meeting this criteria:" +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 "What attribute shall be used as login name:" +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 the access to %s to users meeting this 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 "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php: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:40 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:42 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:43 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:43 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:44 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:45 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:45 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:51 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:52 +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:53 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:54 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:55 +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:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:58 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:59 +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:60 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:60 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/az/user_webdavauth.po b/l10n/az/user_webdavauth.po new file mode 100644 index 0000000000000000000000000000000000000000..0def6b1cb3d6c925695974a5827c5c57161d1a6a --- /dev/null +++ b/l10n/az/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: 2013-12-09 06:39-0500\n" +"PO-Revision-Date: 2013-12-09 11:10+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" + +#: 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/be/core.po b/l10n/be/core.po index 9b8d51d257546a2754399a9305cc5659199c7e11..9e268cef6cd192ed387c53aa7e7e028d3468d59f 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# VladVaranetski , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"PO-Revision-Date: 2014-01-05 17:20+0000\n" +"Last-Translator: VladVaranetski \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,13 +18,14 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -51,45 +53,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -112,89 +75,89 @@ msgstr "" #: js/config.php:32 msgid "Sunday" -msgstr "" +msgstr "Нядзеля" #: js/config.php:33 msgid "Monday" -msgstr "" +msgstr "Панядзелак" #: js/config.php:34 msgid "Tuesday" -msgstr "" +msgstr "Аўторак" #: js/config.php:35 msgid "Wednesday" -msgstr "" +msgstr "Серада" #: js/config.php:36 msgid "Thursday" -msgstr "" +msgstr "Чацвер" #: js/config.php:37 msgid "Friday" -msgstr "" +msgstr "Пятніца" #: js/config.php:38 msgid "Saturday" -msgstr "" +msgstr "Субота" #: js/config.php:43 msgid "January" -msgstr "" +msgstr "Студзень" #: js/config.php:44 msgid "February" -msgstr "" +msgstr "Люты" #: js/config.php:45 msgid "March" -msgstr "" +msgstr "Сакавік" #: js/config.php:46 msgid "April" -msgstr "" +msgstr "Красавік" #: js/config.php:47 msgid "May" -msgstr "" +msgstr "Май" #: js/config.php:48 msgid "June" -msgstr "" +msgstr "Чэрвень" #: js/config.php:49 msgid "July" -msgstr "" +msgstr "Ліпень" #: js/config.php:50 msgid "August" -msgstr "" +msgstr "Жнівень" #: js/config.php:51 msgid "September" -msgstr "" +msgstr "Верасень" #: js/config.php:52 msgid "October" -msgstr "" +msgstr "Кастрычнік" #: js/config.php:53 msgid "November" -msgstr "" +msgstr "Лістапад" #: js/config.php:54 msgid "December" -msgstr "" +msgstr "Снежань" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" -msgstr "" +msgstr "Налады" -#: js/js.js:866 +#: js/js.js:872 msgid "seconds ago" -msgstr "" +msgstr "Секунд таму" -#: js/js.js:867 +#: js/js.js:873 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -202,7 +165,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:868 +#: js/js.js:874 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -210,15 +173,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:869 +#: js/js.js:875 msgid "today" -msgstr "" +msgstr "Сёння" -#: js/js.js:870 +#: js/js.js:876 msgid "yesterday" -msgstr "" +msgstr "Ўчора" -#: js/js.js:871 +#: js/js.js:877 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -226,11 +189,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:872 +#: js/js.js:878 msgid "last month" -msgstr "" +msgstr "У мінулым месяцы" -#: js/js.js:873 +#: js/js.js:879 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -238,21 +201,21 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:874 +#: js/js.js:880 msgid "months ago" -msgstr "" +msgstr "Месяцаў таму" -#: js/js.js:875 +#: js/js.js:881 msgid "last year" -msgstr "" +msgstr "У мінулым годзе" -#: js/js.js:876 +#: js/js.js:882 msgid "years ago" -msgstr "" +msgstr "Гадоў таму" #: js/oc-dialogs.js:123 msgid "Choose" -msgstr "" +msgstr "Выбар" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" @@ -260,15 +223,15 @@ msgstr "" #: js/oc-dialogs.js:172 msgid "Yes" -msgstr "" +msgstr "Так" #: js/oc-dialogs.js:182 msgid "No" -msgstr "" +msgstr "Не" #: js/oc-dialogs.js:199 msgid "Ok" -msgstr "" +msgstr "Добра" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" @@ -316,155 +279,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Памылка" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" +#: js/share.js:213 +msgid "Share with user or group …" msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -513,12 +504,12 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" msgstr "" #: lostpassword/templates/resetpassword.php:4 @@ -545,7 +536,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "" @@ -557,6 +548,34 @@ msgstr "" 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 "" @@ -573,108 +592,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Дасведчаны" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Завяршыць ўстаноўку." -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -692,19 +722,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -712,10 +750,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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/be/files.po b/l10n/be/files.po index ebc97c0f97ef2ee812a803676377fdd0fd75ad2e..5dcc21e246386da096453a467a5004afa53ee8ef 100644 --- a/l10n/be/files.po +++ b/l10n/be/files.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"PO-Revision-Date: 2014-01-05 17:20+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,143 +27,192 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" msgstr "" -#: js/fileactions.js:119 -msgid "Share" +#: js/file-upload.js:595 +msgid "Could not create file" msgstr "" -#: js/fileactions.js:131 -msgid "Delete permanently" +#: js/file-upload.js:611 +msgid "Could not create folder" msgstr "" -#: js/fileactions.js:197 -msgid "Rename" +#: js/file-upload.js:661 +msgid "Error fetching URL" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 -msgid "Pending" +#: js/fileactions.js:125 +msgid "Share" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/fileactions.js:137 +msgid "Delete permanently" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" +#: js/fileactions.js:194 +msgid "Rename" msgstr "" -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -171,7 +220,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -179,11 +228,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -191,62 +240,79 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Памылка" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "" @@ -282,65 +348,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/be/files_encryption.po b/l10n/be/files_encryption.po index 4f5399874b4a583df790c0fd4af3321654320130..da04152091f714825101ae24fad73dfc953708d5 100644 --- a/l10n/be/files_encryption.po +++ b/l10n/be/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:44 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 -msgid "Saving..." +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." +#: js/settings-admin.js:13 +msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/be/files_sharing.po b/l10n/be/files_sharing.po index d8ea6184ffa147773b2410eaddcd022e5078bbdf..a99536aceda220fb0fa6783ba7ff33a9e6ba76d7 100644 --- a/l10n/be/files_sharing.po +++ b/l10n/be/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-10-21 13:01-0400\n" +"PO-Revision-Date: 2013-10-21 17:02+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" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" + +#: templates/public.php:98 +msgid "Direct link" +msgstr "" diff --git a/l10n/be/files_trashbin.po b/l10n/be/files_trashbin.po index 770cceb542cbcc8659f7a27e06814e48c5561ec8..91455c96709a04980302925b4bea4af5dd90e22e 100644 --- a/l10n/be/files_trashbin.po +++ b/l10n/be/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"PO-Revision-Date: 2014-01-05 17:20+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,72 +17,44 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:63 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:43 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 msgid "Error" -msgstr "" +msgstr "Памылка" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:905 lib/trashbin.php:907 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:7 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:20 msgid "Name" msgstr "" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:23 templates/index.php:25 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:31 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index cba5a16eb98b2a7425bd8db27f0f84de20523a7d..a422c6e60fc684fb1450051bb9be260aeb47ef33 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"PO-Revision-Date: 2014-01-05 17:20+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,270 +17,278 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:239 +#: private/app.php:245 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:257 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:362 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:375 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:386 msgid "Settings" -msgstr "" +msgstr "Налады" -#: app.php:397 +#: private/app.php:398 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:411 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 -msgid "seconds ago" +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:130 +msgid "seconds ago" +msgstr "Секунд таму" + +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -288,7 +296,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -296,15 +304,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" -msgstr "" +msgstr "Сёння" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" -msgstr "" +msgstr "Ўчора" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" @@ -312,11 +320,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" -msgstr "" +msgstr "У мінулым месяцы" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -324,19 +332,10 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" -msgstr "" +msgstr "У мінулым годзе" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" -msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" +msgstr "Гадоў таму" diff --git a/l10n/be/settings.po b/l10n/be/settings.po index 28e5d3884cb6ea222255197ec010ac71afe16a59..fdb09c0a2b78146159daf11d674f409ecb20857f 100644 --- a/l10n/be/settings.po +++ b/l10n/be/settings.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"PO-Revision-Date: 2014-01-05 17:20+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,31 +129,31 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" -msgstr "" +msgstr "Памылка" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "" +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/be/user_ldap.po b/l10n/be/user_ldap.po index f2cad633ff3644125d81308bf4bbf4305a521e19..f9a186e2dea3493fb84f77bde883034fe7ae7ce5 100644 --- a/l10n/be/user_ldap.po +++ b/l10n/be/user_ldap.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"PO-Revision-Date: 2014-01-05 17:20+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,314 +25,429 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" +msgstr "Памылка" + +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" msgstr "" -#: js/settings.js:141 +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +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 "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +463,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +482,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +508,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 432e35d9270cbd826c1f966f7cb5b8ef873b4f0f..f865e5452d410b93a9baec0b7c6e66fac3d27e62 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,13 +17,14 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Няма избрани категории за изтриване" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -186,59 +148,59 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Настройки" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "преди секунди" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "днес" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "вчера" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "последният месец" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "последната година" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "последните години" @@ -306,155 +268,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Грешка" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Споделяне" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Грешка" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" -msgstr "Споделено с" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Парола" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "създаване" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Ще получите връзка за нулиране на паролата Ви." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Потребител" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -503,13 +493,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Нулиране на заявка" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -535,7 +525,7 @@ msgstr "Лични" msgid "Users" msgstr "Потребители" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Приложения" @@ -547,6 +537,34 @@ msgstr "Админ" 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 "Достъпът е забранен" @@ -563,108 +581,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Редактиране на категориите" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Добавяне" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Създаване на админ профил" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Разширено" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Директория за данни" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Конфигуриране на базата" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "ще се ползва" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Потребител за базата" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Парола за базата" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Име на базата" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Хост за базата" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Завършване на настройките" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Изход" @@ -682,19 +711,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Забравена парола?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "запомни" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Вход" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -702,10 +739,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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.php:3 +#: 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/bg_BG/files.po b/l10n/bg_BG/files.po index 58667fa74a826045791193a3247804b7c73d350a..ef6b2a9422cc98069e98e5a3d651ad5b6d4c32d5 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -27,220 +27,286 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Файлът е качен успешно" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Файлът е качен частично" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Фахлът не бе качен" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Липсва временна папка" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Възникна проблем при запис в диска" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Невалидна директория." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Файлове" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Качването е спряно." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Грешка" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "Споделяне" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Изтриване завинаги" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Преименуване" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Чакащо" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "препокриване" - -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "отказ" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "възтановяване" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Грешка" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Име" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Размер" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Променено" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Качване" @@ -276,65 +342,69 @@ msgstr "" msgid "Save" msgstr "Запис" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Ново" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "Текстов файл" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Нова папка" + +#: templates/index.php:10 msgid "Folder" msgstr "Папка" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Спри качването" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Няма нищо тук. Качете нещо." -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Изтегляне" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Изтриване" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Файлът който сте избрали за качване е прекалено голям" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файловете които се опитвате да качите са по-големи от позволеното за сървъра." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Файловете се претърсват, изчакайте." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/bg_BG/files_encryption.po b/l10n/bg_BG/files_encryption.po index 3149c9a989eb02951f156e4be9a9dd732ccf7716..e8c1b1e720bb5a46fb89cbd76f3af35411f1f93e 100644 --- a/l10n/bg_BG/files_encryption.po +++ b/l10n/bg_BG/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:41 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Записване..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Криптиране" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 0bf82bd4a4de190a9fe942a0125e92f67801bd96..8239f0abc7de2fd4b14d5dc10133906c0613ce40 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Достъпът е даден" @@ -25,7 +25,7 @@ msgstr "Достъпът е даден" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Даване на достъп" @@ -33,24 +33,24 @@ msgstr "Даване на достъп" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 20f297f9cdcd1c3defeca0fa9d59b83b995202c4..debc2b0a04527748726ebb21e90bcac45b4d6f88 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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/authenticate.php:9 -msgid "Submit" -msgstr "Потвърждение" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s сподели папката %s с Вас" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s сподели файла %s с Вас" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Изтегляне" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Качване" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Спри качването" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Няма наличен преглед за" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 1b16c5b40973dad0a08455a9bd43995cbbfbc551..a62aa28850c1b9c4e7e64c93e238cfd67adc24c0 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -28,55 +28,31 @@ msgstr "Невъзможно перманентното изтриване на msgid "Couldn't restore %s" msgstr "Невъзможно възтановяване на %s" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "извършване на действие по възстановяване" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Грешка" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "изтриване на файла завинаги" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Изтриване завинаги" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Име" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "Изтрито" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Няма нищо. Кофата е празна!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Име" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Възтановяване" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Изтрито" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Изтриване" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 6ee938f5ab948f89812cebb1d341777bac7efa43..1771455acb2c058a092c0e0f16125531f8aceda0 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -18,318 +18,317 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Помощ" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Лични" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Настройки" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Потребители" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Админ" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "уеб услуги под Ваш контрол" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Изтеглянето като ZIP е изключено." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Файловете трябва да се изтеглят един по един." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Назад към файловете" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Избраните файлове са прекалено големи за генерирането на ZIP архив." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Приложението не е включено." -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Възникна проблем с идентификацията" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Ключът е изтекъл, моля презаредете страницата" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Файлове" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Текст" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Снимки" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s въведете потребителско име за базата с данни." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s въведете име на базата с данни." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s, не можете да ползвате точки в името на базата от данни" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Невалидно MS SQL потребителско име и/или парола: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Необходимо е да влезете в всъществуващ акаунт или като администратора" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Невалидно MySQL потребителско име и/или парола" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "Грешка в базата от данни: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Проблемната команда беше: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL потребителят '%s'@'localhost' вече съществува" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Изтриване на потребителя от MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL потребителят '%s'@'%%' вече съществува." -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Изтриване на потребителя от MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Oracle връзка не можа да се осъществи" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Невалидно Oracle потребителско име и/или парола" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Проблемната команда беше: \"%s\", име: %s, парола: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "Невалидно PostgreSQL потребителско име и/или парола" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Въведете потребителско име за администратор." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Въведете парола за администратор." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Вашият web сървър все още не е удачно настроен да позволява синхронизация на файлове, защото WebDAV интерфейсът изглежда не работи." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Моля направете повторна справка с ръководството за инсталиране." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Невъзможно откриване на категорията \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "преди секунди" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "днес" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "вчера" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "последният месец" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "последната година" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "последните години" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Невъзможно откриване на категорията \"%s\"" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 215c00671748a45d83ceb047342d3f4fc3c54b0d..8cd636c911be891c402c8c7aeacd76641355d15a 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "Възникна проблем с идентификацията" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "Обновяване до {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Изключено" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Включено" @@ -129,31 +129,31 @@ msgstr "Включено" msgid "Please wait...." msgstr "Моля почакайте...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Обновява се..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Грешка" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Обновяване" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Обновено" @@ -161,7 +161,7 @@ msgstr "Обновено" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "възтановяване" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Групи" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Изтриване" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "нова група" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Крон" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Споделяне" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Още" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "По-малко" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Версия" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Криптиране" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "Хранилище по подразбиране" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Неограничено" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "Хранилище" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 8401703d7c0c36cd2c36517e3538c37994f6928b..9a3ddf148fb9f4b79d238ee50bf4f44d7f3b4abc 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Грешка" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:778 lib/wizard.php:790 +msgid "Invalid Host" msgstr "" -#: templates/settings.php:12 +#: lib/wizard.php:951 +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 "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Парола" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Помощ" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 36e98dacdad8bfbf11ba427b53d3d7947210c50c..7c1fcc50dd7dc3601d04ee7b3aab45ab42a5f719 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,13 +17,14 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "ক্যাটেগরির ধরণটি প্রদান করা হয় নি।" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "যোগ করার মত কোন ক্যাটেগরি নেই ?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "অবজেক্টের ধরণটি প্রদান করা হয় নি।" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID প্রদান করা হয় নি।" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "প্রিয়তে %s যোগ করতে সমস্যা দেখা দিয়েছে।" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "মুছে ফেলার জন্য কনো ক্যাটেগরি নির্বাচন করা হয় নি।" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "প্রিয় থেকে %s সরিয়ে ফেলতে সমস্যা দেখা দিয়েছে।" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -186,59 +148,59 @@ msgstr "নভেম্বর" msgid "December" msgstr "ডিসেম্বর" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "আজ" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "গত মাস" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "মাস পূর্বে" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "গত বছর" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "বছর পূর্বে" @@ -306,155 +268,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "অবজেক্টের ধরণটি সুনির্দিষ্ট নয়।" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "সমস্যা" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "অ্যাপের নামটি সুনির্দিষ্ট নয়।" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "আবশ্যিক {file} টি সংস্থাপিত নেই !" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "ভাগাভাগিকৃত" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "ভাগাভাগি কর" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "সমস্যা" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে " -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "ভাগাভাগি বাতিল করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "অনুমতিসমূহ পরিবর্তন করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} আপনার এবং {group} গোষ্ঠীর সাথে ভাগাভাগি করেছেন" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "{owner} আপনার সাথে ভাগাভাগি করেছেন" -#: js/share.js:183 -msgid "Share with" -msgstr "যাদের সাথে ভাগাভাগি করা হয়েছে" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "লিংকের সাথে ভাগাভাগি কর" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "কূটশব্দ সুরক্ষিত" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "কূটশব্দ" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "ব্যক্তির সাথে ই-মেইল যুক্ত কর" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "পাঠাও" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করুন" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "ই-মেইলের মাধ্যমে ভাগাভাগি করুনঃ" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "কোন ব্যক্তি খুঁজে পাওয়া গেল না" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "পূনঃরায় ভাগাভাগি অনুমোদিত নয়" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "{user} এর সাথে {item} ভাগাভাগি করা হয়েছে" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "ভাগাভাগি বাতিল " -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "সম্পাদনা করতে পারবেন" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "অধিগম্যতা নিয়ন্ত্রণ" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "তৈরী করুন" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "পরিবর্ধন কর" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "মুছে ফেল" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "ভাগাভাগি কর" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "কূটশব্দদ্বারা সুরক্ষিত" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "পাঠানো হচ্ছে......" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "ই-মেইল পাঠানো হয়েছে" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "কূটশব্দ পূনঃনির্ধারণের জন্য একটি টূনঃনির্ধারণ লিংকটি আপনাকে ই-মেইলে পাঠানো হয়েছে ।" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "ব্যবহারকারী" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -503,13 +493,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "অনুরোধ পূনঃনির্ধারণ" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -535,7 +525,7 @@ msgstr "ব্যক্তিগত" msgid "Users" msgstr "ব্যবহারকারী" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "অ্যাপ" @@ -547,6 +537,34 @@ msgstr "প্রশাসন" 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 "অধিগমনের অনুমতি নেই" @@ -563,108 +581,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "ক্যাটেগরি সম্পাদনা" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "যোগ কর" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "নিরাপত্তাজনিত সতর্কতা" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "প্রশাসক একাউন্ট তৈরী করুন" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "সুচারু" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "ডাটা ফোল্ডার " -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "ডাটাবেচ কনফিগার করুন" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "ব্যবহৃত হবে" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "ডাটাবেজ ব্যবহারকারী" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "ডাটাবেজ কূটশব্দ" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "ডাটাবেজের নাম" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "ডাটাবেজ টেবলস্পেস" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "ডাটাবেজ হোস্ট" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "সেটআপ সুসম্পন্ন কর" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "প্রস্থান" @@ -682,19 +711,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "কূটশব্দ হারিয়েছেন?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "মনে রাখ" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "প্রবেশ" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -702,10 +739,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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 "%s ভার্সনে ownCloud পরিবর্ধন করা হচ্ছে, এজন্য কিছু সময় প্রয়োজন।" + +#: 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/bn_BD/files.po b/l10n/bn_BD/files.po index 10ce6739f1104f8a4ab71f67c7a4fa86b7060995..9d7ce1231d6f20f0677dae56572364584c8bf801 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -27,220 +27,286 @@ msgstr "%s কে স্থানান্তর করা সম্ভব হ msgid "Could not move %s" msgstr "%s কে স্থানান্তর করা সম্ভব হলো না" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "ফাইলের নামটি ফাঁকা রাখা যাবে না।" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "কোন ফাইল আপলোড করা হয় নি। সমস্যার কারণটি অজ্ঞাত।" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "কোন সমস্যা হয় নি, ফাইল আপলোড সুসম্পন্ন হয়েছে।" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "আপলোড করা ফাইলটি php.ini তে বর্ণিত upload_max_filesize নির্দেশিত আয়তন অতিক্রম করছেঃ" -#: ajax/upload.php:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "আপলোড করা ফাইলটি আংশিক আপলোড করা হয়েছে" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "কোন ফাইল আপলোড করা হয় নি" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "অস্থায়ী ফোল্ডারটি হারানো গিয়েছে" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "ডিস্কে লিখতে ব্যর্থ" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "ভুল ডিরেক্টরি" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "ফাইল" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "যথেষ্ঠ পরিমাণ স্থান নেই" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "আপলোড বাতিল করা হয়েছে।" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।" -#: js/file-upload.js:520 -msgid "URL cannot be empty." -msgstr "URL ফাঁকা রাখা যাবে না।" +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "সমস্যা" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} টি বিদ্যমান" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "ভাগাভাগি কর" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "পূনঃনামকরণ" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "মুলতুবি" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} টি বিদ্যমান" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "প্রতিস্থাপন" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "নাম সুপারিশ করুন" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "বাতিল" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "ক্রিয়া প্রত্যাহার" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "টি একটি অননুমোদিত নাম।" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "ফাইলের নামটি ফাঁকা রাখা যাবে না।" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "সমস্যা" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "রাম" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "আকার" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "পরিবর্তিত" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "আপলোড" @@ -276,65 +342,69 @@ msgstr "ZIP ফাইলের ইনপুটের সর্বোচ্চ msgid "Save" msgstr "সংরক্ষণ" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "নতুন" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "টেক্সট ফাইল" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "ফোল্ডার" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr " লিংক থেকে" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "আপলোড বাতিল কর" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "এখানে কিছুই নেই। কিছু আপলোড করুন !" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "ডাউনলোড" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "ভাগাভাগি বাতিল " - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "মুছে" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "আপলোডের আকারটি অনেক বড়" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "আপনি এই সার্ভারে আপলোড করার জন্য অনুমোদিত ফাইলের সর্বোচ্চ আকারের চেয়ে বৃহদাকার ফাইল আপলোড করার চেষ্টা করছেন " -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "ফাইলগুলো স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "বর্তমান স্ক্যানিং" diff --git a/l10n/bn_BD/files_encryption.po b/l10n/bn_BD/files_encryption.po index 229e29bf4eabdd3cecb9f44b29d7f3b1e0d36e16..948e9dfe6c1d104c551a4637d73987bfa4ba81a3 100644 --- a/l10n/bn_BD/files_encryption.po +++ b/l10n/bn_BD/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:09+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:41 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "সংরক্ষণ করা হচ্ছে.." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "সংকেতায়ন" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 296d25d0bde4993ac5e436b289fcdc55df008f8e..50383bb1fc7c3474044d49780c4b29f7f233d872 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "অধিগমনের অনুমতি প্রদান করা হলো" @@ -25,7 +25,7 @@ msgstr "অধিগমনের অনুমতি প্রদান কর msgid "Error configuring Dropbox storage" msgstr "Dropbox সংরক্ষণাগার নির্ধারণ করতে সমস্যা " -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "অধিগমনের অনুমতি প্রদান কর" @@ -33,24 +33,24 @@ msgstr "অধিগমনের অনুমতি প্রদান কর" msgid "Please provide a valid Dropbox app key and secret." msgstr "দয়া করে সঠিক এবং বৈধ Dropbox app key and secret প্রদান করুন।" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Google Drive সংরক্ষণাগার নির্ধারণ করতে সমস্যা " -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index f44908ae2c1f765b567f245e736ef1e7e6d7bf65..abb5382f98ef6c502617ed11d3d1347ae81427d6 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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/authenticate.php:9 -msgid "Submit" -msgstr "জমা দিন" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "ডাউনলোড" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "আপলোড" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "আপলোড বাতিল কর" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index eba36ccfd6b1431a1c5e14582c4b2e79c3772629..ee47e996cbdca38f7dcfe3ab8a1901a614aa7c9f 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "সমস্যা" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:815 lib/trashbin.php:817 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:8 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:22 msgid "Name" msgstr "রাম" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:25 templates/index.php:27 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:33 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "মুছে" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 40a6b3b7470763ace4e87cd02ff3e1e55b2f83a7..aa82b972043ed0c047a3174856fe8c8ebd3938cc 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,318 +17,317 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "সহায়িকা" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "ব্যক্তিগত" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "ব্যবহারকারী" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "প্রশাসন" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP ডাউনলোড বন্ধ করা আছে।" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "ফাইলগুলো একে একে ডাউনলোড করা আবশ্যক।" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "ফাইলে ফিরে চল" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "নির্বাচিত ফাইলগুলো এতই বৃহৎ যে জিপ ফাইল তৈরী করা সম্ভব নয়।" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "অ্যাপ্লিকেসনটি সক্রিয় নয়" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "অনুমোদন ঘটিত সমস্যা" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "টোকেন মেয়াদোত্তীর্ণ। দয়া করে পৃষ্ঠাটি পূনরায় লোড করুন।" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "ফাইল" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "টেক্সট" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "আজ" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "গতকাল" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "গত মাস" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "গত বছর" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "বছর পূর্বে" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index b36011a8a59505889ed756e5ff1a9569e128b244..1145ec529f3c950dd516ec08bec7058313611d58 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "অনুমোদন ঘটিত সমস্যা" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "নিষ্ক্রিয়" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "সক্রিয় " @@ -129,31 +129,31 @@ msgstr "সক্রিয় " msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "সমস্যা" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "পরিবর্ধন" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "ক্রিয়া প্রত্যাহার" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "গোষ্ঠীসমূহ" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "গোষ্ঠী প্রশাসক" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "মুছে" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "নিরাপত্তাজনিত সতর্কতা" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "বেশী" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "কম" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "ভার্সন" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "সংকেতায়ন" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "পূর্বনির্ধারিত সংরক্ষণাগার" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "অসীম" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "সংরক্ষণাগার" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 8448b210a449bc46f99c7071220f2acb82f7ed7a..600c503421663db3a231ee6748289aca608690ce 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "সমস্যা" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:778 lib/wizard.php:790 +msgid "Invalid Host" msgstr "" -#: templates/settings.php:12 +#: lib/wizard.php:951 +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 "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +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/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "হোস্ট" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "SSL আবশ্যক না হলে আপনি এই প্রটোকলটি মুছে ফেলতে পারেন । এরপর শুরু করুন এটা দিয়ে ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "ভিত্তি DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "সুচারু ট্যঅবে গিয়ে আপনি ব্যবহারকারি এবং গোষ্ঠীসমূহের জন্য ভিত্তি DN নির্ধারণ করতে পারেন।" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "পোর্ট" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "ব্যবহারকারি DN" -#: templates/settings.php:46 +#: 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 "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. পরিচয় গোপন রেখে অধিগমনের জন্য DN এবং কূটশব্দটি ফাঁকা রাখুন।" -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "কূটশব্দ" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "অজ্ঞাতকুলশীল অধিগমনের জন্য DN এবং কূটশব্দটি ফাঁকা রাখুন।" -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "ব্যবহারকারির প্রবেশ ছাঁকনী" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "সুচারু ট্যঅবে গিয়ে আপনি ব্যবহারকারি এবং গোষ্ঠীসমূহের জন্য ভিত্তি DN নির্ধারণ করতে পারেন।" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "ব্যবহারকারী তালিকা ছাঁকনী" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "গোষ্ঠী ছাঁকনী" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "পোর্ট" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "TLS ব্যবহার কর" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "বর্ণ অসংবেদী LDAP সার্ভার (উইন্ডোজ)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "SSL সনদপত্র যাচাইকরণ বন্ধ রাক।" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "সেকেন্ডে। কোন পরিবর্তন ক্যাসে খালি করবে।" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "ব্যবহারকারীর প্রদর্শিতব্য নামের ক্ষেত্র" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "ভিত্তি ব্যবহারকারি বৃক্ষাকারে" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "গোষ্ঠীর প্রদর্শিতব্য নামের ক্ষেত্র" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "ভিত্তি গোষ্ঠী বৃক্ষাকারে" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "গোষ্ঠী-সদস্য সংস্থাপন" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "বাইটে" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "ব্যবহারকারী নামের জন্য ফাঁকা রাখুন (পূর্বনির্ধারিত)। অন্যথায়, LDAP/AD বৈশিষ্ট্য নির্ধারণ করুন।" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "সহায়িকা" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index 5b4df12a3c84e2739fabf4dd5b2a3729037b5ac6..08753f3c8f08d853595965977f6c7587344115a1 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-08 03:26+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,13 +17,14 @@ 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/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -190,59 +152,59 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "" @@ -311,155 +273,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Podijeli" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" +#: js/share.js:213 +msgid "Share with user or group …" msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 "Dodaj" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -508,12 +498,12 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" msgstr "" #: lostpassword/templates/resetpassword.php:4 @@ -540,7 +530,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "" @@ -552,6 +542,34 @@ msgstr "" 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 "" @@ -568,108 +586,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Dodaj" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -687,19 +716,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -707,10 +744,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " msgstr "" -#: templates/update.php:3 +#: 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/bs/files.po b/l10n/bs/files.po index f825923a72bf7b63b93dad73b4f7a33311b2f18a..440f16a2ce59fcbd54b4d333c85f3c6208fe6e46 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -27,223 +27,289 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" msgstr "" -#: js/fileactions.js:119 -msgid "Share" -msgstr "Podijeli" - -#: js/fileactions.js:131 -msgid "Delete permanently" +#: js/file-upload.js:595 +msgid "Could not create file" msgstr "" -#: js/fileactions.js:197 -msgid "Rename" +#: js/file-upload.js:611 +msgid "Could not create folder" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 -msgid "Pending" +#: js/file-upload.js:661 +msgid "Error fetching URL" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/fileactions.js:125 +msgid "Share" +msgstr "Podijeli" + +#: js/fileactions.js:137 +msgid "Delete permanently" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" +#: js/fileactions.js:194 +msgid "Rename" msgstr "" -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Ime" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Veličina" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "" @@ -279,65 +345,69 @@ msgstr "" msgid "Save" msgstr "Spasi" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Nova fascikla" + +#: templates/index.php:10 msgid "Folder" msgstr "Fasikla" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/bs/files_encryption.po b/l10n/bs/files_encryption.po index 8e55996135c976418c13f8ee4605cec19c33b61e..acc68558cf46f652ba736a6c211a782b3b742327 100644 --- a/l10n/bs/files_encryption.po +++ b/l10n/bs/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:44 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Spašavam..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/bs/files_sharing.po b/l10n/bs/files_sharing.po index 47ff900767acf32658bf32295d9e042b91307bfe..386d74cf543e1098b8836501b66afc3c905ee23f 100644 --- a/l10n/bs/files_sharing.po +++ b/l10n/bs/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-10-21 13:01-0400\n" +"PO-Revision-Date: 2013-10-21 17:02+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" @@ -18,15 +18,15 @@ msgstr "" "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" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" + +#: templates/public.php:98 +msgid "Direct link" +msgstr "" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index 319adc5d239e28576fa5b9fc505e3efd5be81b7f..e2a429d7101f91b87285f11c1c0b98dfa5b63b84 100644 --- a/l10n/bs/files_trashbin.po +++ b/l10n/bs/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+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" @@ -27,57 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:814 lib/trashbin.php:816 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:23 msgid "Name" msgstr "Ime" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:26 templates/index.php:28 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:34 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/bs/lib.po b/l10n/bs/lib.po index 721908ee79ab78dcdb042c691eac63ebb87ae840..447589d9b0b9ed5972e5ad7e54e57239ad6b9276 100644 --- a/l10n/bs/lib.po +++ b/l10n/bs/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -17,322 +17,321 @@ 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" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/bs/settings.po b/l10n/bs/settings.po index 87fe921d4527378005bac40d6e5d1311b8fb7f79..fd989698863cb1568df159f8475379b1fa40da67 100644 --- a/l10n/bs/settings.po +++ b/l10n/bs/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+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" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,31 +129,31 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/bs/user_ldap.po b/l10n/bs/user_ldap.po index 6e276fcf031ed47ca4e45a06b2343a0a74620cd2..fb4bd54b94c93caf91e510bd31ce40151d517624 100644 --- a/l10n/bs/user_ldap.po +++ b/l10n/bs/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,427 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" msgstr "" -#: templates/settings.php:12 +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Spasi" + +#: 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 "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +461,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +480,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +506,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index aaabc519ac8d951ef67f9f2a4be3b0ab7d897b30..2a27131c22e919c5558765f3f58f2a4b7a0c4ecc 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# rogerc, 2013 +# rogerc, 2013-2014 # rogerc, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:30+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"PO-Revision-Date: 2014-01-04 10:20+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -19,14 +19,15 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s ha compartit »%s« amb tu" -#: ajax/share.php:227 -msgid "group" -msgstr "grup" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "No s'ha pogut enviar correu als usuaris següents: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -53,45 +54,6 @@ msgstr "Actualitzada la memòria de cau dels fitxers" msgid "... %d%% done ..." msgstr "... %d%% fet ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "No s'ha especificat el tipus de categoria." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "No voleu afegir cap categoria?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Aquesta categoria ja existeix: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "No s'ha proporcionat el tipus d'objecte." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "No s'ha proporcionat la ID %s." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Error en afegir %s als preferits." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "No hi ha categories per eliminar." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Error en eliminar %s dels preferits." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "No s'han proporcionat imatges o fitxers" @@ -188,59 +150,59 @@ msgstr "Novembre" msgid "December" msgstr "Desembre" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Configuració" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "fa %n minut" msgstr[1] "fa %n minuts" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "fa %n hora" msgstr[1] "fa %n hores" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "avui" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "ahir" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "fa %n dies" msgstr[1] "fa %n dies" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "el mes passat" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "fa %n mes" msgstr[1] "fa %n mesos" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "l'any passat" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "anys enrere" @@ -308,155 +270,183 @@ msgstr "({count} seleccionats)" msgid "Error loading file exists template" msgstr "Error en carregar la plantilla de fitxer existent" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "No s'ha especificat el tipus d'objecte." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Error" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "No s'ha especificat el nom de l'aplicació." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "El fitxer requerit {file} no està instal·lat!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Compartit" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Comparteix" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Error" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Error en compartir" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Error en deixar de compartir" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Error en canviar els permisos" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Compartit amb vos i amb el grup {group} per {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Compartit amb vos per {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Comparteix amb" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Comparteix amb usuari o grup..." -#: js/share.js:188 -msgid "Share with link" -msgstr "Comparteix amb enllaç" +#: js/share.js:219 +msgid "Share link" +msgstr "Enllaç de compartició" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Protegir amb contrasenya" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Contrasenya" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Permet pujada pública" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Enllaç per correu electrónic amb la persona" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Envia" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Estableix la data de venciment" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Data de venciment" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Comparteix per correu electrònic" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "No s'ha trobat ningú" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "grup" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "No es permet compartir de nou" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Compartit en {item} amb {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Deixa de compartir" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "notifica per correu electrònic" + +#: js/share.js:408 msgid "can edit" msgstr "pot editar" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "control d'accés" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "crea" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "actualitza" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "elimina" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "comparteix" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Protegeix amb contrasenya" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Error en eliminar la data de venciment" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Error en establir la data de venciment" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Enviant..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "El correu electrónic s'ha enviat" +#: js/share.js:769 +msgid "Warning" +msgstr "Avís" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "No s'ha especificat el tipus d'objecte." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Escriu nou" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Esborra" + +#: js/tags.js:31 +msgid "Add" +msgstr "Afegeix" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Edita etiquetes" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Error en carregar la plantilla de diàleg: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "No heu seleccionat les etiquetes a eliminar." + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "Carregueu la pàgina de nou." + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "L'enllaç per reiniciar la vostra contrasenya s'ha enviat al vostre correu.
    Si no el rebeu en un temps raonable comproveu les carpetes de spam.
    Si no és allà, pregunteu a l'administrador local." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "La petició ha fallat!
    Esteu segur que el correu/nom d'usuari és correcte?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Rebreu un enllaç al correu electrònic per reiniciar la contrasenya." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Nom d'usuari" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -505,13 +495,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Els vostres fitxers estan encriptats. Si no heu habilitat la clau de recuperació no hi haurà manera de recuperar les dades després que reestabliu la contrasenya. Si sabeu què fer, contacteu amb l'administrador abans de continuar. Voleu continuar?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Sí, vull restablir ara la contrasenya" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Sol·licita reinicialització" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Estableix de nou" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -537,7 +527,7 @@ msgstr "Personal" msgid "Users" msgstr "Usuaris" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Aplicacions" @@ -549,6 +539,34 @@ msgstr "Administració" msgid "Help" msgstr "Ajuda" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "Error en carregar les etiquetes" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "L'etiqueta ja existeix" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "Error en eliminar etiqueta(s)" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "Error en etiquetar" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "Error en treure les etiquetes" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "Error en posar a preferits" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "Error en treure de preferits" + #: templates/403.php:12 msgid "Access forbidden" msgstr "Accés prohibit" @@ -565,108 +583,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Ei,\n\nnomés fer-te saber que %s ha compartit %s amb tu.\nMira-ho: %s\n\nSalut!" +msgstr "Ei,\n\nnomés fer-te saber que %s ha compartit %s amb tu.\nMira-ho a: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Edita les categories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "La compartició venç el %s." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Afegeix" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Salut!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Avís de seguretat" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "La versió de PHP que useu és vulnerable a l'atac per NULL Byte (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Actualitzeu la instal·lació de PHP per usar %s de forma segura." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "No està disponible el generador de nombres aleatoris segurs, habiliteu l'extensió de PHP OpenSSL." -#: templates/installation.php:33 +#: 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 "Sense un generador de nombres aleatoris segurs un atacant podria predir els senyals per restablir la contrasenya i prendre-us el compte." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "La carpeta de dades i els seus fitxers probablement són accessibles des d'internet perquè el fitxer .htaccess no funciona." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "Per informació de com configurar el servidor, comproveu la documentació." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Crea un compte d'administrador" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Avançat" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Carpeta de dades" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Configura la base de dades" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "s'usarà" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Usuari de la base de dades" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Contrasenya de la base de dades" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Nom de la base de dades" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Espai de taula de la base de dades" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Ordinador central de la base de dades" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Acaba la configuració" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Acabant..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "Aquesta aplicació necessita tenir JavaScript activat per funcionar correctament. Activeu JavaScript i carregueu aquesta interfície de nou." + +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s està disponible. Obtingueu més informació de com actualitzar." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Surt" @@ -684,19 +713,27 @@ msgstr "Se no heu canviat la contrasenya recentment el vostre compte pot estar c msgid "Please change your password to secure your account again." msgstr "Canvieu la contrasenya de nou per assegurar el vostre compte." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "L'autenticació del servidor ha fallat!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Contacteu amb l'administrador." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Heu perdut la contrasenya?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "recorda'm" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Inici de sessió" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Acreditacions alternatives" @@ -704,10 +741,37 @@ msgstr "Acreditacions alternatives" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Ei,

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

    Salut!" +"href=\"%s\">View it!

    " +msgstr "Ei,

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

    " -#: templates/update.php:3 +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "La instància ownCloud està en mode d'usuari únic." + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "Això significa que només els administradors poden usar la instància." + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "Contacteu amb l'administrador del sistema si aquest missatge persisteix o apareix inesperadament." + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "Gràcies per la paciència." + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "S'està actualitzant ownCloud a la versió %s, pot trigar una estona." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "Aquesta instància d'ownCloud s'està actualitzant i podria trigar una estona." + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "Carregueu de nou aquesta pàgina d'aquí a poc temps per continuar usant ownCloud." diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 82091cf75b36b3e4691d1e2f2139d2c0fcd68c6d..e96c34be04273c8abde16a2d095438237f823247 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -4,14 +4,15 @@ # # Translators: # rogerc, 2013 +# jmontane , 2013 # Josep Tomàs , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-24 12:58-0400\n" -"PO-Revision-Date: 2013-09-24 15:10+0000\n" -"Last-Translator: rogerc\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,62 +30,107 @@ msgstr "No s'ha pogut moure %s - Ja hi ha un fitxer amb aquest nom" msgid "Could not move %s" msgstr " No s'ha pogut moure %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "El nom del fitxer no pot ser buit." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "El nom de fitxer no pot contenir \"/\". Indiqueu un nom diferent." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "El nom %s ja s'usa en la carpeta %s. Indiqueu un nom diferent." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "No és un origen vàlid" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "S'ha produït un error en baixar %s a %s" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "S'ha produït un error en crear el fitxer" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "El nom de la carpeta no pot ser buit." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "El nom de la carpeta no pot contenir \"/\". Indiqueu un nom diferent." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "S'ha produït un error en crear la carpeta" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "No es pot establir la carpeta de pujada." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Testimoni no vàlid" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "No s'ha carregat cap fitxer. Error desconegut" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "No hi ha errors, el fitxer s'ha carregat correctament" -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "El fitxer només s'ha carregat parcialment" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "No s'ha carregat cap fitxer" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Falta un fitxer temporal" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Ha fallat en escriure al disc" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "No hi ha prou espai disponible" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "La pujada ha fallat. No s'ha pogut obtenir informació del fitxer." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "La pujada ha fallat. El fitxer pujat no s'ha trobat." -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Directori no vàlid." @@ -92,157 +138,178 @@ msgstr "Directori no vàlid." msgid "Files" msgstr "Fitxers" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "No es pot pujar {filename} perquè és una carpeta o té 0 bytes" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "No hi ha prou espai disponible" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "La pujada s'ha cancel·lat." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "No hi ha resposta del servidor." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "La URL no pot ser buida" +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "L'URL no pot ser buit" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "A la carpeta inici 'Compartit' és un nom de fitxer reservat" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Error" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} ja existeix" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "No s'ha pogut crear el fitxer" -#: js/fileactions.js:119 +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "No s'ha pogut crear la carpeta" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "Comparteix" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Esborra permanentment" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Reanomena" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Pendent" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} ja existeix" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "substitueix" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "sugereix un nom" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "No es pot canviar el nom de fitxer" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "cancel·la" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "s'ha substituït {old_name} per {new_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "desfés" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Error en esborrar el fitxer." + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetes" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fitxer" msgstr[1] "%n fitxers" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} i {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Pujant %n fitxer" msgstr[1] "Pujant %n fitxers" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' és un nom no vàlid per un fitxer." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "El nom del fitxer no pot ser buit." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "El vostre espai d'emmagatzemament és ple, els fitxers ja no es poden actualitzar o sincronitzar!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "El vostre espai d'emmagatzemament és gairebé ple ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "L'aplicació d'encriptació està activada però les claus no estan inicialitzades, sortiu i acrediteu-vos de nou." + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "La clau privada de l'aplicació d'encriptació no és vàlida! Actualitzeu la contrasenya de la clau privada a l'arranjament personal per recuperar els fitxers encriptats." + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "L'encriptació s'ha desactivat però els vostres fitxers segueixen encriptats. Aneu a la vostra configuració personal per desencriptar els vostres fitxers." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "S'està preparant la baixada. Pot trigar una estona si els fitxers són grans." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "Error en moure el fitxer" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Error" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Nom" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Mida" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Modificat" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Nom de carpeta no vàlid. L'ús de 'Shared' és reservat" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s no es pot canviar el nom" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Puja" @@ -278,65 +345,69 @@ msgstr "Mida màxima d'entrada per fitxers ZIP" msgid "Save" msgstr "Desa" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nou" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "Nou fitxer de text" + +#: templates/index.php:8 msgid "Text file" msgstr "Fitxer de text" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Carpeta nova" + +#: templates/index.php:10 msgid "Folder" msgstr "Carpeta" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Des d'enllaç" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Fitxers esborrats" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "No teniu permisos d'escriptura aquí." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "No teniu permisos per a pujar o crear els fitxers aquí" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Res per aquí. Pugeu alguna cosa!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Baixa" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Deixa de compartir" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Esborra" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "La pujada és massa gran" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "S'estan escanejant els fitxers, espereu" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Actualment escanejant" diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index 695090cfef6ba9af7f56dda817b88029c4d45981..95c9dcd2ca39ef51742740982589d8f9250a24b0 100644 --- a/l10n/ca/files_encryption.po +++ b/l10n/ca/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-02 17:27-0500\n" +"PO-Revision-Date: 2013-12-02 11:30+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -46,75 +46,96 @@ msgstr "La contrasenya s'ha canviat." msgid "Could not change the password. Maybe the old password was not correct." msgstr "No s'ha pogut canviar la contrasenya. Potser la contrasenya anterior no era correcta." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "La contrasenya de la clau privada s'ha actualitzat." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "No s'ha pogut actualitzar la contrasenya de la clau privada. Potser la contrasenya anterior no era correcta." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "La clau privada no és vàlida! Probablement la contrasenya va ser canviada des de fora del sistema ownCloud (per exemple, en el directori de l'empresa). Vostè pot actualitzar la contrasenya de clau privada en la seva configuració personal per poder recuperar l'accés en els arxius xifrats." +"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 "L'aplicació d'encriptació no està inicialitzada! Potser l'aplicació d'encriptació ha estat reiniciada durant la sessió. Intenteu sortir i acreditar-vos de nou per reinicialitzar l'aplicació d'encriptació." -#: hooks/hooks.php:41 +#: 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 "La clau privada no és vàlida! Probablement la contrasenya va ser canviada des de fora de %s (per exemple, en el directori de l'empresa). Vostè pot actualitzar la contrasenya de clau privada en la seva configuració personal per poder recuperar l'accés en els arxius xifrats." + +#: 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 "No es pot desencriptar aquest fitxer, probablement és un fitxer compartit. Demaneu al propietari del fitxer que el comparteixi de nou amb vós." + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Error desconegut. Comproveu l'arranjament del sistema o contacteu amb l'administrador" + +#: hooks/hooks.php:59 msgid "Missing requirements." msgstr "Manca de requisits." -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Assegureu-vos que teniu instal·lat PHP 5.3.3 o una versió superior i que està activat Open SSL i habilitada i configurada correctament l'extensió de PHP. De moment, l'aplicació d'encriptació s'ha desactivat." -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "Els usuaris següents no estan configurats per a l'encriptació:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "La encriptació inicial ha començat... Pot trigar una estona, espereu." + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Desant..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "La vostra clau privada no és vàlida! Potser la vostra contrasenya ha canviat des de fora." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Vés directament a" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Podeu desbloquejar la clau privada en el vostre" - -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "arranjament personal" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Xifrat" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Activa la clau de recuperació (permet recuperar fitxers d'usuaris en cas de pèrdua de contrasenya):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Clau de recuperació de la contrasenya" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Repetiu la clau de recuperació de contrasenya" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Activat" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Desactivat" @@ -122,58 +143,62 @@ msgstr "Desactivat" msgid "Change recovery key password:" msgstr "Canvia la clau de recuperació de contrasenya:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Antiga clau de recuperació de contrasenya" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Nova clau de recuperació de contrasenya" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "Repetiu la nova clau de recuperació de contrasenya" + +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Canvia la contrasenya" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "La clau privada ja no es correspon amb la contrasenya d'accés:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Establiu la vostra contrasenya clau en funció de la contrasenya actual d'accés." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Si no recordeu la contrasenya anterior podeu demanar a l'administrador que recuperi els vostres fitxers." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Contrasenya anterior d'accés" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Contrasenya d'accés actual" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Actualitza la contrasenya de clau privada" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Habilita la recuperació de contrasenya:" -#: templates/settings-personal.php:47 +#: 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 "Activar aquesta opció us permetrà obtenir de nou accés als vostres fitxers encriptats en cas de perdre la contrasenya" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "S'han actualitzat els arranjaments de recuperació de fitxers" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "No s'ha pogut actualitzar la recuperació de fitxers" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 66a1a76942d44ec99ab6382eedd40ad383a284b2..e8defe258b2dee07c654a67aed8395cb0924ec94 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "S'ha concedit l'accés" @@ -26,7 +26,7 @@ msgstr "S'ha concedit l'accés" msgid "Error configuring Dropbox storage" msgstr "Error en configurar l'emmagatzemament Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Concedeix accés" @@ -34,24 +34,24 @@ msgstr "Concedeix accés" msgid "Please provide a valid Dropbox app key and secret." msgstr "Proporcioneu una clau d'aplicació i secret vàlids per a Dropbox" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Error en configurar l'emmagatzemament Google Drive" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Avís: \"smbclient\" no està instal·lat. No es pot muntar la compartició CIFS/SMB. Demaneu a l'administrador del sistema que l'instal·li." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Avís: El suport FTP per PHP no està activat o no està instal·lat. No es pot muntar la compartició FTP. Demaneu a l'administrador del sistema que l'instal·li." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 4e4d3419baef02bba17aa3748733380cb162667b..bf549bf9800c4f6064d5944b875269c754b589a9 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Aquest compartit està protegit amb contrasenya" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "la contrasenya és incorrecta. Intenteu-ho de nou." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Contrasenya" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Envia" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Aquest enllaç sembla que no funciona." @@ -54,28 +54,32 @@ msgstr "s'ha desactivat la compartició" msgid "For more info, please ask the person who sent this link." msgstr "Per més informació contacteu amb qui us ha enviat l'enllaç." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ha compartit la carpeta %s amb vós" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s ha compartit el fitxer %s amb vós" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Baixa" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Puja" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "No hi ha vista prèvia disponible per a" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Enllaç directe" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 6e08a5ad52215f1ddc0cbae398962138b79d5375..dec2858e3b8e1324ead9b4029dfbefc505d6aaf6 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-22 10:36-0400\n" -"PO-Revision-Date: 2013-08-21 16:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -28,55 +28,31 @@ msgstr "No s'ha pogut esborrar permanentment %s" msgid "Couldn't restore %s" msgstr "No s'ha pogut restaurar %s" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "executa l'operació de restauració" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Error" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "esborra el fitxer permanentment" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Esborra permanentment" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Nom" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "Eliminat" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n carpetes" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "%n fitxers" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "restaurat" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "La paperera està buida!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Nom" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Recupera" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Eliminat" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Esborra" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index c82e5efacb6ed72d492e653c99490ff73a044c21..2cfd9ff67e37a3e01ebc3f95322c4dec4d90bacb 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:32+0000\n" -"Last-Translator: rogerc\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,318 +18,317 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "L'aplicació \"%s\" no es pot instal·lar perquè no és compatible amb aquesta versió d'ownCloud." -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "No heu especificat cap nom d'aplicació" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Ajuda" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Personal" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Configuració" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Usuaris" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Administració" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ha fallat l'actualització \"%s\"." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Les imatges de perfil personals encara no funcionen amb encriptació" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Tipus de fitxer desconegut" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Imatge no vàlida" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "controleu els vostres serveis web" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "no es pot obrir \"%s\"" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "La baixada en ZIP està desactivada." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Els fitxers s'han de baixar d'un en un." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Torna a Fitxers" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Els fitxers seleccionats son massa grans per generar un fitxer zip." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Baixeu els fitxers en trossos petits, de forma separada, o pregunteu a l'administrador." +msgstr "Baixeu els fitxers separadament en petits trossos o pregunteu a l'administrador." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "No heu especificat la font en instal·lar l'aplicació" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "No heu especificat href en instal·lar l'aplicació des de http" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "No heu seleccionat el camí en instal·lar una aplicació des d'un fitxer local" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Els fitxers del tipus %s no són compatibles" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Ha fallat l'obertura del fitxer en instal·lar l'aplicació" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "L'aplicació no proporciona un fitxer info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "L'aplicació no es pot instal·lar perquè hi ha codi no autoritzat en l'aplicació" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "L'aplicació no es pot instal·lar perquè no és compatible amb aquesta versió d'ownCloud" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "L'aplicació no es pot instal·lar perquè conté l'etiqueta vertader que no es permet per aplicacions no enviades" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "L'aplicació no es pot instal·lar perquè la versió a info.xml/version no és la mateixa que la versió indicada des de la botiga d'aplicacions" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "La carpeta de l'aplicació ja existeix" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "No es pot crear la carpeta de l'aplicació. Arregleu els permisos. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "L'aplicació no està habilitada" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Error d'autenticació" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "El testimoni ha expirat. Torneu a carregar la pàgina." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Fitxers" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Text" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Imatges" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s escriviu el nom d'usuari de la base de dades." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s escriviu el nom de la base de dades." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s no podeu usar punts en el nom de la base de dades" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nom d'usuari i/o contrasenya MS SQL no vàlids: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Heu d'escriure un compte existent o el d'administrador." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Nom d'usuari i/o contrasenya MySQL no vàlids" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "Error DB: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "L'ordre en conflicte és: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "L'usuari MySQL '%s'@'localhost' ja existeix." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Elimina aquest usuari de MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "L'usuari MySQL '%s'@'%%' ja existeix" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Elimina aquest usuari de MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "No s'ha pogut establir la connexió Oracle" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Nom d'usuari i/o contrasenya Oracle no vàlids" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "L'ordre en conflicte és: \"%s\", nom: %s, contrasenya: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "Nom d'usuari i/o contrasenya PostgreSQL no vàlids" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Establiu un nom d'usuari per l'administrador." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Establiu una contrasenya per l'administrador." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Comproveu les guies d'instal·lació." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "No s'ha trobat la categoria \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "segons enrere" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "fa %n minut" msgstr[1] "fa %n minuts" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "fa %n hora" msgstr[1] "fa %n hores" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "avui" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "ahir" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "fa %n dia" msgstr[1] "fa %n dies" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "el mes passat" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "fa %n mes" msgstr[1] "fa %n mesos" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "l'any passat" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "anys enrere" - -#: template.php:297 -msgid "Caused by:" -msgstr "Provocat per:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "No s'ha trobat la categoria \"%s\"" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 1053dcb2434dd984f9431d48d6e3070d331d320d..b2b009170a69c21a3872d2a7a705dffc5b524942 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:56-0400\n" -"PO-Revision-Date: 2013-09-20 15:20+0000\n" -"Last-Translator: rogerc\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,12 +29,12 @@ msgid "Authentication error" msgstr "Error d'autenticació" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "El nom a mostrar ha canviat." +msgid "Your full name has been changed." +msgstr "El vostre nom complet ha canviat." #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "No s'ha pogut canviar el nom a mostrar" +msgid "Unable to change full name" +msgstr "No s'ha pogut canviar el nom complet" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -119,11 +119,11 @@ msgstr "No es pot canviar la contrasenya" msgid "Update to {appversion}" msgstr "Actualitza a {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Desactiva" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Habilita" @@ -131,31 +131,31 @@ msgstr "Habilita" msgid "Please wait...." msgstr "Espereu..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Error en desactivar l'aplicació" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Error en activar l'aplicació" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Actualitzant..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Error en actualitzar l'aplicació" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Error" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Actualitza" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Actualitzada" @@ -163,7 +163,7 @@ msgstr "Actualitzada" msgid "Select a profile picture" msgstr "Seleccioneu una imatge de perfil" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "Desencriptant fitxers... Espereu, això pot trigar una estona." @@ -183,44 +183,75 @@ msgstr "desfés" msgid "Unable to remove user" msgstr "No s'ha pogut eliminar l'usuari" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grups" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grup Admin" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Esborra" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "afegeix grup" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "Heu de facilitar un nom d'usuari vàlid" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "Error en crear l'usuari" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "Heu de facilitar una contrasenya vàlida" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Avís: la carpeta Home per l'usuari \"{user}\" ja existeix" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Català" -#: templates/admin.php:15 +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "Tot (problemes fatals, errors, avisos, informació, depuració)" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "Informació, avisos, errors i problemes fatals" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "Avisos, errors i problemes fatals" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "Errors i problemes fatals" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "Només problemes fatals" + +#: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" msgstr "Avís de seguretat" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "Esteu accedint %s a través de HTTP. Us recomanem fermament que configureu el servidor perquè requereixi HTTPS." + +#: templates/admin.php:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -229,48 +260,68 @@ msgid "" "root." msgstr "La carpeta de dades i els vostres fitxersprobablement són accessibles des d'Internet. La fitxer .htaccess no funciona. Us recomanem que configureu el servidor web de tal manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de l'arrel de documents del servidor web." -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Avís de configuració" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament." -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Comproveu les guies d'instal·lació." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "No s'ha trobat el mòdul 'fileinfo'" -#: templates/admin.php:47 +#: templates/admin.php:68 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òdul de PHP 'fileinfo' no s'ha trobat. Us recomanem que habiliteu aquest mòdul per obtenir millors resultats amb la detecció mime-type." -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "Locale no funciona" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "No s'ha pogut establir cap localització del sistema amb suport per UTF-8." + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "Això podria comportar problemes amb alguns caràcters en els noms dels fitxer." + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "Les locale del sistema no es poden establir en %s. Això significa que hi poden haver problemes amb alguns caràcters en el nom dels fitxers. Us recomanem instal·lar els paquets necessaris al sistema per donar suport a %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "Us recomanem que instal·leu els paquets necessaris en el sistema per donar suport a alguna de les localitzacions següents: %s" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "La connexió a internet no funciona" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -279,110 +330,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Aquest servidor no té cap connexió a internet que funcioni. Això significa que algunes de les característiques com el muntatge d'emmagatzemament extern, les notificacions quant a actualitzacions o la instal·lació d'aplicacions de tercers no funcionarà. L'accés remot a fitxers i l'enviament de correus electrònics podria tampoc no funcionar. Us suggerim que habiliteu la connexió a internet per aquest servidor si voleu tenir totes les característiques." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Executa una tasca per cada paquet carregat" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php està registrat en un servei webcron que fa una crida cada minut a la pàgina cron.php a través de http." +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Utilitzeu el sistema de servei cron per cridar el fitxer cron.php cada minut." +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Compartir" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Habilita l'API de compartir" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Permet que les aplicacions utilitzin l'API de compartir" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Permet enllaços" -#: templates/admin.php:135 +#: templates/admin.php:178 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:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Permet pujada pública" -#: templates/admin.php:144 +#: templates/admin.php:187 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:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Permet compartir de nou" -#: templates/admin.php:153 +#: templates/admin.php:196 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:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Permet compartir amb qualsevol" -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Permet notificacions per correu electrónic" + +#: templates/admin.php:214 +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:221 msgid "Security" msgstr "Seguretat" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Força HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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:191 +#: templates/admin.php:242 #, 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:203 +#: templates/admin.php:254 msgid "Log" msgstr "Registre" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Nivell de registre" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Més" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Menys" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versió" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Useu aquesta adreça per accedir als fitxers via WebDAV" +"Use this address to access your Files via " +"WebDAV" +msgstr "Useu aquesta adreça per accedir als fitxers via WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Xifrat" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "L'aplicació d'encriptació ja no està activada, desencripteu tots els vostres fitxers." +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "L'aplicació d'encriptació ja no està activada, desencripteu tots els vostres fitxers" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Contrasenya d'accés" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Desencripta tots els fitxers" @@ -574,6 +637,10 @@ msgstr "Escriviu la contrasenya de recuperació per a poder recuperar els fitxer msgid "Default Storage" msgstr "Emmagatzemament per defecte" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "Escriviu la quota d'emmagatzemament (per ex.: \"512 MB\" o \"12 GB\")" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Il·limitat" @@ -591,8 +658,8 @@ msgid "Storage" msgstr "Emmagatzemament" #: templates/users.php:108 -msgid "change display name" -msgstr "canvia el nom a mostrar" +msgid "change full name" +msgstr "canvia el nom complet" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 902aea9b33ab007d3b9ff812738a376d490c80ea..bf9ea4772c2499190bac851f3fa62f1f2f388650 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -4,13 +4,15 @@ # # Translators: # rogerc, 2013 +# rogerc, 2013 +# victek, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" -"Last-Translator: rogerc\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,314 +28,425 @@ msgstr "Ha fallat en eliminar els mapatges" msgid "Failed to delete the server configuration" msgstr "Ha fallat en eliminar la configuració del servidor" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "La configuració és vàlida i s'ha pogut establir la comunicació!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "La configuració és vàlida, però ha fallat el Bind. Comproveu les credencials i l'arranjament del servidor." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "La configuració no és vàlida. Per més detalls mireu al registre d'ownCloud." +msgstr "La configuració no és vàlida. Per més detalls mireu al registre del sistema." + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "No heu especificat cap acció" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "No heu especificat cap configuració" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "No heu especificat cap dada" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "No s'ha pogut establir la configuració %s" -#: js/settings.js:66 +#: js/settings.js:67 msgid "Deletion failed" msgstr "Eliminació fallida" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Voleu prendre l'arranjament de la configuració actual del servidor?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Voleu mantenir la configuració?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "No es pot afegir la configuració del servidor" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "s'han eliminat els mapatges" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Èxit" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Error" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "Configuració correcte" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "Configuració incorrecte" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "Configuració incompleta" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Selecciona els grups" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "Seleccioneu les classes dels objectes" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "Seleccioneu els atributs" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "La prova de connexió ha reeixit" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "La prova de connexió ha fallat" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Voleu eliminar la configuració actual del servidor?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Confirma l'eliminació" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "Avís: Les aplicacions user_ldap i user_webdavauth són incompatibles. Podeu experimentar comportaments inesperats. Demaneu a l'administrador del sistema que en desactivi una." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "S'ha trobat %s grup" +msgstr[1] "S'han trobat %s grups" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "S'ha trobat %s usuari" +msgstr[1] "S'han trobat %s usuaris" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "Ordinador central no vàlid" -#: templates/settings.php:12 +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "La característica desitjada no s'ha trobat" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Desa" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Comprovació de la configuració" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Ajuda" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "Limita l'accés a %s grups que compleixin amb el criteri:" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "només aquestes classes d'objecte:" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "només d'aquests grups" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "Edita filtre raw" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "Filtre raw LDAP" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Avís: El mòdul PHP LDAP no està instal·lat, el dorsal no funcionarà. Demaneu a l'administrador del sistema que l'instal·li." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "El filtre especifica quins grups LDAP haurien de tenir accés a la instància %s." -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Configuració del servidor" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "grups trobats" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "Quin atribut s'hauria d'utilitzar com a nom per a l'acreditació:" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "Nom d'usuari LDAP:" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "Adreça de correu electrònic LDAP:" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "Altres atributs:" + +#: 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 "Defineix el filtre a aplicar quan s'intenta iniciar la sessió. %%uid reemplaça el nom d'usuari en l'acció d'inici de sessió. Per exemple: \"uid=%%uid\"" + +#: templates/part.wizard-server.php:18 msgid "Add Server Configuration" msgstr "Afegeix la configuració del servidor" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Equip remot" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Podeu ometre el protocol, excepte si requeriu SSL. Llavors comenceu amb ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "DN Base" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Una DN Base per línia" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Podeu especificar DN Base per usuaris i grups a la pestanya Avançat" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Port" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "DN Usuari" -#: templates/settings.php:46 +#: 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 "La DN de l'usuari client amb la que s'haurà de fer, per exemple uid=agent,dc=exemple,dc=com. Per un accés anònim, deixeu la DN i la contrasenya en blanc." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Contrasenya" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Per un accés anònim, deixeu la DN i la contrasenya en blanc." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Filtre d'inici de sessió d'usuari" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Una DN Base per línia" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Podeu especificar DN Base per usuaris i grups a la pestanya Avançat" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "Limita l'accés a %s usuaris que compleixin amb el criteri:" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "Defineix el filtre a aplicar quan s'intenta iniciar la sessió. %%uid reemplaça el nom d'usuari en l'acció d'inici de sessió. Per exemple: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "El filtre especifica quins usuaris LDAP haurien de tenir accés a la instància %s" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Llista de filtres d'usuari" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "usuaris trobats" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "Defineix el filtre a aplicar quan es mostren usuaris (no textos variables). Per exemple: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Enrera" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Filtre de grup" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Continua" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "Avís: Les aplicacions user_ldap i user_webdavauth són incompatibles. Podeu experimentar comportaments inesperats. Demaneu a l'administrador del sistema que en desactivi una." -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "Defineix el filtre a aplicar quan es mostren grups (no textos variables). Per exemple: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Avís: El mòdul PHP LDAP no està instal·lat, el dorsal no funcionarà. Demaneu a l'administrador del sistema que l'instal·li." -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Arranjaments de connexió" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Configuració activa" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Si està desmarcat, aquesta configuració s'ometrà." -#: templates/settings.php:69 -msgid "Port" -msgstr "Port" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Màquina de còpia de serguretat (rèplica)" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Afegiu una màquina de còpia de seguretat opcional. Ha de ser una rèplica del servidor LDAP/AD principal." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Port de la còpia de seguretat (rèplica)" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Desactiva el servidor principal" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "Connecta només al servidor rèplica." -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Usa TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "No ho useu adicionalment per a conexions LDAPS, fallarà." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Servidor LDAP sense distinció entre majúscules i minúscules (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Desactiva la validació de certificat SSL." -#: templates/settings.php:75 +#: 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 "No es recomana, useu-ho només com a prova! Importeu el certificat SSL del servidor LDAP al servidor %s només si la connexió funciona amb aquesta opció." -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Memòria de cau Time-To-Live" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "en segons. Un canvi buidarà la memòria de cau." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Arranjaments de carpetes" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Camp per mostrar el nom d'usuari" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "Atribut LDAP a usar per generar el nom a mostrar de l'usuari." -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Arbre base d'usuaris" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "Una DN Base d'Usuari per línia" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "Atributs de cerca d'usuari" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Opcional; Un atribut per línia" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Camp per mostrar el nom del grup" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "Atribut LDAP a usar per generar el nom a mostrar del grup." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Arbre base de grups" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "Una DN Base de Grup per línia" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Atributs de cerca de grup" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Associació membres-grup" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Atributs especials" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Camp de quota" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Quota per defecte" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "en bytes" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "Camp de correu electrònic" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "Norma per anomenar la carpeta arrel d'usuari" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Deixeu-ho buit pel nom d'usuari (per defecte). Altrament, especifiqueu un atribut LDAP/AD." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "Nom d'usuari intern" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -349,15 +462,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Per defecte el nom d'usuari intern es crearà a partir de l'atribut UUID. Això assegura que el nom d'usuari és únic i que els caràcters no s'han de convertir. El nom d'usuari intern té la restricció que només estan permesos els caràcters: [ a-zA-Z0-9_.@- ]. Els altres caràcters es substitueixen pel seu corresponent ASCII o simplement s'ometen. En cas de col·lisió s'incrementa/decrementa en un. El nom d'usuari intern s'utilitza per identificar un usuari internament. També és el nom per defecte de la carpeta home d'usuari. És també un port de URLs remotes, per exemple tots els serveis *DAV. Amb aquest arranjament es pot variar el comportament per defecte. Per obtenir un comportament similar al d'abans de ownCloud 5, escriviu el nom d'usuari a mostrar en el camp següent. Deixei-lo en blanc si preferiu el comportament per defecte. Els canvis tindran efecte només en els nous usuaris LDAP mapats (afegits)." -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "Atribut nom d'usuari intern:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "Sobrescriu la detecció UUID" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -368,15 +481,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Per defecte, owncloud autodetecta l'atribut UUID. L'atribut UUID s'utilitza per identificar usuaris i grups de forma indubtable. També el nom d'usuari intern es crearà en base a la UUIS, si no heu especificat res diferent a dalt. Podeu sobreescriure l'arranjament i passar l'atribut que desitgeu. Heu d'assegurar-vos que l'atribut que escolliu pot ser recollit tant pels usuaris com pels grups i que és únic. Deixeu-ho en blanc si preferiu el comportament per defecte. els canvis s'aplicaran als usuaris i grups LDAP mapats de nou (afegits)." -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atribut UUID:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "Atribut UUID per Usuaris:" -#: templates/settings.php:104 +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "Atribut UUID per Grups:" + +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "Mapatge d'usuari Nom d'usuari-LDAP" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -390,18 +507,10 @@ msgid "" "experimental stage." msgstr "Els noms d'usuari s'usen per desar i assignar (meta)dades. Per tal d'identificar amb precisió i reconèixer els usuaris, cada usuari LDAP tindrà un nom d'usuari intern. Això requereix mapatge del nom d'usuari a l'usuari LDAP. El nom d'usuari creat es mapa a la UUID de l'usuari LDAP. A més, la DN es posa a la memòria de cau per reduir la interacció LDAP, però no s'usa per identificació. En cas que la DN canvïi, els canvis es trobaran. El nom d'usuari intern s'usa a tot arreu. Si esborreu els mapatges quedaran sobrants a tot arreu. Esborrar els mapatges no és sensible a la configuració, afecta a totes les configuracions LDAP! No esborreu mai els mapatges en un entorn de producció, només en un estadi de prova o experimental." -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "Elimina el mapatge d'usuari Nom d'usuari-LDAP" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Elimina el mapatge de grup Nom de grup-LDAP" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Comprovació de la configuració" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Ajuda" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 914c6bcc2079c4c5742d66ab20e77dc7b7f74e96..a77422d481e0bf3cf63e562969452e4d0c9d4e42 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -6,16 +6,17 @@ # janinko , 2013 # dibalaj , 2013 # Honza K. , 2013 +# liska_, 2013 # Martin , 2013 # pstast , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-29 16:57+0000\n" -"Last-Translator: dibalaj \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: liska_\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" @@ -23,14 +24,15 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s s vámi sdílí »%s«" -#: ajax/share.php:227 -msgid "group" -msgstr "skupina" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Nebylo možné odeslat e-mail následujícím uživatelům: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -57,45 +59,6 @@ msgstr "Aktualizována souborová mezipaměť" msgid "... %d%% done ..." msgstr "... %d%% dokončeno ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Nezadán typ kategorie." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Žádná kategorie k přidání?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Kategorie již existuje: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Nezadán typ objektu." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "Nezadáno ID %s." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Chyba při přidávání %s k oblíbeným." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Žádné kategorie nebyly vybrány ke smazání." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Chyba při odebírání %s z oblíbených." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Soubor nebo obrázek nebyl zadán" @@ -192,63 +155,63 @@ msgstr "Listopad" msgid "December" msgstr "Prosinec" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Nastavení" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "před %n minutou" msgstr[1] "před %n minutami" msgstr[2] "před %n minutami" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "před %n hodinou" msgstr[1] "před %n hodinami" msgstr[2] "před %n hodinami" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "dnes" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "včera" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "před %n dnem" msgstr[1] "před %n dny" msgstr[2] "před %n dny" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "minulý měsíc" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "před %n měsícem" msgstr[1] "před %n měsíci" msgstr[2] "před %n měsíci" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "před měsíci" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "minulý rok" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "před lety" @@ -279,9 +242,9 @@ msgstr "Chyba při nahrávání šablony zprávy: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "{count} souborový konflikt" +msgstr[1] "{count} souborové konflikty" +msgstr[2] "{count} souborových konfliktů" #: js/oc-dialogs.js:361 msgid "One file conflict" @@ -295,7 +258,7 @@ msgstr "Které soubory chcete ponechat?" msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Pokud zvolíte obě verze, zkopírovaný soubor bude mít název doplněný o číslo." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -307,165 +270,193 @@ msgstr "Pokračovat" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(vybráno vše)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "(vybráno {count})" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" - -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Není určen typ objektu." +msgstr "Chyba při nahrávání šablony existence souboru" -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 -msgid "Error" -msgstr "Chyba" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Není určen název aplikace." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Požadovaný soubor {file} není nainstalován!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Sdílené" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Sdílet" -#: js/share.js:131 js/share.js:696 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Chyba" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Chyba při sdílení" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Chyba při rušení sdílení" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Chyba při změně oprávnění" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "S Vámi a skupinou {group} sdílí {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "S Vámi sdílí {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Sdílet s" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Sdílet s uživatelem nebo skupinou" -#: js/share.js:188 -msgid "Share with link" -msgstr "Sdílet s odkazem" +#: js/share.js:219 +msgid "Share link" +msgstr "Sdílet odkaz" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Chránit heslem" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Heslo" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Povolit veřejné nahrávání" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Odeslat osobě odkaz e-mailem" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Odeslat" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Nastavit datum vypršení platnosti" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Datum vypršení platnosti" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Sdílet e-mailem:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Žádní lidé nenalezeni" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "skupina" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Sdílení již sdílené položky není povoleno" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Sdíleno v {item} s {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Zrušit sdílení" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "upozornit e-mailem" + +#: js/share.js:408 msgid "can edit" msgstr "lze upravovat" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "řízení přístupu" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "vytvořit" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "aktualizovat" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "smazat" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "sdílet" -#: js/share.js:400 js/share.js:643 +#: js/share.js:694 msgid "Password protected" msgstr "Chráněno heslem" -#: js/share.js:656 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Chyba při odstraňování data vypršení platnosti" -#: js/share.js:668 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Chyba při nastavení data vypršení platnosti" -#: js/share.js:683 +#: js/share.js:734 msgid "Sending ..." msgstr "Odesílám ..." -#: js/share.js:694 +#: js/share.js:745 msgid "Email sent" msgstr "E-mail odeslán" +#: js/share.js:769 +msgid "Warning" +msgstr "Varování" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Není určen typ objektu." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Zadat nový" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Smazat" + +#: js/tags.js:31 +msgid "Add" +msgstr "Přidat" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Editovat štítky" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Chyba při načítání šablony dialogu: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Žádné štítky nebyly vybrány ke smazání." + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "Načtěte stránku znovu, prosím." + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Odkaz na obnovení hesla byl odeslán na vaši e-mailovou adresu.
    Pokud jej v krátké době neobdržíte, zkontrolujte váš koš a složku spam.
    Pokud jej nenaleznete, kontaktujte svého správce." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Požadavek selhal!
    Ujistili jste se, že vaše uživatelské jméno a e-mail jsou správně?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "E-mailem Vám bude zaslán odkaz pro obnovu hesla." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Uživatelské jméno" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -514,13 +505,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Vaše soubory jsou šifrovány. Pokud nemáte povolen klíč pro obnovu, neexistuje způsob jak získat, po změně hesla, vaše data. Pokud si nejste jisti co dělat, kontaktujte nejprve svého správce. Opravdu si přejete pokračovat?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Ano, opravdu si nyní přeji obnovit mé heslo" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Vyžádat obnovu" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Restartovat složku" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -546,7 +537,7 @@ msgstr "Osobní" msgid "Users" msgstr "Uživatelé" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Aplikace" @@ -558,6 +549,34 @@ msgstr "Administrace" msgid "Help" msgstr "Nápověda" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "Chyba při načítání štítků" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "Štítek již existuje" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "Chyba při mazání štítku(ů)" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "Chyba při označování štítkem" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "Chyba při odznačování štítků" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "Chyba při označování jako oblíbené" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "Chyba při odznačování jako oblíbené" + #: templates/403.php:12 msgid "Access forbidden" msgstr "Přístup zakázán" @@ -574,108 +593,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Ahoj,\n\njenom vám chci oznámit, že %s s vámi sdílí %s.\nPodívat se můžete zde: %s\n\nDíky" +msgstr "Hej ty tam,\n\njen ti chci dát vědět, že %s sdílel %s s tebou.\nZobraz si to: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Upravit kategorie" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "Sdílení vyprší %s." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Přidat" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Ať slouží!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Bezpečnostní upozornění" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Verze vašeho PHP je napadnutelná pomocí techniky \"NULL Byte\" (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Aktualizujte prosím vaši instanci PHP pro bezpečné používání %s." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Není dostupný žádný bezpečný generátor náhodných čísel. Povolte, prosím, rozšíření OpenSSL v PHP." -#: templates/installation.php:33 +#: 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 "Bez bezpečného generátoru náhodných čísel může útočník předpovědět token pro obnovu hesla a převzít kontrolu nad Vaším účtem." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Váš adresář s daty a soubory jsou dostupné z internetu, protože soubor .htaccess nefunguje." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "Pro informace, jak správně nastavit váš server, se podívejte do dokumentace." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Vytvořit účet správce" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Pokročilé" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Složka s daty" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Nastavit databázi" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "bude použito" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Uživatel databáze" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Heslo databáze" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Název databáze" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Tabulkový prostor databáze" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Hostitel databáze" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Dokončit nastavení" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Dokončuji..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "Tato aplikace potřebuje pro svou správnou funkčnost mít povolený javascript. Prosím povolte JavaScript a znovu načtěte toto rozhraní." + +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s je dostupná. Získejte více informací k postupu aktualizace." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Odhlásit se" @@ -693,19 +723,27 @@ msgstr "Pokud jste v nedávné době neměnili své heslo, Váš účet může b msgid "Please change your password to secure your account again." msgstr "Změňte, prosím, své heslo pro opětovné zabezpečení Vašeho účtu." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "Autentizace na serveru selhala!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Kontaktujte prosím vašeho správce." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Ztratili jste své heslo?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "zapamatovat" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Přihlásit" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Alternativní přihlášení" @@ -713,10 +751,37 @@ msgstr "Alternativní přihlášení" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Ahoj,

    jenom vám chci oznámit, že %s s vámi sdílí %s.\nPodívat se můžete
    zde.

    Díky" +"href=\"%s\">View it!

    " +msgstr "Hej ty tam,

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

    " + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "Tato instalace ownCloudu je momentálně v jednouživatelském módu." + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "To znamená, že pouze správci systému mohou aplikaci používat." -#: templates/update.php:3 +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "Kontaktujte, prosím, správce systému, pokud se tato zpráva objevuje opakovaně nebo nečekaně." + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "Děkuji za trpělivost." + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "Aktualizuji ownCloud na verzi %s, bude to chvíli trvat." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "Tato instalace ownCloud je právě aktualizována, může to chvíli trvat." + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "Pro pokračování načtěte, prosím, stránku po chvíli znovu." diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 5cff84e574f2a9e5345a690ac3bd63f6b67e503c..40608268d8ec88b30fee267bbf53266a6afae16b 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -3,18 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Twiguard, 2013 # dibalaj , 2013 # Honza K. , 2013 +# liska_, 2013-2014 # cvanca , 2013 # pstast , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:14-0400\n" -"PO-Revision-Date: 2013-09-29 16:54+0000\n" -"Last-Translator: dibalaj \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"PO-Revision-Date: 2014-01-02 07:30+0000\n" +"Last-Translator: liska_\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" @@ -32,62 +34,107 @@ msgstr "Nelze přesunout %s - již existuje soubor se stejným názvem" msgid "Could not move %s" msgstr "Nelze přesunout %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Název souboru nemůže být prázdný řetězec." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "Název souboru nesmí obsahovat \"/\". Vyberte prosím jiné jméno." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "Název %s ve složce %s již existuje. Vyberte prosím jiné jméno." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "Neplatný zdroj" + +#: ajax/newfile.php:86 +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:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Chyba při stahování %s do %s" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Chyba při vytváření souboru" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "Název složky nemůže být prázdný." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "Název složky nesmí obsahovat \"/\". Zvolte prosím jiný." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Chyba při vytváření složky" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Nelze nastavit adresář pro nahrané soubory." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Neplatný token" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Žádný soubor nebyl odeslán. Neznámá chyba" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Soubor byl odeslán úspěšně" -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Soubor byl odeslán pouze částečně" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Žádný soubor nebyl odeslán" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Chybí adresář pro dočasné soubory" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Zápis na disk selhal" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Nedostatek dostupného úložného prostoru" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Nahrávání selhalo. Nepodařilo se získat informace o souboru." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Nahrávání selhalo. Nepodařilo se nalézt nahraný soubor." -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Neplatný adresář" @@ -95,160 +142,181 @@ msgstr "Neplatný adresář" msgid "Files" msgstr "Soubory" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "Nelze nahrát soubor {filename}, protože je to buď adresář nebo má velikost 0 bytů" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Nedostatek volného místa" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Odesílání zrušeno." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "" +msgstr "Nepodařilo se získat výsledek ze serveru." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "URL nemůže být prázdná." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "URL nemůže zůstat prázdná" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Název složky nelze použít. Použití názvu 'Shared' je ownCloudem rezervováno" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "V osobní složce je název 'Shared' rezervovaný" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Chyba" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} již existuje" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Nepodařilo se vytvořit soubor" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Nepodařilo se vytvořit složku" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Chyba při načítání URL" -#: js/fileactions.js:119 +#: js/fileactions.js:125 msgid "Share" msgstr "Sdílet" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Trvale odstranit" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Přejmenovat" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Nevyřízené" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} již existuje" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "nahradit" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Nepodařilo se přejmenovat soubor" -#: js/filelist.js:416 -msgid "suggest name" -msgstr "navrhnout název" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "zrušit" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "nahrazeno {new_name} s {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "vrátit zpět" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Chyba při mazání souboru." + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n složka" msgstr[1] "%n složky" msgstr[2] "%n složek" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n soubor" msgstr[1] "%n soubory" msgstr[2] "%n souborů" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} a {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Nahrávám %n soubor" msgstr[1] "Nahrávám %n soubory" msgstr[2] "Nahrávám %n souborů" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' je neplatným názvem souboru." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Název souboru nemůže být prázdný řetězec." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Vaše úložiště je plné, nelze aktualizovat ani synchronizovat soubory." -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Vaše úložiště je téměř plné ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "Aplikace pro šifrování je zapnuta, ale vaše klíče nejsou inicializované. Prosím odhlaste se a znovu přihlaste" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "Chybný soukromý klíč pro šifrovací aplikaci. Aktualizujte prosím heslo svého soukromého klíče ve vašem osobním nastavení, abyste znovu získali přístup k vašim zašifrovaným souborům." + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Šifrování bylo vypnuto, vaše soubory jsou však stále zašifrované. Běžte prosím do osobního nastavení, kde soubory odšifrujete." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Vaše soubory ke stažení se připravují. Pokud jsou velké, může to chvíli trvat." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "Chyba při přesunu souboru" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Chyba" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Název" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Velikost" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Upraveno" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Neplatný název složky. Použití 'Shared' je rezervováno." + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s nemůže být přejmenován" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Odeslat" @@ -284,65 +352,69 @@ msgstr "Maximální velikost vstupu pro ZIP soubory" msgid "Save" msgstr "Uložit" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nový" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "Nový textový soubor" + +#: templates/index.php:8 msgid "Text file" msgstr "Textový soubor" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Nová složka" + +#: templates/index.php:10 msgid "Folder" msgstr "Složka" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Z odkazu" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Odstraněné soubory" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Zrušit odesílání" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Nemáte zde práva zápisu." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "Nemáte oprávnění zde nahrávat či vytvářet soubory" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Žádný obsah. Nahrajte něco." -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Stáhnout" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Zrušit sdílení" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Smazat" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Odesílaný soubor je příliš velký" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Soubory se prohledávají, prosím čekejte." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Aktuální prohledávání" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index ffbcfd39418793aeb2dd2f4c00aa14560b9aea96..c3342c672169eaca7522a1029c45a1522ad8d132 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -5,15 +5,16 @@ # Translators: # janinko , 2013 # Honza K. , 2013 +# liska_, 2013 # Martin , 2013 # pstast , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-02 17:27-0500\n" +"PO-Revision-Date: 2013-12-02 20:00+0000\n" "Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -48,75 +49,96 @@ msgstr "Heslo bylo úspěšně změněno." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Změna hesla se nezdařila. Pravděpodobně nebylo stávající heslo zadáno správně." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Heslo soukromého klíče úspěšně aktualizováno." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Nelze aktualizovat heslo soukromého klíče. Možná nebylo staré heslo správně." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "Váš soukromý klíč není platný! Pravděpodobně bylo heslo změněno vně systému ownCloud (např. ve vašem firemním adresáři). Heslo vašeho soukromého klíče můžete změnit ve svém osobním nastavení pro obnovení přístupu k vašim zašifrovaným souborům." +"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 "Aplikace pro šifrování není inicializována! Je možné, že aplikace byla znovu aktivována během vašeho přihlášení. Zkuste se prosím odhlásit a znovu přihlásit pro provedení inicializace šifrovací aplikace." -#: hooks/hooks.php:41 +#: 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 "Váš soukromý klíč není platný! Pravděpodobně bylo vaše heslo změněno vně systému %s (např. ve vašem firemním adresáři). Heslo vašeho soukromého klíče můžete změnit ve svém osobním nastavení pro obnovení přístupu k vašim zašifrovaným souborům." + +#: 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 "Tento soubor se nepodařilo dešifrovat, pravděpodobně je sdílený. Požádejte prosím majitele souboru, aby jej s vámi znovu sdílel." + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Neznámá chyba, zkontrolujte vaše systémová nastavení nebo kontaktujte vašeho správce" + +#: hooks/hooks.php:59 msgid "Missing requirements." msgstr "Nesplněné závislosti." -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "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." -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "Následující uživatelé nemají nastavené šifrování:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "Počáteční šifrování zahájeno... Toto může chvíli trvat. Počkejte prosím." + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Ukládám..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Váš soukromý klíč není platný! Pravděpodobně bylo vaše heslo změněno zvenčí." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Běžte přímo do vašeho" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Můžete odemknout váš soukromý klíč ve vašem" - -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "osobní nastavení" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Šifrování" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Povolit klíč pro obnovu (umožňuje obnovu uživatelských souborů v případě ztráty hesla)" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Heslo klíče pro obnovu" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Zopakujte heslo klíče pro obnovu" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Povoleno" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Zakázáno" @@ -124,58 +146,62 @@ msgstr "Zakázáno" msgid "Change recovery key password:" msgstr "Změna hesla klíče pro obnovu:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Původní heslo klíče pro obnovu" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Nové heslo klíče pro obnovu" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "Zopakujte nové heslo klíče pro obnovu" + +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Změnit heslo" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Heslo vašeho soukromého klíče se již neshoduje s vaším přihlašovacím heslem:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Změňte heslo vaše soukromého klíče na stejné jako vaše přihlašovací heslo." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Pokud si nepamatujete vaše původní heslo, můžete požádat správce o obnovu vašich souborů." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Původní přihlašovací heslo" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Aktuální přihlašovací heslo" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Změnit heslo soukromého klíče" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Povolit obnovu hesla:" -#: templates/settings-personal.php:47 +#: 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 "Zapnutí této volby vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Možnosti záchrany souborů aktualizovány" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Nelze nastavit záchranu souborů" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index a9e29ba28e7829572bdf937afd2e2ffdd15bccb1..9c034282851d88c5925f802657a47c0ff6e25e39 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-05 18:50+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -38,20 +38,20 @@ msgstr "Zadejte, prosím, platný klíč a bezpečnostní frázi aplikace Dropbo msgid "Error configuring Google Drive storage" msgstr "Chyba při nastavení úložiště Google Drive" -#: lib/config.php:448 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varování: není nainstalován program \"smbclient\". Není možné připojení oddílů CIFS/SMB. Prosím požádejte svého správce systému ať jej nainstaluje." -#: lib/config.php:451 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Varování: podpora FTP v PHP není povolena nebo není nainstalována. Není možné připojení oddílů FTP. Prosím požádejte svého správce systému ať ji nainstaluje." -#: lib/config.php:454 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 5b180f5c5591a25230b085eb39fcfe33273c5209..ce005893ed1f0400c533a592425f065a7ee45304 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# liska_, 2013 # pstast , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-27 18:36+0000\n" "Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -19,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Toto sdílení je chráněno heslem" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Heslo není správné. Zkuste to znovu." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Heslo" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Odeslat" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Je nám líto, ale tento odkaz již není funkční." @@ -54,28 +55,32 @@ msgstr "sdílení je zakázané" msgid "For more info, please ask the person who sent this link." msgstr "Pro více informací kontaktujte osobu, která vám zaslala tento odkaz." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s s Vámi sdílí složku %s" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s s Vámi sdílí soubor %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Stáhnout" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Odeslat" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Zrušit odesílání" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Náhled není dostupný pro" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Přímý odkaz" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 9294025f67db8a3c3b067de4d4339f7173989873..a6242ccbee33621e52e17eb06b3f8273bd25bfe9 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-16 09:20+0000\n" -"Last-Translator: pstast \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,57 +29,31 @@ msgstr "Nelze trvale odstranit %s" msgid "Couldn't restore %s" msgstr "Nelze obnovit %s" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "provést obnovu" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Chyba" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "trvale odstranit soubor" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Trvale odstranit" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Název" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "Smazáno" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n adresář" -msgstr[1] "%n adresáře" -msgstr[2] "%n adresářů" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n soubor" -msgstr[1] "%n soubory" -msgstr[2] "%n souborů" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "obnoveno" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Žádný obsah. Váš koš je prázdný." -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Název" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Obnovit" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Smazáno" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Smazat" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index ef75336427f2a0bda8343db33ffdfda14e5ac595..7755fd96b2dc3971859e4ed91fe25579eb1f2f34 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -4,15 +4,16 @@ # # Translators: # Honza K. , 2013 +# liska_, 2013 # pstast , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 18:20+0000\n" -"Last-Translator: pstast \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,322 +21,321 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Aplikace \"%s\" nemůže být nainstalována, protože není kompatibilní s touto verzí ownCloud." -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "Nebyl zadan název aplikace" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Nápověda" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Osobní" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Nastavení" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Uživatelé" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Administrace" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Selhala aktualizace verze \"%s\"." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Vlastní profilové obrázky zatím nefungují v kombinaci se šifrováním" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Neznámý typ souboru" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Chybný obrázek" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "webové služby pod Vaší kontrolou" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "nelze otevřít \"%s\"" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Stahování v ZIPu je vypnuto." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Soubory musí být stahovány jednotlivě." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Zpět k souborům" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Vybrané soubory jsou příliš velké pro vytvoření ZIP souboru." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Stáhněte soubory po menších částech, samostatně, nebo se obraťte na správce." +msgstr "Prosím stáhněte soubory odděleně po menších množstvích nebo požádejte vašeho správce." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Nebyl zadán zdroj při instalaci aplikace" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Nebyl zadán odkaz pro instalaci aplikace z HTTP" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Nebyla zadána cesta pro instalaci aplikace z místního souboru" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Archivy typu %s nejsou podporovány" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Chyba při otevírání archivu během instalace aplikace" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "Aplikace neposkytuje soubor info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "Aplikace nemůže být nainstalována, protože obsahuje nepovolený kód" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Aplikace nemůže být nainstalována, protože není kompatibilní s touto verzí ownCloud" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Aplikace nemůže být nainstalována, protože obsahuje značku\n\n\ntrue\n\n\ncož není povoleno pro nedodávané aplikace" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Aplikace nemůže být nainstalována, protože verze uvedená v info.xml/version nesouhlasí s verzí oznámenou z úložiště aplikací." -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Adresář aplikace již existuje" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Nelze vytvořit složku aplikace. Opravte práva souborů. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Aplikace není povolena" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Chyba ověření" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token vypršel. Obnovte prosím stránku." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Soubory" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Text" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Obrázky" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "Zadejte uživatelské jméno %s databáze." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "Zadejte název databáze pro %s databáze." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "V názvu databáze %s nesmíte používat tečky." -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Uživatelské jméno či heslo MSSQL není platné: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Musíte zadat existující účet či správce." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Uživatelské jméno či heslo MySQL není platné" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "Chyba databáze: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Příslušný příkaz byl: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Uživatel '%s'@'localhost' již v MySQL existuje." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Zrušte tohoto uživatele z MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Uživatel '%s'@'%%' již v MySQL existuje" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Zrušte tohoto uživatele z MySQL" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Spojení s Oracle nemohlo být navázáno" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Uživatelské jméno či heslo Oracle není platné" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Příslušný příkaz byl: \"%s\", jméno: %s, heslo: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "Uživatelské jméno či heslo PostgreSQL není platné" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Zadejte uživatelské jméno správce." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Zadejte heslo správce." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Váš webový server není správně nastaven pro umožnění synchronizace, rozhraní WebDAV se zdá být rozbité." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Zkonzultujte, prosím, průvodce instalací." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Nelze nalézt kategorii \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "před pár sekundami" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "před %n minutou" msgstr[1] "před %n minutami" msgstr[2] "před %n minutami" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "před %n hodinou" msgstr[1] "před %n hodinami" msgstr[2] "před %n hodinami" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "dnes" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "včera" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "před %n dnem" msgstr[1] "před %n dny" msgstr[2] "před %n dny" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "minulý měsíc" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "před %n měsícem" msgstr[1] "před %n měsíci" msgstr[2] "před %n měsíci" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "minulý rok" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "před lety" - -#: template.php:297 -msgid "Caused by:" -msgstr "Příčina:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Nelze nalézt kategorii \"%s\"" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index b979460916a764f7a852469637596425e8739de0..488dc267f31ded0f34041b6206474aba692145f1 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -3,17 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Twiguard, 2013 # Honza K. , 2013 +# liska_, 2013 # cvanca , 2013 # pstast , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-11 13:31-0500\n" +"PO-Revision-Date: 2013-12-09 21:50+0000\n" +"Last-Translator: liska_\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" @@ -31,12 +33,12 @@ msgid "Authentication error" msgstr "Chyba přihlášení" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Vaše zobrazované jméno bylo změněno." +msgid "Your full name has been changed." +msgstr "Vaše celé jméno bylo změněno." #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Nelze změnit zobrazované jméno" +msgid "Unable to change full name" +msgstr "Nelze změnit celé jméno" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -121,11 +123,11 @@ msgstr "Změna hesla se nezdařila" msgid "Update to {appversion}" msgstr "Aktualizovat na {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Zakázat" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Povolit" @@ -133,31 +135,31 @@ msgstr "Povolit" msgid "Please wait...." msgstr "Čekejte prosím..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Chyba při zakazování aplikace" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Chyba při povolování aplikace" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Aktualizuji..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Chyba při aktualizaci aplikace" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Chyba" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Aktualizovat" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Aktualizováno" @@ -165,7 +167,7 @@ msgstr "Aktualizováno" msgid "Select a profile picture" msgstr "Vyberte profilový obrázek" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "Probíhá dešifrování souborů... Čekejte prosím, tato operace může trvat nějakou dobu." @@ -185,44 +187,75 @@ msgstr "vrátit zpět" msgid "Unable to remove user" msgstr "Nelze odebrat uživatele" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Skupiny" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Správa skupiny" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Smazat" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "přidat skupinu" -#: js/users.js:436 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Musíte zadat platné uživatelské jméno" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Chyba při vytváření užiatele" -#: js/users.js:442 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Musíte zadat platné heslo" +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Varování: Osobní složka uživatele \"{user}\" již existuje." + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Česky" -#: templates/admin.php:15 +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "Vše (fatální problémy, chyby, varování, informační, ladící)" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "Informace, varování, chyby a fatální problémy" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "Varování, chyby a fatální problémy" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "Chyby a fatální problémy" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "Pouze fatální problémy" + +#: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" msgstr "Bezpečnostní upozornění" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "Přistupujete na %s protokolem HTTP. Důrazně doporučujeme nakonfigurovat server pro použití HTTPS." + +#: templates/admin.php:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -231,48 +264,68 @@ msgid "" "root." msgstr "Váš datový adresář i vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess nefunguje. Důrazně doporučujeme nakonfigurovat webový server tak, aby datový adresář nebyl nadále přístupný, nebo přesunout datový adresář mimo prostor zpřístupňovaný webovým serverem." -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Upozornění nastavení" -#: templates/admin.php:32 +#: templates/admin.php:53 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, protože rozhraní WebDAV se zdá nefunkční." -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Zkontrolujte prosím znovu instalační příručku." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Schází modul 'fileinfo'" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Schází PHP modul 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME." -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "Tato verze PHP je zastaralá." + +#: templates/admin.php:82 +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 "Tato verze PHP je zastaralá. Důrazně doporučujeme aktualizovat na verzi 5.3.8 nebo novější, protože starší verze jsou chybné. Je možné, že tato instalace nebude fungovat správně." + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Lokalizace nefunguje" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "Není možné nastavit znakovou sadu, která podporuje UTF-8." + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "To znamená, že se mohou vyskytnout problémy s určitými znaky v názvech souborů." + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "Systémové nastavení lokalizace nemohlo být nastaveno na %s. To znamená, že se mohou vyskytnout problémy s některými znaky v názvech souborů. Důrazně doporučujeme nainstalovat do vašeho systému balíčky potřebné pro podporu %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "Důrazně doporučujeme nainstalovat do vašeho systém balíčky nutné pro podporu některé z následujících znakových sad: %s." -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Připojení k internetu nefunguje" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -281,110 +334,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Server nemá funkční připojení k internetu. Některé moduly jako např. externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Spustit jednu úlohu s každým načtením stránky" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php je registrován u služby webcron pro zavolání stránky cron.php jednou za minutu přes HTTP." +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Použít systémovou službu cron pro spouštění souboru cron.php jednou za minutu." +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Sdílení" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Povolit API sdílení" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Povolit aplikacím používat API sdílení" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Povolit odkazy" -#: templates/admin.php:135 +#: templates/admin.php:178 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:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Povolit veřejné nahrávání souborů" -#: templates/admin.php:144 +#: templates/admin.php:187 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:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Povolit znovu-sdílení" -#: templates/admin.php:153 +#: templates/admin.php:196 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:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Povolit uživatelům sdílet s kýmkoliv" -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Povolit e-mailová upozornění" + +#: templates/admin.php:214 +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:221 msgid "Security" msgstr "Zabezpečení" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Vynutit HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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:191 +#: templates/admin.php:242 #, 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:203 +#: templates/admin.php:254 msgid "Log" msgstr "Záznam" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Úroveň zaznamenávání" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Více" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Méně" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Verze" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Použijte tuto adresu pro přístup k vašim souborům přes WebDAV" +"Use this address to access your Files via " +"WebDAV" +msgstr "Použijte tuto adresu pro přístup k vašim souborům přes WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Šifrování" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "Šifrovací aplikace již není zapnuta, odšifrujte všechny své soubory" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "Šifrovací aplikace již není spuštěna, dešifrujte prosím všechny své soubory" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Přihlašovací heslo" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Odšifrovat všechny soubory" @@ -576,6 +641,10 @@ msgstr "Zadejte heslo obnovy pro obnovení souborů uživatele při změně hesl msgid "Default Storage" msgstr "Výchozí úložiště" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "Zvolte prosím kvótu pro úložiště (např. \"512 MB\" nebo \"12 GB\")" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Neomezeně" @@ -593,8 +662,8 @@ msgid "Storage" msgstr "Úložiště" #: templates/users.php:108 -msgid "change display name" -msgstr "změnit zobrazované jméno" +msgid "change full name" +msgstr "změnit celé jméno" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 69340de29b3fe05e745dec5e5ae35386c11ef57b..3e8cc07f1fff8add5df8f4bd89d152dc36409904 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -3,16 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Twiguard, 2013 # Honza K. , 2013 +# liska_, 2013 # cvanca , 2013 # pstast , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -29,314 +31,427 @@ msgstr "Selhalo zrušení mapování." msgid "Failed to delete the server configuration" msgstr "Selhalo smazání nastavení serveru" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Nastavení je v pořádku a spojení bylo navázáno." -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Konfigurace je v pořádku, ale spojení selhalo. Zkontrolujte, prosím, nastavení serveru a přihlašovací údaje." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "Nastavení je neplatné. Zkontrolujte, prosím, záznamy ownCloud pro další podrobnosti." +msgstr "Konfigurace je neplatná. Pro bližší informace se podívejte do logu." + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "Neurčena žádná akce" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "Neurčena žádná konfigurace" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "Neurčena žádná data" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "Nelze nastavit konfiguraci %s" -#: js/settings.js:66 +#: js/settings.js:67 msgid "Deletion failed" msgstr "Mazání selhalo" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Převzít nastavení z nedávné konfigurace serveru?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Ponechat nastavení?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Nelze přidat nastavení serveru" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "mapování zrušeno" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Úspěch" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Chyba" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "Konfigurace v pořádku" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "Nesprávná konfigurace" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "Nekompletní konfigurace" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Vyberte skupiny" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "Vyberte objektové třídy" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "Vyberte atributy" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Test spojení byl úspěšný" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Test spojení selhal" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Opravdu si přejete smazat současné nastavení serveru?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Potvrdit smazání" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "Varování: Aplikace user_ldap a user_webdavauth jsou vzájemně nekompatibilní. Můžete zaznamenat neočekávané chování. Požádejte prosím vašeho systémového administrátora o zakázání jednoho z nich." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "nalezena %s skupina" +msgstr[1] "nalezeny %s skupiny" +msgstr[2] "nalezeno %s skupin" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "nalezen %s uživatel" +msgstr[1] "nalezeni %s uživatelé" +msgstr[2] "nalezeno %s uživatelů" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "Neplatný hostitel" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "Nelze nalézt požadovanou vlastnost" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Uložit" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Vyzkoušet nastavení" -#: templates/settings.php:12 +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Nápověda" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "Omezit přístup k %s skupinám uživatelů splňujícím tyto podmínky:" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "pouze tyto objektové třídy:" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "pouze z těchto skupin:" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "Edituj filtr přímo" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "Původní filtr LDAP" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Varování: není nainstalován LDAP modul pro PHP, podpůrná vrstva nebude fungovat. Požádejte, prosím, správce systému, aby jej nainstaloval." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "Filtr určuje, kteří uživatelé LDAP mají mít přístup k instanci %s." -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Nastavení serveru" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "nalezené skupiny" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "Který atribut má být použit jako přihlašovací jméno:" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "LDAP uživatelské jméno:" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "LDAP e-mailová adresa:" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "Další atributy:" + +#: 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 "Určuje použitý filtr při pokusu o přihlášení. %%uid nahrazuje uživatelské jméno v činnosti přihlášení. Příklad: \"uid=%%uid\"" + +#: templates/part.wizard-server.php:18 msgid "Add Server Configuration" msgstr "Přidat nastavení serveru" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Počítač" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Můžete vynechat protokol, vyjma pokud požadujete SSL. Tehdy začněte s ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Základní DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Jedna základní DN na řádku" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "V rozšířeném nastavení můžete určit základní DN pro uživatele a skupiny" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Port" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "Uživatelské DN" -#: templates/settings.php:46 +#: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "DN klientského uživatele, ke kterému tvoříte vazbu, např. uid=agent,dc=example,dc=com. Pro anonymní přístup ponechte DN a heslo prázdné." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Heslo" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Pro anonymní přístup ponechte údaje DN and heslo prázdné." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Filtr přihlášení uživatelů" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Jedna základní DN na řádku" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "V rozšířeném nastavení můžete určit základní DN pro uživatele a skupiny" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "Omezit přístup k %s uživatelům splňujícím tyto podmínky:" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "Určuje použitý filtr při pokusu o přihlášení. %%uid nahrazuje uživatelské jméno v činnosti přihlášení. Příklad: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "Filtr určuje, kteří uživatelé LDAP mají mít přístup k instanci %s." -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Filtr seznamu uživatelů" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "nalezení uživatelé" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "Určuje použitý filtr při získávání uživatelů (bez zástupných znaků). Příklad: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Zpět" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Filtr skupin" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Pokračovat" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "Varování: Aplikace user_ldap a user_webdavauth jsou vzájemně nekompatibilní. Můžete zaznamenat neočekávané chování. Požádejte prosím vašeho systémového administrátora o zakázání jednoho z nich." -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "Určuje použitý filtr při získávání skupin (bez zástupných znaků). Příklad: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Varování: není nainstalován LDAP modul pro PHP, podpůrná vrstva nebude fungovat. Požádejte, prosím, správce systému, aby jej nainstaloval." -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Nastavení spojení" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Nastavení aktivní" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Pokud není zaškrtnuto, bude toto nastavení přeskočeno." -#: templates/settings.php:69 -msgid "Port" -msgstr "Port" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Záložní (kopie) hostitel" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Zadejte volitelného záložního hostitele. Musí to být kopie hlavního serveru LDAP/AD." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Záložní (kopie) port" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Zakázat hlavní server" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "Připojit jen k záložnímu serveru." -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Použít TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Nepoužívejte v kombinaci s LDAPS spojením, nebude to fungovat." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "LDAP server nerozlišující velikost znaků (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Vypnout ověřování SSL certifikátu." -#: templates/settings.php:75 +#: 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 "Nedoporučuje se, určeno pouze k testovacímu použití. Pokud spojení funguje jen s touto volbou, importujte SSL certifikát vašeho LDAP serveru na server %s." -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "TTL vyrovnávací paměti" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "v sekundách. Změna vyprázdní vyrovnávací paměť." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Nastavení adresáře" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Pole zobrazovaného jména uživatele" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "LDAP atribut použitý k vytvoření zobrazovaného jména uživatele." -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Základní uživatelský strom" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "Jedna uživatelská základní DN na řádku" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "Atributy vyhledávání uživatelů" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Volitelné, jeden atribut na řádku" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Pole zobrazovaného jména skupiny" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "LDAP atribut použitý k vytvoření zobrazovaného jména skupiny." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Základní skupinový strom" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "Jedna skupinová základní DN na řádku" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Atributy vyhledávání skupin" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Asociace člena skupiny" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Speciální atributy" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Pole pro kvótu" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Výchozí kvóta" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "v bajtech" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "Pole e-mailu" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "Pravidlo pojmenování domovské složky uživatele" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Ponechte prázdné pro uživatelské jméno (výchozí). Jinak uveďte LDAP/AD parametr." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "Interní uživatelské jméno" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -352,15 +467,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Ve výchozím nastavení bude uživatelské jméno vytvořeno z UUID atributu. To zajistí unikátnost uživatelského jména a není potřeba provádět konverzi znaků. Interní uživatelské jméno je omezeno na znaky: [ a-zA-Z0-9_.@- ]. Ostatní znaky jsou nahrazeny jejich ASCII ekvivalentem nebo jednoduše vynechány. V případě kolize uživatelských jmen bude přidáno/navýšeno číslo. Interní uživatelské jméno je používáno k interní identifikaci uživatele. Je také výchozím názvem uživatelského domovského adresáře. Je také součástí URL pro vzdálený přístup, například všech *DAV služeb. S tímto nastavením může být výchozí chování změněno. Pro dosažení podobného chování jako před ownCloudem 5 uveďte atribut zobrazovaného jména do pole níže. Ponechte prázdné pro výchozí chování. Změna bude mít vliv jen na nově namapované (přidané) uživatele z LDAP." -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "Atribut interního uživatelského jména:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "Nastavit ručně UUID atribut" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -371,15 +486,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Ve výchozím nastavení je UUID atribut nalezen automaticky. UUID atribut je používán pro nezpochybnitelnou identifikaci uživatelů a skupin z LDAP. Navíc je na základě UUID tvořeno také interní uživatelské jméno, pokud není nastaveno jinak. Můžete výchozí nastavení přepsat a použít atribut, který sami zvolíte. Musíte se ale ujistit, že atribut, který vyberete, bude uveden jak u uživatelů, tak i u skupin a je unikátní. Ponechte prázdné pro výchozí chování. Změna bude mít vliv jen na nově namapované (přidané) uživatele a skupiny z LDAP." -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atribut UUID:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "UUID atribut pro uživatele:" -#: templates/settings.php:104 +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "UUID atribut pro skupiny:" + +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "Mapování uživatelských jmen z LDAPu" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -393,18 +512,10 @@ msgid "" "experimental stage." msgstr "Uživatelská jména jsou používány pro uchovávání a přiřazování (meta)dat. Pro správnou identifikaci a rozpoznání uživatelů bude mít každý uživatel z LDAP interní uživatelské jméno. To vyžaduje mapování uživatelských jmen na uživatele LDAP. Vytvořené uživatelské jméno je mapováno na UUID uživatele v LDAP. Navíc je cachována DN pro zmenšení interakce s LDAP, ale není používána pro identifikaci. Pokud se DN změní, bude to správně rozpoznáno. Interní uživatelské jméno se používá celé. Vyčištění mapování zanechá zbytky všude. Vyčištění navíc není specifické konfiguraci, bude mít vliv na všechny LDAP konfigurace! Nikdy nečistěte mapování v produkčním prostředí, jen v testovací nebo experimentální fázi." -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "Zrušit mapování uživatelských jmen LDAPu" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Zrušit mapování názvů skupin LDAPu" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Vyzkoušet nastavení" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Nápověda" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 1e0692c377bcd6687e23ab3b275b872009ad1074..823b769760e25975b5cfdadc625a1bd78335aec9 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -18,14 +18,15 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" -msgstr "grŵp" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -52,45 +53,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Math o gategori heb ei ddarparu." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Dim categori i'w ychwanegu?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Mae'r categori hwn eisoes yn bodoli: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Math o wrthrych heb ei ddarparu." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID heb ei ddarparu." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Gwall wrth ychwanegu %s at ffefrynnau." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Ni ddewiswyd categorïau i'w dileu." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Gwall wrth dynnu %s o ffefrynnau." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -187,15 +149,15 @@ msgstr "Tachwedd" msgid "December" msgstr "Rhagfyr" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Gosodiadau" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "eiliad yn ôl" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -203,7 +165,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -211,15 +173,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "heddiw" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "ddoe" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -227,11 +189,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "mis diwethaf" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -239,15 +201,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "misoedd yn ôl" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "y llynedd" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "blwyddyn yn ôl" @@ -317,155 +279,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Nid yw'r math o wrthrych wedi cael ei nodi." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Gwall" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Nid yw enw'r pecyn wedi cael ei nodi." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Nid yw'r ffeil ofynnol {file} wedi ei gosod!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Rhannwyd" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Rhannu" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Gwall" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Gwall wrth rannu" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Gwall wrth ddad-rannu" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Gwall wrth newid caniatâd" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Rhannwyd â chi a'r grŵp {group} gan {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Rhannwyd â chi gan {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Rhannu gyda" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "Dolen ar gyfer rhannu" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Diogelu cyfrinair" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Cyfrinair" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "E-bostio dolen at berson" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Anfon" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Gosod dyddiad dod i ben" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Dyddiad dod i ben" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Rhannu drwy e-bost:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Heb ganfod pobl" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "grŵp" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Does dim hawl ail-rannu" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Rhannwyd yn {item} â {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Dad-rannu" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "yn gallu golygu" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "rheolaeth mynediad" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "creu" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "diweddaru" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "dileu" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "rhannu" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Diogelwyd â chyfrinair" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Gwall wrth ddad-osod dyddiad dod i ben" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Gwall wrth osod dyddiad dod i ben" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Yn anfon ..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "Anfonwyd yr e-bost" +#: js/share.js:769 +msgid "Warning" +msgstr "Rhybudd" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Nid yw'r math o wrthrych wedi cael ei nodi." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Dileu" + +#: js/tags.js:31 +msgid "Add" +msgstr "Ychwanegu" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Anfonwyd y ddolen i ailosod eich cyfrinair i'ch cyfeiriad ebost.
    Os nad yw'n cyrraedd o fewn amser rhesymol gwiriwch eich plygell spam/sothach.
    Os nad yw yno, cysylltwch â'ch gweinyddwr lleol." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Methodd y cais!
    Gwiriwch eich enw defnyddiwr ac ebost." -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Byddwch yn derbyn dolen drwy e-bost i ailosod eich cyfrinair." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Enw defnyddiwr" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -514,13 +504,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Gwneud cais i ailosod" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -546,7 +536,7 @@ msgstr "Personol" msgid "Users" msgstr "Defnyddwyr" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Pecynnau" @@ -558,6 +548,34 @@ msgstr "Gweinyddu" msgid "Help" msgstr "Cymorth" +#: 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 "Mynediad wedi'i wahardd" @@ -574,108 +592,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Golygu categorïau" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Ychwanegu" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Rhybudd Diogelwch" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Mae eich fersiwn PHP yn agored i ymosodiad NULL Byte (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Does dim cynhyrchydd rhifau hap diogel ar gael, galluogwch estyniad PHP OpenSSL." -#: templates/installation.php:33 +#: 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 "Heb gynhyrchydd rhifau hap diogel efallai y gall ymosodwr ragweld tocynnau ailosod cyfrinair a meddiannu eich cyfrif." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Mwy na thebyg fod modd cyrraedd eich cyfeiriadur data a ffeilau o'r rhyngrwyd oherwydd nid yw'r ffeil .htaccess yn gweithio. " -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Crewch gyfrif gweinyddol" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Uwch" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Plygell data" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Cyflunio'r gronfa ddata" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "ddefnyddir" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Defnyddiwr cronfa ddata" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Cyfrinair cronfa ddata" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Enw cronfa ddata" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Tablespace cronfa ddata" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Gwesteiwr cronfa ddata" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Gorffen sefydlu" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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 "%s ar gael. Mwy o wybodaeth am sut i ddiweddaru." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Allgofnodi" @@ -693,19 +722,27 @@ msgstr "Os na wnaethoch chi newid eich cyfrinair yn ddiweddar, gall eich cyfrif msgid "Please change your password to secure your account again." msgstr "Newidiwch eich cyfrinair i ddiogleu eich cyfrif eto." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Wedi colli'ch cyfrinair?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "cofio" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Mewngofnodi" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Mewngofnodiadau Amgen" @@ -713,10 +750,37 @@ msgstr "Mewngofnodiadau Amgen" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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 "Yn diweddaru owncloud i fersiwn %s, gall hyn gymryd amser." + +#: 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/cy_GB/files.po b/l10n/cy_GB/files.po index e2d27216bbb5e2e9488b06f9aeacd9552246a464..e32823fc6dad3926f938c13b8dcc2b134c0d318d 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -27,143 +27,192 @@ msgstr "Methwyd symud %s - Mae ffeil gyda'r enw hwn eisoes yn bodoli" msgid "Could not move %s" msgstr "Methwyd symud %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Does dim hawl cael enw ffeil gwag." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Ni lwythwyd ffeil i fyny. Gwall anhysbys." -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Does dim gwall, llwythodd y ffeil i fyny'n llwyddiannus" -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Dim ond yn rhannol y llwythwyd y ffeil i fyny" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Ni lwythwyd ffeil i fyny" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Plygell dros dro yn eisiau" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Methwyd ysgrifennu i'r ddisg" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Dim digon o le storio ar gael" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Cyfeiriadur annilys." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Ffeiliau" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Dim digon o le ar gael" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Diddymwyd llwytho i fyny." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "Does dim hawl cael URL gwag." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Gwall" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} yn bodoli'n barod" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" -#: js/fileactions.js:119 +#: js/fileactions.js:125 msgid "Share" msgstr "Rhannu" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Dileu'n barhaol" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Ailenwi" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "I ddod" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} yn bodoli'n barod" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "amnewid" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "awgrymu enw" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "diddymu" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "newidiwyd {new_name} yn lle {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "dadwneud" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -171,7 +220,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -179,11 +228,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -191,62 +240,79 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "Mae '.' yn enw ffeil annilys." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Does dim hawl cael enw ffeil gwag." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Mae eich storfa'n llawn, ni ellir diweddaru a chydweddu ffeiliau mwyach!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Mae eich storfa bron a bod yn llawn ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Wrthi'n paratoi i lwytho i lawr. Gall gymryd peth amser os yw'r ffeiliau'n fawr." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Gwall" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Enw" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Maint" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Addaswyd" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Llwytho i fyny" @@ -282,65 +348,69 @@ msgstr "Maint mewnbynnu mwyaf ffeiliau ZIP" msgid "Save" msgstr "Cadw" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Newydd" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "Ffeil destun" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "Plygell" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Dolen o" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Ffeiliau ddilewyd" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Diddymu llwytho i fyny" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Nid oes gennych hawliau ysgrifennu fan hyn." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Llwytho i lawr" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Dad-rannu" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Dileu" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Maint llwytho i fyny'n rhy fawr" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Mae'r ffeiliau rydych yn ceisio llwytho i fyny'n fwy na maint mwyaf llwytho ffeiliau i fyny ar y gweinydd hwn." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Arhoswch, mae ffeiliau'n cael eu sganio." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Sganio cyfredol" diff --git a/l10n/cy_GB/files_encryption.po b/l10n/cy_GB/files_encryption.po index 9a63fede82d64e70917e03f526b578163e696481..e589c2e5a95ac5f91efc792b1f69e488e42996f9 100644 --- a/l10n/cy_GB/files_encryption.po +++ b/l10n/cy_GB/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:09+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" @@ -44,75 +44,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:41 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Yn cadw..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Amgryptiad" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -120,58 +141,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index c9721c7493732ce0907354918b29b4641905155d..2c221863a0ba26452785bb60c4a593b140d05914 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index 11970a0b13941268f31f7e758376aed9b9fd6b5d..bf2fd67f99d11f9a514e9a94f6177862a648d2c0 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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 "Cyfrinair" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Cyflwyno" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "Rhannodd %s blygell %s â chi" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "Rhannodd %s ffeil %s â chi" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Llwytho i lawr" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Llwytho i fyny" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Diddymu llwytho i fyny" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Does dim rhagolwg ar gael ar gyfer" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index b9b366cf6367b6da3651a35311d407b2cbf09d96..26381b9c860144eae3051df1726fab8341519b46 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -27,59 +27,31 @@ msgstr "Methwyd dileu %s yn barhaol" msgid "Couldn't restore %s" msgstr "Methwyd adfer %s" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "gweithrediad adfer" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Gwall" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "dileu ffeil yn barhaol" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Dileu'n barhaol" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Enw" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "Wedi dileu" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Does dim byd yma. Mae eich bin sbwriel yn wag!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Enw" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Adfer" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Wedi dileu" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Dileu" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 63e302b3190324dbdb73bf08ee076310687af45c..e87c4c5b4db10fa632fae6f46589ec053c53fbec 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,270 +17,278 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Cymorth" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Personol" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Gosodiadau" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Defnyddwyr" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Gweinyddu" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "gwasanaethau gwe a reolir gennych" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Mae llwytho ZIP wedi ei ddiffodd." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Mae angen llwytho ffeiliau i lawr fesul un." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Nôl i Ffeiliau" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Mae'r ffeiliau ddewiswyd yn rhy fawr i gynhyrchu ffeil zip." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Nid yw'r pecyn wedi'i alluogi" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Gwall dilysu" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Tocyn wedi dod i ben. Ail-lwythwch y dudalen." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Ffeiliau" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Testun" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Delweddau" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s rhowch enw defnyddiwr y gronfa ddata." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s rhowch enw'r gronfa ddata." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s does dim hawl defnyddio dot yn enw'r gronfa ddata" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Enw a/neu gyfrinair MS SQL annilys: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Rhaid i chi naill ai gyflwyno cyfrif presennol neu'r gweinyddwr." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Enw a/neu gyfrinair MySQL annilys" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "Gwall DB: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Defnyddiwr MySQL '%s'@'localhost' yn bodoli eisoes." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Gollwng y defnyddiwr hwn o MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Defnyddiwr MySQL '%s'@'%%' eisoes yn bodoli" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Gollwng y defnyddiwr hwn o MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Enw a/neu gyfrinair Oracle annilys" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\", enw: %s, cyfrinair: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "Enw a/neu gyfrinair PostgreSQL annilys" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Creu enw defnyddiwr i'r gweinyddwr." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Gosod cyfrinair y gweinyddwr." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Gwiriwch y canllawiau gosod eto." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Methu canfod categori \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "eiliad yn ôl" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -288,7 +296,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -296,15 +304,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "heddiw" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "ddoe" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" @@ -312,11 +320,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "mis diwethaf" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -324,19 +332,10 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "y llynedd" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "blwyddyn yn ôl" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Methu canfod categori \"%s\"" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 6a1d7704d0f30fba1733a73812488f7baec6fa90..71b634b40df79149fc596b4913b78a98c8e607a8 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+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" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "Gwall dilysu" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,31 +129,31 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Gwall" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "dadwneud" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grwpiau" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Dileu" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "Rhybudd Diogelwch" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Amgryptiad" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 3756eac182a21c1925d4faf31087407326076903..f32a619a70b63ab1f3af3c4cf4ad2d184ee2b793 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,429 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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 "Methwyd dileu" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Gwall" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" msgstr "" -#: templates/settings.php:12 +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Cadw" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Cymorth" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Cyfrinair" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +463,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +482,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +508,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Cymorth" diff --git a/l10n/da/core.po b/l10n/da/core.po index 89530e074562234a7f497a4149c6e4833921c7ad..8ef32c0b7b6714648d963f0cdb8c929630496b8e 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -5,15 +5,18 @@ # Translators: # Sappe, 2013 # claus_chr , 2013 +# kaffeldt , 2013 +# lodahl , 2013 +# Morten Juhl-Johansen Zölde-Fejér , 2014 # Ole Holm Frandsen , 2013 # Peter Jespersen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-27 00:01-0400\n" -"PO-Revision-Date: 2013-09-24 17:20+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-08 01:55-0500\n" +"PO-Revision-Date: 2014-01-07 08:50+0000\n" +"Last-Translator: Morten Juhl-Johansen Zölde-Fejér \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" @@ -21,14 +24,15 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s delte »%s« med sig" -#: ajax/share.php:227 -msgid "group" -msgstr "gruppe" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Kunne ikke sende mail til følgende brugere: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -55,48 +59,9 @@ msgstr "Opdaterede filcache" msgid "... %d%% done ..." msgstr "... %d%% færdig ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Kategori typen ikke er fastsat." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Ingen kategori at tilføje?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Kategorien eksisterer allerede: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Object type ikke er fastsat." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID ikke oplyst." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Fejl ved tilføjelse af %s til favoritter." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Ingen kategorier valgt" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Fejl ved fjernelse af %s fra favoritter." - #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "Ingen fil eller billede givet" #: avatar/controller.php:81 msgid "Unknown filetype" @@ -108,11 +73,11 @@ msgstr "Ugyldigt billede" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "Intet midlertidigt profilbillede tilgængeligt, prøv igen" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "Ingen beskæringsdata give" #: js/config.php:32 msgid "Sunday" @@ -190,59 +155,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:866 +#: js/js.js:872 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:867 +#: js/js.js:873 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut siden" msgstr[1] "%n minutter siden" -#: js/js.js:868 +#: js/js.js:874 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time siden" msgstr[1] "%n timer siden" -#: js/js.js:869 +#: js/js.js:875 msgid "today" msgstr "i dag" -#: js/js.js:870 +#: js/js.js:876 msgid "yesterday" msgstr "i går" -#: js/js.js:871 +#: js/js.js:877 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag siden" msgstr[1] "%n dage siden" -#: js/js.js:872 +#: js/js.js:878 msgid "last month" msgstr "sidste måned" -#: js/js.js:873 +#: js/js.js:879 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n måned siden" msgstr[1] "%n måneder siden" -#: js/js.js:874 +#: js/js.js:880 msgid "months ago" msgstr "måneder siden" -#: js/js.js:875 +#: js/js.js:881 msgid "last year" msgstr "sidste år" -#: js/js.js:876 +#: js/js.js:882 msgid "years ago" msgstr "år siden" @@ -252,7 +217,7 @@ msgstr "Vælg" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Fejl ved indlæsning af filvælger skabelon: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -268,27 +233,27 @@ msgstr "OK" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Fejl ved indlæsning af besked skabelon: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{count} filkonflikt" +msgstr[1] "{count} filkonflikter" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "En filkonflikt" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Hvilke filer ønsker du at beholde?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Hvis du vælger begge versioner, vil den kopierede fil få tilføjet et nummer til sit navn." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -296,169 +261,197 @@ msgstr "Annuller" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Videre" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(alle valgt)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} valgt)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" +msgstr "Fejl ved inlæsning af; fil eksistere skabelon" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Objekttypen er ikke angivet." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 -msgid "Error" -msgstr "Fejl" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Den app navn er ikke angivet." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Den krævede fil {file} er ikke installeret!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Delt" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Del" -#: js/share.js:131 js/share.js:696 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Fejl" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Fejl under deling" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Fejl under annullering af deling" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Fejl under justering af rettigheder" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Delt med dig og gruppen {group} af {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Delt med dig af {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Del med" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Del med bruger eller gruppe ..." -#: js/share.js:188 -msgid "Share with link" -msgstr "Del med link" +#: js/share.js:219 +msgid "Share link" +msgstr "Del link" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Beskyt med adgangskode" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Kodeord" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Tillad Offentlig Upload" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "E-mail link til person" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Send" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Vælg udløbsdato" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Udløbsdato" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Del via email:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Ingen personer fundet" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "gruppe" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Videredeling ikke tilladt" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Fjern deling" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "Giv besked med mail" + +#: js/share.js:408 msgid "can edit" msgstr "kan redigere" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "Adgangskontrol" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "opret" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "opdater" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "slet" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "del" -#: js/share.js:400 js/share.js:643 +#: js/share.js:694 msgid "Password protected" msgstr "Beskyttet med adgangskode" -#: js/share.js:656 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Fejl ved fjernelse af udløbsdato" -#: js/share.js:668 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Fejl under sætning af udløbsdato" -#: js/share.js:683 +#: js/share.js:734 msgid "Sending ..." msgstr "Sender ..." -#: js/share.js:694 +#: js/share.js:745 msgid "Email sent" msgstr "E-mail afsendt" +#: js/share.js:769 +msgid "Warning" +msgstr "Advarsel" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Objekttypen er ikke angivet." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Indtast nyt" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Slet" + +#: js/tags.js:31 +msgid "Add" +msgstr "Tilføj" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Rediger tags" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Fejl ved indlæsning dialog skabelon: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Ingen tags markeret til sletning." + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "Genindlæs venligst siden" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Linket til at nulstille dit kodeord er blevet sendt til din e-post.
    Hvis du ikke modtager den inden for en rimelig tid, så tjek dine spam / junk mapper.
    Hvis det ikke er der, så spørg din lokale administrator." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Anmodning mislykkedes!
    Er du sikker på at din e-post / brugernavn var korrekt?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Du vil modtage et link til at nulstille dit kodeord via email." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Brugernavn" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -507,13 +500,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Dine filer er krypterede. Hvis du ikke har aktiveret gendannelsesnøglen kan du ikke få dine data tilbage efter at du har ændret adgangskode. HVis du ikke er sikker på, hvad du skal gøre så kontakt din administrator før du fortsætter. Vil du fortsætte?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Ja, Jeg ønsker virkelig at nulstille mit kodeord" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Anmod om nulstilling" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Nulstil" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -539,7 +532,7 @@ msgstr "Personligt" msgid "Users" msgstr "Brugere" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Apps" @@ -551,6 +544,34 @@ msgstr "Admin" msgid "Help" msgstr "Hjælp" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "Fejl ved indlæsning af tags" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "Tag eksistere allerede" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "Fejl ved sletning af tag(s)" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "Fejl ved tagging" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "Fejl ved fjernelse af tag" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "Fejl ved favoritering" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "Fejl ved fjernelse af favorisering." + #: templates/403.php:12 msgid "Access forbidden" msgstr "Adgang forbudt" @@ -567,108 +588,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hallo\n\ndette blot for at lade dig vide, at %s har delt %s med dig.\nSe det: %s\n\nHej" +msgstr "Hej med dig\n\nDette blot for at lade dig vide, at %s har delt %s med dig.\nSe det her: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Rediger kategorier" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "Delingen vil udløbe om %s." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Tilføj" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Hej!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Sikkerhedsadvarsel" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Din PHP-version er sårbar overfor et NULL Byte angreb (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Opdater venligst din PHP installation for at anvende %s sikkert." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Ingen sikker tilfældighedsgenerator til tal er tilgængelig. Aktiver venligst OpenSSL udvidelsen." -#: templates/installation.php:33 +#: 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 "Uden en sikker tilfældighedsgenerator til tal kan en angriber måske gætte dit gendan kodeord og overtage din konto" -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Dine data mappe og filer er sandsynligvis tilgængelige fra internettet fordi .htaccess filen ikke virker." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "For information om, hvordan du konfigurerer din server korrekt se dokumentationen." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Opret en administratorkonto" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Avanceret" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "vil blive brugt" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Databasebruger" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Databasekodeord" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Navn på database" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Database tabelplads" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Databasehost" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Afslut opsætning" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Færdigbehandler ..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "Programmet forudsætter at JavaScript er aktiveret for at kunne afvikles korrekt. Aktiver JavaScript og genindlæs siden.." + +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s er tilgængelig. Få mere information om, hvordan du opdaterer." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Log ud" @@ -686,19 +718,27 @@ msgstr "Hvis du ikke har ændret din adgangskode for nylig, har nogen muligvis t msgid "Please change your password to secure your account again." msgstr "Skift adgangskode for at sikre din konto igen." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "Server side godkendelse mislykkedes!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Kontakt venligst din administrator" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Mistet dit kodeord?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "husk" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Log ind" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Alternative logins" @@ -706,10 +746,37 @@ msgstr "Alternative logins" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Hallo,

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

    Hej" +"href=\"%s\">View it!

    " +msgstr "Hej med dig,

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

    Hej" + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "Denne ownCloud instans er lige nu i enkeltbruger tilstand." + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "Det betyder at det kun er administrator, som kan benytte ownCloud." -#: templates/update.php:3 +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "Kontakt systemadministratoren, hvis denne meddelelse fortsætter eller optrådte uventet." + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "Tak for din tålmodighed." + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "Opdatere Owncloud til version %s, dette kan tage et stykke tid." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "Opdatere Owncloud, dette kan tage et stykke tid." + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "Genindlæs denne side efter kort tid til at fortsætte med at bruge ownCloud." diff --git a/l10n/da/files.po b/l10n/da/files.po index b6cf95c8d9c8bce02cb1bb77f711d54587d067ed..53216837a8ca55397e26e5b6f999d193832fe812 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -5,14 +5,15 @@ # Translators: # Sappe, 2013 # claus_chr , 2013 +# lodahl , 2013 # Ole Holm Frandsen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 18:50+0000\n" +"Last-Translator: lodahl \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" @@ -30,220 +31,286 @@ msgstr "Kunne ikke flytte %s - der findes allerede en fil med dette navn" msgid "Could not move %s" msgstr "Kunne ikke flytte %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Filnavnet kan ikke stå tomt." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "Filnavnet må ikke indeholde \"/\". Vælg venligst et andet navn." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "Navnet %s er allerede i brug i mappen %s. Vælg venligst et andet navn." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "Ikke en gyldig kilde" + +#: ajax/newfile.php:86 +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:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Fejl ved hentning af %s til %s" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Fejl ved oprettelse af fil" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "Mappenavnet kan ikke være tomt." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "Mappenavnet må ikke indeholde \"/\". Vælg venligst et andet navn." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Fejl ved oprettelse af mappen" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Ude af stand til at vælge upload mappe." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Ugyldig Token " -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil blev uploadet. Ukendt fejl." -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Der skete ingen fejl, filen blev succesfuldt uploadet" -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Filen blev kun delvist uploadet." -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Ingen fil uploadet" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Manglende midlertidig mappe." -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Fejl ved skrivning til disk." -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Der er ikke nok plads til rådlighed" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Upload fejlede. Kunne ikke hente filinformation." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Upload fejlede. Kunne ikke finde den uploadede fil." -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Ugyldig mappe." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Filer" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "Kan ikke upload {filename} da det er enten en mappe eller indholder 0 bytes." -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "ikke nok tilgængelig ledig plads " -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Upload afbrudt." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "" +msgstr "Kunne ikke hente resultat fra server." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "URLen kan ikke være tom." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "URL kan ikke være tom" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Ugyldigt mappenavn. Brug af 'Shared' er forbeholdt af ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "Navnet 'Shared' er reserveret i hjemmemappen." -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Fejl" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} eksisterer allerede" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Kunne ikke oprette fil" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Kunne ikke oprette mappe" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Fejl ved URL" + +#: js/fileactions.js:125 msgid "Share" msgstr "Del" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Slet permanent" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Omdøb" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Afventer" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} eksisterer allerede" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "erstat" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "foreslå navn" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Kunne ikke omdøbe filen" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "fortryd" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "erstattede {new_name} med {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "fortryd" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Fejl ved sletnign af fil." + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} og {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Uploader %n fil" msgstr[1] "Uploader %n filer" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' er et ugyldigt filnavn." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Filnavnet kan ikke stå tomt." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Din opbevaringsplads er fyldt op, filer kan ikke opdateres eller synkroniseres længere!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Din opbevaringsplads er næsten fyldt op ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "Krypteringsprogrammet er aktiveret, men din nøgle er ikke igangsat. Log venligst ud og ind igen." + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "Ugyldig privat nøgle for krypteringsprogrammet. Opdater venligst dit kodeord for den private nøgle i dine personlige indstillinger. Det kræves for at få adgang til dine krypterede filer." + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Krypteringen blev deaktiveret, men dine filer er stadig krypteret. Gå venligst til dine personlige indstillinger for at dekryptere dine filer. " -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Dit download forberedes. Dette kan tage lidt tid ved større filer." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" -msgstr "" +msgstr "Fejl ved flytning af fil" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Fejl" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Navn" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Størrelse" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Ændret" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Ugyldig mappenavn. 'Shared' er reserveret." + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s kunne ikke omdøbes" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Upload" @@ -279,65 +346,69 @@ msgstr "Maksimal størrelse på ZIP filer" msgid "Save" msgstr "Gem" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Ny" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "Ny tekstfil" + +#: templates/index.php:8 msgid "Text file" msgstr "Tekstfil" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Ny Mappe" + +#: templates/index.php:10 msgid "Folder" msgstr "Mappe" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Fra link" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Slettede filer" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Fortryd upload" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Du har ikke skriverettigheder her." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "Du har ikke tilladelse til at uploade eller oprette filer her" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Her er tomt. Upload noget!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Download" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Fjern deling" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Slet" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Upload er for stor" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filerne, du prøver at uploade, er større end den maksimale størrelse for fil-upload på denne server." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Filerne bliver indlæst, vent venligst." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Indlæser" diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index aef21e07adb2612e005925b2c17d3170c1be2011..90861c46ca352f93978039619737c8ff29de37d1 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -5,13 +5,14 @@ # Translators: # Sappe, 2013 # claus_chr , 2013 +# lodahl , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: claus_chr \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 18:40+0000\n" +"Last-Translator: lodahl \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" @@ -45,75 +46,96 @@ msgstr "Kodeordet blev ændret succesfuldt" msgid "Could not change the password. Maybe the old password was not correct." msgstr "Kunne ikke ændre kodeordet. Måske var det gamle kodeord ikke korrekt." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Privat nøgle kodeord succesfuldt opdateret." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Kunne ikke opdatere det private nøgle kodeord-. Måske var det gamle kodeord forkert." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "Din private nøgle er gyldig! Sandsynligvis blev dit kodeord ændre uden for ownCloud systemet (f.eks. dit firmas register). Du kan opdatere dit private nøgle kodeord under personlige indstillinger, for at generhverve adgang til dine krypterede filer." +"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 "Krypteringsprogrammet er ikke igangsat. Det kan skyldes at krypteringsprogrammet er blevet genaktiveret under din session. Prøv at logge ud og ind igen for at aktivere krypteringsprogrammet. " -#: hooks/hooks.php:41 +#: 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 "Din private nøgle er ikke gyldig. Sandsynligvis er dit kodeord blevet ændret uden for %s (f.eks dit firmas adressebog). Du kan opdatere din private nøglekode i dine personlige indstillinger for at genskabe adgang til dine krypterede filer." + +#: 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 "Kan ikke kryptere denne fil, sandsynligvis fordi felen er delt. Bed venligst filens ejer om at dele den med dig på ny." + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Ukendt fejl. Kontroller venligst dit system eller kontakt din administrator" + +#: hooks/hooks.php:62 msgid "Missing requirements." msgstr "Manglende betingelser." -#: hooks/hooks.php:42 +#: hooks/hooks.php:63 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 "Sørg for at PHP 5.3.3 eller nyere er installeret og at OpenSSL sammen med PHP-udvidelsen er aktiveret og korrekt konfigureret. Indtil videre er krypteringsprogrammet deaktiveret." -#: hooks/hooks.php:249 +#: hooks/hooks.php:281 msgid "Following users are not set up for encryption:" msgstr "Følgende brugere er ikke sat op til kryptering:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "Førstegangskryptering er påbegyndt... Dette kan tage nogen tid. Vent venligst." + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Gemmer..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Din private nøgle er ikke gyldig. Måske blev dit kodeord ændre udefra." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Gå direkte til din " -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Du kan låse din private nøgle op i din " - -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "Personlige indstillinger" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Kryptering" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Aktiver gendannelsesnøgle (Tillad gendannelse af brugerfiler i tilfælde af tab af kodeord):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Gendannelsesnøgle kodeord" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Gentag gendannelse af nøglekoden" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Aktiveret" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Deaktiveret" @@ -121,58 +143,62 @@ msgstr "Deaktiveret" msgid "Change recovery key password:" msgstr "Skift gendannelsesnøgle kodeord:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Gammel Gendannelsesnøgle kodeord" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Ny Gendannelsesnøgle kodeord" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "Gentag dannelse af ny gendannaleses nøglekode" + +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Skift Kodeord" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Dit private nøgle kodeord stemmer ikke længere overens med dit login kodeord:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Sæt dit gamle private nøgle kodeord til at være dit nuværende login kodeord. " -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Hvis du ikke kan huske dit gamle kodeord kan du bede din administrator om at gendanne dine filer." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Gammelt login kodeord" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Nuvrende login kodeord" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Opdater Privat Nøgle Kodeord" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Aktiver kodeord gendannelse:" -#: templates/settings-personal.php:47 +#: 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 "Aktivering af denne valgmulighed tillader dig at generhverve adgang til dine krypterede filer i tilfælde af tab af kodeord" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Filgendannelsesindstillinger opdateret" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Kunne ikke opdatere filgendannelse" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index 22fc3c7b82455ff6d8fcbee7250791e79befe6a7..c51e65b554c8f713743e568cda83d6d6608920b2 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Adgang godkendt" @@ -25,7 +25,7 @@ msgstr "Adgang godkendt" msgid "Error configuring Dropbox storage" msgstr "Fejl ved konfiguration af Dropbox plads" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Godkend adgang" @@ -33,24 +33,24 @@ msgstr "Godkend adgang" msgid "Please provide a valid Dropbox app key and secret." msgstr "Angiv venligst en valid Dropbox app nøgle og hemmelighed" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Fejl ved konfiguration af Google Drive plads" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr " Advarsel: \"smbclient\" ikke er installeret. Montering af CIFS / SMB delinger er ikke muligt. Spørg din systemadministrator om at installere det." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr " Advarsel: FTP-understøttelse i PHP ikke er aktiveret eller installeret. Montering af FTP delinger er ikke muligt. Spørg din systemadministrator om at installere det." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index d5bee700f160998ac0887c9058a1f6253215038c..54b706c403e4f2bdaa3e92e367fb5257572d3d23 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -4,13 +4,14 @@ # # Translators: # Sappe, 2013 +# lodahl , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Sappe\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 16:20+0000\n" +"Last-Translator: lodahl \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" @@ -19,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Delingen er beskyttet af kodeord" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Kodeordet er forkert. Prøv igen." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Kodeord" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Send" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Desværre, dette link ser ikke ud til at fungerer længere." @@ -54,28 +55,32 @@ msgstr "deling er deaktiveret" msgid "For more info, please ask the person who sent this link." msgstr "For yderligere information, kontakt venligst personen der sendte linket. " -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappen %s med dig" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte filen %s med dig" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Download" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Upload" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Fortryd upload" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Forhåndsvisning ikke tilgængelig for" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Direkte link" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 3f0098ca8622cbe0bd828c9a32c0e1e6070a8fd7..4524e08cf23d477b046630bc6ba442f3ebe33267 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-16 01:29-0400\n" -"PO-Revision-Date: 2013-08-16 05:00+0000\n" -"Last-Translator: claus_chr \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,55 +29,31 @@ msgstr "Kunne ikke slette %s permanent" msgid "Couldn't restore %s" msgstr "Kunne ikke gendanne %s" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "udfør gendannelsesoperation" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Fejl" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "slet fil permanent" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Slet permanent" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Navn" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "Slettet" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n mappe" -msgstr[1] "%n mapper" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n fil" -msgstr[1] "%n filer" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "Gendannet" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Intet at se her. Din papirkurv er tom!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Navn" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Gendan" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Slettet" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Slet" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 7d01d7a9691a614870f7f688fc6c9e43804ab26f..94320b42d8689215ef1c2dd608f6fd771b4027c1 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -5,14 +5,15 @@ # Translators: # Sappe, 2013 # claus_chr , 2013 +# lodahl , 2013 # Ole Holm Frandsen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-27 00:01-0400\n" -"PO-Revision-Date: 2013-09-24 17:20+0000\n" -"Last-Translator: Sappe\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 16:01+0000\n" +"Last-Translator: lodahl \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" @@ -20,318 +21,317 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "App'en \"%s\" kan ikke blive installeret, da den ikke er kompatibel med denne version af ownCloud." -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "Intet app-navn angivet" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Hjælp" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Personligt" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Indstillinger" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Brugere" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Upgradering af \"%s\" fejlede" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Personligt profilbillede virker endnu ikke sammen med kryptering" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Ukendt filtype" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Ugyldigt billede" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Webtjenester under din kontrol" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "Kan ikke åbne \"%s\"" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP-download er slået fra." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Filer skal downloades en for en." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Tilbage til Filer" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "De markerede filer er for store til at generere en ZIP-fil." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Download filerne i små bider, seperat, eller kontakt venligst din administrator." +msgstr "Hent venligst filerne hver for sig i mindre dele eller spørg din administrator." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Ingen kilde angivet under installation af app" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Ingen href angivet under installation af app via http" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Ingen sti angivet under installation af app fra lokal fil" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Arkiver af type %s understøttes ikke" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Kunne ikke åbne arkiv under installation af appen" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "Der følger ingen info.xml-fil med appen" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "Appen kan ikke installeres, da den indeholder ikke-tilladt kode" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Appen kan ikke installeres, da den ikke er kompatibel med denne version af ownCloud." -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Appen kan ikke installeres, da den indeholder taget\n\n\ntrue\n\n\nhvilket ikke er tilladt for ikke-medfølgende apps" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "App kan ikke installeres, da versionen i info.xml/version ikke er den samme som versionen rapporteret fra app-storen" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "App-mappe findes allerede" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Kan ikke oprette app-mappe. Ret tilladelser. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Programmet er ikke aktiveret" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Adgangsfejl" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Adgang er udløbet. Genindlæs siden." -#: search/provider/file.php:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Filer" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "SMS" -#: search/provider/file.php:30 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Billeder" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s indtast database brugernavnet." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s indtast database navnet." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s du må ikke bruge punktummer i databasenavnet." -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL brugernavn og/eller adgangskode ikke er gyldigt: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 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." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL brugernavn og/eller kodeord er ikke gyldigt." -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "Databasefejl: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Fejlende kommando var: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL brugeren '%s'@'localhost' eksisterer allerede." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Slet denne bruger fra MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL brugeren '%s'@'%%' eksisterer allerede." -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Slet denne bruger fra MySQL" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Oracle forbindelsen kunne ikke etableres" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Oracle brugernavn og/eller kodeord er ikke gyldigt." -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fejlende kommando var: \"%s\", navn: %s, password: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL brugernavn og/eller kodeord er ikke gyldigt." -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Angiv et admin brugernavn." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Angiv et admin kodeord." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Dobbelttjek venligst installations vejledningerne." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Kunne ikke finde kategorien \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "sekunder siden" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut siden" msgstr[1] "%n minutter siden" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time siden" msgstr[1] "%n timer siden" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "i dag" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "i går" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n dag siden" msgstr[1] "%n dage siden" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "sidste måned" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n måned siden" msgstr[1] "%n måneder siden" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "sidste år" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "år siden" - -#: template.php:297 -msgid "Caused by:" -msgstr "Forårsaget af:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Kunne ikke finde kategorien \"%s\"" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index e5f2b57e882248d17c45975d4b6fc255dbff8bce..9b91fc8745a0a76a0e6db8151850212a7898317f 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -4,15 +4,16 @@ # # Translators: # Sappe, 2013 +# lodahl , 2013 # Morten Juhl-Johansen Zölde-Fejér , 2013 # Ole Holm Frandsen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-27 00:01-0400\n" -"PO-Revision-Date: 2013-09-24 17:00+0000\n" -"Last-Translator: Sappe\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 16:40+0000\n" +"Last-Translator: lodahl \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" @@ -30,12 +31,12 @@ msgid "Authentication error" msgstr "Adgangsfejl" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Dit skærmnavn blev ændret." +msgid "Your full name has been changed." +msgstr "Dit fulde navn er blevet ændret." #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Kunne ikke skifte skærmnavn" +msgid "Unable to change full name" +msgstr "Ikke i stand til at ændre dit fulde navn" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -164,7 +165,7 @@ msgstr "Opdateret" msgid "Select a profile picture" msgstr "Vælg et profilbillede" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dekryptere filer... Vent venligst, dette kan tage lang tid. " @@ -184,44 +185,75 @@ msgstr "fortryd" msgid "Unable to remove user" msgstr "Kan ikke fjerne bruger" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupper" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Gruppe Administrator" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Slet" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "Tilføj gruppe" -#: js/users.js:436 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Et gyldigt brugernavn skal angives" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Fejl ved oprettelse af bruger" -#: js/users.js:442 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "En gyldig adgangskode skal angives" +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Advarsel: Hjemmemappen for bruger \"{user}\" findes allerede" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Dansk" -#: templates/admin.php:15 +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "Alt (alvorlige fejl, fejl, advarsler, info, debug)" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "Info, advarsler, fejl og alvorlige fejl" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "Advarsler, fejl og alvorlige fejl" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "Fejl og alvorlige fejl" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "Kun alvorlige fejl" + +#: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" msgstr "Sikkerhedsadvarsel" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "Du tilgår %s via HTTP. Vi anbefaler at du konfigurerer din server til i stedet at kræve HTTPS." + +#: templates/admin.php:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -230,48 +262,68 @@ msgid "" "root." msgstr "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. " -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Opsætnings Advarsel" -#: templates/admin.php:32 +#: templates/admin.php:53 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." -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Dobbelttjek venligst installations vejledningerne." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' mangler" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP modulet 'fileinfo' mangler. Vi anbefaler stærkt at aktivere dette modul til at få de bedste resultater med mime-type detektion." -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "Din PHP-version er forældet" + +#: templates/admin.php:82 +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 "Din PHP-version er forældet. Vi anbefaler at du opgraderer til 5.3.8 eller nyere, fordi ældre versioner har kendte fejl. Det er derfor muligt at installationen ikke fungerer korrekt." + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Landestandard fungerer ikke" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "Systemets locale kan ikke sættes til et der bruger UTF-8." + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "Det betyder at der kan være problemer med visse tegn i filnavne." + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "Systemet kan ikke indstille systemets landestandard for %s. Det betyder, at der kan være problemer med visse tegn i filnavne. Vi anbefaler kraftigt, at installere de nødvendige pakker på dit system til at understøtte %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "Vi anbefaler at du installerer den krævede pakke på dit system, for at understøtte følgende locales: %s." -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Internetforbindelse fungerer ikke" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -280,110 +332,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Denne ownCloud-server har ikke en fungerende forbindelse til internettet. Det betyder, at visse funktioner som montering af eksterne drev, oplysninger om opdatering eller installation af 3.-parts applikationer ikke fungerer. Det vil sandsynligvis heller ikke fungere at tilgå filer fra eksterne drev eller informationsemails. Vi opfordrer til at etablere forbindelse til internettet for denne server, såfremt du ønsker samtlige funktioner." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Udføre en opgave med hver side indlæst" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php er registeret hos en webcron-tjeneste til at kalde cron.php en gang i minuttet over http." +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Brug systemets cron service til at kalde cron.php filen en gang i minuttet" +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Aktiver Share API" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Tillad apps til at bruge Share API" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Tillad links" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Tillad brugere at dele elementer til offentligheden med links" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Tillad offentlig upload" -#: templates/admin.php:144 +#: templates/admin.php:187 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:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Tillad videredeling" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Tillad brugere at dele elementer delt med dem igen" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Tillad brugere at dele med alle" -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Tillad mail underretninger" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "Tillad brugere at sende mail underretninger for delte filer" + +#: templates/admin.php:221 msgid "Security" msgstr "Sikkerhed" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Gennemtving HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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:191 +#: templates/admin.php:242 #, 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:203 +#: templates/admin.php:254 msgid "Log" msgstr "Log" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Mere" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Mindre" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Version" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Anvend denne adresse til at tilgå dine filer via WebDAV" +"Use this address to access your Files via " +"WebDAV" +msgstr "Brug denne adresse for at tilgå dine filer via WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Kryptering" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "Krypterings app'en er ikke længere aktiv. Dekrypter alle dine filer. " +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "Krypteringsprogrammet er ikke længere aktiveret. Dekrypter venligst alle dine filer" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Log-in kodeord" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Dekrypter alle Filer " @@ -575,6 +639,10 @@ msgstr "Indtast et gendannelse kodeord for, at kunne gendanne brugerens filer ve msgid "Default Storage" msgstr "Standard opbevaring" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "Indtast venligst lagerkvote (f.eks. \"512 MB\" eller \"12 GB\")" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Ubegrænset" @@ -592,8 +660,8 @@ msgid "Storage" msgstr "Opbevaring" #: templates/users.php:108 -msgid "change display name" -msgstr "skift skærmnavn" +msgid "change full name" +msgstr "ændre fulde navn" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 656890881c2551f5db1521ad41793ce25737339f..1012e98413f91d2359b3ff8a5a471920e20351e3 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" -"Last-Translator: Sappe\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,314 +26,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "Kunne ikke slette server konfigurationen" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Konfigurationen er korrekt og forbindelsen kunne etableres!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "Konfigurationen er ugyldig. Se venligst ownCloud loggen for yderligere detaljer." +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 "" -#: js/settings.js:66 +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 msgid "Deletion failed" msgstr "Fejl ved sletning" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Overtag indstillinger fra nylig server konfiguration? " -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Behold indstillinger?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Kan ikke tilføje serverkonfiguration" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Succes" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Fejl" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Vælg grupper" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Forbindelsestest lykkedes" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Forbindelsestest mislykkedes" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Ønsker du virkelig at slette den nuværende Server Konfiguration?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Bekræft Sletning" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:778 lib/wizard.php:790 +msgid "Invalid Host" msgstr "" -#: templates/settings.php:12 +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Gem" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Test Konfiguration" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Hjælp" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Server konfiguration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +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 "Tilføj Server Konfiguration" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Host" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Du kan udelade protokollen, medmindre du skal bruge SSL. Start i så fald med ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Base DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Port" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "Bruger DN" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Kodeord" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "For anonym adgang, skal du lade DN og Adgangskode tomme." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Bruger Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "You can specify Base DN for users and groups in the Advanced tab" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Brugerliste Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" -#: templates/settings.php:58 +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Tilbage" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Videre" + +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Gruppe Filter" - -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Forbindelsesindstillinger " -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Konfiguration Aktiv" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "Port" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Backup (Replika) Vært" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Opgiv en ikke obligatorisk backup server. Denne skal være en replikation af hoved-LDAP/AD serveren." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Backup (Replika) Port" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Deaktiver Hovedserver" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "Forbind kun til replika serveren." -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Brug TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Benyt ikke flere LDAPS forbindelser, det vil mislykkeds. " - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Ikke versalfølsom LDAP server (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Deaktiver SSL certifikat validering" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Cache Time-To-Live" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "User Display Name Field" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Base Bruger Træ" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Base Group Tree" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Group-Member association" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Kvote Felt" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "i bytes" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "Email Felt" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "Internt Brugernavn" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -349,15 +460,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -368,15 +479,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -390,18 +505,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Test Konfiguration" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Hjælp" diff --git a/l10n/de/core.po b/l10n/de/core.po index 44eb6eec04088b407a54ffc3366c883f7998f3b0..c3ee3e52b2125ff2762826f91c51ea07a61d16bb 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -10,29 +10,31 @@ # JamFX , 2013 # ninov , 2013 # Pwnicorn , 2013 +# noxin , 2013 # Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-21 10:00+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:22+0000\n" "Last-Translator: Mario Siegmann \n" -"Language-Team: German \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" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" -msgstr "%s teilte »%s« mit Ihnen" +msgstr "%s teilte »%s« mit Dir" -#: ajax/share.php:227 -msgid "group" -msgstr "Gruppe" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Die E-Mail konnte nicht an folgende Benutzer gesendet werden: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -59,45 +61,6 @@ msgstr "Dateicache aktualisiert" msgid "... %d%% done ..." msgstr "... %d%% erledigt ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Kategorie nicht angegeben." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Keine Kategorie hinzuzufügen?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Die Kategorie '%s' existiert bereits." - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Objekttyp nicht angegeben." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID nicht angegeben." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Fehler beim Hinzufügen von %s zu den Favoriten." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Es wurde keine Kategorien zum Löschen ausgewählt." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Fehler beim Entfernen von %s von den Favoriten." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Kein Bild oder Datei zur Verfügung gestellt" @@ -194,59 +157,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "Heute" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "Gestern" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "Vor Jahren" @@ -286,13 +249,13 @@ msgstr "Ein Dateikonflikt" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "Welche Dateien möchtest du behalten?" +msgstr "Welche Dateien möchtest Du behalten?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "Wenn du beide Versionen auswählst, erhält die kopierte Datei eine Zahl am Ende des Dateinamens." +msgstr "Wenn Du beide Versionen auswählst, erhält die kopierte Datei eine Zahl am Ende des Dateinamens." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -314,155 +277,183 @@ msgstr "({count} ausgewählt)" msgid "Error loading file exists template" msgstr "Fehler beim Laden der vorhanden Dateivorlage" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Der Objekttyp ist nicht angegeben." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Fehler" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Der App-Name ist nicht angegeben." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Die benötigte Datei {file} ist nicht installiert." - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Geteilt" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Teilen" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Fehler" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Fehler beim Teilen" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Fehler beim Aufheben der Freigabe" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Fehler beim Ändern der Rechte" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} hat dies mit Dir und der Gruppe {group} geteilt" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "{owner} hat dies mit Dir geteilt" -#: js/share.js:183 -msgid "Share with" -msgstr "Teilen mit" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Mit Benutzer oder Gruppe teilen ...." -#: js/share.js:188 -msgid "Share with link" -msgstr "Über einen Link freigegeben" +#: js/share.js:219 +msgid "Share link" +msgstr "Link Teilen" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Passwortschutz" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Passwort" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Öffentliches Hochladen erlauben" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Link per E-Mail verschicken" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Senden" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Setze ein Ablaufdatum" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Ablaufdatum" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Über eine E-Mail teilen:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "Gruppe" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Weiterverteilen ist nicht erlaubt" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Für {user} in {item} freigegeben" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "Per E-Mail informieren" + +#: js/share.js:408 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "erstellen" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "aktualisieren" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "löschen" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "teilen" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Durch ein Passwort geschützt" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "E-Mail wurde verschickt" +#: js/share.js:769 +msgid "Warning" +msgstr "Warnung" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Der Objekttyp ist nicht angegeben." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Neuen eingeben" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Löschen" + +#: js/tags.js:31 +msgid "Add" +msgstr "Hinzufügen" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Schlagwörter bearbeiten" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Fehler beim Laden der Dialogvorlage: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Es wurden keine Schlagwörter zum Löschen ausgewählt." + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "Bitte lade diese Seite neu." + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Der Link zum Rücksetzen Deines Passwort ist an Deine E-Mail-Adresse geschickt worden.
    Wenn Du ihn nicht innerhalb einer vernünftigen Zeit empfängst, prüfe Deine Spam-Verzeichnisse.
    Wenn er nicht dort ist, frage Deinen lokalen Administrator." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Anfrage fehlgeschlagen!
    Hast Du darauf geachtet, dass Deine E-Mail/Dein Benutzername korrekt war?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Du erhältst einen Link per E-Mail, um Dein Passwort zurückzusetzen." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Benutzername" -#: lostpassword/templates/lostpassword.php:22 +#: 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 "Ihre Dateien sind verschlüsselt. Sollten Sie keinen Wiederherstellungschlüssel aktiviert haben, gibt es keine Möglichkeit an Ihre Daten zu kommen, wenn das Passwort zurückgesetzt wird. Falls Sie sich nicht sicher sind, was Sie tun sollen, kontaktieren Sie bitte Ihren Administrator, bevor Sie fortfahren. Wollen Sie wirklich fortfahren?" +msgstr "Deine Dateien sind verschlüsselt. Solltest Du keinen Wiederherstellungschlüssel aktiviert haben, gibt es keine Möglichkeit an Deine Daten zu kommen, wenn das Passwort zurückgesetzt wird. Falls Du Dir nicht sicher bist, was Du tun sollst, kontaktiere bitte Deinen Administrator, bevor Du fortfährst. Willst Du wirklich fortfahren?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" -msgstr "Ja, ich will mein Passwort jetzt wirklich zurücksetzen" +msgstr "Ja, ich will mein Passwort jetzt zurücksetzen" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Beantrage Zurücksetzung" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Zurücksetzen" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -543,7 +534,7 @@ msgstr "Persönlich" msgid "Users" msgstr "Benutzer" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Apps" @@ -555,6 +546,34 @@ msgstr "Administration" msgid "Help" msgstr "Hilfe" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "Fehler beim Laden der Schlagwörter" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "Schlagwort ist bereits vorhanden" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "Fehler beim Löschen des Schlagwortes bzw. der Schlagwörter" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "Fehler beim Hinzufügen der Schlagwörter" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "Fehler beim Entfernen der Schlagwörter" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "Fehler beim Favorisieren" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "Fehler beim Entfernen aus den Favoriten" + #: templates/403.php:12 msgid "Access forbidden" msgstr "Zugriff verboten" @@ -571,108 +590,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hallo,\n\nwollte dich nur kurz informieren, dass %s gerade %s mit dir geteilt hat.\nSchau es dir an: %s\n\nGruß!" +msgstr "Hallo,\n\nich wollte Dich nur wissen lassen, dass %s %s mit Dir teilt.\nSchaue es Dir an: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Kategorien bearbeiten" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "Die Freigabe wird am %s ablaufen." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Hinzufügen" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Hallo!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Sicherheitswarnung" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Deine PHP Version ist durch die NULL Byte Attacke (CVE-2006-7243) angreifbar" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "Bitte aktualisiere deine PHP-Installation um %s sicher nutzen zu können." +msgstr "Bitte aktualisiere Deine PHP-Installation um %s sicher nutzen zu können." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Es ist kein sicherer Zufallszahlengenerator verfügbar, bitte aktiviere die PHP-Erweiterung für OpenSSL." -#: templates/installation.php:33 +#: 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 "Ohne einen sicheren Zufallszahlengenerator sind Angreifer in der Lage die Tokens für das Zurücksetzen der Passwörter vorherzusehen und Konten zu übernehmen." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Dein Datenverzeichnis und Deine Dateien sind wahrscheinlich vom Internet aus erreichbar, weil die .htaccess-Datei nicht funktioniert." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." -msgstr "Für Informationen, wie du deinen Server richtig konfigurierst lese bitte die Dokumentation." +msgstr "Für Informationen, wie Du Deinen Server richtig konfigurierst, lies bitte die Dokumentation." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Administrator-Konto anlegen" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Fortgeschritten" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Datenverzeichnis" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Datenbank einrichten" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "wird verwendet" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Installation abschließen" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Abschließen ..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "Diese Anwendung benötigt ein aktiviertes JavaScript zum korrekten Betrieb. Bitte aktiviere JavaScript und lade diese Schnittstelle neu." + +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein." +msgstr "%s ist verfügbar. Hole weitere Informationen zu Aktualisierungen ein." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Abmelden" @@ -690,19 +720,27 @@ msgstr "Wenn Du Dein Passwort nicht vor kurzem geändert hast, könnte Dein\nAcc msgid "Please change your password to secure your account again." msgstr "Bitte ändere Dein Passwort, um Deinen Account wieder zu schützen." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "Serverseitige Authentifizierung fehlgeschlagen!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Bitte kontaktiere Deinen Administrator." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "merken" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Einloggen" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Alternative Logins" @@ -710,10 +748,37 @@ msgstr "Alternative Logins" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Hallo,

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

    Gruß!" +"href=\"%s\">View it!

    " +msgstr "Hallo,

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

    " -#: templates/update.php:3 +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "Diese ownClound-Instanz befindet sich derzeit im Einzelbenutzermodus." + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "Dies bedeutet, dass diese Instanz nur von Administratoren genutzt werden kann." + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "Kontaktiere Deinen Systemadministrator, wenn diese Meldung dauerhaft oder unerwartet erscheint." + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "Vielen Dank für Deine Geduld." + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "Diese OwnCloud-Instanz wird gerade aktualisiert, was eine Weile dauert." + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "Bitte lade diese Seite nach kurzer Zeit neu, um mit der Nutzung von OwnCloud fortzufahren." diff --git a/l10n/de/files.po b/l10n/de/files.po index 06bce6446387eb8109c664cdc080e6f07909f97b..628bdcb0c9434d0923fc15e0a1e7c3766cfcee53 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -12,11 +12,11 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:51-0400\n" -"PO-Revision-Date: 2013-09-21 10:00+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: Mario Siegmann \n" -"Language-Team: German \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" "Content-Transfer-Encoding: 8bit\n" @@ -33,62 +33,107 @@ msgstr "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert berei msgid "Could not move %s" msgstr "Konnte %s nicht verschieben" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Der Dateiname darf nicht leer sein." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "Der Dateiname darf kein \"/\" enthalten. Bitte wähle einen anderen Namen." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "Der Name %s wird bereits im Ordner %s benutzt. Bitte wähle einen anderen Namen." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "Keine gültige Quelle" + +#: ajax/newfile.php:86 +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:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Fehler beim Herunterladen von %s nach %s" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Fehler beim Erstellen der Datei" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "Der Ordner-Name darf nicht leer sein." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "Der Ordner-Name darf kein \"/\" enthalten. Bitte wähle einen anderen Namen." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Fehler beim Erstellen des Ordners" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Ungültiges Merkmal" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "Hochladen fehlgeschlagen. Dateiinformationen konnten nicht abgerufen werden." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "Hochladen fehlgeschlagen. Hochgeladene Datei konnte nicht gefunden werden." -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -96,157 +141,178 @@ msgstr "Ungültiges Verzeichnis." msgid "Files" msgstr "Dateien" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "Datei {filename} kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist" +msgstr "Die Datei {filename} kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Nicht genug Speicherplatz verfügbar" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "Ergebnis konnte nicht vom Server abgerufen werden." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "Die URL darf nicht leer sein." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "Die URL darf nicht leer sein" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Der Ordnername ist ungültig. Nur ownCloud kann den Ordner \"Shared\" anlegen" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Fehler" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} existiert bereits" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Die Datei konnte nicht erstellt werden" -#: js/fileactions.js:119 +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Der Ordner konnte nicht erstellt werden" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Fehler beim Abrufen der URL" + +#: js/fileactions.js:125 msgid "Share" msgstr "Teilen" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} existiert bereits" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "ersetzen" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "Namen vorschlagen" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Die Datei konnte nicht umbenannt werden" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "abbrechen" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} ersetzt durch {new_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Fehler beim Löschen der Datei." + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" msgstr[1] "%n Dateien" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} und {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hochgeladen" msgstr[1] "%n Dateien werden hochgeladen" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' ist kein gültiger Dateiname." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Der Dateiname darf nicht leer sein." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Dein Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Dein Speicher ist fast voll ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "Die Verschlüsselung-App ist aktiviert, aber Deine Schlüssel sind nicht initialisiert. Bitte melden Dich nochmals ab und wieder an." + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "Ungültiger privater Schlüssel für die Verschlüsselung-App. Bitte aktualisiere Dein privates Schlüssel-Passwort, um den Zugriff auf Deine verschlüsselten Dateien wiederherzustellen." + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." -msgstr "Die Verschlüsselung wurde deaktiviert, jedoch sind deine Dateien nach wie vor verschlüsselt. Bitte gehe zu deinen persönlichen Einstellungen, um deine Dateien zu entschlüsseln." +msgstr "Die Verschlüsselung wurde deaktiviert, jedoch sind Deine Dateien nach wie vor verschlüsselt. Bitte gehe zu Deinen persönlichen Einstellungen, um Deine Dateien zu entschlüsseln." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Dein Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "Fehler beim Verschieben der Datei" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Fehler" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Name" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Größe" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Geändert" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert." + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Hochladen" @@ -282,65 +348,69 @@ msgstr "Maximale Größe für ZIP-Dateien" msgid "Save" msgstr "Speichern" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Neu" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "Neue Textdatei" + +#: templates/index.php:8 msgid "Text file" msgstr "Textdatei" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Neuer Ordner" + +#: templates/index.php:10 msgid "Folder" msgstr "Ordner" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Von einem Link" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Gelöschte Dateien" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Du hast hier keine Schreib-Berechtigung." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "Du besitzt hier keine Berechtigung, um Dateien hochzuladen oder zu erstellen" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Lade etwas hoch!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Freigabe aufheben" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Löschen" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Der Upload ist zu groß" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index fbe536c708a851b7815d458c92b6c166f25309f1..46d897d070f1fd6f14dc5f9be539a028b2b4f175 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.po @@ -9,15 +9,16 @@ # ninov , 2013 # Pwnicorn , 2013 # thillux, 2013 +# Mirodin , 2013 # kabum , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: Mario Siegmann \n" -"Language-Team: German \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-06 10:50+0000\n" +"Last-Translator: Mirodin \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" "Content-Transfer-Encoding: 8bit\n" @@ -31,7 +32,7 @@ msgstr "Wiederherstellungsschlüssel wurde erfolgreich aktiviert" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "Der Wiederherstellungsschlüssel konnte nicht aktiviert werden. Überprüfen Sie Ihr Wiederherstellungspasswort!" +msgstr "Der Wiederherstellungsschlüssel konnte nicht aktiviert werden. Überprüfe Dein Wiederherstellungspasswort!" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" @@ -40,7 +41,7 @@ msgstr "Wiederherstellungsschlüssel deaktiviert." #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "Der Wiederherstellungsschlüssel konnte nicht deaktiviert werden. Überprüfen Sie Ihr Wiederherstellungspasswort!" +msgstr "Der Wiederherstellungsschlüssel konnte nicht deaktiviert werden. Überprüfe Dein Wiederherstellungspasswort!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." @@ -50,75 +51,96 @@ msgstr "Dein Passwort wurde geändert." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort falsch." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Passwort des privaten Schlüssels erfolgreich aktualisiert" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Eventuell war das alte Passwort falsch." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "Dein privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Dein Passwort geändert (z.B. in deinem gemeinsamen Verzeichnis). Du kannst das Passwort deines privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an deine Dateien zu gelangen." +"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 "Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuche Dich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren." -#: hooks/hooks.php:41 +#: 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 "Dein privater Schlüssel ist ungültig. Möglicher Weise wurde außerhalb von %s Dein Passwort geändert (z.B. in Deinem gemeinsamen Verzeichnis). Du kannst das Passwort Deines privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Deine Dateien zu gelangen." + +#: 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 "Die Datei kann nicht entschlüsselt werden, da die Datei möglicherweise eine geteilte Datei ist. Bitte frage den Dateibesitzer, ob er die Datei nochmals mit Dir teilt." + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Unbekannter Fehler, bitte prüfe Deine Systemeinstellungen oder kontaktiere Deinen Administrator" + +#: hooks/hooks.php:59 msgid "Missing requirements." msgstr "Fehlende Vorraussetzungen" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Bitte stelle sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert." -#: hooks/hooks.php:249 +#: hooks/hooks.php:278 msgid "Following users are not set up for encryption:" msgstr "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "Initialverschlüsselung gestartet... Dies kann einige Zeit dauern. Bitte warten." + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Speichern..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Ihr privater Schlüssel ist ungültig! Eventuell wurde Ihr Passwort von außerhalb geändert." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Direkt wechseln zu Deinem" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Du kannst den privaten Schlüssel ändern und zwar in deinem" - -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "Private Einstellungen" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Verschlüsselung" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Wiederherstellungsschlüssel aktivieren (ermöglicht das Wiederherstellen von Dateien, falls das Passwort vergessen wurde):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Wiederherstellungsschlüssel-Passwort" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Schlüssel-Passwort zur Wiederherstellung wiederholen" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Aktiviert" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Deaktiviert" @@ -126,58 +148,62 @@ msgstr "Deaktiviert" msgid "Change recovery key password:" msgstr "Wiederherstellungsschlüssel-Passwort ändern:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Altes Wiederherstellungsschlüssel-Passwort" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Neues Wiederherstellungsschlüssel-Passwort" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "Neues Schlüssel-Passwort zur Wiederherstellung wiederholen" + +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Passwort ändern" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" -msgstr "Ihr Passwort für ihren privaten Schlüssel stimmt nicht mehr mit ihrem Loginpasswort überein." +msgstr "Das Passwort für Deinen privaten Schlüssel stimmt nicht mehr mit Deinem Loginpasswort überein." -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." -msgstr "Setzen Sie ihr altes Passwort für ihren privaten Schlüssel auf ihr aktuelles Login-Passwort" +msgstr "Setze Dein altes Passwort für Deinen privaten Schlüssel auf Dein aktuelles Login-Passwort" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "Wenn Sie Ihr altes Passwort vergessen haben, können Sie den Administrator bitten, Ihre Daten wiederherzustellen." +msgstr "Wenn Du Dein altes Passwort vergessen hast, könntest Du Deinen Administrator bitten, Deine Daten wiederherzustellen." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" -msgstr "Altes login Passwort" +msgstr "Altes Login Passwort" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Aktuelles Passwort" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Passwort für den privaten Schlüssel aktualisieren" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" -msgstr "Passwortwiederherstellung aktivvieren:" +msgstr "Passwortwiederherstellung aktivieren:" -#: templates/settings-personal.php:47 +#: 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 "Wenn Sie diese Option aktivieren, können Sie Ihre verschlüsselten Dateien wiederherstellen, falls Sie Ihr Passwort vergessen" +msgstr "Wenn Du diese Option aktivierst, kannst Du Deine verschlüsselten Dateien wiederherstellen, falls Du Dein Passwort vergisst" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Einstellungen zur Wiederherstellung von Dateien wurden aktualisiert" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Dateiwiederherstellung konnte nicht aktualisiert werden" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index e2285c753a0e89b57824ebeec9ce88b1f868360e..961094281a94cda49c641046272ab3cf274f6a70 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -7,18 +7,18 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Mirodin \n" -"Language-Team: German \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" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Zugriff gestattet" @@ -26,7 +26,7 @@ msgstr "Zugriff gestattet" msgid "Error configuring Dropbox storage" msgstr "Fehler beim Einrichten von Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Zugriff gestatten" @@ -34,24 +34,24 @@ msgstr "Zugriff gestatten" msgid "Please provide a valid Dropbox app key and secret." msgstr "Bitte trage einen gültigen Dropbox-App-Key mit Secret ein." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Fehler beim Einrichten von Google Drive" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitte Deinen System-Administrator, dies zu installieren." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wende Dich an Deinen Systemadministrator." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index ad1e84807eadd85a3bdfaba6db4ecc644bed0b83..dd4cb3df2b1687dbb78b0463cb57ee759a44edc6 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -5,14 +5,16 @@ # Translators: # Mario Siegmann , 2013 # Pwnicorn , 2013 +# Susi <>, 2013 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Mario Siegmann \n" -"Language-Team: German \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-06 10:50+0000\n" +"Last-Translator: Mirodin \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" "Content-Transfer-Encoding: 8bit\n" @@ -20,17 +22,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." -msgstr "Bitte überprüfen sie Ihr Passwort und versuchen Sie es erneut." +msgid "This share is password-protected" +msgstr "Diese Freigabe ist durch ein Passwort geschützt" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "Bitte überprüfe Dein Passwort und versuche es erneut." + +#: templates/authenticate.php:10 msgid "Password" msgstr "Passwort" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Absenden" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren." @@ -41,7 +43,7 @@ msgstr "Gründe könnten sein:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "Die Elemente wurden entfernt" +msgstr "Das Element wurde entfernt" #: templates/part.404.php:7 msgid "the link expired" @@ -53,30 +55,34 @@ msgstr "Teilen ist deaktiviert" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "Für mehr Informationen, frage bitte die Person, die dir diesen Link geschickt hat." +msgstr "Für mehr Informationen, frage bitte die Person, die Dir diesen Link geschickt hat." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Dir geteilt" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Dir geteilt" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Download" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" -msgstr "Hochladen" +msgstr "Upload" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Direkter Link" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 4d78f4aabd3f8e54de0c4ea683c2d53b146c28ae..4fc104f2c036b36c4c93826bf9bfaa1c1bd721ab 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -7,76 +7,52 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-16 01:29-0400\n" -"PO-Revision-Date: 2013-08-15 09:10+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: German \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-06 10:48+0000\n" +"Last-Translator: Mirodin \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" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:63 #, php-format msgid "Couldn't delete %s permanently" msgstr "Konnte %s nicht dauerhaft löschen" -#: ajax/undelete.php:42 +#: ajax/undelete.php:43 #, php-format msgid "Couldn't restore %s" msgstr "Konnte %s nicht wiederherstellen" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "Wiederherstellung ausführen" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 msgid "Error" msgstr "Fehler" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "Datei dauerhaft löschen" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Endgültig löschen" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Name" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "gelöscht" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n Ordner" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "%n Dateien" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:905 lib/trashbin.php:907 msgid "restored" msgstr "Wiederhergestellt" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nichts zu löschen, der Papierkorb ist leer!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:20 +msgid "Name" +msgstr "Name" + +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Wiederherstellen" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:31 +msgid "Deleted" +msgstr "gelöscht" + +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Löschen" diff --git a/l10n/de/files_versions.po b/l10n/de/files_versions.po index a59108a04125e5b83cc326d7d80810c0cc388a5b..a845ff87de8d03f1760273e27a38c84fcd39950b 100644 --- a/l10n/de/files_versions.po +++ b/l10n/de/files_versions.po @@ -4,14 +4,15 @@ # # Translators: # Mario Siegmann , 2013 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-29 01:56-0400\n" -"PO-Revision-Date: 2013-07-28 16:00+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-06 12:30+0000\n" "Last-Translator: Mario Siegmann \n" -"Language-Team: German \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" "Content-Transfer-Encoding: 8bit\n" @@ -23,22 +24,22 @@ msgstr "" msgid "Could not revert: %s" msgstr "Konnte %s nicht zurücksetzen" -#: js/versions.js:7 +#: js/versions.js:14 msgid "Versions" msgstr "Versionen" -#: js/versions.js:53 +#: js/versions.js:60 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "Konnte {file} der Revision {timestamp} nicht rückgänging machen." +msgstr "Konnte {file} der Revision {timestamp} nicht rückgängig machen." -#: js/versions.js:79 +#: js/versions.js:86 msgid "More versions..." -msgstr "Mehrere Versionen..." +msgstr "Weitere Versionen..." -#: js/versions.js:116 +#: js/versions.js:123 msgid "No other versions available" msgstr "Keine anderen Versionen verfügbar" -#: js/versions.js:149 +#: js/versions.js:154 msgid "Restore" msgstr "Wiederherstellen" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index c054df799c0356172ae0002bdef4a7104e0c24fb..3a4258bd2244c3402ea69f6fc4a022d3cf7f7850 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -10,329 +10,328 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:05+0000\n" -"Last-Translator: Mario Siegmann \n" -"Language-Team: German \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Applikation \"%s\" kann nicht installiert werden, da sie mit dieser ownCloud Version nicht kompatibel ist." -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "Es wurde kein Applikation-Name angegeben" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Hilfe" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Persönlich" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Einstellungen" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Benutzer" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Administration" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Individuelle Profilbilder werden noch nicht von der Verschlüsselung unterstützt" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Unbekannter Dateityp" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Ungültiges Bild" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Web-Services unter Deiner Kontrolle" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "Öffnen von \"%s\" fehlgeschlagen" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Lade die Dateien in kleineren, separaten, Stücken herunter oder bitte deinen Administrator." +msgstr "Bitte lade die Dateien einzeln in kleineren Teilen herunter oder bitte Deinen Administrator." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Für die Installation der Applikation wurde keine Quelle angegeben" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" -msgstr "Der Link (href) wurde nicht angegeben um die Applikation per http zu installieren" +msgstr "Für die Installation der Applikation über http wurde keine Quelle (href) angegeben" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Bei der Installation der Applikation aus einer lokalen Datei wurde kein Pfad angegeben" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Archive vom Typ %s werden nicht unterstützt" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Das Archiv konnte bei der Installation der Applikation nicht geöffnet werden" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "Die Applikation enthält keine info,xml Datei" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" -msgstr "Die Applikation kann auf Grund von unerlaubten Code nicht installiert werden" +msgstr "Die Applikation kann auf Grund von unerlaubtem Code nicht installiert werden" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Die Anwendung konnte nicht installiert werden, weil Sie nicht mit dieser Version von ownCloud kompatibel ist." -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" -msgstr "Die Applikation konnte nicht installiert werden, da diese das true Tag beinhaltet und dieses, bei nicht mitausgelieferten Applikationen, nicht erlaubt ist ist" +msgstr "Die Applikation konnte nicht installiert werden, da diese das true Tag beinhaltet und dieses, bei nicht mitausgelieferten Applikationen, nicht erlaubt ist" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Die Applikation konnte nicht installiert werden, da die Version in der info.xml nicht die gleiche Version wie im App-Store ist" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Das Applikationsverzeichnis existiert bereits" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "Es kann kein Applikationsordner erstellt werden. Bitte passen sie die Berechtigungen an. %s" +msgstr "Es kann kein Applikationsordner erstellt werden. Bitte passe die Berechtigungen an. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Die Anwendung ist nicht aktiviert" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Fehler bei der Anmeldung" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token abgelaufen. Bitte lade die Seite neu." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Dateien" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Text" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Bilder" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s gib den Datenbank-Benutzernamen an." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s gib den Datenbank-Namen an." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s Der Datenbank-Name darf keine Punkte enthalten" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL Benutzername und/oder Password ungültig: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Du musst entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL Benutzername und/oder Passwort ungültig" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Fehler: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Fehlerhafter Befehl war: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL Benutzer '%s'@'localhost' existiert bereits." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Lösche diesen Benutzer von MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL Benutzer '%s'@'%%' existiert bereits" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Lösche diesen Benutzer aus MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Es konnte keine Verbindung zur Oracle-Datenbank hergestellt werden" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Oracle Benutzername und/oder Passwort ungültig" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL Benutzername und/oder Passwort ungültig" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Setze Administrator Benutzername." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Bitte prüfe die Installationsanleitungen." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Die Kategorie \"%s\" konnte nicht gefunden werden." + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "Gerade eben" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" +msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" +msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "Heute" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "Gestern" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" -msgstr[0] "" +msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "Letzten Monat" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" +msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "Letztes Jahr" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "Vor Jahren" - -#: template.php:297 -msgid "Caused by:" -msgstr "Verursacht durch:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Die Kategorie \"%s\" konnte nicht gefunden werden." diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 4cf53d6658dc8c787aab553e0eb33c64a1cabdd7..2824738323e9c415c34baa50eb87265aa4b09661 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -7,15 +7,17 @@ # Mario Siegmann , 2013 # ninov , 2013 # Pwnicorn , 2013 +# noxin , 2013 # Mirodin , 2013 +# kabum , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: German \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-05 13:20+0000\n" +"Last-Translator: Mario Siegmann \n" +"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -32,12 +34,12 @@ msgid "Authentication error" msgstr "Fehler bei der Anmeldung" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Dein Anzeigename ist geändert worden." +msgid "Your full name has been changed." +msgstr "Dein vollständiger Name ist geändert worden." #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Das Ändern des Anzeigenamens ist nicht möglich" +msgid "Unable to change full name" +msgstr "Der vollständige Name konnte nicht geändert werden" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -122,11 +124,11 @@ msgstr "Passwort konnte nicht geändert werden" msgid "Update to {appversion}" msgstr "Aktualisiere zu {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Deaktivieren" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Aktivieren" @@ -134,31 +136,31 @@ msgstr "Aktivieren" msgid "Please wait...." msgstr "Bitte warten..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Beim Deaktivieren der Applikation ist ein Fehler aufgetreten" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Beim Aktivieren der Applikation ist ein Fehler aufgetreten" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Aktualisierung..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Fehler beim Aktualisieren der App" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Fehler" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Aktualisierung durchführen" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Aktualisiert" @@ -166,7 +168,7 @@ msgstr "Aktualisiert" msgid "Select a profile picture" msgstr "Wähle ein Profilbild" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "Entschlüssle Dateien ... Bitte warten, denn dieser Vorgang kann einige Zeit beanspruchen." @@ -186,44 +188,75 @@ msgstr "rückgängig machen" msgid "Unable to remove user" msgstr "Benutzer konnte nicht entfernt werden." -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Gruppen" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Gruppenadministrator" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Löschen" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "Gruppe hinzufügen" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "Beim Anlegen des Benutzers ist ein Fehler aufgetreten" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Warnung: Das Benutzerverzeichnis für den Benutzer \"{user}\" existiert bereits" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Deutsch (Persönlich)" -#: templates/admin.php:15 +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "Alles (fatale Probleme, Fehler, Warnungen, Infos, Debug-Meldungen)" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "Infos, Warnungen, Fehler und fatale Probleme" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "Warnungen, Fehler und fatale Probleme" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "Fehler und fatale Probleme" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "Nur fatale Probleme" + +#: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" msgstr "Sicherheitswarnung" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "Du greifst auf %s via HTTP zu. Wir empfehlen Dir dringend, Deinen Server so konfigurieren, das stattdessen HTTPS verlangt wird." + +#: templates/admin.php:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -232,48 +265,68 @@ msgid "" "root." msgstr "Dein Datenverzeichnis und deine Dateien sind möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten dir dringend, dass du deinen Webserver dahingehend konfigurierst, dass dein Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder du verschiebst das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers." -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Einrichtungswarnung" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." -msgstr "Bitte überprüfe die Instalationsanleitungen." +msgstr "Bitte überprüfe die Installationsanleitungen." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Modul 'fileinfo' fehlt " -#: templates/admin.php:47 +#: templates/admin.php:68 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 dieses Modul zu aktivieren um die besten Resultate bei der Erkennung der Dateitypen zu erreichen." -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "Deine PHP-Version ist veraltet" + +#: templates/admin.php:82 +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 "Deine PHP-Version ist veraltet. Wir empfehlen dringend auf die Version 5.3.8 oder neuer zu aktualisieren, da ältere Versionen kompromittiert werden können. Es ist möglich, dass diese Installation nicht richtig funktioniert." + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Ländereinstellung funktioniert nicht" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "Systemgebietsschema kann nicht auf eine UTF-8 unterstützende eingestellt werden." + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "Dies bedeutet, dass Probleme mit bestimmten Zeichen in den Dateinamen geben kann." + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "Die System-Ländereinstellung kann nicht auf %s geändert werden. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eine der folgenden Gebietsschemas unterstützt wird: %s." -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Keine Netzwerkverbindung" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -282,110 +335,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Führe eine Aufgabe mit jeder geladenen Seite aus" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php ist als Webcron-Dienst registriert, der die cron.php minütlich per HTTP aufruft." +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Benutze den System-Crondienst um die cron.php minütlich aufzurufen." +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Aktiviere Sharing-API" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Erlaubt Apps die Nutzung der Share-API" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Erlaubt Links" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Erlaubt Benutzern, Inhalte über öffentliche Links zu teilen" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Öffentliches Hochladen erlauben" -#: templates/admin.php:144 +#: templates/admin.php:187 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:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Erlaubt erneutes Teilen" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Benutzern ihrer Gruppe zu teilen" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Mail-Benachrichtigung erlauben" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" + +#: templates/admin.php:221 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Erzwinge HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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:191 +#: templates/admin.php:242 #, 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:203 +#: templates/admin.php:254 msgid "Log" msgstr "Log" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Loglevel" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Mehr" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Weniger" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Version" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Verwenden Sie diese Adresse, um via WebDAV auf Ihre Dateien zuzugreifen" +"Use this address to access your Files via " +"WebDAV" +msgstr "Verwenden Sie diese Adresse, um via WebDAV auf Ihre Dateien zuzugreifen" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Verschlüsselung" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "Die Anwendung zur Verschlüsselung ist nicht länger aktiv, all Ihre Dateien werden entschlüsselt." +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "Die Verschlüsselungsanwendung ist nicht länger aktiviert, bitte entschlüsseln Sie alle ihre Daten." -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Login-Passwort" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Alle Dateien entschlüsseln" @@ -577,6 +642,10 @@ msgstr "Geben Sie das Wiederherstellungspasswort ein, um die Benutzerdateien wä msgid "Default Storage" msgstr "Standard-Speicher" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "Bitte Speicherkontingent eingeben (z.B.: \"512 MB\" oder \"12 GB\")" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Unbegrenzt" @@ -594,8 +663,8 @@ msgid "Storage" msgstr "Speicher" #: templates/users.php:108 -msgid "change display name" -msgstr "Anzeigenamen ändern" +msgid "change full name" +msgstr "Vollständigen Namen ändern" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index aa8ba6bb140b628d11ce1a8cda389b430f95b07b..c060c2356272151662a80010312820d6aef2ee2a 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -10,11 +10,11 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" -"Last-Translator: Mario Siegmann \n" -"Language-Team: German \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -29,314 +29,425 @@ msgstr "Löschen der Zuordnung fehlgeschlagen." msgid "Failed to delete the server configuration" msgstr "Löschen der Serverkonfiguration fehlgeschlagen" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Die Konfiguration ist gültig und die Verbindung konnte hergestellt werden!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Die Konfiguration ist gültig aber die Verbindung ist fehlgeschlagen. Bitte überprüfe die Servereinstellungen und Anmeldeinformationen." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "Die Konfiguration ist ungültig, sieh für weitere Details bitte im ownCloud Log nach" +msgstr "Die Konfiguration ist ungültig. Weitere Details kannst Du in den Logdateien nachlesen." + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "Keine Aktion spezifiziert" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "Keine Konfiguration spezifiziert" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "Keine Daten spezifiziert" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "Die Konfiguration %s konnte nicht gesetzt werden" -#: js/settings.js:66 +#: js/settings.js:67 msgid "Deletion failed" msgstr "Löschen fehlgeschlagen" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Einstellungen von letzter Konfiguration übernehmen?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Einstellungen beibehalten?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Das Hinzufügen der Serverkonfiguration schlug fehl" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "Zuordnungen gelöscht" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Erfolgreich" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Fehler" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "Konfiguration OK" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "Konfiguration nicht korrekt" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "Konfiguration nicht vollständig" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Wähle Gruppen aus" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "Objekt-Klassen auswählen" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "Attribute auswählen" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Verbindungstest erfolgreich" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Verbindungstest fehlgeschlagen" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Möchtest Du die aktuelle Serverkonfiguration wirklich löschen?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Löschung bestätigen" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitte\ndeinen Systemadministator eine der beiden Anwendungen zu deaktivieren." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "%s Gruppe gefunden" +msgstr[1] "%s Gruppen gefunden" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "%s Benutzer gefunden" +msgstr[1] "%s Benutzer gefunden" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "Ungültiger Host" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "Konnte die gewünschte Funktion nicht finden" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Speichern" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Testkonfiguration" -#: templates/settings.php:12 +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Hilfe" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "Beschränke den Zugriff auf %s auf Gruppen, die die folgenden Kriterien erfüllen:" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "Nur diese Objekt-Klassen:" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "Nur von diesen Gruppen:" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "Original-Filter stattdessen bearbeiten" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "Original LDAP-Filter" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Warnung: Da das PHP-Modul für LDAP nicht installiert ist, wird das Backend nicht funktionieren. Bitte Deinen Systemadministrator das Modul zu installieren." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "Der Filter definiert welche LDAP-Gruppen Zugriff auf die %s Instanz haben sollen." -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Serverkonfiguration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "Gruppen gefunden" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "Welches Attribut soll als Login-Name verwendet werden:" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "LDAP-Benutzername:" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "LDAP E-Mail-Adresse:" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "Andere Attribute:" + +#: 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 "Bestimmt den Filter, welcher bei einer Anmeldung angewandt wird. %%uid ersetzt den Benutzernamen bei der Anmeldung. Beispiel: \"uid=%%uid\"" + +#: templates/part.wizard-server.php:18 msgid "Add Server Configuration" msgstr "Serverkonfiguration hinzufügen" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Host" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Du kannst das Protokoll auslassen, außer wenn Du SSL benötigst. Beginne dann mit ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Basis-DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Ein Basis-DN pro Zeile" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Du kannst Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Port" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "Benutzer-DN" -#: templates/settings.php:46 +#: 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 "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für anonymen Zugriff lasse DN und Passwort leer." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Passwort" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Lasse die Felder DN und Passwort für anonymen Zugang leer." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Benutzer-Login-Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Ein Basis-DN pro Zeile" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Du kannst Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "Beschränke den Zugriff auf %s auf Benutzer, die die folgenden Kriterien erfüllen:" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "Bestimmt den Filter, welcher bei einer Anmeldung angewandt wird. %%uid ersetzt den Benutzernamen bei der Anmeldung. Beispiel: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "Der Filter definiert welche LDAP-Benutzer Zugriff auf die %s Instanz haben sollen." -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Benutzer-Filter-Liste" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "Benutzer gefunden" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "Definiert den Filter für die Wiederherstellung eines Benutzers (kein Platzhalter). Beispiel: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Zurück" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Gruppen-Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Fortsetzen" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitte\ndeinen Systemadministator eine der beiden Anwendungen zu deaktivieren." -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "Definiert den Filter für die Wiederherstellung einer Gruppe (kein Platzhalter). Beispiel: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Warnung: Da das PHP-Modul für LDAP nicht installiert ist, wird das Backend nicht funktionieren. Bitte Deinen Systemadministrator das Modul zu installieren." -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Verbindungseinstellungen" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Konfiguration aktiv" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Konfiguration wird übersprungen wenn deaktiviert" -#: templates/settings.php:69 -msgid "Port" -msgstr "Port" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Backup Host (Kopie)" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Gib einen optionalen Backup Host an. Es muss sich um eine Kopie des Haupt LDAP/AD Servers handeln." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Backup Port" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Hauptserver deaktivieren" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "Nur zum Replikat-Server verbinden." -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Nutze TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Benutze es nicht zusammen mit LDAPS Verbindungen, es wird fehlschlagen." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Schalte die SSL-Zertifikatsprüfung aus." -#: templates/settings.php:75 +#: 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 "Nur für Testzwecke geeignet, sollte Standardmäßig nicht verwendet werden. Falls die Verbindung nur mit dieser Option funktioniert, importiere das SSL-Zertifikat des LDAP-Servers in deinen %s Server." -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Speichere Time-To-Live zwischen" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "in Sekunden. Eine Änderung leert den Cache." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Ordnereinstellungen" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Feld für den Anzeigenamen des Benutzers" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "Das LDAP-Attribut zur Generierung des Anzeigenamens des Benutzers." -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Basis-Benutzerbaum" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "Ein Benutzer Basis-DN pro Zeile" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "Benutzersucheigenschaften" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Optional; ein Attribut pro Zeile" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Feld für den Anzeigenamen der Gruppe" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "Das LDAP-Attribut zur Generierung des Anzeigenamens der Gruppen." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Basis-Gruppenbaum" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "Ein Gruppen Basis-DN pro Zeile" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Gruppensucheigenschaften" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Assoziation zwischen Gruppe und Benutzer" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Spezielle Eigenschaften" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Kontingent Feld" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Standard Kontingent" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "in Bytes" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "E-Mail Feld" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "Benennungsregel für das Home-Verzeichnis des Benutzers" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfall trage ein LDAP/AD-Attribut ein." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "Interner Benutzername" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -352,15 +463,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Standardmäßig wird der interne Benutzername mittels des UUID-Attributes erzeugt. Dies stellt sicher, dass der Benutzername einzigartig ist und keinerlei Zeichen konvertiert werden müssen. Der interne Benutzername unterliegt Beschränkungen, die nur die nachfolgenden Zeichen erlauben: [ a-zA-Z0-9_.@- ]. Andere Zeichen werden mittels ihrer korrespondierenden Zeichen ersetzt oder einfach ausgelassen. Bei Kollisionen wird ein Zähler hinzugefügt bzw. der Zähler um einen Wert erhöht. Der interne Benutzername wird benutzt, um einen Benutzer intern zu identifizieren. Es ist ebenso der standardmäßig vorausgewählte Namen des Heimatverzeichnisses. Es ist auch ein Teil der Remote-URLs - zum Beispiel für alle *DAV-Dienste. Mit dieser Einstellung kann das Standardverhalten überschrieben werden. Um ein ähnliches Verhalten wie vor ownCloud 5 zu erzielen, fügen Sie das anzuzeigende Attribut des Benutzernamens in das nachfolgende Feld ein. Lassen Sie dies hingegen für das Standardverhalten leer. Die Änderungen werden sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer auswirken." -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "Attribut für interne Benutzernamen:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "UUID-Erkennung überschreiben" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -371,15 +482,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Standardmäßig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Du musst allerdings sicherstellen, dass deine gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lasse es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus." -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID-Attribut:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "UUID-Attribute für Benutzer:" -#: templates/settings.php:104 +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "UUID-Attribute für Gruppen:" + +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "LDAP-Benutzernamenzuordnung" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -393,18 +508,10 @@ msgid "" "experimental stage." msgstr "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Lösche die Zuordnungen nur in einer Test- oder Experimentierumgebung." -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "Lösche LDAP-Benutzernamenzuordnung" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Lösche LDAP-Gruppennamenzuordnung" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Testkonfiguration" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Hilfe" diff --git a/l10n/de_AT/core.po b/l10n/de_AT/core.po index 0c8f3a25ae20d635034ebaf7305e2cd1fdc569cd..43986ced25a6a94baa0915a11da35daf1cc841d5 100644 --- a/l10n/de_AT/core.po +++ b/l10n/de_AT/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-08 03:26+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" @@ -18,13 +18,14 @@ msgstr "" "Language: de_AT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -52,45 +53,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -191,55 +153,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "" @@ -307,155 +269,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" +#: js/share.js:213 +msgid "Share with user or group …" msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -504,12 +494,12 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" msgstr "" #: lostpassword/templates/resetpassword.php:4 @@ -536,7 +526,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "" @@ -548,6 +538,34 @@ msgstr "" 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 "" @@ -564,108 +582,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -683,19 +712,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -703,10 +740,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " msgstr "" -#: templates/update.php:3 +#: 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/de_AT/files.po b/l10n/de_AT/files.po index 7c47140c8437327a1450bc8776d789a2d4696794..bb1821599caf1d729e494149ed31d4ed27642e63 100644 --- a/l10n/de_AT/files.po +++ b/l10n/de_AT/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06: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" @@ -27,220 +27,286 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" msgstr "" -#: js/fileactions.js:119 -msgid "Share" +#: js/file-upload.js:595 +msgid "Could not create file" msgstr "" -#: js/fileactions.js:131 -msgid "Delete permanently" +#: js/file-upload.js:611 +msgid "Could not create folder" msgstr "" -#: js/fileactions.js:197 -msgid "Rename" +#: js/file-upload.js:661 +msgid "Error fetching URL" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 -msgid "Pending" +#: js/fileactions.js:125 +msgid "Share" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/fileactions.js:137 +msgid "Delete permanently" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" +#: js/fileactions.js:194 +msgid "Rename" msgstr "" -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "" @@ -276,65 +342,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/de_AT/files_encryption.po b/l10n/de_AT/files_encryption.po index 59daa54beab84f48b383bc6a2924cf006f41590e..418f50879b0594c837f8584f4b95dd190f88b31d 100644 --- a/l10n/de_AT/files_encryption.po +++ b/l10n/de_AT/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:44 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 -msgid "Saving..." +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." +#: js/settings-admin.js:13 +msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/de_AT/files_sharing.po b/l10n/de_AT/files_sharing.po index 4e09271a0bb84356cb339d02ff9d3634b030c4b8..1e23d2030d922c7105309e0924b9daef006949b6 100644 --- a/l10n/de_AT/files_sharing.po +++ b/l10n/de_AT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:02+0000\n" +"POT-Creation-Date: 2013-10-21 13:01-0400\n" +"PO-Revision-Date: 2013-10-21 17:02+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" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" + +#: templates/public.php:98 +msgid "Direct link" +msgstr "" diff --git a/l10n/de_AT/files_trashbin.po b/l10n/de_AT/files_trashbin.po index a05dc1411b2fa2608006ab8174e61bed04c8aace..9f2eb2716b2ea79ccbdbd780f12e13742271f6e3 100644 --- a/l10n/de_AT/files_trashbin.po +++ b/l10n/de_AT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:814 lib/trashbin.php:816 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:23 msgid "Name" msgstr "" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:26 templates/index.php:28 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:34 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/de_AT/lib.po b/l10n/de_AT/lib.po index 7f3e0eafd0461c44d16d441b3a610390ef38c87c..49d351f3f82255742cc32f5e81c3edda85117950 100644 --- a/l10n/de_AT/lib.po +++ b/l10n/de_AT/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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,318 +17,317 @@ msgstr "" "Language: de_AT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/de_AT/settings.po b/l10n/de_AT/settings.po index c39c070ed506915444d48734ff21089b5d679321..4c5a8ee9bce236c052675bd10a5642f6359b4c42 100644 --- a/l10n/de_AT/settings.po +++ b/l10n/de_AT/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+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" @@ -28,11 +28,11 @@ msgid "Authentication error" msgstr "" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -118,11 +118,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -130,31 +130,31 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -162,7 +162,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -182,44 +182,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Deutsch (Österreich)" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -228,48 +259,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -278,110 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -573,6 +636,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -590,7 +657,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/de_AT/user_ldap.po b/l10n/de_AT/user_ldap.po index affcff22fbecefc97306676190f9a45f935d1ac3..132de651d9e8a5b8ce9b45dc494bf9fa370392e6 100644 --- a/l10n/de_AT/user_ldap.po +++ b/l10n/de_AT/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-27 17:09+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" @@ -25,314 +25,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "" -#: js/settings.js:141 +#: js/settings.js:777 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:786 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:795 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:812 js/settings.js:821 +msgid "Select groups" +msgstr "" + +#: js/settings.js:815 js/settings.js:824 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:818 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:845 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:852 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:861 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:862 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:779 lib/wizard.php:791 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:952 +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 "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "" diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index cb7631fdc2f0c33104338e2d28144aa399e0e791..deb192be2d4d5d33b9e20f23f562640f76763eed 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/core.po @@ -7,17 +7,18 @@ # FlorianScholz , 2013 # FlorianScholz , 2013 # I Robot , 2013 +# kenwood , 2013 # Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 # Mirodin , 2013 # SteinQuadrat, 2013 -# traductor , 2013 +# traductor , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,79 +27,41 @@ msgstr "" "Language: de_CH\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s teilt »%s« mit Ihnen" -#: ajax/share.php:227 -msgid "group" -msgstr "Gruppe" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" #: ajax/update.php:11 msgid "Turned on maintenance mode" -msgstr "" +msgstr "Wartungsmodus eingeschaltet" #: ajax/update.php:14 msgid "Turned off maintenance mode" -msgstr "" +msgstr "Wartungsmodus ausgeschaltet" #: ajax/update.php:17 msgid "Updated database" -msgstr "" +msgstr "Datenbank aktualisiert" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "" +msgstr "Aktualisiere Dateicache, dies könnte eine Weile dauern..." #: ajax/update.php:23 msgid "Updated filecache" -msgstr "" +msgstr "Dateicache aktualisiert" #: ajax/update.php:26 #, php-format msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Kategorie nicht angegeben." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Keine Kategorie hinzuzufügen?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Die nachfolgende Kategorie existiert bereits: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Objekttyp nicht angegeben." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID nicht angegeben." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Fehler beim Hinzufügen von %s zu den Favoriten." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Es wurden keine Kategorien zum Löschen ausgewählt." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Fehler beim Entfernen von %s von den Favoriten." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -195,59 +158,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "Heute" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "Gestern" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "Vor Jahren" @@ -315,155 +278,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Der Objekttyp ist nicht angegeben." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Fehler" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Der App-Name ist nicht angegeben." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Die benötigte Datei {file} ist nicht installiert!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Geteilt" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Teilen" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Fehler" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Fehler beim Teilen" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Fehler beim Aufheben der Freigabe" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Fehler bei der Änderung der Rechte" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Von {owner} mit Ihnen und der Gruppe {group} geteilt." -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Von {owner} mit Ihnen geteilt." -#: js/share.js:183 -msgid "Share with" -msgstr "Teilen mit" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "Über einen Link teilen" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Passwortschutz" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Passwort" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Öffentliches Hochladen erlauben" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Link per E-Mail verschicken" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Senden" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Ein Ablaufdatum setzen" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Ablaufdatum" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Mittels einer E-Mail teilen:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "Gruppe" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Das Weiterverteilen ist nicht erlaubt" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Freigegeben in {item} von {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "erstellen" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "aktualisieren" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "löschen" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "teilen" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Passwortgeschützt" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "Email gesendet" +#: js/share.js:769 +msgid "Warning" +msgstr "Warnung" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Der Objekttyp ist nicht angegeben." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Löschen" + +#: js/tags.js:31 +msgid "Add" +msgstr "Hinzufügen" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Der Link zum Rücksetzen Ihres Passworts ist an Ihre E-Mail-Adresse gesendet worde.
    Wenn Sie ihn nicht innerhalb einer vernünftigen Zeitspanne erhalten, prüfen Sie bitte Ihre Spam-Verzeichnisse.
    Wenn er nicht dort ist, fragen Sie Ihren lokalen Administrator." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Anfrage fehlgeschlagen!
    Haben Sie darauf geachtet, dass E-Mail-Adresse/Nutzername korrekt waren?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Benutzername" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -512,13 +503,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Ihre Dateien sind verschlüsselt. Wenn Sie den Wiederherstellungsschlüssel nicht aktiviert haben, wird es keine Möglichkeit geben, um Ihre Daten wiederzubekommen, nachdem Ihr Passwort zurückgesetzt wurde. Wenn Sie sich nicht sicher sind, was Sie tun sollen, wenden Sie sich bitte an Ihren Administrator, bevor Sie fortfahren. Wollen Sie wirklich fortfahren?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Ja, ich möchte jetzt mein Passwort wirklich zurücksetzen." -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Zurücksetzung anfordern" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Zurücksetzen" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -544,7 +535,7 @@ msgstr "Persönlich" msgid "Users" msgstr "Benutzer" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Apps" @@ -556,6 +547,34 @@ msgstr "Administrator" msgid "Help" msgstr "Hilfe" +#: 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 "Zugriff verboten" @@ -572,108 +591,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hallo,\n\nich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.\nSchauen Sie es sich an: %s\n\nViele Grüsse!" +msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Kategorien ändern" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Hinzufügen" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Sicherheitshinweis" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Ihre PHP Version ist durch die NULL Byte Attacke (CVE-2006-7243) angreifbar" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Bitte aktualisieren Sie Ihre PHP-Installation um %s sicher nutzen zu können." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Es ist kein sicherer Zufallszahlengenerator verfügbar, bitte aktivieren Sie die PHP-Erweiterung für OpenSSL." -#: templates/installation.php:33 +#: 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 "Ohne einen sicheren Zufallszahlengenerator sind Angreifer in der Lage, die Tokens für das Zurücksetzen der Passwörter vorherzusehen und Ihr Konto zu übernehmen." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich vom Internet aus erreichbar, weil die .htaccess-Datei nicht funktioniert." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "Für Informationen, wie Sie Ihren Server richtig konfigurieren lesen Sie bitte die Dokumentation." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Administrator-Konto anlegen" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Fortgeschritten" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Datenverzeichnis" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Datenbank einrichten" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "wird verwendet" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Installation abschliessen" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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 "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Abmelden" @@ -691,19 +721,27 @@ msgstr "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAcc msgid "Please change your password to secure your account again." msgstr "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "merken" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Einloggen" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Alternative Logins" @@ -711,10 +749,37 @@ msgstr "Alternative Logins" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Hallo,

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

    Viele Grüsse!" +"href=\"%s\">View it!

    " +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.php:3 +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "" diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index 0d4817bb295c3369d1de86bd14ac0744f375690a..3d90c347be1e57efbfb8101c290eebfeb1fbb89b 100644 --- a/l10n/de_CH/files.po +++ b/l10n/de_CH/files.po @@ -11,13 +11,13 @@ # Marcel Kühlhorn , 2013 # Mirodin , 2013 # SteinQuadrat, 2013 -# traductor , 2013 +# traductor , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -36,220 +36,286 @@ msgstr "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert msgid "Could not move %s" msgstr "Konnte %s nicht verschieben" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Der Dateiname darf nicht leer sein." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Ungültiges Merkmal" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Dateien" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Nicht genügend Speicherplatz verfügbar" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "Die URL darf nicht leer sein." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Ungültiger Ordnername. Die Verwendung von «Shared» ist ownCloud vorbehalten." +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Fehler" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} existiert bereits" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "Teilen" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} existiert bereits" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "ersetzen" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "Namen vorschlagen" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "abbrechen" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} wurde ersetzt durch {new_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n Ordner" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "%n Dateien" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hochgeladen" msgstr[1] "%n Dateien werden hochgeladen" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' ist kein gültiger Dateiname." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Der Dateiname darf nicht leer sein." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ungültiger Name, «\\», «/», «<», «>», «:», «\"», «|», «?» und «*» sind nicht zulässig." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ihr Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ihr Speicher ist fast voll ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ihr Download wird vorbereitet. Dies kann bei grösseren Dateien etwas dauern." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Fehler" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Name" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Grösse" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Geändert" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Hochladen" @@ -285,65 +351,69 @@ msgstr "Maximale Grösse für ZIP-Dateien" msgid "Save" msgstr "Speichern" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Neu" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "Textdatei" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Neues Verzeichnis" + +#: templates/index.php:10 msgid "Folder" msgstr "Ordner" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Von einem Link" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Gelöschte Dateien" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Sie haben hier keine Schreib-Berechtigungen." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Laden Sie etwas hoch!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Freigabe aufheben" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Löschen" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Der Upload ist zu gross" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgrösse für Uploads auf diesem Server." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de_CH/files_encryption.po b/l10n/de_CH/files_encryption.po index 774a24105153f864d2e897af00f9ddecb209f5b4..ca208fe78d443e2937d2e59cf034fcd87b1fe6cd 100644 --- a/l10n/de_CH/files_encryption.po +++ b/l10n/de_CH/files_encryption.po @@ -12,10 +12,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-27 11:18-0400\n" -"PO-Revision-Date: 2013-08-26 08:20+0000\n" -"Last-Translator: FlorianScholz \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -49,75 +49,96 @@ msgstr "Das Passwort wurde erfolgreich geändert." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort nicht richtig." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Das Passwort des privaten Schlüssels wurde erfolgreich aktualisiert." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von ausserhalb Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen." +"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:41 +#: hooks/hooks.php:59 msgid "Missing requirements." msgstr "Fehlende Voraussetzungen" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert." -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Speichern..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von ausserhalb geändert." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Sie können den privaten Schlüssel ändern und zwar in Ihrem" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "Persönliche Einstellungen" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Verschlüsselung" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherstellung des Zugangs zu den Benutzerdateien, wenn das Passwort verloren geht)." -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Wiederherstellungschlüsselpasswort" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Aktiviert" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Deaktiviert" @@ -125,58 +146,62 @@ msgstr "Deaktiviert" msgid "Change recovery key password:" msgstr "Wiederherstellungsschlüsselpasswort ändern" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Altes Wiederherstellungsschlüsselpasswort" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Neues Wiederherstellungsschlüsselpasswort " #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Passwort ändern" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Das Privatschlüsselpasswort darf nicht länger mit den Login-Passwort übereinstimmen." -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Setzen Sie Ihr altes Privatschlüsselpasswort auf Ihr aktuelles LogIn-Passwort." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Falls Sie sich nicht an Ihr altes Passwort erinnern können, fragen Sie bitte Ihren Administrator, um Ihre Dateien wiederherzustellen." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Altes Login-Passwort" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Momentanes Login-Passwort" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Das Passwort des privaten Schlüssels aktualisieren" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Die Passwort-Wiederherstellung aktivieren:" -#: templates/settings-personal.php:47 +#: 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 "Durch die Aktivierung dieser Option haben Sie die Möglichkeit, wieder auf Ihre verschlüsselten Dateien zugreifen zu können, wenn Sie Ihr Passwort verloren haben." -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Die Einstellungen für die Dateiwiederherstellung wurden aktualisiert." -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Die Dateiwiederherstellung konnte nicht aktualisiert werden." diff --git a/l10n/de_CH/files_external.po b/l10n/de_CH/files_external.po index 8d124a52de5003a9a08a62d89391cd6895f2bcc6..bf326e50f90524165985f51064b62841e43f337e 100644 --- a/l10n/de_CH/files_external.po +++ b/l10n/de_CH/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-07 14:02+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: FlorianScholz \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -38,20 +38,20 @@ msgstr "Bitte tragen Sie einen gültigen Dropbox-App-Key mit Secret ein." msgid "Error configuring Google Drive storage" msgstr "Fehler beim Einrichten von Google Drive" -#: lib/config.php:448 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Warnung: «smbclient» ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitten Sie Ihren Systemadministrator, dies zu installieren." -#: lib/config.php:451 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator." -#: lib/config.php:454 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/de_CH/files_sharing.po b/l10n/de_CH/files_sharing.po index 8616c16eb645c54d4bac9be4fce641bf96b2d2b6..3bf4f2e30fe6f48a3c47ebe270e53aa277fbe39b 100644 --- a/l10n/de_CH/files_sharing.po +++ b/l10n/de_CH/files_sharing.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: FlorianScholz \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,17 +21,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Das Passwort ist falsch. Bitte versuchen Sie es erneut." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Passwort" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Bestätigen" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren." @@ -56,28 +56,32 @@ msgstr "Teilen ist deaktiviert" msgid "For more info, please ask the person who sent this link." msgstr "Für mehr Informationen, fragen Sie bitte die Person, die Ihnen diesen Link geschickt hat." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Ihnen geteilt" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Ihnen geteilt" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Herunterladen" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Hochladen" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/de_CH/files_trashbin.po b/l10n/de_CH/files_trashbin.po index 5061816a4dcccc1a649f13c72be875945e0f8cf6..0e522a2028e2a6f54a79098555ff1b70afc1eee5 100644 --- a/l10n/de_CH/files_trashbin.po +++ b/l10n/de_CH/files_trashbin.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-27 11:18-0400\n" -"PO-Revision-Date: 2013-08-26 08:30+0000\n" -"Last-Translator: FlorianScholz \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,55 +30,31 @@ msgstr "Konnte %s nicht dauerhaft löschen" msgid "Couldn't restore %s" msgstr "Konnte %s nicht wiederherstellen" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "Wiederherstellung ausführen" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Fehler" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "Datei dauerhaft löschen" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Endgültig löschen" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Name" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "Gelöscht" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n Ordner" -msgstr[1] "%n Ordner" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n Datei" -msgstr[1] "%n Dateien" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "Wiederhergestellt" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nichts zu löschen, Ihr Papierkorb ist leer!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Name" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Wiederherstellen" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Gelöscht" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Löschen" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po index ff7512d924018515c8a78becd42b3c613ba536ee..60b3f52c359fcfa1213b5e892f047cf614acc809 100644 --- a/l10n/de_CH/lib.po +++ b/l10n/de_CH/lib.po @@ -6,13 +6,13 @@ # FlorianScholz , 2013 # FlorianScholz , 2013 # Mario Siegmann , 2013 -# traductor , 2013 +# traductor , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -21,318 +21,317 @@ msgstr "" "Language: de_CH\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Anwendung \"%s\" kann nicht installiert werden, da sie mit dieser Version von ownCloud nicht kompatibel ist." -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "Kein App-Name spezifiziert" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Hilfe" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Persönlich" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Einstellungen" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Benutzer" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Administrator" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "Öffnen von \"%s\" fehlgeschlagen" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu gross, um eine ZIP-Datei zu erstellen." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Laden Sie die Dateien in kleineren, separaten, Stücken herunter oder bitten Sie Ihren Administrator." +msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "Anwendung kann wegen nicht erlaubten Codes nicht installiert werden" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Anwendungsverzeichnis existiert bereits" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Die Anwendung ist nicht aktiviert" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Authentifizierungs-Fehler" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token abgelaufen. Bitte laden Sie die Seite neu." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Dateien" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Text" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Bilder" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s geben Sie den Datenbank-Benutzernamen an." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s geben Sie den Datenbank-Namen an." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s Der Datenbank-Name darf keine Punkte enthalten" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL Benutzername und/oder Passwort ungültig: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Sie müssen entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL Benutzername und/oder Passwort ungültig" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Fehler: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Fehlerhafter Befehl war: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL Benutzer '%s'@'localhost' existiert bereits." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Lösche diesen Benutzer aus MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL Benutzer '%s'@'%%' existiert bereits" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Lösche diesen Benutzer aus MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Die Oracle-Verbindung konnte nicht aufgebaut werden." -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Oracle Benutzername und/oder Passwort ungültig" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL Benutzername und/oder Passwort ungültig" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Setze Administrator Benutzername." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Bitte prüfen Sie die Installationsanleitungen." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Die Kategorie «%s» konnte nicht gefunden werden." + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "Gerade eben" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "Vor %n Minuten" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "Vor %n Stunden" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "Heute" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "Gestern" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "Vor %n Tagen" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "Letzten Monat" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "Vor %n Monaten" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "Letztes Jahr" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "Vor Jahren" - -#: template.php:297 -msgid "Caused by:" -msgstr "Verursacht durch:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Die Kategorie «%s» konnte nicht gefunden werden." diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po index 745b7eec826794434a294a4716cf4e3175364434..8d29ca87306ebe924f5ea59aa7eefa814731becb 100644 --- a/l10n/de_CH/settings.po +++ b/l10n/de_CH/settings.po @@ -11,13 +11,13 @@ # kabum , 2013 # Mario Siegmann , 2013 # Mirodin , 2013 -# traductor , 2013 +# traductor , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+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" @@ -36,12 +36,12 @@ msgid "Authentication error" msgstr "Authentifizierungs-Fehler" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Dein Anzeigename ist geändert worden." +msgid "Your full name has been changed." +msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Das Ändern des Anzeigenamens ist nicht möglich" +msgid "Unable to change full name" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -126,11 +126,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "Update zu {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Deaktivieren" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Aktivieren" @@ -138,31 +138,31 @@ msgstr "Aktivieren" msgid "Please wait...." msgstr "Bitte warten...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Fehler während der Deaktivierung der Anwendung" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Fehler während der Aktivierung der Anwendung" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Update..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Es ist ein Fehler während des Updates aufgetreten" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Fehler" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Update durchführen" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Aktualisiert" @@ -170,7 +170,7 @@ msgstr "Aktualisiert" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "Entschlüssel Dateien ... Bitte warten Sie, denn dieser Vorgang kann einige Zeit beanspruchen." @@ -190,44 +190,75 @@ msgstr "rückgängig machen" msgid "Unable to remove user" msgstr "Der Benutzer konnte nicht entfernt werden." -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Gruppen" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Gruppenadministrator" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Löschen" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "Gruppe hinzufügen" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "Beim Erstellen des Benutzers ist ein Fehler aufgetreten" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Deutsch (Schweiz)" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "Sicherheitshinweis" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -236,48 +267,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:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Einrichtungswarnung" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Bitte überprüfen Sie die Instalationsanleitungen." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Das Modul 'fileinfo' fehlt" -#: templates/admin.php:47 +#: templates/admin.php:68 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:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "Die Lokalisierung funktioniert nicht" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "Die System-Ländereinstellung kann nicht auf %s geändert werden. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Keine Internetverbindung" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -286,110 +337,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Eine Aufgabe bei jedem Laden der Seite ausführen" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php ist als Webcron-Dienst registriert, der die cron.php minütlich per HTTP aufruft." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Benutzen Sie den System-Crondienst um die cron.php minütlich aufzurufen." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Share-API aktivieren" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Anwendungen erlauben, die Share-API zu benutzen" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Links erlauben" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Erlaube öffentliches hochladen" -#: templates/admin.php:144 +#: templates/admin.php:187 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:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Erlaube Weiterverteilen" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "HTTPS erzwingen" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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:191 +#: templates/admin.php:242 #, 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:203 +#: templates/admin.php:254 msgid "Log" msgstr "Log" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Mehr" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Weniger" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Version" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Verwenden Sie diese Adresse, um auf ihre Dateien per WebDAV zuzugreifen." +"Use this address to access your Files via " +"WebDAV" +msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Verschlüsselung" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "Die Anwendung zur Verschlüsselung ist nicht länger aktiv, all Ihre Dateien werden entschlüsselt. " +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Login-Passwort" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Alle Dateien entschlüsseln" @@ -581,6 +644,10 @@ msgstr "Geben Sie das Wiederherstellungspasswort ein, um die Benutzerdateien wä msgid "Default Storage" msgstr "Standard-Speicher" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Unbegrenzt" @@ -598,8 +665,8 @@ msgid "Storage" msgstr "Speicher" #: templates/users.php:108 -msgid "change display name" -msgstr "Anzeigenamen ändern" +msgid "change full name" +msgstr "" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/de_CH/user_ldap.po b/l10n/de_CH/user_ldap.po index 04763d8c636bded0e66be510ca4637c08621f27c..e5935ea7894d18a1c1a5d7ad2504abfc40411611 100644 --- a/l10n/de_CH/user_ldap.po +++ b/l10n/de_CH/user_ldap.po @@ -10,14 +10,14 @@ # Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 # multimill , 2012 -# traductor , 2012-2013 +# traductor , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" -"Last-Translator: FlorianScholz \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,314 +33,425 @@ msgstr "Löschen der Zuordnung fehlgeschlagen." msgid "Failed to delete the server configuration" msgstr "Löschen der Serverkonfiguration fehlgeschlagen" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Die Konfiguration ist gültig und die Verbindung konnte hergestellt werden!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Die Konfiguration ist gültig aber die Verbindung ist fehlgeschlagen. Bitte überprüfen Sie die Servereinstellungen und die Anmeldeinformationen." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "Die Konfiguration ist ungültig, sehen Sie für weitere Details bitte im ownCloud Log nach" +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 "" -#: js/settings.js:66 +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 msgid "Deletion failed" msgstr "Löschen fehlgeschlagen" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Einstellungen von letzter Konfiguration übernehmen?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Einstellungen beibehalten?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Das Hinzufügen der Serverkonfiguration schlug fehl" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "Zuordnungen gelöscht" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Erfolg" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Fehler" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Wähle Gruppen" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Verbindungstest erfolgreich" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Verbindungstest fehlgeschlagen" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Möchten Sie die aktuelle Serverkonfiguration wirklich löschen?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Löschung bestätigen" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitten Sie Ihren Systemadministator eine der beiden Anwendungen zu deaktivieren." +#: 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:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Speichern" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Testkonfiguration" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Hilfe" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Warnung: Da das PHP-Modul für LDAP nicht installiert ist, wird das Backend nicht funktionieren. Bitten Sie Ihren Systemadministrator das Modul zu installieren." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Serverkonfiguration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +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 "Bestimmt den Filter, welcher bei einer Anmeldung angewandt wird. %%uid ersetzt den Benutzernamen bei der Anmeldung. Beispiel: \"uid=%%uid\"" + +#: templates/part.wizard-server.php:18 msgid "Add Server Configuration" msgstr "Serverkonfiguration hinzufügen" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Host" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Sie können das Protokoll auslassen, ausser wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Basis-DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Ein Basis-DN pro Zeile" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Sie können Basis-DN für Benutzer und Gruppen in dem «Erweitert»-Reiter konfigurieren" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Port" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "Benutzer-DN" -#: templates/settings.php:46 +#: 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 "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für einen anonymen Zugriff lassen Sie DN und Passwort leer." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Passwort" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Lassen Sie die Felder DN und Passwort für einen anonymen Zugang leer." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Benutzer-Login-Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Ein Basis-DN pro Zeile" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Sie können Basis-DN für Benutzer und Gruppen in dem «Erweitert»-Reiter konfigurieren" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "Bestimmt den Filter, welcher bei einer Anmeldung angewandt wird. %%uid ersetzt den Benutzernamen bei der Anmeldung. Beispiel: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Benutzer-Filter-Liste" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "Definiert den Filter für die Wiederherstellung eines Benutzers (kein Platzhalter). Beispiel: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Gruppen-Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "Definiert den Filter für die Wiederherstellung einer Gruppe (kein Platzhalter). Beispiel: \"objectClass=posixGroup\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitten Sie Ihren Systemadministator eine der beiden Anwendungen zu deaktivieren." + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Warnung: Da das PHP-Modul für LDAP nicht installiert ist, wird das Backend nicht funktionieren. Bitten Sie Ihren Systemadministrator das Modul zu installieren." -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Verbindungseinstellungen" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Konfiguration aktiv" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Wenn nicht angehakt, wird diese Konfiguration übersprungen." -#: templates/settings.php:69 -msgid "Port" -msgstr "Port" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Backup Host (Kopie)" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Geben Sie einen optionalen Backup Host an. Es muss sich um eine Kopie des Haupt LDAP/AD Servers handeln." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Backup Port" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Hauptserver deaktivieren" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "Nur zum Replikat-Server verbinden." -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Nutze TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Benutzen Sie es nicht in Verbindung mit LDAPS Verbindungen, es wird fehlschlagen." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "LDAP-Server (Windows: Gross- und Kleinschreibung bleibt unbeachtet)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Schalten Sie die SSL-Zertifikatsprüfung aus." -#: templates/settings.php:75 +#: 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 "Nur für Testzwecke geeignet, sollte Standardmäßig nicht verwendet werden. Falls die Verbindung nur mit dieser Option funktioniert, importieren Sie das SSL-Zertifikat des LDAP-Servers in Ihren %s Server." -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Speichere Time-To-Live zwischen" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "in Sekunden. Eine Änderung leert den Cache." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Ordnereinstellungen" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Feld für den Anzeigenamen des Benutzers" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "Das LDAP-Attribut zur Generierung des Anzeigenamens des Benutzers." -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Basis-Benutzerbaum" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "Ein Benutzer Basis-DN pro Zeile" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "Benutzersucheigenschaften" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Optional; ein Attribut pro Zeile" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Feld für den Anzeigenamen der Gruppe" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "Das LDAP-Attribut zur Generierung des Anzeigenamens der Gruppen." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Basis-Gruppenbaum" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "Ein Gruppen Basis-DN pro Zeile" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Gruppensucheigenschaften" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Assoziation zwischen Gruppe und Benutzer" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Spezielle Eigenschaften" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Kontingent-Feld" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Standard-Kontingent" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "in Bytes" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "E-Mail-Feld" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "Benennungsregel für das Home-Verzeichnis des Benutzers" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfalls tragen Sie bitte ein LDAP/AD-Attribut ein." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "Interner Benutzername" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -356,15 +467,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Standardmässig wird der interne Benutzername mittels des UUID-Attributes erzeugt. Dies stellt sicher, dass der Benutzername einzigartig ist und keinerlei Zeichen konvertiert werden müssen. Der interne Benutzername unterliegt Beschränkungen, die nur die nachfolgenden Zeichen erlauben: [ a-zA-Z0-9_.@- ]. Andere Zeichen werden mittels ihrer korrespondierenden Zeichen ersetzt oder einfach ausgelassen. Bei Kollisionen wird ein Zähler hinzugefügt bzw. der Zähler um einen Wert erhöht. Der interne Benutzername wird benutzt, um einen Benutzer intern zu identifizieren. Es ist ebenso der standardmässig vorausgewählte Namen des Heimatverzeichnisses. Es ist auch ein Teil der Remote-URLs - zum Beispiel für alle *DAV-Dienste. Mit dieser Einstellung kann das Standardverhalten überschrieben werden. Um ein ähnliches Verhalten wie vor ownCloud 5 zu erzielen, fügen Sie das anzuzeigende Attribut des Benutzernamens in das nachfolgende Feld ein. Lassen Sie dies hingegen für das Standardverhalten leer. Die Änderungen werden sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer auswirken." -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "Interne Eigenschaften des Benutzers:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "UUID-Erkennung überschreiben" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -375,15 +486,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Standardmässig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Ausserdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie müssen allerdings sicherstellen, dass Ihre gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus." -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID-Attribut:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "LDAP-Benutzernamenzuordnung" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -397,18 +512,10 @@ msgid "" "experimental stage." msgstr "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Löschen Sie die Zuordnungen nur in einer Test- oder Experimentierumgebung." -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "Lösche LDAP-Benutzernamenzuordnung" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Lösche LDAP-Gruppennamenzuordnung" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Testkonfiguration" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Hilfe" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index cfdcd679973914db06b578c7421a0e32cb882e48..d5844a27add9d369b70c8a13a725df48d7f49d91 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -8,31 +8,32 @@ # I Robot , 2013 # Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 -# traductor , 2013 +# traductor , 2013 # noxin , 2013 # Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-21 10:00+0000\n" -"Last-Translator: Mario Siegmann \n" -"Language-Team: German (Germany) \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" -msgstr "%s geteilt »%s« mit Ihnen" +msgstr "%s hat »%s« mit Ihnen geteilt" -#: ajax/share.php:227 -msgid "group" -msgstr "Gruppe" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "An folgende Benutzer konnte keine E-Mail gesendet werden: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -48,56 +49,17 @@ msgstr "Datenbank aktualisiert" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "Aktualisiere Dateicache, dies könnte eine Weile dauern..." +msgstr "Aktualisiere Datei-Cache, dies könnte eine Weile dauern..." #: ajax/update.php:23 msgid "Updated filecache" -msgstr "Dateicache aktualisiert" +msgstr "Datei-Cache aktualisiert" #: ajax/update.php:26 #, php-format msgid "... %d%% done ..." msgstr "... %d%% erledigt ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Kategorie nicht angegeben." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Keine Kategorie hinzuzufügen?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Die nachfolgende Kategorie existiert bereits: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Objekttyp nicht angegeben." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID nicht angegeben." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Fehler beim Hinzufügen von %s zu den Favoriten." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Es wurden keine Kategorien zum Löschen ausgewählt." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Fehler beim Entfernen von %s von den Favoriten." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Kein Bild oder Datei zur Verfügung gestellt" @@ -194,59 +156,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "Heute" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "Gestern" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "Vor Jahren" @@ -292,7 +254,7 @@ msgstr "Welche Dateien möchten Sie behalten?" msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "Wenn Siebeide Versionen auswählen, erhält die kopierte Datei eine Zahl am Ende des Dateinamens." +msgstr "Wenn Sie beide Versionen auswählen, erhält die kopierte Datei eine Zahl am Ende des Dateinamens." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -314,155 +276,183 @@ msgstr "({count} ausgewählt)" msgid "Error loading file exists template" msgstr "Fehler beim Laden der vorhanden Dateivorlage" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Der Objekttyp ist nicht angegeben." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Fehler" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Der App-Name ist nicht angegeben." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Die benötigte Datei {file} ist nicht installiert!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Geteilt" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Teilen" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Fehler" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Fehler beim Teilen" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Fehler beim Aufheben der Freigabe" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Fehler bei der Änderung der Rechte" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Von {owner} mit Ihnen und der Gruppe {group} geteilt." -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Von {owner} mit Ihnen geteilt." -#: js/share.js:183 -msgid "Share with" -msgstr "Teilen mit" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Mit Benutzer oder Gruppe teilen ...." -#: js/share.js:188 -msgid "Share with link" -msgstr "Über einen Link teilen" +#: js/share.js:219 +msgid "Share link" +msgstr "Link teilen" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Passwortschutz" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Passwort" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Öffentliches Hochladen erlauben" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Link per E-Mail verschicken" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Senden" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Ein Ablaufdatum setzen" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Ablaufdatum" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Mittels einer E-Mail teilen:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "Gruppe" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Das Weiterverteilen ist nicht erlaubt" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Freigegeben in {item} von {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "Per E-Mail informieren" + +#: js/share.js:408 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "erstellen" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "aktualisieren" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "löschen" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "teilen" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Passwortgeschützt" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "Email gesendet" +#: js/share.js:769 +msgid "Warning" +msgstr "Warnung" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Der Objekttyp ist nicht angegeben." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Neuen eingeben" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Löschen" + +#: js/tags.js:31 +msgid "Add" +msgstr "Hinzufügen" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Schlagwörter bearbeiten" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Fehler beim Laden der Dialogvorlage: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Es wurden keine Schlagwörter zum Löschen ausgewählt." + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "Bitte laden Sie diese Seite neu." + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Der Link zum Rücksetzen Ihres Passworts ist an Ihre E-Mail-Adresse gesendet worde.
    Wenn Sie ihn nicht innerhalb einer vernünftigen Zeitspanne erhalten, prüfen Sie bitte Ihre Spam-Verzeichnisse.
    Wenn er nicht dort ist, fragen Sie Ihren lokalen Administrator." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Anfrage fehlgeschlagen!
    Haben Sie darauf geachtet, dass E-Mail-Adresse/Nutzername korrekt waren?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Benutzername" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -511,13 +501,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Ihre Dateien sind verschlüsselt. Wenn Sie den Wiederherstellungsschlüssel nicht aktiviert haben, wird es keine Möglichkeit geben, um Ihre Daten wiederzubekommen, nachdem Ihr Passwort zurückgesetzt wurde. Wenn Sie sich nicht sicher sind, was Sie tun sollen, wenden Sie sich bitte an Ihren Administrator, bevor Sie fortfahren. Wollen Sie wirklich fortfahren?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Ja, ich möchte jetzt mein Passwort wirklich zurücksetzen." -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Zurücksetzung anfordern" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Zurücksetzen" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -543,7 +533,7 @@ msgstr "Persönlich" msgid "Users" msgstr "Benutzer" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Apps" @@ -555,6 +545,34 @@ msgstr "Administrator" msgid "Help" msgstr "Hilfe" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "Fehler beim Laden der Schlagwörter" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "Schlagwort ist bereits vorhanden" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "Fehler beim Löschen des Schlagwortes bzw. der Schlagwörter" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "Fehler beim Hinzufügen der Schlagwörter" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "Fehler beim Entfernen der Schlagwörter" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "Fehler beim Hinzufügen zu den Favoriten" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "Fehler beim Entfernen aus den Favoriten" + #: templates/403.php:12 msgid "Access forbidden" msgstr "Zugriff verboten" @@ -571,108 +589,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hallo,\n\nich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.\nSchauen Sie es sich an: %s\n\nViele Grüße!" +msgstr "Hallo,\n\n%s hat %s mit Ihnen geteilt.\nSchauen Sie es sich an: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Kategorien ändern" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "Die Freigabe wird am %s ablaufen." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Hinzufügen" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Noch einen schönen Tag!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Sicherheitshinweis" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Ihre PHP Version ist durch die NULL Byte Attacke (CVE-2006-7243) angreifbar" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Bitte aktualisieren Sie Ihre PHP-Installation um %s sicher nutzen zu können." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Es ist kein sicherer Zufallszahlengenerator verfügbar, bitte aktivieren Sie die PHP-Erweiterung für OpenSSL." -#: templates/installation.php:33 +#: 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 "Ohne einen sicheren Zufallszahlengenerator sind Angreifer in der Lage, die Tokens für das Zurücksetzen der Passwörter vorherzusehen und Ihr Konto zu übernehmen." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich vom Internet aus erreichbar, weil die .htaccess-Datei nicht funktioniert." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." -msgstr "Für Informationen, wie Sie Ihren Server richtig konfigurieren lesen Sie bitte die Dokumentation." +msgstr "Bitte lesen Sie die Dokumentation, um zu erfahren, wie Sie Ihr Server richtig konfigurieren können." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Administrator-Konto anlegen" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Fortgeschritten" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Datenverzeichnis" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Datenbank einrichten" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "wird verwendet" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Installation abschließen" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Abschließen ..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "Diese Anwendung benötigt ein aktiviertes JavaScript zum korrekten Betrieb. Bitte aktivieren Sie JavaScript und laden Sie diese Schnittstelle neu." + +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Abmelden" @@ -690,19 +719,27 @@ msgstr "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAcc msgid "Please change your password to secure your account again." msgstr "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "Die Authentifizierung auf dem Server ist fehlgeschlagen!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Bitte kontaktieren Sie Ihren Administrator." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "merken" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Einloggen" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Alternative Logins" @@ -710,10 +747,37 @@ msgstr "Alternative Logins" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Hallo,

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

    Viele Grüße!" +"href=\"%s\">View it!

    " +msgstr "Hallo,

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

    " -#: templates/update.php:3 +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "Diese ownClound-Instanz befindet sich derzeit im Einzelbenutzermodus." + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "Dies bedeutet, dass diese Instanz nur von Administratoren genutzt werden kann." + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "Kontaktieren Sie Ihren Systemadministrator, wenn diese Meldung dauerhaft oder unerwartet erscheint." + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "Vielen Dank für Ihre Geduld." + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "Diese ownCloud-Instanz wird gerade aktualisiert, was eine Weile dauert." + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "Bitte laden Sie diese Seite nach kurzer Zeit neu, um mit der Nutzung von ownCloud fortzufahren." diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index ce852eb583f656cf5e097b31239fa1e82a247c53..4dfeb00de56787fc88f2a7bcd404641429238164 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -8,18 +8,18 @@ # I Robot , 2013 # Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 -# traductor , 2013 +# traductor , 2013 # noxin , 2013 # Mirodin , 2013 # kabum , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:51-0400\n" -"PO-Revision-Date: 2013-09-21 10:00+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: Mario Siegmann \n" -"Language-Team: German (Germany) \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" "Content-Transfer-Encoding: 8bit\n" @@ -36,62 +36,107 @@ msgstr "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert msgid "Could not move %s" msgstr "Konnte %s nicht verschieben" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Der Dateiname darf nicht leer sein." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "Der Dateiname darf kein \"/\" enthalten. Bitte wählen Sie einen anderen Namen." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "Der Name %s wird bereits im Ordner %s benutzt. Bitte wählen Sie einen anderen Namen." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "Keine gültige Quelle" + +#: ajax/newfile.php:86 +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:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Fehler beim Herunterladen von %s nach %s" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Fehler beim Erstellen der Datei" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "Der Ordner-Name darf nicht leer sein." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "Der Ordner-Name darf kein \"/\" enthalten. Bitte wählen Sie einen anderen Namen." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Fehler beim Erstellen des Ordners" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Ungültiges Merkmal" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "Hochladen fehlgeschlagen. Dateiinformationen konnten nicht abgerufen werden." +msgstr "Hochladen fehlgeschlagen. Die Dateiinformationen konnten nicht abgerufen werden." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "Hochladen fehlgeschlagen. Hochgeladene Datei konnte nicht gefunden werden." +msgstr "Hochladen fehlgeschlagen. Die hochgeladene Datei konnte nicht gefunden werden." -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -99,157 +144,178 @@ msgstr "Ungültiges Verzeichnis." msgid "Files" msgstr "Dateien" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "Datei {filename} kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist" +msgstr "Die Datei {filename} kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Nicht genügend Speicherplatz verfügbar" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "Ergebnis konnte nicht vom Server abgerufen werden." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "Die URL darf nicht leer sein." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "Die URL darf nicht leer sein" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten." +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Fehler" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} existiert bereits" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Die Datei konnte nicht erstellt werden" -#: js/fileactions.js:119 +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Der Ordner konnte nicht erstellt werden" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Fehler beim Abrufen der URL" + +#: js/fileactions.js:125 msgid "Share" msgstr "Teilen" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} existiert bereits" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "ersetzen" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "Namen vorschlagen" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Die Datei konnte nicht umbenannt werden" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "abbrechen" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} wurde ersetzt durch {new_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Fehler beim Löschen der Datei." + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" msgstr[1] "%n Dateien" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} und {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hoch geladen" msgstr[1] "%n Dateien werden hoch geladen" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' ist kein gültiger Dateiname." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Der Dateiname darf nicht leer sein." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ihr Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ihr Speicher ist fast voll ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "Verschlüsselung-App ist aktiviert, aber Ihre Schlüssel sind nicht initialisiert. Bitte melden sich nochmals ab und wieder an." + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "Ungültiger privater Schlüssel für die Verschlüsselung-App. Bitte aktualisieren Sie Ihr privates Schlüssel-Passwort, um den Zugriff auf Ihre verschlüsselten Dateien wiederherzustellen." + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "Fehler beim Verschieben der Datei" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Fehler" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Name" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Größe" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Geändert" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert." + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Hochladen" @@ -285,65 +351,69 @@ msgstr "Maximale Größe für ZIP-Dateien" msgid "Save" msgstr "Speichern" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Neu" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "Neue Textdatei" + +#: templates/index.php:8 msgid "Text file" msgstr "Textdatei" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Neues Verzeichnis" + +#: templates/index.php:10 msgid "Folder" msgstr "Ordner" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Von einem Link" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Gelöschte Dateien" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Sie haben hier keine Schreib-Berechtigungen." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "Sie besitzen hier keine Berechtigung Dateien hochzuladen oder zu erstellen" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Laden Sie etwas hoch!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Freigabe aufheben" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Löschen" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Der Upload ist zu groß" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index 1571956a4cf949a3a2ec11e3fc48e1b3b8d7e46a..d6ec6d43f905a53f3474bc5694b89826a2d5e1a0 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -6,15 +6,15 @@ # ako84 , 2013 # Mario Siegmann , 2013 # JamFX , 2013 -# traductor , 2013 +# traductor , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-02 17:27-0500\n" +"PO-Revision-Date: 2013-11-29 19:30+0000\n" "Last-Translator: Mario Siegmann \n" -"Language-Team: German (Germany) \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" "Content-Transfer-Encoding: 8bit\n" @@ -47,75 +47,96 @@ msgstr "Das Passwort wurde erfolgreich geändert." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort nicht richtig." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Das Passwort des privaten Schlüssels wurde erfolgreich aktualisiert." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen." +"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 "Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuchen Sie sich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren." -#: hooks/hooks.php:41 +#: 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 "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde außerhalb von %s Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen." + +#: 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 "Die Datei kann nicht entschlüsselt werden, da die Datei möglicherweise eine geteilte Datei ist. Bitte fragen Sie den Datei-Besitzer, dass er die Datei nochmals mit Ihnen teilt." + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Unbekannter Fehler, bitte prüfen Sie die Systemeinstellungen oder kontaktieren Sie Ihren Administrator" + +#: hooks/hooks.php:59 msgid "Missing requirements." msgstr "Fehlende Voraussetzungen" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert." -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "Initialverschlüsselung gestartet... Dies kann einige Zeit dauern. Bitte warten." + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Speichern..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von außerhalb geändert." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Direkt wechseln zu Ihrem" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Sie können den privaten Schlüssel ändern und zwar in Ihrem" - -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "Persönliche Einstellungen" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Verschlüsselung" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherstellung des Zugangs zu den Benutzerdateien, wenn das Passwort verloren geht)." -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Wiederherstellungschlüsselpasswort" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Schlüssel-Passwort zur Wiederherstellung wiederholen" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Aktiviert" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Deaktiviert" @@ -123,58 +144,62 @@ msgstr "Deaktiviert" msgid "Change recovery key password:" msgstr "Wiederherstellungsschlüsselpasswort ändern" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Altes Wiederherstellungsschlüsselpasswort" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Neues Wiederherstellungsschlüsselpasswort " #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "Neues Schlüssel-Passwort zur Wiederherstellung wiederholen" + +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Passwort ändern" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Das Privatschlüsselpasswort darf nicht länger mit den Login-Passwort übereinstimmen." -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Setzen Sie Ihr altes Privatschlüsselpasswort auf Ihr aktuelles LogIn-Passwort." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Falls Sie sich nicht an Ihr altes Passwort erinnern können, fragen Sie bitte Ihren Administrator, um Ihre Dateien wiederherzustellen." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Altes Login-Passwort" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Momentanes Login-Passwort" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Das Passwort des privaten Schlüssels aktualisieren" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Die Passwort-Wiederherstellung aktivieren:" -#: templates/settings-personal.php:47 +#: 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 "Durch die Aktivierung dieser Option haben Sie die Möglichkeit, wieder auf Ihre verschlüsselten Dateien zugreifen zu können, wenn Sie Ihr Passwort verloren haben." -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Die Einstellungen für die Dateiwiederherstellung wurden aktualisiert." -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Die Dateiwiederherstellung konnte nicht aktualisiert werden." diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 7dc5677d12e749c5723e59ea9cfaef3eb8aae8af..fab43fb0db43e992d89b504c920f1ea0eaaded05 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -8,18 +8,18 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Mirodin \n" -"Language-Team: German (Germany) \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" "Content-Transfer-Encoding: 8bit\n" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Zugriff gestattet" @@ -27,7 +27,7 @@ msgstr "Zugriff gestattet" msgid "Error configuring Dropbox storage" msgstr "Fehler beim Einrichten von Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Zugriff gestatten" @@ -35,24 +35,24 @@ msgstr "Zugriff gestatten" msgid "Please provide a valid Dropbox app key and secret." msgstr "Bitte tragen Sie einen gültigen Dropbox-App-Key mit Secret ein." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Fehler beim Einrichten von Google Drive" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitten Sie Ihren Systemadministrator, dies zu installieren." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index efed1ad727abc30ef95b3a79a74f661965b1083c..971d8177eb2540cd51822961052b12c9c74fef2f 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -8,11 +8,11 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: Mario Siegmann \n" -"Language-Team: German (Germany) \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" "Content-Transfer-Encoding: 8bit\n" @@ -20,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Diese Freigabe ist durch ein Passwort geschützt" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Das Passwort ist falsch. Bitte versuchen Sie es erneut." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Passwort" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Bestätigen" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren." @@ -55,28 +55,32 @@ msgstr "Teilen ist deaktiviert" msgid "For more info, please ask the person who sent this link." msgstr "Für mehr Informationen, fragen Sie bitte die Person, die Ihnen diesen Link geschickt hat." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Ihnen geteilt" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Ihnen geteilt" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Herunterladen" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Hochladen" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Direkte Verlinkung" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 1875dbf8bfc1b42df7d5a03f165342397fb60ea9..2348bee919f9130fe67db7d82122214cc3758d0d 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -8,11 +8,11 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-16 01:29-0400\n" -"PO-Revision-Date: 2013-08-15 09:01+0000\n" -"Last-Translator: noxin \n" -"Language-Team: German (Germany) \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -29,55 +29,31 @@ msgstr "Konnte %s nicht dauerhaft löschen" msgid "Couldn't restore %s" msgstr "Konnte %s nicht wiederherstellen" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "Wiederherstellung ausführen" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Fehler" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "Datei dauerhaft löschen" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Endgültig löschen" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Name" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "Gelöscht" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n Ordner" -msgstr[1] "%n Ordner" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n Dateien" -msgstr[1] "%n Dateien" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "Wiederhergestellt" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nichts zu löschen, Ihr Papierkorb ist leer!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Name" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Wiederherstellen" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Gelöscht" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Löschen" diff --git a/l10n/de_DE/files_versions.po b/l10n/de_DE/files_versions.po index 56dd696d6d91b253e990c5a197a48eb6790d20f3..7facdad6e939922b105840ab69f9030e44936047 100644 --- a/l10n/de_DE/files_versions.po +++ b/l10n/de_DE/files_versions.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 21:33+0000\n" -"Last-Translator: a.tangemann \n" -"Language-Team: German (Germany) \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-06 12:30+0000\n" +"Last-Translator: Mario Siegmann \n" +"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -23,22 +23,22 @@ msgstr "" msgid "Could not revert: %s" msgstr "Konnte %s nicht zurücksetzen" -#: js/versions.js:7 +#: js/versions.js:14 msgid "Versions" msgstr "Versionen" -#: js/versions.js:53 +#: js/versions.js:60 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "Konnte {file} der Revision {timestamp} nicht rückgänging machen." +msgstr "Konnte {file} der Revision {timestamp} nicht rückgängig machen." -#: js/versions.js:79 +#: js/versions.js:86 msgid "More versions..." msgstr "Mehrere Versionen..." -#: js/versions.js:116 +#: js/versions.js:123 msgid "No other versions available" msgstr "Keine anderen Versionen verfügbar" -#: js/versions.js:149 +#: js/versions.js:154 msgid "Restore" msgstr "Wiederherstellen" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index e70bc08de29a0cb215cc018f31e5fa4cc1c2f787..25b901469e0e43bdb0a02f6d9ed29e07669367c4 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -4,334 +4,333 @@ # # Translators: # Mario Siegmann , 2013 -# traductor , 2013 +# traductor , 2013 # noxin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:05+0000\n" -"Last-Translator: Mario Siegmann \n" -"Language-Team: German (Germany) \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Applikation \"%s\" kann nicht installiert werden, da sie mit dieser ownCloud Version nicht kompatibel ist." -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "Es wurde kein Applikation-Name angegeben" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Hilfe" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Persönlich" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Einstellungen" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Benutzer" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Administrator" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Individuelle Profilbilder werden noch nicht von der Verschlüsselung unterstützt" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Unbekannter Dateityp" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Ungültiges Bild" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "Öffnen von \"%s\" fehlgeschlagen" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Laden Sie die Dateien in kleineren, separaten, Stücken herunter oder bitten Sie Ihren Administrator." +msgstr "Bitte laden Sie die Dateien einzeln in kleineren Teilen herunter oder bitten Sie Ihren Administrator." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Für die Installation der Applikation wurde keine Quelle angegeben" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Der Link (href) wurde nicht angegeben um die Applikation per http zu installieren" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Bei der Installation der Applikation aus einer lokalen Datei wurde kein Pfad angegeben" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Archive des Typs %s werden nicht unterstützt." -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Das Archiv konnte bei der Installation der Applikation nicht geöffnet werden" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "Die Applikation enthält keine info,xml Datei" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "Die Applikation kann auf Grund von unerlaubten Code nicht installiert werden" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Die Anwendung konnte nicht installiert werden, weil Sie nicht mit dieser Version von ownCloud kompatibel ist." -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Die Applikation konnte nicht installiert werden, da diese das true Tag beinhaltet und dieses, bei nicht mitausgelieferten Applikationen, nicht erlaubt ist ist" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Die Applikation konnte nicht installiert werden, da die Version in der info.xml nicht die gleiche Version wie im App-Store ist" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Der Ordner für die Anwendung existiert bereits." -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Der Ordner für die Anwendung konnte nicht angelegt werden. Bitte überprüfen Sie die Ordner- und Dateirechte und passen Sie diese entsprechend an. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Die Anwendung ist nicht aktiviert" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Authentifizierungs-Fehler" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token abgelaufen. Bitte laden Sie die Seite neu." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Dateien" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Text" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Bilder" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s geben Sie den Datenbank-Benutzernamen an." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s geben Sie den Datenbank-Namen an." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s Der Datenbank-Name darf keine Punkte enthalten" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL Benutzername und/oder Passwort ungültig: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Sie müssen entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL Benutzername und/oder Passwort ungültig" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Fehler: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Fehlerhafter Befehl war: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL Benutzer '%s'@'localhost' existiert bereits." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Lösche diesen Benutzer aus MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL Benutzer '%s'@'%%' existiert bereits" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Lösche diesen Benutzer aus MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Die Oracle-Verbindung konnte nicht aufgebaut werden." -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Oracle Benutzername und/oder Passwort ungültig" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL Benutzername und/oder Passwort ungültig" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Setze Administrator Benutzername." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Bitte prüfen Sie die Installationsanleitungen." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Die Kategorie \"%s\" konnte nicht gefunden werden." + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "Gerade eben" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "Heute" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "Gestern" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "Letzten Monat" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "Letztes Jahr" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "Vor Jahren" - -#: template.php:297 -msgid "Caused by:" -msgstr "Verursacht durch:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Die Kategorie \"%s\" konnte nicht gefunden werden." diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 3a889bcbca6b35a5b76cd3dc715e1bb33f8f1b73..42e8c8dc24846d142aa7b2f379a5747250386c66 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -6,18 +6,18 @@ # a.tangemann , 2013 # arkascha , 2013 # Mario Siegmann , 2013 -# traductor , 2013 +# traductor , 2013 # noxin , 2013 # Mirodin , 2013 # kabum , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: German (Germany) \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-05 13:20+0000\n" +"Last-Translator: Mario Siegmann \n" +"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,12 +34,12 @@ msgid "Authentication error" msgstr "Authentifizierungs-Fehler" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Dein Anzeigename ist geändert worden." +msgid "Your full name has been changed." +msgstr "Ihr vollständiger Name ist geändert worden." #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Das Ändern des Anzeigenamens ist nicht möglich" +msgid "Unable to change full name" +msgstr "Der vollständige Name konnte nicht geändert werden" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -124,11 +124,11 @@ msgstr "Passwort konnte nicht geändert werden" msgid "Update to {appversion}" msgstr "Update zu {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Deaktivieren" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Aktivieren" @@ -136,31 +136,31 @@ msgstr "Aktivieren" msgid "Please wait...." msgstr "Bitte warten...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Beim Deaktivieren der Applikation ist ein Fehler aufgetreten" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Beim Aktivieren der Applikation ist ein Fehler aufgetreten" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Update..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Es ist ein Fehler während des Updates aufgetreten" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Fehler" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Update durchführen" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Aktualisiert" @@ -168,7 +168,7 @@ msgstr "Aktualisiert" msgid "Select a profile picture" msgstr "Wählen Sie ein Profilbild" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "Entschlüssle Dateien ... Bitte warten Sie, denn dieser Vorgang kann einige Zeit beanspruchen." @@ -188,44 +188,75 @@ msgstr "rückgängig machen" msgid "Unable to remove user" msgstr "Der Benutzer konnte nicht entfernt werden." -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Gruppen" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Gruppenadministrator" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Löschen" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "Gruppe hinzufügen" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "Beim Erstellen des Benutzers ist ein Fehler aufgetreten" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Warnung: Das Benutzerverzeichnis für den Benutzer \"{user}\" existiert bereits" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Deutsch (Förmlich: Sie)" -#: templates/admin.php:15 +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "Alles (fatale Probleme, Fehler, Warnungen, Infos, Debug-Meldungen)" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "Infos, Warnungen, Fehler und fatale Probleme" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "Warnungen, Fehler und fatale Probleme" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "Fehler und fatale Probleme" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "Nur fatale Probleme" + +#: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" msgstr "Sicherheitshinweis" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "Sie greifen auf %s via HTTP zu. Wir empfehlen Ihnen dringend, Ihren Server so konfigurieren, das stattdessen HTTPS verlangt wird." + +#: templates/admin.php:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -234,48 +265,68 @@ msgid "" "root." msgstr "Ihr Datenverzeichnis und Ihre Dateien sind möglicherweise 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 außerhalb des Wurzelverzeichnisses des Webservers." -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Einrichtungswarnung" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Bitte überprüfen Sie die Instalationsanleitungen." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Das Modul 'fileinfo' fehlt" -#: templates/admin.php:47 +#: templates/admin.php:68 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:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "Ihre PHP-Version ist veraltet" + +#: templates/admin.php:82 +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 "Ihre PHP-Version ist veraltet. Wir empfehlen dringend auf die Version 5.3.8 oder neuer zu aktualisieren, da ältere Versionen kompromittiert werden können. Es ist möglich, dass diese Installation nicht richtig funktioniert." + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Die Lokalisierung funktioniert nicht" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "Systemgebietsschema kann nicht auf eine UTF-8 unterstützende eingestellt werden." + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "Dies bedeutet, dass Probleme mit bestimmten Zeichen in den Dateinamen geben kann." + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "Die System-Ländereinstellung kann nicht auf %s geändert werden. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eine der folgenden Gebietsschemas unterstützt wird: %s." -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Keine Internetverbindung" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -284,110 +335,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren, wenn Sie alle Funktionen nutzen wollen." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Eine Aufgabe bei jedem Laden der Seite ausführen" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php ist als Webcron-Dienst registriert, der die cron.php minütlich per HTTP aufruft." +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Benutzen Sie den System-Crondienst, um die cron.php minütlich aufzurufen." +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Share-API aktivieren" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Anwendungen erlauben, die Share-API zu benutzen" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Links erlauben" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Öffentliches Hochladen erlauben" -#: templates/admin.php:144 +#: templates/admin.php:187 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:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Erlaube Weiterverteilen" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Mail-Benachrichtigung erlauben" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" + +#: templates/admin.php:221 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "HTTPS erzwingen" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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:191 +#: templates/admin.php:242 #, 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:203 +#: templates/admin.php:254 msgid "Log" msgstr "Log" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Mehr" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Weniger" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Version" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Verwenden Sie diese Adresse, um auf ihre Dateien per WebDAV zuzugreifen." +"Use this address to access your Files via " +"WebDAV" +msgstr "Verwenden Sie diese Adresse, um via WebDAV auf Ihre Dateien zuzugreifen" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Verschlüsselung" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "Die Anwendung zur Verschlüsselung ist nicht länger aktiv, all Ihre Dateien werden entschlüsselt. " +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "Die Verschlüsselungsanwendung ist nicht länger aktiv, bitte entschlüsseln Sie alle ihre Daten" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Login-Passwort" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Alle Dateien entschlüsseln" @@ -579,6 +642,10 @@ msgstr "Geben Sie das Wiederherstellungspasswort ein, um die Benutzerdateien wä msgid "Default Storage" msgstr "Standard-Speicher" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "Bitte Speicherkontingent eingeben (z.B.: \"512 MB\" oder \"12 GB\")" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Unbegrenzt" @@ -596,8 +663,8 @@ msgid "Storage" msgstr "Speicher" #: templates/users.php:108 -msgid "change display name" -msgstr "Anzeigenamen ändern" +msgid "change full name" +msgstr "Vollständigen Namen ändern" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 09f58790782a203fe77bc5501e82fe882d22efa6..ea78203877f99218da061fc1d7f2032e69eff99b 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -7,16 +7,16 @@ # Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 # JamFX , 2013 -# traductor , 2013 +# traductor , 2013 # noxin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" -"Last-Translator: noxin \n" -"Language-Team: German (Germany) \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -31,314 +31,425 @@ msgstr "Löschen der Zuordnung fehlgeschlagen." msgid "Failed to delete the server configuration" msgstr "Löschen der Serverkonfiguration fehlgeschlagen" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Die Konfiguration ist gültig und die Verbindung konnte hergestellt werden!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Die Konfiguration ist gültig aber die Verbindung ist fehlgeschlagen. Bitte überprüfen Sie die Servereinstellungen und die Anmeldeinformationen." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "Die Konfiguration ist ungültig, sehen Sie für weitere Details bitte im ownCloud Log nach" +msgstr "Die Konfiguration ist ungültig. Weitere Details können Sie in den Logdateien nachlesen." + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "Keine Aktion spezifiziert" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "Keine Konfiguration spezifiziert" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "Keine Daten spezifiziert" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "Die Konfiguration %s konnte nicht gesetzt werden" -#: js/settings.js:66 +#: js/settings.js:67 msgid "Deletion failed" msgstr "Löschen fehlgeschlagen" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Einstellungen von letzter Konfiguration übernehmen?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Einstellungen beibehalten?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Das Hinzufügen der Serverkonfiguration schlug fehl" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "Zuordnungen gelöscht" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Erfolg" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Fehler" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "Konfiguration OK" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "Konfiguration nicht korrekt" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "Konfiguration nicht vollständig" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Wähle Gruppen" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "Objekt-Klassen auswählen" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "Attribute auswählen" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Verbindungstest erfolgreich" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Verbindungstest fehlgeschlagen" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Möchten Sie die aktuelle Serverkonfiguration wirklich löschen?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Löschung bestätigen" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitten Sie Ihren Systemadministator eine der beiden Anwendungen zu deaktivieren." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "%s Gruppe gefunden" +msgstr[1] "%s Gruppen gefunden" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "%s Benutzer gefunden" +msgstr[1] "%s Benutzer gefunden" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "Ungültiger Host" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "Konnte die gewünschte Funktion nicht finden" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Speichern" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Testkonfiguration" -#: templates/settings.php:12 +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Hilfe" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "Beschränke den Zugriff auf %s auf Gruppen, die die folgenden Kriterien erfüllen:" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "Nur diese Objekt-Klassen:" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "Nur von diesen Gruppen:" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "Original-Filter stattdessen bearbeiten" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "Original LDAP-Filter" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Warnung: Da das PHP-Modul für LDAP nicht installiert ist, wird das Backend nicht funktionieren. Bitten Sie Ihren Systemadministrator das Modul zu installieren." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "Der Filter definiert welche LDAP-Gruppen Zugriff auf die %s Instanz haben sollen." -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Serverkonfiguration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "Gruppen gefunden" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "Welches Attribut soll als Login-Name verwendet werden:" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "LDAP-Benutzername:" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "LDAP E-Mail-Adresse:" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "Andere Attribute:" + +#: 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 "Bestimmt den Filter, welcher bei einer Anmeldung angewandt wird. %%uid ersetzt den Benutzernamen bei der Anmeldung. Beispiel: \"uid=%%uid\"" + +#: templates/part.wizard-server.php:18 msgid "Add Server Configuration" msgstr "Serverkonfiguration hinzufügen" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Host" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Sie können das Protokoll auslassen, außer wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Basis-DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Ein Basis-DN pro Zeile" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Sie können Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Port" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "Benutzer-DN" -#: templates/settings.php:46 +#: 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 "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für einen anonymen Zugriff lassen Sie DN und Passwort leer." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Passwort" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Lassen Sie die Felder DN und Passwort für einen anonymen Zugang leer." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Benutzer-Login-Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Ein Basis-DN pro Zeile" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Sie können Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "Beschränke den Zugriff auf %s auf Benutzer, die die folgenden Kriterien erfüllen:" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "Bestimmt den Filter, welcher bei einer Anmeldung angewandt wird. %%uid ersetzt den Benutzernamen bei der Anmeldung. Beispiel: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "Der Filter definiert welche LDAP-Benutzer Zugriff auf die %s Instanz haben sollen." -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Benutzer-Filter-Liste" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "Benutzer gefunden" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "Definiert den Filter für die Wiederherstellung eines Benutzers (kein Platzhalter). Beispiel: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Zurück" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Gruppen-Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Fortsetzen" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitten Sie Ihren Systemadministator eine der beiden Anwendungen zu deaktivieren." -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "Definiert den Filter für die Wiederherstellung einer Gruppe (kein Platzhalter). Beispiel: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Warnung: Da das PHP-Modul für LDAP nicht installiert ist, wird das Backend nicht funktionieren. Bitten Sie Ihren Systemadministrator das Modul zu installieren." -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Verbindungseinstellungen" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Konfiguration aktiv" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Wenn nicht angehakt, wird diese Konfiguration übersprungen." -#: templates/settings.php:69 -msgid "Port" -msgstr "Port" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Backup Host (Kopie)" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Geben Sie einen optionalen Backup Host an. Es muss sich um eine Kopie des Haupt LDAP/AD Servers handeln." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Backup Port" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Hauptserver deaktivieren" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "Nur zum Replikat-Server verbinden." -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Nutze TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Benutzen Sie es nicht in Verbindung mit LDAPS Verbindungen, es wird fehlschlagen." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Schalten Sie die SSL-Zertifikatsprüfung aus." -#: templates/settings.php:75 +#: 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 "Nur für Testzwecke geeignet, sollte Standardmäßig nicht verwendet werden. Falls die Verbindung nur mit dieser Option funktioniert, importieren Sie das SSL-Zertifikat des LDAP-Servers in Ihren %s Server." -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Speichere Time-To-Live zwischen" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "in Sekunden. Eine Änderung leert den Cache." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Ordnereinstellungen" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Feld für den Anzeigenamen des Benutzers" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "Das LDAP-Attribut zur Generierung des Anzeigenamens des Benutzers." -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Basis-Benutzerbaum" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "Ein Benutzer Basis-DN pro Zeile" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "Benutzersucheigenschaften" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Optional; ein Attribut pro Zeile" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Feld für den Anzeigenamen der Gruppe" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "Das LDAP-Attribut zur Generierung des Anzeigenamens der Gruppen." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Basis-Gruppenbaum" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "Ein Gruppen Basis-DN pro Zeile" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Gruppensucheigenschaften" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Assoziation zwischen Gruppe und Benutzer" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Spezielle Eigenschaften" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Kontingent-Feld" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Standard-Kontingent" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "in Bytes" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "E-Mail-Feld" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "Benennungsregel für das Home-Verzeichnis des Benutzers" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfalls tragen Sie bitte ein LDAP/AD-Attribut ein." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "Interner Benutzername" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -354,15 +465,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Standardmäßig wird der interne Benutzername mittels des UUID-Attributes erzeugt. Dies stellt sicher, dass der Benutzername einzigartig ist und keinerlei Zeichen konvertiert werden müssen. Der interne Benutzername unterliegt Beschränkungen, die nur die nachfolgenden Zeichen erlauben: [ a-zA-Z0-9_.@- ]. Andere Zeichen werden mittels ihrer korrespondierenden Zeichen ersetzt oder einfach ausgelassen. Bei Kollisionen wird ein Zähler hinzugefügt bzw. der Zähler um einen Wert erhöht. Der interne Benutzername wird benutzt, um einen Benutzer intern zu identifizieren. Es ist ebenso der standardmäßig vorausgewählte Namen des Heimatverzeichnisses. Es ist auch ein Teil der Remote-URLs - zum Beispiel für alle *DAV-Dienste. Mit dieser Einstellung kann das Standardverhalten überschrieben werden. Um ein ähnliches Verhalten wie vor ownCloud 5 zu erzielen, fügen Sie das anzuzeigende Attribut des Benutzernamens in das nachfolgende Feld ein. Lassen Sie dies hingegen für das Standardverhalten leer. Die Änderungen werden sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer auswirken." -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "Interne Eigenschaften des Benutzers:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "UUID-Erkennung überschreiben" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -373,15 +484,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Standardmäßig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie müssen allerdings sicherstellen, dass Ihre gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus." -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID-Attribut:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "UUID-Attribute für Benutzer:" -#: templates/settings.php:104 +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "UUID-Attribute für Gruppen:" + +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "LDAP-Benutzernamenzuordnung" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -395,18 +510,10 @@ msgid "" "experimental stage." msgstr "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Löschen Sie die Zuordnungen nur in einer Test- oder Experimentierumgebung." -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "Lösche LDAP-Benutzernamenzuordnung" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Lösche LDAP-Gruppennamenzuordnung" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Testkonfiguration" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Hilfe" diff --git a/l10n/el/core.po b/l10n/el/core.po index 9b88a333be16ee51479db8468d8159bb74ad6a4f..b453459ddc9306bd2d136de9bae482b0e9dc3c2e 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -3,20 +3,22 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2013 # Efstathios Iosifidis , 2013 # KAT.RAT12 , 2013 # Teogramm , 2013 # Teogramm , 2013 +# vkehayas , 2013 # Wasilis , 2013 # Wasilis , 2013 # KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 20:50+0000\n" +"Last-Translator: vkehayas \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,98 +26,60 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "Ο %s διαμοιράστηκε μαζί σας το »%s«" -#: ajax/share.php:227 -msgid "group" -msgstr "ομάδα" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Αδυναμία αποστολής μηνύματος στους ακόλουθους χρήστες: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" -msgstr "" +msgstr "Η κατάσταση συντήρησης ενεργοποιήθηκε" #: ajax/update.php:14 msgid "Turned off maintenance mode" -msgstr "" +msgstr "Η κατάσταση συντήρησης απενεργοποιήθηκε" #: ajax/update.php:17 msgid "Updated database" -msgstr "" +msgstr "Ενημερωμένη βάση δεδομένων" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "" +msgstr "Ενημέρωση αποθηκευμένων αρχείων, αυτό μπορεί να πάρα πολύ ώρα..." #: ajax/update.php:23 msgid "Updated filecache" -msgstr "" +msgstr "Ενημέρωση αποθηκευμένων αρχείων" #: ajax/update.php:26 #, php-format msgid "... %d%% done ..." -msgstr "" - -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Δεν δώθηκε τύπος κατηγορίας." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Δεν έχετε κατηγορία να προσθέσετε;" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Αυτή η κατηγορία υπάρχει ήδη: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Δεν δώθηκε τύπος αντικειμένου." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "Δεν δώθηκε η ID για %s." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Σφάλμα προσθήκης %s στα αγαπημένα." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Δεν επιλέχτηκαν κατηγορίες για διαγραφή." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Σφάλμα αφαίρεσης %s από τα αγαπημένα." +msgstr "... %d%% ολοκληρώθηκαν ..." #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +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" -msgstr "" +msgstr "Δεν υπάρχει προσωρινή φωτογραφία προφίλ διαθέσιμη, δοκιμάστε ξανά" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "Δεν δόθηκαν δεδομένα περικοπής" #: js/config.php:32 msgid "Sunday" @@ -193,59 +157,59 @@ msgstr "Νοέμβριος" msgid "December" msgstr "Δεκέμβριος" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:866 +#: js/js.js:872 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:867 +#: js/js.js:873 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n λεπτό πριν" +msgstr[1] "%n λεπτά πριν" -#: js/js.js:868 +#: js/js.js:874 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n ώρα πριν" +msgstr[1] "%n ώρες πριν" -#: js/js.js:869 +#: js/js.js:875 msgid "today" msgstr "σήμερα" -#: js/js.js:870 +#: js/js.js:876 msgid "yesterday" msgstr "χτες" -#: js/js.js:871 +#: js/js.js:877 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n ημέρα πριν" +msgstr[1] "%n ημέρες πριν" -#: js/js.js:872 +#: js/js.js:878 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:873 +#: js/js.js:879 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n μήνας πριν" +msgstr[1] "%n μήνες πριν" -#: js/js.js:874 +#: js/js.js:880 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:875 +#: js/js.js:881 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:876 +#: js/js.js:882 msgid "years ago" msgstr "χρόνια πριν" @@ -255,7 +219,7 @@ msgstr "Επιλέξτε" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Σφάλμα κατά την φόρτωση προτύπου επιλογέα αρχείων: {σφάλμα}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -271,27 +235,27 @@ msgstr "Οκ" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Σφάλμα φόρτωσης προτύπου μηνυμάτων: {σφάλμα}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{count} αρχείο διαφέρει" +msgstr[1] "{count} αρχεία διαφέρουν" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Ένα αρχείο διαφέρει" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Ποια αρχεία θέλετε να κρατήσετε;" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Εάν επιλέξετε και τις δυο εκδοχές, ένας αριθμός θα προστεθεί στο αντιγραφόμενο αρχείο." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -299,169 +263,197 @@ msgstr "Άκυρο" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Συνέχεια" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(όλα τα επιλεγμένα)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} επιλέχθησαν)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Δεν καθορίστηκε ο τύπος του αντικειμένου." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Σφάλμα" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Δεν καθορίστηκε το όνομα της εφαρμογής." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Το απαιτούμενο αρχείο {file} δεν εγκαταστάθηκε!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Κοινόχρηστα" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Διαμοιρασμός" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Σφάλμα" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Σφάλμα κατά τον διαμοιρασμό" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Σφάλμα κατά το σταμάτημα του διαμοιρασμού" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Σφάλμα κατά την αλλαγή των δικαιωμάτων" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Διαμοιράστηκε με σας και με την ομάδα {group} του {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Διαμοιράστηκε με σας από τον {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Διαμοιρασμός με" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Διαμοιρασμός με χρήστη ή ομάδα ..." -#: js/share.js:188 -msgid "Share with link" -msgstr "Διαμοιρασμός με σύνδεσμο" +#: js/share.js:219 +msgid "Share link" +msgstr "Διαμοιρασμός συνδέσμου" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Προστασία συνθηματικού" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Συνθηματικό" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Να επιτρέπεται η Δημόσια Αποστολή" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Αποστολή συνδέσμου με email " -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Αποστολή" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Ορισμός ημ. λήξης" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Ημερομηνία λήξης" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Διαμοιρασμός μέσω email:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Δεν βρέθηκε άνθρωπος" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "ομάδα" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Ξαναμοιρασμός δεν επιτρέπεται" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Διαμοιρασμός του {item} με τον {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Σταμάτημα διαμοιρασμού" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "ειδοποίηση με email" + +#: js/share.js:408 msgid "can edit" msgstr "δυνατότητα αλλαγής" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "έλεγχος πρόσβασης" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "δημιουργία" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "ενημέρωση" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "διαγραφή" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "διαμοιρασμός" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Προστασία με συνθηματικό" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Σφάλμα κατά την διαγραφή της ημ. λήξης" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Σφάλμα κατά τον ορισμό ημ. λήξης" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Αποστολή..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "Το Email απεστάλη " +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Ο σύνδεσμος για να επανακτήσετε τον κωδικό σας έχει σταλεί στο email
    αν δεν το λάβετε μέσα σε ορισμένο διάστημα, ελέγξετε τους φακελλους σας spam/junk
    αν δεν είναι εκεί ρωτήστε τον τοπικό σας διαχειριστή " -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Η αίτηση απέτυχε! Βεβαιωθηκατε ότι το email σας / username ειναι σωστο? " -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Θα λάβετε ένα σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας μέσω ηλεκτρονικού ταχυδρομείου." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Όνομα χρήστη" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -510,13 +502,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Τα αρχεία σας είναι κρυπτογραφημένα. Εάν δεν έχετε ενεργοποιήσει το κλειδί ανάκτησης, δεν υπάρχει περίπτωση να έχετε πρόσβαση στα δεδομένα σας μετά την επαναφορά του συνθηματικού. Εάν δεν είστε σίγουροι τι να κάνετε, παρακαλώ επικοινωνήστε με τον διαχειριστή πριν συνεχίσετε. Θέλετε να συνεχίσετε;" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Ναι, θέλω να επαναφέρω το συνθηματικό μου τώρα." -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Επαναφορά αίτησης" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Επαναφορά" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -542,7 +534,7 @@ msgstr "Προσωπικά" msgid "Users" msgstr "Χρήστες" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Εφαρμογές" @@ -554,6 +546,34 @@ msgstr "Διαχειριστής" 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 "Δεν επιτρέπεται η πρόσβαση" @@ -570,108 +590,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Γεια σας,\n\nσας ενημερώνουμε ότι ο %s διαμοιράστηκε μαζί σας το %s.\nΔείτε το: %s\n\nΓεια χαρά!" +msgstr "Γειά χαρά,\n\nαπλά σας ενημερώνω πως ο %s μοιράστηκε το %s με εσάς.\nΔείτε το: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Επεξεργασία κατηγοριών" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "Ο διαμοιρασμός θα λήξει σε %s." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Προσθήκη" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Χαιρετισμούς!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Προειδοποίηση Ασφαλείας" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Η PHP ειναι ευαλωτη στην NULL Byte επιθεση (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Παρακαλώ ενημερώστε την εγκατάσταση της PHP ώστε να χρησιμοποιήσετε το %s με ασφάλεια." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Δεν είναι διαθέσιμο το πρόσθετο δημιουργίας τυχαίων αριθμών ασφαλείας, παρακαλώ ενεργοποιήστε το πρόσθετο της PHP, OpenSSL." -#: templates/installation.php:33 +#: 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:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Ο κατάλογος δεδομένων και τα αρχεία σας είναι πιθανό προσβάσιμα από το internet γιατί δεν δουλεύει το αρχείο .htaccess." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "Για πληροφορίες πως να ρυθμίσετε ορθά τον διακομιστή σας, παρακαλώ δείτε την τεκμηρίωση." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Δημιουργήστε έναν λογαριασμό διαχειριστή" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Για προχωρημένους" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Φάκελος δεδομένων" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Ρύθμιση της βάσης δεδομένων" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "θα χρησιμοποιηθούν" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Χρήστης της βάσης δεδομένων" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Συνθηματικό βάσης δεδομένων" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Όνομα βάσης δεδομένων" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Κενά Πινάκων Βάσης Δεδομένων" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Διακομιστής βάσης δεδομένων" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Ολοκλήρωση εγκατάστασης" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Ολοκλήρωση..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "Αυτή η εφαρμογή απαιτεί η JavaScript να είναι ενεργοποιημένη για σωστή λειτουργία. Παρακαλώ ενεργοποιήστε τη JavaScript και επαναφορτώστε αυτή τη διεπαφή." + +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s είναι διαθέσιμη. Δείτε περισσότερες πληροφορίες στο πώς να αναβαθμίσετε." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Αποσύνδεση" @@ -689,19 +720,27 @@ msgstr "Εάν δεν αλλάξατε το συνθηματικό σας προ msgid "Please change your password to secure your account again." msgstr "Παρακαλώ αλλάξτε το συνθηματικό σας για να ασφαλίσετε πάλι τον λογαριασμό σας." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "Η διαδικασία επικύρωσης απέτυχε από την πλευρά του διακομιστή!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Παρακαλώ επικοινωνήστε με τον διαχειριστή." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Ξεχάσατε το συνθηματικό σας;" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "απομνημόνευση" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Είσοδος" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Εναλλακτικές Συνδέσεις" @@ -709,10 +748,37 @@ msgstr "Εναλλακτικές Συνδέσεις" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Γεια σας,

    σας ενημερώνουμε ότι ο %s διαμοιράστηκε μαζί σας το »%s«.
    Δείτε το!

    Γεια χαρά!" +"href=\"%s\">View it!

    " +msgstr "Γειά χαρά,

    απλά σας ενημερώνω πως ο %s μοιράστηκε το »%s« με εσάς.
    Δείτε το!

    " -#: templates/update.php:3 +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "Αυτή η εγκατάσταση ownCloud είναι τώρα σε κατάσταση ενός χρήστη." + +#: 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 "Ενημερώνοντας το ownCloud στην έκδοση %s,μπορεί να πάρει λίγο χρόνο." + +#: 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 "Παρακαλώ ανανεώστε αυτή τη σελίδα μετά από ένα σύντομο χρονικό διάστημα ώστε να συνεχίσετε να χρησιμοποιείτε το ownCloud." diff --git a/l10n/el/files.po b/l10n/el/files.po index 87c112acc670ac2b71e8c37587c4b0dcf5632a37..84a38b5c6e99cc1cef993a03c24697d09bdc0123 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -7,13 +7,14 @@ # Efstathios Iosifidis , 2013 # gtsamis , 2013 # frerisp , 2013 +# vkehayas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-27 00:01-0400\n" -"PO-Revision-Date: 2013-09-25 12:10+0000\n" -"Last-Translator: gtsamis \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 20:50+0000\n" +"Last-Translator: vkehayas \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,62 +32,107 @@ msgstr "Αδυναμία μετακίνησης του %s - υπάρχει ήδ msgid "Could not move %s" msgstr "Αδυναμία μετακίνησης του %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Το όνομα αρχείου δεν μπορεί να είναι κενό." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "Το όνομα αρχείου δεν μπορεί να περιέχει \"/\". Παρακαλώ επιλέξτε ένα διαφορετικό όνομα. " + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "Το όνομα %s χρησιμοποιείτε ήδη στον φάκελο %s. Παρακαλώ επιλέξτε ένα άλλο όνομα." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "Μη έγκυρη πηγή" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "Ο διακομιστής δεν επιτρέπεται να ανοίγει URL, παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Σφάλμα κατά τη λήψη του %s στο %s" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Σφάλμα κατά τη δημιουργία του αρχείου" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "Το όνομα φακέλου δεν μπορεί να είναι κενό." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "Το όνομα φακέλου δεν μπορεί να περιέχει \"/\". Παρακαλώ επιλέξτε ένα διαφορετικό όνομα. " + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Σφάλμα δημιουργίας φακέλου" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Αδυναμία ορισμού καταλόγου αποστολής." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Μη έγκυρο Token" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Το αρχείο που εστάλει υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"upload_max_filesize\" του php.ini" -#: ajax/upload.php:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Το αρχείο εστάλει μόνο εν μέρει" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Κανένα αρχείο δεν στάλθηκε" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Λείπει ο προσωρινός φάκελος" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Αποτυχία εγγραφής στο δίσκο" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Μη επαρκής διαθέσιμος αποθηκευτικός χώρος" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Η φόρτωση απέτυχε. Αδυναμία λήψης πληροφοριών αρχείων." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Η φόρτωση απέτυχε. Αδυναμία εύρεσης αρχείου προς φόρτωση." -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Μη έγκυρος φάκελος." @@ -94,157 +140,178 @@ msgstr "Μη έγκυρος φάκελος." msgid "Files" msgstr "Αρχεία" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "Αδυναμία φόρτωσης {filename} καθώς είναι κατάλογος αρχείων ή έχει 0 bytes" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Δεν υπάρχει αρκετός διαθέσιμος χώρος" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Η αποστολή ακυρώθηκε." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "" +msgstr "Αδυναμία λήψης αποτελέσματος από το διακομιστή." -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή." -#: js/file-upload.js:520 -msgid "URL cannot be empty." -msgstr "Η URL δεν μπορεί να είναι κενή." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "Η URL δεν πρέπει να είναι κενή" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του 'Κοινόχρηστος' χρησιμοποιείται από το ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "Στον αρχικό φάκελο το όνομα 'Shared' διατηρείται από το σύστημα" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Σφάλμα" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} υπάρχει ήδη" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Αδυναμία δημιουργίας αρχείου" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Αδυναμία δημιουργίας φακέλου" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Σφάλμα φόρτωσης URL" -#: js/fileactions.js:119 +#: js/fileactions.js:125 msgid "Share" msgstr "Διαμοιρασμός" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Μόνιμη διαγραφή" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Μετονομασία" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Εκκρεμεί" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} υπάρχει ήδη" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "αντικατέστησε" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Αδυναμία μετονομασίας αρχείου" -#: js/filelist.js:416 -msgid "suggest name" -msgstr "συνιστώμενο όνομα" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "ακύρωση" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "αντικαταστάθηκε το {new_name} με {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "αναίρεση" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Σφάλμα διαγραφής αρχείου." + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n φάκελος" msgstr[1] "%n φάκελοι" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n αρχείο" msgstr[1] "%n αρχεία" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" -msgstr "" +msgstr "{Κατάλογοι αρχείων} και {αρχεία}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Ανέβασμα %n αρχείου" msgstr[1] "Ανέβασμα %n αρχείων" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' είναι μη έγκυρο όνομα αρχείου." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Το όνομα αρχείου δεν μπορεί να είναι κενό." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ο αποθηκευτικός σας χώρος είναι γεμάτος, τα αρχεία δεν μπορούν να ενημερωθούν ή να συγχρονιστούν πια!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ο αποθηκευτικός χώρος είναι σχεδόν γεμάτος ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "Η εφαρμογή κρυπτογράφησης είναι ενεργοποιημένη αλλά τα κλειδιά σας δεν έχουν καταγραφεί, παρακαλώ αποσυνδεθείτε και επανασυνδεθείτε." + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "Άκυρο προσωπικό κλειδί για την εφαρμογή κρυπτογράφησης. Παρακαλώ ενημερώστε τον κωδικό του προσωπικού κλειδίου σας στις προσωπικές ρυθμίσεις για να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία." + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Η κρυπτογράφηση απενεργοποιήθηκε, αλλά τα αρχεία σας είναι ακόμα κρυπτογραφημένα. Παρακαλούμε απενεργοποιήσετε την κρυπτογράφηση αρχείων από τις προσωπικές σας ρυθμίσεις" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Η λήψη προετοιμάζεται. Αυτό μπορεί να πάρει ώρα εάν τα αρχεία έχουν μεγάλο μέγεθος." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "Σφάλμα κατά τη μετακίνηση του αρχείου" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Σφάλμα" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Όνομα" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Τροποποιήθηκε" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Άκυρο όνομα φακέλου. Η χρήση του 'Shared' διατηρείται από το σύστημα." + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "Αδυναμία μετονομασίας του %s" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Μεταφόρτωση" @@ -280,65 +347,69 @@ msgstr "Μέγιστο μέγεθος για αρχεία ZIP" msgid "Save" msgstr "Αποθήκευση" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Νέο" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "Νέο αρχείο κειμένου" + +#: templates/index.php:8 msgid "Text file" msgstr "Αρχείο κειμένου" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Νέος κατάλογος" + +#: templates/index.php:10 msgid "Folder" msgstr "Φάκελος" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Από σύνδεσμο" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Διαγραμμένα αρχεία" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Ακύρωση αποστολής" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Δεν έχετε δικαιώματα εγγραφής εδώ." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "Δεν έχετε δικαιώματα φόρτωσης ή δημιουργίας αρχείων εδώ" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Δεν υπάρχει τίποτα εδώ. Ανεβάστε κάτι!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Λήψη" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Σταμάτημα διαμοιρασμού" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Διαγραφή" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Πολύ μεγάλο αρχείο προς αποστολή" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν τον διακομιστή." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Τρέχουσα ανίχνευση" diff --git a/l10n/el/files_encryption.po b/l10n/el/files_encryption.po index 8cb29d786403323a67992bacec296aeac473567d..18e02898e39314f2b01f5094a188f82dd60b7a25 100644 --- a/l10n/el/files_encryption.po +++ b/l10n/el/files_encryption.po @@ -4,15 +4,17 @@ # # Translators: # Efstathios Iosifidis , 2013 +# Marios Bekatoros <>, 2013 # Teogramm , 2013 # Teogramm , 2013 +# vkehayas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-28 01:55-0500\n" +"PO-Revision-Date: 2013-12-27 15:42+0000\n" +"Last-Translator: vkehayas \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,21 +24,21 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "" +msgstr "Επιτυχής ενεργοποίηση κλειδιού ανάκτησης" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "Αποτυχία ενεργοποίησης κλειδιού ανάκτησης. Παρακαλώ ελέγξτε τον κωδικό του κλειδιού ανάκτησής σας!" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "" +msgstr "Επιτυχής απενεργοποίηση κλειδιού ανάκτησης" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "Αποτυχία απενεργοποίησης κλειδιού ανάκτησης. Παρακαλώ ελέγξτε τον κωδικό του κλειδιού ανάκτησής σας!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." @@ -46,134 +48,159 @@ msgstr "Ο κωδικός αλλάχτηκε επιτυχώς." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Αποτυχία αλλαγής κωδικού ίσως ο παλιός κωδικός να μην ήταν σωστός." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "" +msgstr "Το Προσωπικό κλειδί πρόσβασης ενημερώθηκε επιτυχώς" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "Αποτυχία ενημέρωσης του κωδικού για το προσωπικό κλειδί. Ενδεχομένως ο παλιός κωδικός δεν ήταν σωστός." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "" +"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 "Το προσωπικό σας κλειδί δεν είναι έγκυρο! Πιθανόν ο κωδικός σας να άλλαξε έξω από το %s (π.χ. τη λίστα διευθύνσεων της εταιρείας σας). Μπορείτε να ενημερώσετε το προσωπικό σας κλειδί επαναφοράς κωδικού στις προσωπικές σας ρυθμίσεις για να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία." + +#: 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 "Δεν ήταν δυνατό να αποκρυπτογραφηθεί αυτό το αρχείο, πιθανόν πρόκειται για κοινόχρηστο αρχείο. Παρακαλώ ζητήστε από τον ιδιοκτήτη του αρχείου να το ξαναμοιραστεί μαζί σας." -#: hooks/hooks.php:41 +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Άγνωστο σφάλμα, παρακαλώ ελέγξτε τις ρυθμίσεις συστήματος ή επικοινωνήστε με τον διαχειριστή σας " + +#: hooks/hooks.php:62 msgid "Missing requirements." -msgstr "" +msgstr "Προαπαιτούμενα που απουσιάζουν." -#: hooks/hooks.php:42 +#: hooks/hooks.php:63 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "Παρακαλώ επιβεβαιώστε ότι η PHP 5.3.3 ή νεότερη είναι εγκατεστημένη και ότι το OpenSSL μαζί με το PHP extension είναι ενεργοποιήμένο και έχει ρυθμιστεί σωστά. Προς το παρόν, η εφαρμογή κρυπτογράφησης είναι απενεργοποιημένη." -#: hooks/hooks.php:249 +#: hooks/hooks.php:281 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Οι κάτωθι χρήστες δεν έχουν ρυθμιστεί για κρυπογράφηση:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "Η αρχική κρυπτογράφηση άρχισε... Αυτό μπορεί να πάρει κάποια ώρα. Παρακαλώ περιμένετε." + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Γίνεται αποθήκευση..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Πηγαίνε απευθείας στο " -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "προσωπικές ρυθμίσεις" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Κρυπτογράφηση" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Ενεργοποίηση κλειδιού ανάκτησης (επιτρέψτε την ανάκτηση αρχείων χρηστών σε περίπτωση απώλειας κωδικού):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" -msgstr "" +msgstr "Επαναφορά κωδικού κλειδιού" + +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Επαναλάβετε το κλειδί επαναφοράς κωδικού" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Ενεργοποιημένο" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Απενεργοποιημένο" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Αλλαγή κλειδιού επαναφοράς κωδικού:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" -msgstr "" +msgstr "Παλιό κλειδί επαναφοράς κωδικού" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" -msgstr "" +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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Ο κωδικός του προσωπικού κλειδιού δεν ταιριάζει πλέον με τον κωδικό σύνδεσής σας:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Ορίστε το παλιό σας προσωπικό κλειδί ως τον τρέχων κωδικό πρόσβασης." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Εάν δεν θυμάστε τον παλιό σας κωδικό μπορείτε να ζητήσετε από τον διαχειριστή σας να επανακτήσει τα αρχεία σας." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" -msgstr "" +msgstr "Παλαιό συνθηματικό εισόδου" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" -msgstr "" +msgstr "Τρέχον συνθηματικό πρόσβασης" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" -msgstr "" +msgstr "Ενημέρωση Προσωπικού Κλειδού Πρόσβασης" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" -msgstr "" +msgstr "Ενεργοποιήστε την ανάκτηση κωδικού πρόσβασης" -#: templates/settings-personal.php:47 +#: 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 "" +msgstr "Η ενεργοποίηση αυτής της επιλογής θα σας επιτρέψει να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία σε περίπτωση απώλειας του κωδικού σας" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Οι ρυθμίσεις επαναφοράς αρχείων ανανεώθηκαν" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" -msgstr "" +msgstr "Αποτυχία ενημέρωσης ανάκτησης αρχείων" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index fd0a919e9f3ef61cc4e0f3686f80f6115b9bdba5..d380c50daa6f83a2e87ed056b4feb61dfebca341 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: KAT.RAT12 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Προσβαση παρασχέθηκε" @@ -26,7 +26,7 @@ msgstr "Προσβαση παρασχέθηκε" msgid "Error configuring Dropbox storage" msgstr "Σφάλμα ρυθμίζωντας αποθήκευση Dropbox " -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Παροχή πρόσβασης" @@ -34,24 +34,24 @@ msgstr "Παροχή πρόσβασης" msgid "Please provide a valid Dropbox app key and secret." msgstr "Παρακαλούμε δώστε έγκυρο κλειδί Dropbox και μυστικό." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Σφάλμα ρυθμίζωντας αποθήκευση Google Drive " -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Προσοχή: Ο \"smbclient\" δεν εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση CIFS/SMB. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Προσοχή: Η υποστήριξη FTP στην PHP δεν ενεργοποιήθηκε ή εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση FTP. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 7185b97f8542ceb6aad14ab2682e3293494bb011..1c70dfb1d6d1bbc83c54e563cd740aa38acc85b1 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -4,13 +4,14 @@ # # Translators: # Efstathios Iosifidis , 2013 +# vkehayas , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 21:00+0000\n" +"Last-Translator: vkehayas \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +20,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." -msgstr "Εσφαλμένο συνθηματικό. Προσπαθήστε ξανά." +msgid "This share is password-protected" +msgstr "Αυτός ο κοινόχρηστος φάκελος προστατεύεται με κωδικό" #: templates/authenticate.php:7 -msgid "Password" -msgstr "Συνθηματικό" +msgid "The password is wrong. Try again." +msgstr "Εσφαλμένος κωδικός πρόσβασης. Προσπαθήστε ξανά." -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Καταχώρηση" +#: templates/authenticate.php:10 +msgid "Password" +msgstr "Κωδικός πρόσβασης" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." @@ -54,28 +55,32 @@ msgstr "ο διαμοιρασμός απενεργοποιήθηκε" msgid "For more info, please ask the person who sent this link." msgstr "Για περισσότερες πληροφορίες, παρακαλώ ρωτήστε το άτομο που σας έστειλε αυτόν τον σύνδεσμο." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s μοιράστηκε τον φάκελο %s μαζί σας" +msgstr "Ο %s μοιράστηκε τον φάκελο %s μαζί σας" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" -msgstr "%s μοιράστηκε το αρχείο %s μαζί σας" +msgstr "Ο %s μοιράστηκε το αρχείο %s μαζί σας" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Λήψη" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Μεταφόρτωση" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" -msgstr "Ακύρωση αποστολής" +msgstr "Ακύρωση μεταφόρτωσης" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Δεν υπάρχει διαθέσιμη προεπισκόπηση για" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Άμεσος σύνδεσμος" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index d1043567c1beb64b0882c18823622f558407997c..0d05dc752d27971310d7589c3cd41480cb87c5ef 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -4,13 +4,14 @@ # # Translators: # Efstathios Iosifidis , 2013 +# vkehayas , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-30 09:32-0400\n" -"PO-Revision-Date: 2013-08-30 09:00+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 21:15+0000\n" +"Last-Translator: vkehayas \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,68 +19,44 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:63 #, php-format msgid "Couldn't delete %s permanently" msgstr "Αδύνατη η μόνιμη διαγραφή του %s" -#: ajax/undelete.php:42 +#: ajax/undelete.php:43 #, php-format msgid "Couldn't restore %s" msgstr "Αδυναμία επαναφοράς %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "εκτέλεση λειτουργία επαναφοράς" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 msgid "Error" msgstr "Σφάλμα" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "μόνιμη διαγραφή αρχείου" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Μόνιμη διαγραφή" - -#: js/trash.js:184 templates/index.php:17 -msgid "Name" -msgstr "Όνομα" - -#: js/trash.js:185 templates/index.php:27 -msgid "Deleted" -msgstr "Διαγράφηκε" - -#: js/trash.js:193 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n φάκελοι" - -#: js/trash.js:199 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "%n αρχεία" - -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:905 lib/trashbin.php:907 msgid "restored" -msgstr "έγινε επαναφορά" +msgstr "επαναφέρθηκαν" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Δεν υπάρχει τίποτα εδώ. Ο κάδος σας είναι άδειος!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:20 +msgid "Name" +msgstr "Όνομα" + +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Επαναφορά" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:31 +msgid "Deleted" +msgstr "Διαγραμμένα" + +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Διαγραφή" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Διαγραμμένα Αρχεία" diff --git a/l10n/el/files_versions.po b/l10n/el/files_versions.po index 69a93edf4e88af7293c1571ba8c1964367e636eb..33ed352c9250c9677d02a9729a374a2c9f5ed41a 100644 --- a/l10n/el/files_versions.po +++ b/l10n/el/files_versions.po @@ -4,13 +4,14 @@ # # Translators: # Efstathios Iosifidis , 2013 +# vkehayas , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-06 07:40+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 21:15+0000\n" +"Last-Translator: vkehayas \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,24 +22,24 @@ msgstr "" #: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" -msgstr "Αδυναμία επαναφοράς του: %s" +msgstr "Αδυναμία επαναφοράς: %s" -#: js/versions.js:7 +#: js/versions.js:14 msgid "Versions" msgstr "Εκδόσεις" -#: js/versions.js:53 +#: js/versions.js:60 msgid "Failed to revert {file} to revision {timestamp}." msgstr "Αποτυχία επαναφοράς του {file} στην αναθεώρηση {timestamp}." -#: js/versions.js:79 +#: js/versions.js:86 msgid "More versions..." msgstr "Περισσότερες εκδόσεις..." -#: js/versions.js:116 +#: js/versions.js:123 msgid "No other versions available" msgstr "Δεν υπάρχουν άλλες εκδόσεις διαθέσιμες" -#: js/versions.js:149 +#: js/versions.js:154 msgid "Restore" msgstr "Επαναφορά" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index e26684eae7f872e552140a81709ea9b08c38a449..f59d5fe6101cec951745e90bf1dff7ca95695c1d 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -4,13 +4,14 @@ # # Translators: # Efstathios Iosifidis , 2013 +# vkehayas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-27 01:55-0500\n" +"PO-Revision-Date: 2013-12-26 13:10+0000\n" +"Last-Translator: vkehayas \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,318 +19,317 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:245 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." -msgstr "" +msgstr "Η εφαρμογή \"%s\" δεν μπορεί να εγκατασταθεί επειδή δεν είναι συμβατή με αυτή την έκδοση του ownCloud." -#: app.php:250 +#: private/app.php:257 msgid "No app name specified" -msgstr "" +msgstr "Δεν προδιορίστηκε όνομα εφαρμογής" -#: app.php:361 +#: private/app.php:362 msgid "Help" msgstr "Βοήθεια" -#: app.php:374 +#: private/app.php:375 msgid "Personal" msgstr "Προσωπικά" -#: app.php:385 +#: private/app.php:386 msgid "Settings" msgstr "Ρυθμίσεις" -#: app.php:397 +#: private/app.php:398 msgid "Users" msgstr "Χρήστες" -#: app.php:410 +#: private/app.php:411 msgid "Admin" msgstr "Διαχειριστής" -#: app.php:839 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Αποτυχία αναβάθμισης του \"%s\"." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Άγνωστος τύπος αρχείου" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Μη έγκυρη εικόνα" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "αδυναμία ανοίγματος \"%s\"" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Η λήψη ZIP απενεργοποιήθηκε." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Τα αρχεία πρέπει να ληφθούν ένα-ένα." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Πίσω στα Αρχεία" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Λήψη των αρχείων σε μικρότερα κομμάτια, χωριστά ή ρωτήστε τον διαχειριστή σας." +msgstr "Παρακαλώ κάντε λήψη των αρχείων σε μικρότερα κομμάτια ή ζητήστε το από το διαχειριστή σας." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" -msgstr "" +msgstr "Δεν προσδιορίστηκε πηγή κατά την εγκατάσταση της εφαρμογής" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" -msgstr "" +msgstr "Δεν προσδιορίστηκε href κατά την εγκατάσταση της εφαρμογής μέσω http " -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" -msgstr "" +msgstr "Δεν προσδιορίστηκε μονοπάτι κατά την εγκατάσταση εφαρμογής από τοπικό αρχείο" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" -msgstr "" +msgstr "Συλλογές αρχείων τύπου %s δεν υποστηρίζονται" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" -msgstr "" +msgstr "Αποτυχία ανοίγματος συλλογής αρχείων κατά την εγκατάσταση εφαρμογής" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" -msgstr "" +msgstr "Η εφαρμογή δεν παρέχει αρχείο info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" -msgstr "" +msgstr "Η εφαρμογή δεν μπορεί να εγκατασταθεί λόγω μη-επιτρεπόμενου κώδικα μέσα στην Εφαρμογή" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" -msgstr "" +msgstr "Η εφαρμογή δεν μπορεί να εγκατασταθεί επειδή δεν είναι συμβατή με αυτή την έκδοση ownCloud" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "" +msgstr "Η εφαρμογή δεν μπορεί να εγκατασταθεί επειδή η έκδοση στο info.xml/version δεν είναι η ίδια με την έκδοση που αναφέρεται στο κατάστημα εφαρμογών" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" -msgstr "" +msgstr "Ο κατάλογος εφαρμογών υπάρχει ήδη" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "" +msgstr "Δεν είναι δυνατόν να δημιουργηθεί ο φάκελος εφαρμογής. Παρακαλώ διορθώστε τις άδειες πρόσβασης. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Δεν ενεργοποιήθηκε η εφαρμογή" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Σφάλμα πιστοποίησης" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Το αναγνωριστικό έληξε. Παρακαλώ φορτώστε ξανά την σελίδα." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Αρχεία" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Κείμενο" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Εικόνες" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s εισάγετε το όνομα χρήστη της βάσης δεδομένων." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s εισάγετε το όνομα της βάσης δεδομένων." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s μάλλον δεν χρησιμοποιείτε τελείες στο όνομα της βάσης δεδομένων" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Το όνομα χρήστη και/ή ο κωδικός της MS SQL δεν είναι έγκυρα: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Χρειάζεται να εισάγετε είτε έναν υπάρχον λογαριασμό ή του διαχειριστή." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της MySQL" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "Σφάλμα Βάσης Δεδομένων: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Η εντολη παραβατικοτητας ηταν: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Υπάρχει ήδη ο χρήστης '%s'@'localhost' της MySQL." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Απόρριψη αυτού του χρήστη από την MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Ο χρήστης '%s'@'%%' της MySQL υπάρχει ήδη" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Απόρριψη αυτού του χρήστη από την MySQL" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Αδυναμία σύνδεσης Oracle" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της Oracle" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Η εντολη παραβατικοτητας ηταν: \"%s\", ονομα: %s, κωδικος: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της PostgreSQL" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Εισάγετε όνομα χρήστη διαχειριστή." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Εισάγετε συνθηματικό διαχειριστή." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Ελέγξτε ξανά τις οδηγίες εγκατάστασης." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Αδυναμία εύρεσης κατηγορίας \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n λεπτά πριν" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n ώρες πριν" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "σήμερα" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "χτες" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n ημέρες πριν" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "τελευταίο μήνα" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n μήνες πριν" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "τελευταίο χρόνο" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "χρόνια πριν" - -#: template.php:297 -msgid "Caused by:" -msgstr "Προκλήθηκε από:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Αδυναμία εύρεσης κατηγορίας \"%s\"" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 1e84a673d35bec3e9ce12cd24527a3025f4f793d..84b51f57097fb99ddd2bf95bf9cba8203bddbf59 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -8,14 +8,15 @@ # KAT.RAT12 , 2013 # Teogramm , 2013 # Teogramm , 2013 +# vkehayas , 2013 # KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 20:50+0000\n" +"Last-Translator: vkehayas \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,12 +34,12 @@ msgid "Authentication error" msgstr "Σφάλμα πιστοποίησης" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Το όνομα σας στην οθόνη άλλαξε. " +msgid "Your full name has been changed." +msgstr "Το πλήρες όνομά σας άλλαξε." #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Δεν είναι δυνατή η αλλαγή του ονόματος εμφάνισης" +msgid "Unable to change full name" +msgstr "Δεν ήταν δυνατή η αλλαγή του πλήρους ονόματός σας" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -92,42 +93,42 @@ msgstr "Αδυναμία ενημέρωσης εφαρμογής" #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "Εσφαλμένο συνθηματικό" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "Δεν εισήχθη χρήστης" #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "Παρακαλώ παρέχετε έναν κωδικό ανάκτησης διαχειριστή, διαφορετικά όλα τα δεδομένα χρήστη θα χαθούν" #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "Λάθος κωδικός ανάκτησης διαχειριστή. Παρακαλώ ελέγξτε τον κωδικό και δοκιμάστε ξανά." #: changepassword/controller.php:87 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "Το βασικό πλαίσιο δεν υποστηρίζει αλλαγή κωδικού, αλλά το κλειδί κρυπτογράφησης των χρηστών ενημερώθηκε επιτυχώς." #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" -msgstr "" +msgstr "Αδυναμία αλλαγής συνθηματικού" #: js/apps.js:43 msgid "Update to {appversion}" msgstr "Ενημέρωση σε {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Απενεργοποίηση" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Ενεργοποίηση" @@ -135,41 +136,41 @@ msgstr "Ενεργοποίηση" msgid "Please wait...." msgstr "Παρακαλώ περιμένετε..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" -msgstr "" +msgstr "Σφάλμα κατά την απενεργοποίηση εισόδου" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" -msgstr "" +msgstr "Σφάλμα κατά την ενεργοποίηση της εφαρμογής" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Ενημέρωση..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Σφάλμα κατά την ενημέρωση της εφαρμογής" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Σφάλμα" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Ενημέρωση" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Ενημερώθηκε" #: js/personal.js:220 msgid "Select a profile picture" -msgstr "" +msgstr "Επιλογή εικόνας προφίλ" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." -msgstr "" +msgstr "Αποκρυπτογράφηση αρχείων... Παρακαλώ περιμένετε, αυτό μπορεί να πάρει κάποιο χρόνο." #: js/personal.js:287 msgid "Saving..." @@ -187,206 +188,265 @@ msgstr "αναίρεση" msgid "Unable to remove user" msgstr "Αδυναμία αφαίρεση χρήστη" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Ομάδες" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Ομάδα Διαχειριστών" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Διαγραφή" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "προσθήκη ομάδας" -#: js/users.js:436 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Πρέπει να δοθεί έγκυρο όνομα χρήστη" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Σφάλμα δημιουργίας χρήστη" -#: js/users.js:442 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Πρέπει να δοθεί έγκυρο συνθηματικό" +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Προειδοποίηση: Ο μητρικός κατάλογος του χρήστη \"{user}\" υπάρχει ήδη" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "__όνομα_γλώσσας__" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "Προειδοποίηση Ασφαλείας" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 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 "" +msgstr "Ο κατάλογος δεδομένων και τα αρχεία σας πιθανόν να είναι διαθέσιμα στο διαδίκτυο. Το αρχείο .htaccess δεν δουλεύει. Σας προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας με τέτοιο τρόπο ώστε ο κατάλογος δεδομένων να μην είναι πλέον προσβάσιμος ή να μετακινήσετε τον κατάλογο δεδομένων έξω από τη ρίζα του καταλόγου του διακομιστή." -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Ρύθμιση Προειδοποίησης" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Ελέγξτε ξανά τις οδηγίες εγκατάστασης." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Η ενοτητα 'fileinfo' λειπει" -#: templates/admin.php:47 +#: templates/admin.php:68 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:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "Η έκδοση PHP είναι απαρχαιωμένη" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "Η μετάφραση δεν δουλεύει" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "Οι ρυθμίσεις τοποθεσίας συστήματος δεν μπορούν να οριστούν σε κάποιες που δεν υποστηρίζουν UTF-8." + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "Αυτό σημαίνει ότι μπορεί να υπάρχουν προβλήματα με κάποιους χαρακτήρες στα ονόματα αρχείων." + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "Συνιστούμε σοβαρά να εγκαταστήσετε τα απαιτούμενα πακέτα στο σύστημά σας ώστε να υποστηρίζεται μια από τις ακόλουθες ρυθμίσεις τοποθεσίας: %s." -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Η σύνδεση στο διαδίκτυο δεν δουλεύει" -#: templates/admin.php:78 +#: templates/admin.php:121 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 "" +msgstr "Αυτός ο διακομιστής δεν έχει ενεργή σύνδεση στο διαδίκτυο. Αυτό σημαίνει ότι κάποιες υπηρεσίες όπως η σύνδεση με εξωτερικούς αποθηκευτικούς χώρους, ειδοποιήσεις περί ενημερώσεων ή η εγκατάσταση 3ων εφαρμογών δεν θα είναι διαθέσιμες. Η πρόσβαση απομακρυσμένων αρχείων και η αποστολή ειδοποιήσεων μέσω ηλεκτρονικού ταχυδρομείου μπορεί επίσης να μην είναι διαθέσιμες. Προτείνουμε να ενεργοποιήσετε την πρόσβαση στο διαδίκτυο για αυτόν το διακομιστή εάν θέλετε να χρησιμοποιήσετε όλες τις υπηρεσίες." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Εκτέλεση μιας διεργασίας με κάθε σελίδα που φορτώνεται" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "" +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "" +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "Χρήση της υπηρεσίας cron του συστήματος για να καλεστεί το αρχείο cron.php κάθε 15 λεπτά." -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Διαμοιρασμός" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Ενεργοποίηση API Διαμοιρασμού" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Να επιτρέπονται σύνδεσμοι" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν δημόσια με συνδέσμους" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" -msgstr "" +msgstr "Επιτρέψτε κοινόχρηστο ανέβασμα" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "Επιτρέψτε στους χρήστες να καθιστούν άλλους χρήστες ικανούς να ανεβάζουν στους κοινόχρηστους φακέλους τους" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Να επιτρέπεται ο επαναδιαμοιρασμός" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Να επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Επιτρέψτε ειδοποιήσεις ηλεκτρονικού ταχυδρομείου" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "Επιτρέψτε στο χρήστη να στέλνει ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία" + +#: templates/admin.php:221 msgid "Security" msgstr "Ασφάλεια" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Επιβολή χρήσης HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "Επιβάλλει τους δέκτες να συνδέονται με το %s μέσω κρυπογραφημένης σύνδεσης." -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." -msgstr "" +msgstr "Παρακαλώ συνδεθείτε στο %s σας μέσω HTTPS για να ενεργοποιήσετε ή να απενεργοποιήσετε την επιβολή του SSL." -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "Καταγραφές" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Επίπεδο καταγραφής" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Περισσότερα" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Λιγότερα" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Έκδοση" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Χρήση αυτής της διεύθυνσης για πρόσβαση των αρχείων σας μέσω WebDAV" +"Use this address to access your Files via " +"WebDAV" +msgstr "Χρήση αυτής της διεύθυνσης πρόσβαση των Αρχείων σας μέσω WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Κρυπτογράφηση" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "Η εφαρμογή κρυπτογράφησης δεν είναι πλέον ενεργοποιημένη, παρακαλώ αποκρυπτογραφήστε όλα τα αρχεία σας" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" -msgstr "" +msgstr "Συνθηματικό εισόδου" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" -msgstr "" +msgstr "Αποκρυπτογράφηση όλων των Αρχείων" #: templates/users.php:21 msgid "Login Name" @@ -578,6 +642,10 @@ msgstr "Εισάγετε το συνθηματικό ανάκτησης ώστε msgid "Default Storage" msgstr "Προκαθορισμένη Αποθήκευση " +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "Παρακαλώ εισάγετε επιτρεπόμενα μερίδια αποθηκευτικού χώρου (π.χ. \"512 MB\" ή \"12 GB\")" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Απεριόριστο" @@ -595,8 +663,8 @@ msgid "Storage" msgstr "Αποθήκευση" #: templates/users.php:108 -msgid "change display name" -msgstr "αλλαγή ονόματος εμφάνισης" +msgid "change full name" +msgstr "αλλαγή πλήρους ονόματος" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index ac03107faae4a3c3fc8bacc3366299cc771cea22..636f833c270be4f91b1d4e7115a61a6b55a9b1c8 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Marios Bekatoros <>, 2013 +# vkehayas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 20:50+0000\n" +"Last-Translator: vkehayas \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,320 +21,431 @@ msgstr "" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." -msgstr "" +msgstr "Αποτυχία εκκαθάρισης των αντιστοιχιών." #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" msgstr "Αποτυχία διαγραφής ρυθμίσεων διακομιστή" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Οι ρυθμίσεις είναι έγκυρες και η σύνδεση μπορεί να πραγματοποιηθεί!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Οι ρυθμίσεις είναι έγκυρες, αλλά απέτυχε η σύνδεση. Παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή και τα διαπιστευτήρια." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "Μη έγκυρες ρυθμίσεις. Παρακαλώ ελέγξτε τις καταγραφές του ownCloud για περισσότερες λεπτομέρειες." +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:66 +#: js/settings.js:67 msgid "Deletion failed" msgstr "Η διαγραφή απέτυχε" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Πάρτε πάνω από τις πρόσφατες ρυθμίσεις διαμόρφωσης του διακομιστή?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Διατήρηση ρυθμίσεων;" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Αδυναμία προσθήκης ρυθμίσεων διακομιστή" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" -msgstr "" +msgstr "αντιστοιχίες εκκαθαρίστηκαν" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Επιτυχία" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Σφάλμα" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "Η διαμόρφωση είναι εντάξει" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "Η διαμόρφωση είναι λανθασμένη" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "Η διαμόρφωση είναι ελλιπής" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Επιλέξτε ομάδες" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "Επιλογή κλάσης αντικειμένων" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "Επιλογή χαρακτηριστικών" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Επιτυχημένη δοκιμαστική σύνδεση" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Αποτυχημένη δοκιμαστική σύνδεσης." -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Θέλετε να διαγράψετε τις τρέχουσες ρυθμίσεις του διακομιστή;" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Επιβεβαίωση Διαγραφής" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "" +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "%s ομάδα βρέθηκε" +msgstr[1] "%s ομάδες βρέθηκαν" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "%s χρήστης βρέθηκε" +msgstr[1] "%s χρήστες βρέθηκαν" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "Άκυρος εξυπηρετητής" + +#: lib/wizard.php:951 +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/settings.php:12 +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "Περιορισμός πρόσβασης %s σε ομάδες που ταιριάζουν αυτά τα κριτήρια:" + +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Προσοχή: Το άρθρωμα PHP LDAP δεν είναι εγκατεστημένο και το σύστημα υποστήριξης δεν θα δουλέψει. Παρακαλώ ζητήστε από τον διαχειριστή συστήματος να το εγκαταστήσει." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "Το φίλτρο καθορίζει ποιες ομάδες LDAP θα έχουν πρόσβαση στην εγκατάσταση %s." -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Ρυθμίσεις Διακομιστή" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "ομάδες βρέθηκαν" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "Ποια ιδιότητα θα χρησιμοποιηθεί ως όνομα σύνδεσης:" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "Όνομα χρήστη LDAP:" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "Διεύθυνση ηλ. ταχυδρομείου LDAP:" + +#: 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 "Ορίζει το φίλτρο που θα εφαρμοστεί, όταν επιχειριθεί σύνδεση. Το %%uid αντικαθιστά το όνομα χρήστη κατά τη σύνδεση. Παράδειγμα: \"uid=%%uid\"" + +#: templates/part.wizard-server.php:18 msgid "Add Server Configuration" msgstr "Προσθήκη Ρυθμίσεων Διακομιστή" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Διακομιστής" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Μπορείτε να παραλείψετε το πρωτόκολλο, εκτός αν απαιτείται SSL. Σε αυτή την περίπτωση ξεκινήστε με ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Base DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Ένα DN Βάσης ανά γραμμή " - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Μπορείτε να καθορίσετε το Base DN για χρήστες και ομάδες από την καρτέλα Προηγμένες ρυθμίσεις" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Θύρα" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "User DN" -#: templates/settings.php:46 +#: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "Το DN του χρήστη πελάτη με το οποίο θα πρέπει να γίνει η σύνδεση, π.χ. uid=agent,dc=example,dc=com. Για χρήση χωρίς πιστοποίηση, αφήστε το DN και τον Κωδικό κενά." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Συνθηματικό" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Για ανώνυμη πρόσβαση, αφήστε κενά τα πεδία DN και Pasword." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Ένα DN Βάσης ανά γραμμή " -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Μπορείτε να καθορίσετε το Base DN για χρήστες και ομάδες από την καρτέλα Προηγμένες ρυθμίσεις" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "Περιορισμός πρόσβασης %s σε χρήστες που ταιριάζουν αυτά τα κριτήρια:" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "Το φίλτρο καθορίζει ποιοι χρήστες LDAP θα έχουν πρόσβαση στην εγκατάσταση %s." -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "χρήστες βρέθηκαν" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Επιστροφή" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Συνέχεια" -#: templates/settings.php:62 +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "Προσοχή: Οι εφαρμογές user_ldap και user_webdavauth είναι ασύμβατες. Μπορεί να αντιμετωπίσετε απρόβλεπτη συμπεριφορά. Παρακαλώ ζητήστε από τον διαχειριστή συστήματος να απενεργοποιήσει μία από αυτές." -#: templates/settings.php:66 +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Προσοχή: Το άρθρωμα PHP LDAP δεν είναι εγκατεστημένο και το σύστημα υποστήριξης δεν θα δουλέψει. Παρακαλώ ζητήστε από τον διαχειριστή συστήματος να το εγκαταστήσει." + +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Ρυθμίσεις Σύνδεσης" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Ενεργοποιηση ρυθμισεων" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Όταν δεν είναι επιλεγμένο, αυτή η ρύθμιση θα πρέπει να παραλειφθεί. " -#: templates/settings.php:69 -msgid "Port" -msgstr "Θύρα" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Δημιουργία αντιγράφων ασφαλείας (Replica) Host " -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Δώστε μια προαιρετική εφεδρική υποδοχή. Πρέπει να είναι ένα αντίγραφο του κύριου LDAP / AD διακομιστη." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Δημιουργία αντιγράφων ασφαλείας (Replica) Υποδοχη" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Απενεργοποιηση του κεντρικου διακομιστη" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Χρήση TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Μην το χρησιμοποιήσετε επιπροσθέτως, για LDAPS συνδέσεις , θα αποτύχει." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "LDAP server (Windows) με διάκριση πεζών-ΚΕΦΑΛΑΙΩΝ" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Απενεργοποίηση επικύρωσης πιστοποιητικού SSL." -#: templates/settings.php:75 +#: 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 "" +msgstr "Δεν προτείνεται, χρησιμοποιείστε το μόνο για δοκιμές! Εάν η σύνδεση λειτουργεί μόνο με αυτή την επιλογή, εισάγετε το πιστοποιητικό SSL του διακομιστή LDAP στο %s διακομιστή σας." -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Cache Time-To-Live" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "σε δευτερόλεπτα. Μια αλλαγή αδειάζει την μνήμη cache." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Ρυθμίσεις Καταλόγου" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Πεδίο Ονόματος Χρήστη" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "Η ιδιότητα LDAP προς χρήση για δημιουργία του προβαλλόμενου ονόματος χρήστη." -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Base User Tree" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "Ένα DN βάσης χρηστών ανά γραμμή" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "Χαρακτηριστικά αναζήτησης των χρηστών " -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Προαιρετικά? Ένα χαρακτηριστικό ανά γραμμή " -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Group Display Name Field" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "Η ιδιότητα LDAP προς χρήση για δημιουργία του προβαλλόμενου ονόματος ομάδας." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Base Group Tree" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "Μια ομαδικη Βάση DN ανά γραμμή" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Ομάδα Χαρακτηριστικων Αναζήτηση" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Group-Member association" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Ειδικά Χαρακτηριστικά " -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Ποσοσταση πεδιου" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Προκαθισμενο πεδιο" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "σε bytes" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "Email τυπος" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "Χρήστης Προσωπικόςφάκελος Ονομασία Κανόνας " -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Αφήστε το κενό για το όνομα χρήστη (προεπιλογή). Διαφορετικά, συμπληρώστε μία ιδιότητα LDAP/AD." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" -msgstr "" +msgstr "Εσωτερικό Όνομα Χρήστη" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -346,17 +459,17 @@ msgid "" "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 "" +msgstr "Εξ ορισμού, το εσωτερικό όνομα χρήστη θα δημιουργηθεί από το χαρακτηριστικό UUID. Αυτό βεβαιώνει ότι το όνομα χρήστη είναι μοναδικό και δεν χρειάζεται μετατροπή χαρακτήρων. Το εσωτερικό όνομα χρήστη έχει τον περιορισμό ότι μόνο αυτοί οι χαρακτήρες επιτρέπονται: [ a-zA-Z0-9_.@- ]. Οι άλλοι χαρακτήρες αντικαθίστανται με τους αντίστοιχους ASCII ή απλά παραλείπονται. Στις συγκρούσεις ένας αριθμός θα προστεθεί / αυξηθεί. Το εσωτερικό όνομα χρήστη χρησιμοποιείται για την αναγνώριση ενός χρήστη εσωτερικά. Είναι επίσης το προεπιλεγμένο όνομα για τον αρχικό φάκελο χρήστη. Αποτελεί επίσης μέρος των απομακρυσμένων διευθύνσεων URL, για παράδειγμα για όλες τις υπηρεσίες *DAV. Με αυτή τη ρύθμιση, η προεπιλεγμένη συμπεριφορά μπορεί να παρακαμφθεί. Για να επιτευχθεί μια παρόμοια συμπεριφορά όπως πριν το ownCloud 5 εισάγετε το χαρακτηριστικό του προβαλλόμενου ονόματος χρήστη στο παρακάτω πεδίο. Αφήστε το κενό για την προεπιλεγμένη λειτουργία. Οι αλλαγές θα έχουν ισχύ μόνο σε νεώτερους (προστιθέμενους) χρήστες LDAP." -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" -msgstr "" +msgstr "Ιδιότητα Εσωτερικού Ονόματος Χρήστη:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" -msgstr "" +msgstr "Παράκαμψη ανίχνευσης UUID" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -365,17 +478,21 @@ msgid "" "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 "" +msgstr "Από προεπιλογή, το χαρακτηριστικό UUID εντοπίζεται αυτόματα. Το χαρακτηριστικό UUID χρησιμοποιείται για την αναγνώριση χωρίς αμφιβολία χρηστών και ομάδων LDAP. Επίσης, το εσωτερικό όνομα χρήστη θα δημιουργηθεί με βάση το UUID, εφόσον δεν ορίζεται διαφορετικά ανωτέρω. Μπορείτε να παρακάμψετε τη ρύθμιση και να ορίσετε ένα χαρακτηριστικό της επιλογής σας. Θα πρέπει να βεβαιωθείτε ότι το χαρακτηριστικό της επιλογής σας μπορεί να ληφθεί για τους χρήστες και τις ομάδες και ότι είναι μοναδικό. Αφήστε το κενό για την προεπιλεγμένη λειτουργία. Οι αλλαγές θα έχουν ισχύ μόνο σε πρόσφατα αντιστοιχισμένους (προστιθέμενους) χρήστες και ομάδες LDAP." -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "Χαρακτηριστικό UUID για Χρήστες:" -#: templates/settings.php:104 +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "Χαρακτηριστικό UUID για Ομάδες:" + +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" -msgstr "" +msgstr "Αντιστοίχιση Χρηστών Όνομα Χρήστη-LDAP" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -387,20 +504,12 @@ msgid "" " 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 "" +msgstr "Τα ονόματα χρηστών χρησιμοποιούνται για την αποθήκευση και την ανάθεση (μετα) δεδομένων. Προκειμένου να προσδιοριστούν με ακρίβεια και να αναγνωρίστουν οι χρήστες, κάθε χρήστης LDAP θα έχει ένα εσωτερικό όνομα. Αυτό απαιτεί μια αντιστοίχιση του ονόματος χρήστη με το χρήστη LDAP. Το όνομα χρήστη που δημιουργήθηκε αντιστοιχίζεται στην UUID του χρήστη LDAP. Επιπροσθέτως, το DN αποθηκεύεται προσωρινά (cache) ώστε να μειωθεί η αλληλεπίδραση LDAP, αλλά δεν χρησιμοποιείται για την ταυτοποίηση. Αν το DN αλλάξει, οι αλλαγές θα βρεθούν. Το εσωτερικό όνομα χρήστη χρησιμοποιείται παντού. Η εκκαθάριση των αντιστοιχίσεων θα αφήσει κατάλοιπα παντού. Η εκκαθάριση των αντιστοιχίσεων δεν επηρεάζεται από τη διαμόρφωση, επηρεάζει όλες τις διαμορφώσεις LDAP! Μην διαγράψετε ποτέ τις αντιστοιχίσεις σε ένα λειτουργικό περιβάλλον παρά μόνο σε δοκιμές ή σε πειραματικό στάδιο." -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" -msgstr "" +msgstr "Διαγραφή αντιστοίχησης Ονόματος Χρήστη LDAP-Χρήστη" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" -msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Δοκιμαστικες ρυθμισεις" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Βοήθεια" +msgstr "Διαγραφή αντιστοίχησης Ονόματος Ομάδας-LDAP Ομάδας" diff --git a/l10n/el/user_webdavauth.po b/l10n/el/user_webdavauth.po index 85544e07257fafa0f3effbde00a98a6b24a50fe9..ce04dbf8a6c22b5b2a6319d94ace8db2dd3ebbb6 100644 --- a/l10n/el/user_webdavauth.po +++ b/l10n/el/user_webdavauth.po @@ -9,13 +9,14 @@ # Efstathios Iosifidis , 2012-2013 # Konstantinos Tzanidis , 2012 # Marios Bekatoros <>, 2013 +# vkehayas , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-06 08:10+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"PO-Revision-Date: 2014-01-02 18:00+0000\n" +"Last-Translator: vkehayas \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,7 +26,7 @@ msgstr "" #: templates/settings.php:3 msgid "WebDAV Authentication" -msgstr "Αυθεντικοποίηση μέσω WebDAV " +msgstr "Πιστοποίηση μέσω WebDAV " #: templates/settings.php:4 msgid "Address: " diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index 8f786dfe211811d24c856364740767b95f23961e..c0c1a7e88f5ce28dac0852db4048cdc8c03ff1b4 100644 --- a/l10n/en@pirate/core.po +++ b/l10n/en@pirate/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-08 03:26+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" @@ -18,13 +18,14 @@ msgstr "" "Language: en@pirate\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -52,45 +53,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -191,55 +153,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "" @@ -307,155 +269,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" +#: js/share.js:213 +msgid "Share with user or group …" msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Passcode" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -504,12 +494,12 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" msgstr "" #: lostpassword/templates/resetpassword.php:4 @@ -536,7 +526,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "" @@ -548,6 +538,34 @@ msgstr "" 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 "" @@ -564,108 +582,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -683,19 +712,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -703,10 +740,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " msgstr "" -#: templates/update.php:3 +#: 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/en@pirate/files.po b/l10n/en@pirate/files.po index ea57ff8382adcb90d04ac58fb60bfa1103223710..531771612fb806a2eaa0fd40cc8828cdd5a9c6c1 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06: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" @@ -27,220 +27,286 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" msgstr "" -#: js/fileactions.js:119 -msgid "Share" +#: js/file-upload.js:595 +msgid "Could not create file" msgstr "" -#: js/fileactions.js:131 -msgid "Delete permanently" +#: js/file-upload.js:611 +msgid "Could not create folder" msgstr "" -#: js/fileactions.js:197 -msgid "Rename" +#: js/file-upload.js:661 +msgid "Error fetching URL" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 -msgid "Pending" +#: js/fileactions.js:125 +msgid "Share" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/fileactions.js:137 +msgid "Delete permanently" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" +#: js/fileactions.js:194 +msgid "Rename" msgstr "" -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "" @@ -276,65 +342,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Download" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/en@pirate/files_encryption.po b/l10n/en@pirate/files_encryption.po index 00358fec52b00d36c045d10fc348420482f1e6d0..c181add62709bcad314c5e85f374f6802db6c835 100644 --- a/l10n/en@pirate/files_encryption.po +++ b/l10n/en@pirate/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:44 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 -msgid "Saving..." +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." +#: js/settings-admin.js:13 +msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 4663eb69623970ef2a1c08a6cf50704fab201adb..eac6fd04d8119c5ed3e641eb51966200f58f6a15 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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 "Secret Code" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Submit" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -54,28 +54,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s shared the folder %s with you" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s shared the file %s with you" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Download" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "No preview available for" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/en@pirate/files_trashbin.po b/l10n/en@pirate/files_trashbin.po index c64e4f7a6a29c9033f674ed514bdbdf9be53542f..416897b2d20a7df7632dd484304555d74918f48a 100644 --- a/l10n/en@pirate/files_trashbin.po +++ b/l10n/en@pirate/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:814 lib/trashbin.php:816 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:23 msgid "Name" msgstr "" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:26 templates/index.php:28 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:34 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/en@pirate/lib.po b/l10n/en@pirate/lib.po index 53ee952f6168d5de2c2bd7bc261c424a1dd811bf..5d487df14227167f53148cb7deefd0960df59fbc 100644 --- a/l10n/en@pirate/lib.po +++ b/l10n/en@pirate/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,317 @@ msgstr "" "Language: en@pirate\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "web services under your control" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/en@pirate/settings.po b/l10n/en@pirate/settings.po index df5539ce0c643e2e082a721b8b26499362f601e7..ec63820b820269226f373d3cb3eb7d1f35b29e02 100644 --- a/l10n/en@pirate/settings.po +++ b/l10n/en@pirate/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,31 +129,31 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/en@pirate/user_ldap.po b/l10n/en@pirate/user_ldap.po index 22391f10ba9c2d78534d6df9205a818211b69c09..8749947a12e06a4462433a89db701355068e5003 100644 --- a/l10n/en@pirate/user_ldap.po +++ b/l10n/en@pirate/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-27 17:09+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" @@ -25,314 +25,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "" -#: js/settings.js:141 +#: js/settings.js:777 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:786 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:795 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:812 js/settings.js:821 +msgid "Select groups" +msgstr "" + +#: js/settings.js:815 js/settings.js:824 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:818 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:845 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:852 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:861 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:862 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:779 lib/wizard.php:791 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:952 +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 "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Passcode" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "" diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index f9b0f0d24fa9aa0f3a1e0ab69e6dbb75dc985d50..5dc93a2d23f5a3ae04f42a17ab0ec2fffea17393 100644 --- a/l10n/en_GB/core.po +++ b/l10n/en_GB/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-24 12:58-0400\n" -"PO-Revision-Date: 2013-09-23 16:10+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -18,14 +18,15 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s shared \"%s\" with you" -#: ajax/share.php:227 -msgid "group" -msgstr "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Couldn't send mail to following users: %s " #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -52,45 +53,6 @@ msgstr "Updated filecache" msgid "... %d%% done ..." msgstr "... %d%% done ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Category type not provided." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "No category to add?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "This category already exists: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Object type not provided." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID not provided." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Error adding %s to favourites." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "No categories selected for deletion." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Error removing %s from favourites." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "No image or file provided" @@ -187,59 +149,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Settings" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "seconds ago" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute ago" msgstr[1] "%n minutes ago" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hour ago" msgstr[1] "%n hours ago" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "today" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "yesterday" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n day ago" msgstr[1] "%n days ago" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "last month" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n month ago" msgstr[1] "%n months ago" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "months ago" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "last year" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "years ago" @@ -307,155 +269,183 @@ msgstr "({count} selected)" msgid "Error loading file exists template" msgstr "Error loading file exists template" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "The object type is not specified." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 -msgid "Error" -msgstr "Error" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "The app name is not specified." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "The required file {file} is not installed!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Shared" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Share" -#: js/share.js:131 js/share.js:696 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Error" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Error whilst sharing" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Error whilst unsharing" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Error whilst changing permissions" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Shared with you and the group {group} by {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Shared with you by {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Share with" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Share with user or group …" -#: js/share.js:188 -msgid "Share with link" -msgstr "Share with link" +#: js/share.js:219 +msgid "Share link" +msgstr "Share link" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Password protect" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Password" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Allow Public Upload" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Email link to person" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Send" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Set expiration date" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Expiration date" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Share via email:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "No people found" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "group" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Resharing is not allowed" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Shared in {item} with {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Unshare" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "notify by email" + +#: js/share.js:408 msgid "can edit" msgstr "can edit" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "access control" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "create" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "update" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "delete" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "share" -#: js/share.js:400 js/share.js:643 +#: js/share.js:694 msgid "Password protected" msgstr "Password protected" -#: js/share.js:656 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Error unsetting expiration date" -#: js/share.js:668 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:683 +#: js/share.js:734 msgid "Sending ..." msgstr "Sending ..." -#: js/share.js:694 +#: js/share.js:745 msgid "Email sent" msgstr "Email sent" +#: js/share.js:769 +msgid "Warning" +msgstr "Warning" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "The object type is not specified." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Enter new" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Delete" + +#: js/tags.js:31 +msgid "Add" +msgstr "Add" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Edit tags" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Error loading dialog template: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "No tags selected for deletion." + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "Please reload the page." + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "The link to reset your password has been sent to your email.
    If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator ." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Request failed!
    Did you make sure your email/username was correct?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "You will receive a link to reset your password via email." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Username" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -504,13 +494,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "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?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Yes, I really want to reset my password now" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Request reset" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Reset" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -536,7 +526,7 @@ msgstr "Personal" msgid "Users" msgstr "Users" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Apps" @@ -548,6 +538,34 @@ msgstr "Admin" msgid "Help" msgstr "Help" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "Error loading tags" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "Tag already exists" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "Error deleting tag(s)" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "Error tagging" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "Error untagging" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "Error favouriting" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "Error unfavouriting" + #: templates/403.php:12 msgid "Access forbidden" msgstr "Access denied" @@ -564,108 +582,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" +msgstr "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Edit categories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "The share will expire on %s." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Add" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Cheers!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Security Warning" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Please update your PHP installation to use %s securely." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "No secure random number generator is available, please enable the PHP OpenSSL extension." -#: templates/installation.php:33 +#: 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 "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "For information how to properly configure your server, please see the documentation." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Create an admin account" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Advanced" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Data folder" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Configure the database" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "will be used" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Database user" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Database password" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Database name" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Database host" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Finish setup" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Finishing …" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." + +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s is available. Get more information on how to update." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Log out" @@ -683,19 +712,27 @@ msgstr "If you did not change your password recently, your account may be compro msgid "Please change your password to secure your account again." msgstr "Please change your password to secure your account again." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "Server side authentication failed!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Please contact your administrator." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Lost your password?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "remember" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Log in" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Alternative Logins" @@ -703,10 +740,37 @@ msgstr "Alternative Logins" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Hey there,

    just letting you know that %s shared \"%s\" with you.
    View it!

    Cheers!" +"href=\"%s\">View it!

    " +msgstr "Hey there,

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

    " + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "This ownCloud instance is currently in single user mode." + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "This means only administrators can use the instance." -#: templates/update.php:3 +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "Contact your system administrator if this message persists or appeared unexpectedly." + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "Thank you for your patience." + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "Updating ownCloud to version %s, this may take a while." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "This ownCloud instance is currently being updated, which may take a while." + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "Please reload this page after a short time to continue using ownCloud." diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index bf8e9374348519fed92117ba8310a4e3cbaac06f..259e932c17190bd765313b648867a283725a8f8c 100644 --- a/l10n/en_GB/files.po +++ b/l10n/en_GB/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-24 12:58-0400\n" -"PO-Revision-Date: 2013-09-24 16:00+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 14:50+0000\n" "Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -28,62 +28,107 @@ msgstr "Could not move %s - File with this name already exists" msgid "Could not move %s" msgstr "Could not move %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "File name cannot be empty." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "File name must not contain \"/\". Please choose a different name." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "The name %s is already used in the folder %s. Please choose a different name." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "Not a valid source" + +#: ajax/newfile.php:86 +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:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Error whilst downloading %s to %s" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Error when creating the file" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "Folder name cannot be empty." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "Folder name must not contain \"/\". Please choose a different name." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Error when creating the folder" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Unable to set upload directory." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Invalid Token" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "No file was uploaded. Unknown error" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "There is no error, the file uploaded successfully" -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "The uploaded file was only partially uploaded" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "No file was uploaded" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Missing a temporary folder" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Failed to write to disk" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Not enough storage available" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "Upload failed. Could not get file info." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "Upload failed. Could not find uploaded file" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Invalid directory." @@ -91,157 +136,178 @@ msgstr "Invalid directory." msgid "Files" msgstr "Files" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Unable to upload {filename} as it is a directory or has 0 bytes" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Not enough space available" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Upload cancelled." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "Could not get result from server." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "URL cannot be empty" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "In the home folder 'Shared' is a reserved file name" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Error" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} already exists" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Could not create file" -#: js/fileactions.js:119 +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Could not create folder" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Error fetching URL" + +#: js/fileactions.js:125 msgid "Share" msgstr "Share" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Delete permanently" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Rename" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Pending" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} already exists" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "replace" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "suggest name" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Could not rename file" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "cancel" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "replaced {new_name} with {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "undo" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Error deleting file." + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n folder" msgstr[1] "%n folders" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" msgstr[1] "%n files" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} and {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Uploading %n file" msgstr[1] "Uploading %n files" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' is an invalid file name." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "File name cannot be empty." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Invalid name: '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Your storage is full, files can not be updated or synced anymore!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Your storage is almost full ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "Encryption App is enabled but your keys are not initialised, please log-out and log-in again" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Your download is being prepared. This might take some time if the files are big." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "Error moving file" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Error" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Name" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Size" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Modified" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Invalid folder name. Usage of 'Shared' is reserved." + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s could not be renamed" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Upload" @@ -277,65 +343,69 @@ msgstr "Maximum input size for ZIP files" msgid "Save" msgstr "Save" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "New" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "New text file" + +#: templates/index.php:8 msgid "Text file" msgstr "Text file" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "New folder" + +#: templates/index.php:10 msgid "Folder" msgstr "Folder" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "From link" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Deleted files" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Cancel upload" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "You don’t have write permission here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "You don’t have permission to upload or create files here" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Nothing in here. Upload something!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Download" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Unshare" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Delete" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Upload too large" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "The files you are trying to upload exceed the maximum size for file uploads on this server." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Files are being scanned, please wait." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Current scanning" diff --git a/l10n/en_GB/files_encryption.po b/l10n/en_GB/files_encryption.po index b81a0ff62ab101b9efc856a30303e05adff98848..a9281d9215693e36db863712d4529cfc52ceeeef 100644 --- a/l10n/en_GB/files_encryption.po +++ b/l10n/en_GB/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-30 09:31-0400\n" -"PO-Revision-Date: 2013-08-29 16:50+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-02 17:27-0500\n" +"PO-Revision-Date: 2013-11-29 19:30+0000\n" "Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -44,75 +44,96 @@ msgstr "Password changed successfully." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Could not change the password. Maybe the old password was incorrect." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Private key password updated successfully." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Could not update the private key password. Maybe the old password was not correct." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." +"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 "Encryption app not initialised! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialise the encryption app." -#: hooks/hooks.php:41 +#: 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 "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." + +#: 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 "Cannot decrypt this file, which is probably a shared file. Please ask the file owner to reshare the file with you." + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Unknown error. Please check your system settings or contact your administrator" + +#: hooks/hooks.php:59 msgid "Missing requirements." msgstr "Missing requirements." -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "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." -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "Following users are not set up for encryption:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "Initial encryption started... This can take some time. Please wait." + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Saving..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Your private key is not valid! Maybe the your password was changed externally." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Go directly to your " -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "You can unlock your private key in your " - -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "personal settings" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Encryption" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Enable recovery key (allow to recover users files in case of password loss):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Recovery key password" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Repeat recovery key password" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Enabled" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Disabled" @@ -120,58 +141,62 @@ msgstr "Disabled" msgid "Change recovery key password:" msgstr "Change recovery key password:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" -msgstr "Old Recovery key password" +msgstr "Old recovery key password" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" -msgstr "New Recovery key password" +msgstr "New recovery key password" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "Repeat new recovery key password" + +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Change Password" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" -msgstr "Your private key password no longer match your login password:" +msgstr "Your private key password no longer matches your login password:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Set your old private key password to your current login password." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr " If you don't remember your old password you can ask your administrator to recover your files." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Old login password" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Current login password" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Update Private Key Password" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Enable password recovery:" -#: templates/settings-personal.php:47 +#: 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 "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "File recovery settings updated" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Could not update file recovery" diff --git a/l10n/en_GB/files_external.po b/l10n/en_GB/files_external.po index 6190c958520e668424f15466702eae9eaa6ab2c3..bbfe3b3d262e0b7c18db753578bcceb64bcc02c6 100644 --- a/l10n/en_GB/files_external.po +++ b/l10n/en_GB/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-18 16:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -38,20 +38,20 @@ msgstr "Please provide a valid Dropbox app key and secret." msgid "Error configuring Google Drive storage" msgstr "Error configuring Google Drive storage" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." -#: lib/config.php:457 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/en_GB/files_sharing.po b/l10n/en_GB/files_sharing.po index a0f4b32037f646e1965bcd31f6f3d47393ed5b6d..ba0d1d9fcc1d4b1171af7c09a6f8af62a7e8030f 100644 --- a/l10n/en_GB/files_sharing.po +++ b/l10n/en_GB/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-18 16:46+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:00+0000\n" "Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "This share is password-protected" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "The password is wrong. Try again." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Password" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Submit" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Sorry, this link doesn’t seem to work anymore." @@ -54,28 +54,32 @@ msgstr "sharing is disabled" msgid "For more info, please ask the person who sent this link." msgstr "For more info, please ask the person who sent this link." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s shared the folder %s with you" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s shared the file %s with you" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Download" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Upload" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Cancel upload" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "No preview available for" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Direct link" diff --git a/l10n/en_GB/files_trashbin.po b/l10n/en_GB/files_trashbin.po index 6b87c1ddd491eb1735c1b63b833e144ca47c83f9..6da8b00bfe9eda927693cab4b42253e38c1d3653 100644 --- a/l10n/en_GB/files_trashbin.po +++ b/l10n/en_GB/files_trashbin.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-18 16:48+0000\n" -"Last-Translator: mnestis \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "Couldn't delete %s permanently" msgid "Couldn't restore %s" msgstr "Couldn't restore %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "perform restore operation" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Error" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "delete file permanently" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Delete permanently" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Name" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Deleted" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n folder" -msgstr[1] "%n folders" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n file" -msgstr[1] "%n files" - -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "restored" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nothing in here. Your recycle bin is empty!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Name" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Restore" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Deleted" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Delete" diff --git a/l10n/en_GB/lib.po b/l10n/en_GB/lib.po index 14e6d1c7a8b64f60c4aaffc3102e4116b259d959..94418cfa7d9522837a9ddd4397fb03a1e6e7f6ef 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_GB/lib.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-18 13:32+0000\n" -"Last-Translator: mnestis \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,318 +18,317 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "App \"%s\" can't be installed because it is not compatible with this version of ownCloud." -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "No app name specified" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Help" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Personal" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Settings" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Users" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Failed to upgrade \"%s\"." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Custom profile pictures don't work with encryption yet" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Unknown filetype" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Invalid image" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "web services under your control" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "cannot open \"%s\"" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP download is turned off." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Files need to be downloaded one by one." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Back to Files" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Selected files too large to generate zip file." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Download the files in smaller chunks, seperately or kindly ask your administrator." +msgstr "Please download the files separately in smaller chunks or kindly ask your administrator." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "No source specified when installing app" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "No href specified when installing app from http" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "No path specified when installing app from local file" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Archives of type %s are not supported" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Failed to open archive when installing app" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "App does not provide an info.xml file" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "App can't be installed because of unallowed code in the App" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "App can't be installed because it is not compatible with this version of ownCloud" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "App can't be installed because it contains the true tag which is not allowed for non shipped apps" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "App directory already exists" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Can't create app folder. Please fix permissions. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Application is not enabled" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Authentication error" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token expired. Please reload page." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Files" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Text" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Images" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s enter the database username." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s enter the database name." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s you may not use dots in the database name" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL username and/or password not valid: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "You need to enter either an existing account or the administrator." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL username and/or password not valid" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Error: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Offending command was: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL user '%s'@'localhost' exists already." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Drop this user from MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL user '%s'@'%%' already exists" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Drop this user from MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Oracle connection could not be established" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Oracle username and/or password not valid" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Offending command was: \"%s\", name: %s, password: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL username and/or password not valid" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Set an admin username." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Set an admin password." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Your web server is not yet properly setup to allow files synchronisation because the WebDAV interface seems to be broken." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Please double check the installation guides." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Could not find category \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "seconds ago" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute ago" msgstr[1] "%n minutes ago" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hour ago" msgstr[1] "%n hours ago" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "today" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "yesterday" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n day go" msgstr[1] "%n days ago" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "last month" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n month ago" msgstr[1] "%n months ago" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "last year" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "years ago" - -#: template.php:297 -msgid "Caused by:" -msgstr "Caused by:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Could not find category \"%s\"" diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index bcc1f4f64a0bcfd6e3cfa32aeed0df32deade797..d3903fba58be1f9251123bf9f4ef5c65172d1454 100644 --- a/l10n/en_GB/settings.po +++ b/l10n/en_GB/settings.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-05 14:30+0000\n" +"Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,12 +28,12 @@ msgid "Authentication error" msgstr "Authentication error" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Your display name has been changed." +msgid "Your full name has been changed." +msgstr "Your full name has been changed." #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Unable to change display name" +msgid "Unable to change full name" +msgstr "Unable to change full name" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -118,11 +118,11 @@ msgstr "Unable to change password" msgid "Update to {appversion}" msgstr "Update to {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Disable" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Enable" @@ -130,31 +130,31 @@ msgstr "Enable" msgid "Please wait...." msgstr "Please wait...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Error whilst disabling app" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Error whilst enabling app" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Updating...." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Error whilst updating app" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Error" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Update" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Updated" @@ -162,7 +162,7 @@ msgstr "Updated" msgid "Select a profile picture" msgstr "Select a profile picture" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "Decrypting files... Please wait, this can take some time." @@ -182,44 +182,75 @@ msgstr "undo" msgid "Unable to remove user" msgstr "Unable to remove user" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Groups" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Group Admin" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Delete" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "add group" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "A valid username must be provided" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "Error creating user" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "A valid password must be provided" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Warning: Home directory for user \"{user}\" already exists" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "Everything (fatal issues, errors, warnings, info, debug)" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "Info, warnings, errors and fatal issues" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "Warnings, errors and fatal issues" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "Errors and fatal issues" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "Fatal issues only" + +#: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" msgstr "Security Warning" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." + +#: templates/admin.php:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -228,48 +259,68 @@ msgid "" "root." msgstr "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." -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Setup Warning" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Your web server is not yet properly setup to allow files synchronisation because the WebDAV interface seems to be broken." -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Please double check the installation guides." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' missing" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "The PHP module 'fileinfo' is missing. We strongly recommend enabling this module to get best results with mime-type detection." -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "Your PHP version is outdated" + +#: templates/admin.php:82 +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 "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." + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Locale not working" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "System locale can not be set to a one which supports UTF-8." + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "This means that there might be problems with certain characters in file names." + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "We strongly suggest installing the required packages on your system to support one of the following locales: %s." -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Internet connection not working" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -278,110 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don't work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Execute one task with each page loaded" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php is registered at a webcron service to call cron.php once a minute over http." +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Sharing" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Enable Share API" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Allow apps to use the Share API" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Allow links" -#: templates/admin.php:135 +#: templates/admin.php:178 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:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Allow public uploads" -#: templates/admin.php:144 +#: templates/admin.php:187 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:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Allow resharing" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Allow users to share items shared with them again" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Allow users to share with anyone" -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Allow mail notification" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "Allow user to send mail notification for shared files" + +#: templates/admin.php:221 msgid "Security" msgstr "Security" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Enforce HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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:191 +#: templates/admin.php:242 #, 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:203 +#: templates/admin.php:254 msgid "Log" msgstr "Log" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Log level" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "More" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Less" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Version" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Use this address to access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" +msgstr "Use this address to access your Files via WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Encryption" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "The encryption app is no longer enabled, decrypt all your files" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "The encryption app is no longer enabled, please decrypt all your files" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Log-in password" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Decrypt all Files" @@ -573,6 +636,10 @@ msgstr "Enter the recovery password in order to recover the user's files during msgid "Default Storage" msgstr "Default Storage" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "Please enter storage quota (e.g. \"512 MB\" or \"12 GB\")" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Unlimited" @@ -590,8 +657,8 @@ msgid "Storage" msgstr "Storage" #: templates/users.php:108 -msgid "change display name" -msgstr "change display name" +msgid "change full name" +msgstr "change full name" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/en_GB/user_ldap.po b/l10n/en_GB/user_ldap.po index 419452929a171c42e58233090353613ba839436e..b41d0ae02165fd2ad7ad48cad7b6e7c6b756b5b2 100644 --- a/l10n/en_GB/user_ldap.po +++ b/l10n/en_GB/user_ldap.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" -"Last-Translator: mnestis \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,314 +26,425 @@ msgstr "Failed to clear the mappings." msgid "Failed to delete the server configuration" msgstr "Failed to delete the server configuration" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "The configuration is valid and the connection could be established!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "The configuration is valid, but the Bind failed. Please check the server settings and credentials." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "The configuration is invalid. Please look in the ownCloud log for further details." +msgstr "The configuration is invalid. Please have a look at the logs for further details." + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "No action specified" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "No configuration specified" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "No data specified" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr " Could not set configuration %s" -#: js/settings.js:66 +#: js/settings.js:67 msgid "Deletion failed" msgstr "Deletion failed" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Take over settings from recent server configuration?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Keep settings?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Cannot add server configuration" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "mappings cleared" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Success" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Error" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "Configuration OK" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "Configuration incorrect" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "Configuration incomplete" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Select groups" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "Select object classes" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "Select attributes" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Connection test succeeded" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Connection test failed" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Do you really want to delete the current Server Configuration?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Confirm Deletion" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "%s group found" +msgstr[1] "%s groups found" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "%s user found" +msgstr[1] "%s users found" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "Invalid Host" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "Could not find the desired feature" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Save" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Test Configuration" -#: templates/settings.php:12 +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Help" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "Limit the access to %s to groups meeting this criteria:" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "only those object classes:" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "only from those groups:" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "Edit raw filter instead" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "Raw LDAP filter" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "The filter specifies which LDAP groups shall have access to the %s instance." -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "groups found" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "What attribute should be used as login name:" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "LDAP Username:" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "LDAP Email Address:" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "Other Attributes:" + +#: 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 "Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" + +#: templates/part.wizard-server.php:18 msgid "Add Server Configuration" msgstr "Add Server Configuration" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Host" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "You can omit the protocol, except you require SSL. Then start with ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Base DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "One Base DN per line" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Port" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "User DN" -#: templates/settings.php:46 +#: 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 "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." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Password" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "For anonymous access, leave DN and Password empty." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "One Base DN per line" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "You can specify Base DN for users and groups in the Advanced tab" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "Limit the access to %s to users meeting this criteria:" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "The filter specifies which LDAP users shall have access to the %s instance." -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "users found" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "Defines the filter to apply, when retrieving users (no placeholders). Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Back" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Continue" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "Defines the filter to apply, when retrieving groups (no placeholders). Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Connection Settings" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Configuration Active" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "When unchecked, this configuration will be skipped." -#: templates/settings.php:69 -msgid "Port" -msgstr "Port" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Backup (Replica) Host" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Give an optional backup host. It must be a replica of the main LDAP/AD server." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Backup (Replica) Port" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Disable Main Server" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "Only connect to the replica server." -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Use TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Do not use it additionally for LDAPS connections, it will fail." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Case insensitve LDAP server (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Turn off SSL certificate validation." -#: templates/settings.php:75 +#: 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 "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." -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Cache Time-To-Live" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "in seconds. A change empties the cache." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Directory Settings" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "User Display Name Field" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "The LDAP attribute to use to generate the user's display name." -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Base User Tree" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "One User Base DN per line" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "User Search Attributes" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Optional; one attribute per line" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Group Display Name Field" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "The LDAP attribute to use to generate the group's display name." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Base Group Tree" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "One Group Base DN per line" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Group Search Attributes" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Group-Member association" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Special Attributes" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Quota Field" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Quota Default" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "in bytes" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "Email Field" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "User Home Folder Naming Rule" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "Internal Username" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -349,15 +460,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "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 behaviour as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users." -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "Internal Username Attribute:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "Override UUID detection" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -368,15 +479,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "By default, the UUID attribute is automatically detected. The UUID attribute is used to unambiguously 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 behaviour. Changes will have effect only on newly mapped (added) LDAP users and groups." -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "UUID Attribute for Users:" -#: templates/settings.php:104 +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "UUID Attribute for Groups:" + +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "Username-LDAP User Mapping" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -390,18 +505,10 @@ msgid "" "experimental stage." msgstr "Usernames are used to store and assign (meta) data. In order to precisely identify and recognise 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." -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "Clear Username-LDAP User Mapping" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Clear Groupname-LDAP Group Mapping" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Test Configuration" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Help" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 1ea5a607492784974565d40ec60ddb8e749a6f55..66aa1f14f4b33a043ad8ee2d1449481dd5377d9b 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -19,14 +19,15 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s kunhavigis “%s” kun vi" -#: ajax/share.php:227 -msgid "group" -msgstr "grupo" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -53,45 +54,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Ne proviziĝis tipon de kategorio." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Ĉu neniu kategorio estas aldonota?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Tiu kategorio jam ekzistas: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Ne proviziĝis tipon de objekto." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "Ne proviziĝis ID-on de %s." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Eraro dum aldono de %s al favoratoj." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Neniu kategorio elektiĝis por forigo." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Eraro dum forigo de %s el favoratoj." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -188,59 +150,59 @@ msgstr "Novembro" msgid "December" msgstr "Decembro" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Agordo" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "hodiaŭ" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "lastamonate" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "monatoj antaŭe" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "lastajare" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "jaroj antaŭe" @@ -308,155 +270,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Ne indikiĝis tipo de la objekto." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Eraro" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Ne indikiĝis nomo de la aplikaĵo." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "La necesa dosiero {file} ne instaliĝis!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Dividita" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Kunhavigi" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Eraro" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Eraro dum kunhavigo" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Eraro dum malkunhavigo" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Eraro dum ŝanĝo de permesoj" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Kunhavigita kun vi kaj la grupo {group} de {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Kunhavigita kun vi de {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Kunhavigi kun" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "Kunhavigi per ligilo" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Protekti per pasvorto" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Pasvorto" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Retpoŝti la ligilon al ulo" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Sendi" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Agordi limdaton" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Limdato" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Kunhavigi per retpoŝto:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Ne troviĝis gento" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "grupo" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Rekunhavigo ne permesatas" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Kunhavigita en {item} kun {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Malkunhavigi" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "povas redakti" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "alirkontrolo" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "krei" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "ĝisdatigi" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "forigi" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "kunhavigi" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Protektita per pasvorto" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Eraro dum malagordado de limdato" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Eraro dum agordado de limdato" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Sendante..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "La retpoŝtaĵo sendiĝis" +#: js/share.js:769 +msgid "Warning" +msgstr "Averto" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Ne indikiĝis tipo de la objekto." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Forigi" + +#: js/tags.js:31 +msgid "Add" +msgstr "Aldoni" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "La peto malsukcesis!
    Ĉu vi certiĝis, ke via retpoŝto/uzantonomo ĝustas?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Vi ricevos ligilon retpoŝte por rekomencigi vian pasvorton." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Uzantonomo" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -505,13 +495,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Jes, mi vere volas restarigi mian pasvorton nun" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Peti rekomencigon" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -537,7 +527,7 @@ msgstr "Persona" msgid "Users" msgstr "Uzantoj" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Aplikaĵoj" @@ -549,6 +539,34 @@ msgstr "Administranto" msgid "Help" msgstr "Helpo" +#: 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 "Aliro estas malpermesata" @@ -565,108 +583,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Saluton:\n\nNi nur sciigas vin, ke %s kunhavigis %s kun vi.\nVidu ĝin: %s\n\nĜis!" +msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Redakti kategoriojn" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Aldoni" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Sekureca averto" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Via PHP versio estas sendefenda je la NULL bajto atako (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Ne disponeblas sekura generilo de hazardaj numeroj; bonvolu kapabligi la OpenSSL-kromaĵon por PHP." -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Krei administran konton" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Progresinta" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Datuma dosierujo" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Agordi la datumbazon" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "estos uzata" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Datumbaza uzanto" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Datumbaza pasvorto" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Datumbaza nomo" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Datumbaza tabelospaco" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Datumbaza gastigo" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Fini la instalon" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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 "%s haveblas. Ekhavi pli da informo pri kiel ĝisdatigi." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Elsaluti" @@ -684,19 +713,27 @@ msgstr "Se vi ne ŝanĝis vian pasvorton lastatempe, via konto eble kompromitas! msgid "Please change your password to secure your account again." msgstr "Bonvolu ŝanĝi vian pasvorton por sekurigi vian konton ree." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Ĉu vi perdis vian pasvorton?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "memori" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Ensaluti" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Alternativaj ensalutoj" @@ -704,10 +741,37 @@ msgstr "Alternativaj ensalutoj" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Saluton:

    Ni nur sciigas vin, ke %s kunhavigis “%s” kun vi.
    Vidu ĝin

    Ĝis!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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 "ownCloud ĝisdatiĝas al eldono %s, tio ĉi povas daŭri je iom da tempo." + +#: 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/eo/files.po b/l10n/eo/files.po index 0f9a143e22a751fe069fc3e89638d5aa21de3685..cb3d5db55980ccff4a251ff28686d0a653658a50 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -28,220 +28,286 @@ msgstr "Ne eblis movi %s: dosiero kun ĉi tiu nomo jam ekzistas" msgid "Could not move %s" msgstr "Ne eblis movi %s" -#: ajax/upload.php:16 ajax/upload.php:45 -msgid "Unable to set upload directory." +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Dosiernomo devas ne malpleni." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "La dosieronomo ne devas enhavi “/”. Bonvolu elekti malsaman nomon." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "La nomo %s jam uziĝas en la dosierujo %s. Bonvolu elekti malsaman nomon." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "Nevalida fonto" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/upload.php:22 +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Eraris elŝuto de %s al %s" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Eraris la kreo de la dosiero" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "La dosierujnomo ne povas malpleni." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "La dosiernomo ne devas enhavi “/”. Bonvolu elekti malsaman nomon." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Eraris la kreo de la dosierujo" + +#: ajax/upload.php:18 ajax/upload.php:50 +msgid "Unable to set upload directory." +msgstr "Ne povis agordiĝi la alŝuta dosierujo." + +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Neniu dosiero alŝutiĝis. Nekonata eraro." -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Ne estas eraro, la dosiero alŝutiĝis sukcese." -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "la alŝutita dosiero nur parte alŝutiĝis" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Neniu dosiero alŝutiĝis." -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Mankas provizora dosierujo." -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Malsukcesis skribo al disko" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Ne haveblas sufiĉa memoro" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "La alŝuto malsukcesis. Ne povis ekhaviĝi informo pri dosiero." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "La alŝuto malsukcesis. Ne troviĝis alŝutota dosiero." -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Nevalida dosierujo." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Dosieroj" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "Ne povis alŝutiĝi {filename} ĉar ĝi estas dosierujo aŭ ĝi havas 0 duumokojn" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Ne haveblas sufiĉa spaco" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "La alŝuto nuliĝis." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "" +msgstr "Ne povis ekhaviĝi rezulto el la servilo." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "URL ne povas esti malplena." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "La URL ne povas malpleni" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Nevalida dosierujnomo. La uzo de “Shared” estas rezervita de ownCloud." +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Eraro" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} jam ekzistas" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Ne povis kreiĝi dosiero" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Ne povis kreiĝi dosierujo" -#: js/fileactions.js:119 +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "Kunhavigi" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Forigi por ĉiam" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Alinomigi" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Traktotaj" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} jam ekzistas" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "anstataŭigi" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "sugesti nomon" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Ne povis alinomiĝi dosiero" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "nuligi" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "anstataŭiĝis {new_name} per {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "malfari" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n dosierujo" +msgstr[1] "%n dosierujoj" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n dosiero" +msgstr[1] "%n dosieroj" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" -msgstr "" +msgstr "{dirs} kaj {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Alŝutatas %n dosiero" +msgstr[1] "Alŝutatas %n dosieroj" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' ne estas valida dosiernomo." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Dosiernomo devas ne malpleni." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Via memoro plenas, ne plu eblas ĝisdatigi aŭ sinkronigi dosierojn!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Via memoro preskaŭ plenas ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Via elŝuto pretiĝatas. Ĉi tio povas daŭri iom da tempo se la dosieroj grandas." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" -msgstr "" +msgstr "Eraris movo de dosiero" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Eraro" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Nomo" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Grando" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Modifita" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s ne povis alinomiĝi" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Alŝuti" @@ -277,65 +343,69 @@ msgstr "Maksimuma enirgrando por ZIP-dosieroj" msgid "Save" msgstr "Konservi" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nova" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "Tekstodosiero" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Nova dosierujo" + +#: templates/index.php:10 msgid "Folder" msgstr "Dosierujo" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "El ligilo" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Forigitaj dosieroj" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Nuligi alŝuton" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Vi ne havas permeson skribi ĉi tie." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "Vi ne havas permeson alŝuti aŭ krei dosierojn ĉi tie" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Nenio estas ĉi tie. Alŝutu ion!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Elŝuti" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Malkunhavigi" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Forigi" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Alŝuto tro larĝa" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Dosieroj estas skanataj, bonvolu atendi." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Nuna skano" diff --git a/l10n/eo/files_encryption.po b/l10n/eo/files_encryption.po index 10dcc993da797a8687b9dbf52b4295b81adb248d..a6984c357683f0d55dad41a11cbee6b226c84f6e 100644 --- a/l10n/eo/files_encryption.po +++ b/l10n/eo/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:09+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" @@ -44,75 +44,96 @@ msgstr "La pasvorto sukcese ŝanĝiĝis." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Ne eblis ŝanĝi la pasvorton. Eble la malnova pasvorto malĝustis." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "La pasvorto de la malpublika klavo sukcese ĝisdatiĝis." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:41 -msgid "Missing requirements." +#: 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:42 +#: hooks/hooks.php:59 +msgid "Missing requirements." +msgstr "Mankas neproj." + +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Konservante..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Iri direkte al via" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "persona agordo" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Ĉifrado" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Kapabligita" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Malkapabligita" @@ -120,58 +141,62 @@ msgstr "Malkapabligita" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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 "Ŝarĝi pasvorton" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "La pasvorto de via malpublika klavo ne plu kongruas kun via ensaluta pasvorto:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Malnova ensaluta pasvorto" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Nuna ensaluta pasvorto" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Ĝisdatigi la pasvorton de la malpublika klavo" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index a97c1db9c07030b1ca163600850f293cbc99e39a..15d48094528a5804ad0da166bebeacece27260d1 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Alirpermeso donita" @@ -25,7 +25,7 @@ msgstr "Alirpermeso donita" msgid "Error configuring Dropbox storage" msgstr "Eraro dum agordado de la memorservo Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Doni alirpermeson" @@ -33,24 +33,24 @@ msgstr "Doni alirpermeson" msgid "Please provide a valid Dropbox app key and secret." msgstr "Bonvolu provizi ŝlosilon de la aplikaĵo Dropbox validan kaj sekretan." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Eraro dum agordado de la memorservo Google Drive" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index cc9cb10772a832d3345f784047e1be90fb5aa07e..98301b5390ce51f3952c9300ce1baa139a19bccd 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mariano , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,63 +19,67 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Ĉi tiu kunhavigo estas protektata per pasvorto" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Pasvorto" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Sendi" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Pardonu, ĉi tiu ligilo ŝajne ne plu funkcias." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Kialoj povas esti:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "la ero foriĝis" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "la ligilo eksvalidiĝis" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "kunhavigo malkapablas" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Por plia informo, bonvolu peti al la persono, kiu sendis ĉi tiun ligilon." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s kunhavigis la dosierujon %s kun vi" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s kunhavigis la dosieron %s kun vi" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Elŝuti" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Alŝuti" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Nuligi alŝuton" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Ne haveblas antaŭvido por" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Direkta ligilo" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index def217fe084d861997ff1b75f22e3a6d92e24fff..2417a2e8c67fcbbbd08097f2a46ab71b9685abfa 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mariano , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,62 +21,38 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "Ne povis foriĝi %s por ĉiam" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "" +msgstr "Ne povis restaŭriĝi %s" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Eraro" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" +#: lib/trashbin.php:815 lib/trashbin.php:817 +msgid "restored" +msgstr "restaŭrita" -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Forigi por ĉiam" +#: templates/index.php:8 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "Nenio estas ĉi tie. Via rubujo malplenas!" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:22 msgid "Name" msgstr "Nomo" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" -msgstr "" - -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Restaŭri" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Forigita" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Forigi" diff --git a/l10n/eo/files_versions.po b/l10n/eo/files_versions.po index 1225699dbba72d9cb58a4bfd3eb95057870303ed..27cee56098cf2a00b0b54f44c8b083b74e9bc884 100644 --- a/l10n/eo/files_versions.po +++ b/l10n/eo/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mariano , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-06 21:43-0500\n" +"PO-Revision-Date: 2013-11-03 19:40+0000\n" +"Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,22 +23,22 @@ msgstr "" msgid "Could not revert: %s" msgstr "Ne eblas malfari: %s" -#: js/versions.js:7 +#: js/versions.js:14 msgid "Versions" msgstr "Versioj" -#: js/versions.js:53 +#: js/versions.js:60 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "Malsukcesis returnigo de {file} al la revizio {timestamp}." -#: js/versions.js:79 +#: js/versions.js:86 msgid "More versions..." -msgstr "" +msgstr "Pli da versioj..." -#: js/versions.js:116 +#: js/versions.js:123 msgid "No other versions available" -msgstr "" +msgstr "Ne disponeblas aliaj versioj" -#: js/versions.js:149 +#: js/versions.js:154 msgid "Restore" msgstr "Restaŭri" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 355fcf739840dea8af368efa5fabebfa7f731254..cceb200d0237b9a6c4bdebf1a76b3c19c34452f0 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,318 +18,317 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Helpo" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Persona" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Agordo" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Uzantoj" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Administranto" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "TTT-servoj regataj de vi" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP-elŝuto estas malkapabligita." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Dosieroj devas elŝutiĝi unuope." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Reen al la dosieroj" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "La elektitaj dosieroj tro grandas por genero de ZIP-dosiero." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "La aplikaĵo ne estas kapabligita" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Aŭtentiga eraro" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Ĵetono eksvalidiĝis. Bonvolu reŝargi la paĝon." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Dosieroj" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Teksto" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Bildoj" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s enigu la uzantonomon de la datumbazo." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s enigu la nomon de la datumbazo." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s vi ne povas uzi punktojn en la nomo de la datumbazo" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "La uzantonomo de MS SQL aŭ la pasvorto ne validas: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "La uzantonomo de MySQL aŭ la pasvorto ne validas" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "Datumbaza eraro: “%s”" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "La uzanto de MySQL “%s”@“localhost” jam ekzistas." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Forigi ĉi tiun uzanton el MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "La uzanto de MySQL “%s”@“%%” jam ekzistas" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Forigi ĉi tiun uzanton el MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Konekto al Oracle ne povas stariĝi" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "La uzantonomo de Oracle aŭ la pasvorto ne validas" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "La uzantonomo de PostgreSQL aŭ la pasvorto ne validas" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Starigi administran uzantonomon." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Starigi administran pasvorton." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dosierojn ĉar la WebDAV-interfaco ŝajnas rompita." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Bonvolu duoble kontroli la gvidilon por instalo." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Ne troviĝis kategorio “%s”" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "hodiaŭ" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "hieraŭ" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "lastamonate" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "lastajare" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "jaroj antaŭe" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Ne troviĝis kategorio “%s”" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index d049887b7b2301a7902859f3c06b4e9433f4262a..18451d02c5856a9e572d4c527dbd81dac2f7d458 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "Aŭtentiga eraro" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Malkapabligi" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Kapabligi" @@ -129,31 +129,31 @@ msgstr "Kapabligi" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Eraro" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Ĝisdatigi" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "malfari" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupoj" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grupadministranto" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Forigi" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Esperanto" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "Sekureca averto" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Kunhavigo" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Kapabligi API-on por Kunhavigo" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Kapabligi aplikaĵojn uzi la API-on pri Kunhavigo" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Kapabligi ligilojn" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Kapabligi uzantojn kunhavigi erojn kun la publiko perligile" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Kapabligi rekunhavigon" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Kapabligi uzantojn rekunhavigi erojn kunhavigitajn kun ili" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Kapabligi uzantojn kunhavigi kun ĉiu ajn" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Kapabligi uzantojn nur kunhavigi kun uzantoj el siaj grupoj" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "Protokolo" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Registronivelo" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Pli" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Malpli" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Eldono" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Ĉifrado" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "Defaŭlta konservejo" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Senlima" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "Konservejo" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index ea6f21e2c8888bf7961c2482bc790eccdc85a219..8ba0c5153c1293def8dce42a17df23419f2e0b7f 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mariano , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -23,316 +24,427 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "Malsukcesis forigo de la agordo de servilo" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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 "Forigo malsukcesis" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" -msgstr "" +msgstr "Ĉu daŭrigi la agordon?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" -msgstr "" +msgstr "Ne eblas aldoni agordon de servilo" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Sukceso" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Eraro" -#: js/settings.js:141 -msgid "Connection test succeeded" +#: js/settings.js:837 +msgid "Configuration OK" msgstr "" -#: js/settings.js:146 -msgid "Connection test failed" +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" msgstr "" -#: js/settings.js:156 +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Elekti grupojn" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "Elekti objektoklasojn" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "Elekti atribuojn" + +#: js/settings.js:905 +msgid "Connection test succeeded" +msgstr "Provo de konekto sukcesis" + +#: js/settings.js:912 +msgid "Connection test failed" +msgstr "Provo de konekto malsukcesis" + +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" +msgstr "Konfirmi forigon" + +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "%s grupo troviĝis" +msgstr[1] "%s grupoj troviĝis" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "%s uzanto troviĝis" +msgstr[1] "%s uzanto troviĝis" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "Nevalida gastigo" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Konservi" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Provi agordon" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Helpo" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "nur tiuj objektoklasoj:" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "nur el tiuj grupoj:" + +#: 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/settings.php:12 +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "grupoj trovitaj" + +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "LDAP-uzantonomo:" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "LDAP-retpoŝtadreso:" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "Aliaj atribuoj:" + +#: 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/settings.php:37 +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" +msgstr "Aldoni agordon de servilo" + +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Gastigo" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Vi povas neglekti la protokolon, escepte se vi bezonas SSL-on. Tiuokaze, komencu per ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Bazo-DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Pordo" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "Uzanto-DN" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Pasvorto" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Por sennoman aliron, lasu DN-on kaj Pasvorton malplenaj." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Filtrilo de uzantensaluto" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Filtrilo de uzantolisto" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "uzantoj trovitaj" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Antaŭen" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Filtrilo de grupo" +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" -msgstr "" +msgstr "Agordo de konekto" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "Pordo" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" -msgstr "" +msgstr "Malkapabligi la ĉefan servilon" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Uzi TLS-on" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "LDAP-servilo blinda je litergrandeco (Vindozo)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Malkapabligi validkontrolon de SSL-atestiloj." -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Vivotempo de la kaŝmemoro" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "sekunde. Ajna ŝanĝo malplenigas la kaŝmemoron." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Kampo de vidignomo de uzanto" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Baza uzantarbo" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Kampo de vidignomo de grupo" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Baza gruparbo" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" -msgstr "" +msgstr "Atribuoj de gruposerĉo" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Asocio de grupo kaj membro" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" -msgstr "" +msgstr "Specialaj atribuoj" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" -msgstr "" +msgstr "Kampo de kvoto" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "duumoke" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" -msgstr "" +msgstr "Kampo de retpoŝto" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Lasu malplena por uzantonomo (defaŭlto). Alie, specifu LDAP/AD-atributon." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" -msgstr "" +msgstr "Ena uzantonomo" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +460,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" -msgstr "" +msgstr "Atribuo de ena uzantonomo:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +479,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "UUID-atribuo por uzantoj:" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "UUID-atribuo por grupoj:" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +505,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Helpo" diff --git a/l10n/eo/user_webdavauth.po b/l10n/eo/user_webdavauth.po index 1da9b2ef919d969a78eff4c94d5d617877f9bb41..ed8275f259944c356531625a527f59b7956349e6 100644 --- a/l10n/eo/user_webdavauth.po +++ b/l10n/eo/user_webdavauth.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-06 21:43-0500\n" +"PO-Revision-Date: 2013-11-03 20:21+0000\n" +"Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,7 +25,7 @@ msgstr "WebDAV-aŭtentigo" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Adreso:" #: templates/settings.php:7 msgid "" diff --git a/l10n/es/core.po b/l10n/es/core.po index 5e96058e82f7255f6df62da85563fe0cd978917f..ed95b47d7f15300135607f4cc0773eb2add1309b 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -6,9 +6,11 @@ # Art O. Pal , 2013 # ggam , 2013 # I Robot , 2013 +# juanman , 2013 # msoko , 2013 # pablomillaquen , 2013 -# Korrosivo , 2013 +# Raul Fernandez Garcia , 2013 +# Rubén del Campo , 2013 # saskarip , 2013 # saskarip , 2013 # iGerli , 2013 @@ -16,10 +18,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:10+0000\n" +"Last-Translator: juanman \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" @@ -27,14 +29,15 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s ha compatido »%s« contigo" -#: ajax/share.php:227 -msgid "group" -msgstr "grupo" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "No se pudo enviar el mensaje a los siguientes usuarios: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -61,64 +64,25 @@ msgstr "Caché de archivos actualizada" msgid "... %d%% done ..." msgstr "... %d%% hecho ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Tipo de categoría no proporcionado." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "¿Ninguna categoría para añadir?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Esta categoría ya existe: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Tipo de objeto no proporcionado." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "ID de %s no proporcionado." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Error añadiendo %s a favoritos." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "No hay categorías seleccionadas para borrar." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Error eliminando %s de los favoritos." - #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "No se especificó ningún archivo o imagen" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Tipo de archivo desconocido" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Imagen inválida" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "No hay disponible una imagen temporal de perfil, pruebe de nuevo" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "No se proporcionó datos del recorte" #: js/config.php:32 msgid "Sunday" @@ -196,59 +160,59 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Ajustes" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "segundos antes" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "hoy" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "ayer" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "el mes pasado" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "meses antes" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "el año pasado" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "años antes" @@ -258,7 +222,7 @@ msgstr "Seleccionar" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Error cargando plantilla del seleccionador de archivos: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -274,27 +238,27 @@ msgstr "Aceptar" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Error cargando plantilla del mensaje: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{count} conflicto de archivo" +msgstr[1] "{count} conflictos de archivo" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "On conflicto de archivo" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "¿Que archivos deseas mantener?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Si seleccionas ambas versiones, el archivo copiado tendrá añadido un número en su nombre." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -302,169 +266,197 @@ msgstr "Cancelar" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Continuar" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(seleccionados todos)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} seleccionados)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" - -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "El tipo de objeto no está especificado." +msgstr "Error cargando plantilla de archivo existente" -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Error" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "El nombre de la aplicación no está especificado." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "¡El fichero {file} es necesario y no está instalado!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Compartido" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Compartir" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Error" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Error al compartir" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Error al dejar de compartir" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Error al cambiar permisos" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Compartido contigo y el grupo {group} por {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Compartido contigo por {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Compartir con" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Compartido con el usuario o con el grupo ..." -#: js/share.js:188 -msgid "Share with link" -msgstr "Compartir con enlace" +#: js/share.js:219 +msgid "Share link" +msgstr "Enlace compartido" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Protección con contraseña" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Contraseña" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Permitir Subida Pública" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Enviar enlace por correo electrónico a una persona" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Enviar" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Establecer fecha de caducidad" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Fecha de caducidad" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Compartir por correo electrónico:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "No se encontró gente" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "grupo" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "No se permite compartir de nuevo" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "notificar al usuario por correo electrónico" + +#: js/share.js:408 msgid "can edit" msgstr "puede editar" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "control de acceso" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "crear" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "actualizar" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "eliminar" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "compartir" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Protegido con contraseña" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Error eliminando fecha de caducidad" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "Correo electrónico enviado" +#: js/share.js:769 +msgid "Warning" +msgstr "Precaución" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "El tipo de objeto no está especificado." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Ingresar nueva" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Eliminar" + +#: js/tags.js:31 +msgid "Add" +msgstr "Agregar" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Editar etiquetas" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Error cargando plantilla de diálogo: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "No hay etiquetas seleccionadas para borrar." + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "Vuelva a cargar la página." + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "El enlace para restablecer la contraseña ha sido enviada a su correo electrónico.
    Si no lo recibe en un plazo razonable de tiempo, revise su carpeta de spam / correo no deseado.
    Si no está allí, pregunte a su administrador local." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "La petición ha fallado!
    ¿Está seguro de que su dirección de correo electrónico o nombre de usuario era correcto?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Recibirá un enlace por correo electrónico para restablecer su contraseña" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Nombre de usuario" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -513,13 +505,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Sus archivos están cifrados. Si no ha habilitado la clave de recurperación, no habrá forma de recuperar sus datos luego de que la contraseña sea reseteada. Si no está seguro de qué hacer, contacte a su administrador antes de continuar. ¿Realmente desea continuar?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Sí. Realmente deseo resetear mi contraseña ahora" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Solicitar restablecimiento" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Reiniciar" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -545,7 +537,7 @@ msgstr "Personal" msgid "Users" msgstr "Usuarios" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Aplicaciones" @@ -557,6 +549,34 @@ msgstr "Administración" msgid "Help" msgstr "Ayuda" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "Error cargando etiquetas." + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "La etiqueta ya existe" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "Error borrando etiqueta(s)" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "Error al etiquetar" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "Error al quitar etiqueta" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "Error al marcar como favorito" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "Error al quitar como favorito" + #: templates/403.php:12 msgid "Access forbidden" msgstr "Acceso denegado" @@ -573,108 +593,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hey,\n\nsólo te hago saber que %s ha compartido %s contigo.\nEcha un ojo en: %s\n\n¡Un saludo!" +msgstr "Hola:\n\nTan solo queremos informarte que %s compartió %s contigo.\nMíralo aquí: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Editar categorías" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "El objeto dejará de ser compartido el %s." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Agregar" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "¡Saludos!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Advertencia de seguridad" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Su versión de PHP es vulnerable al ataque de Byte NULL (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Por favor, actualice su instalación PHP para usar %s con seguridad." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "No está disponible un generador de números aleatorios seguro, por favor habilite la extensión OpenSSL de PHP." -#: templates/installation.php:33 +#: 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 "Sin un generador de números aleatorios seguro, un atacante podría predecir los tokens de restablecimiento de contraseñas y tomar el control de su cuenta." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Su directorio de datos y sus archivos probablemente sean accesibles a través de internet ya que el archivo .htaccess no funciona." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "Para información de cómo configurar apropiadamente su servidor, por favor vea la documentación." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Crear una cuenta de administrador" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Directorio de datos" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Configurar la base de datos" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "se utilizarán" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Contraseña de la base de datos" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Host de la base de datos" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Completar la instalación" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Finalizando..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "Esta aplicación requiere que se habilite JavaScript para su correcta operación. Por favor habilite JavaScript y vuelva a cargar esta interfaz." + +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s esta disponible. Obtener mas información de como actualizar." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Salir" @@ -692,19 +723,27 @@ msgstr "Si no ha cambiado su contraseña recientemente, ¡puede que su cuenta es msgid "Please change your password to secure your account again." msgstr "Por favor cambie su contraseña para asegurar su cuenta nuevamente." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "La autenticación a fallado en el servidor." + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Por favor, contacte con el administrador." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "¿Ha perdido su contraseña?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "recordar" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Entrar" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Inicios de sesión alternativos" @@ -712,10 +751,37 @@ msgstr "Inicios de sesión alternativos" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Hey,

    sólo te hago saber que %s ha compartido %s contigo.
    ¡Echa un ojo!

    ¡Un saludo!" +"href=\"%s\">View it!

    " +msgstr "Hola:

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

    " + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "Esta instalación de ownCloud se encuentra en modo de usuario único." + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "Esto quiere decir que solo un administrador puede usarla." -#: templates/update.php:3 +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "Contacte con su administrador de sistemas si este mensaje persiste o aparece de forma inesperada." + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "Gracias por su paciencia." + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "Esta versión de owncloud se está actualizando, esto puede demorar un tiempo." + +#: 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." diff --git a/l10n/es/files.po b/l10n/es/files.po index a4058e8958c7e29d4294dabfbf61af090f1eec6a..0cfd42968ebe981b16f090c809c82b3887e8e562 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -5,17 +5,20 @@ # Translators: # Art O. Pal , 2013 # ggam , 2013 +# japaol , 2013 +# juanman , 2013 # mikelanabitarte , 2013 +# Raul Fernandez Garcia , 2013 # qdneren , 2013 -# Korrosivo , 2013 +# Rubén del Campo , 2013 # saskarip , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:10+0000\n" +"Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,233 +29,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "No se pudo mover %s - Un archivo con ese nombre ya existe." +msgstr "No se pudo mover %s - Ya existe un archivo con ese nombre." #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" msgstr "No se pudo mover %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "El nombre de archivo no puede estar vacío." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "El nombre del archivo, NO puede contener el simbolo\"/\", por favor elija un nombre diferente." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "El nombre %s ya está en uso por la carpeta %s. Por favor elija uno diferente." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "No es un origen válido" + +#: ajax/newfile.php:86 +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:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Error mientras se descargaba %s a %s" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Error al crear el archivo" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "El nombre de la carpeta no puede estar vacío." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "El nombre de la carpeta, NO puede contener el simbolo\"/\", por favor elija un nombre diferente." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Error al crear la carpeta." + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Incapaz de crear directorio de subida." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Token Inválido" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "No se subió ningún archivo. Error desconocido" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" -msgstr "No hay ningún error, el archivo se ha subido con éxito" +msgstr "No hubo ningún problema, el archivo se subió con éxito" -#: ajax/upload.php:67 +#: ajax/upload.php:72 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" +msgstr "El archivo subido sobrepasa la directiva 'upload_max_filesize' en php.ini:" -#: ajax/upload.php:69 +#: ajax/upload.php:74 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" +msgstr "El archivo subido sobrepasa la directiva 'MAX_FILE_SIZE' especificada en el formulario HTML" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "El archivo subido fue sólo subido parcialmente" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "No se subió ningún archivo" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Falta la carpeta temporal" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Falló al escribir al disco" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Actualización fallida. No se pudo obtener información del archivo." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Actualización fallida. No se pudo encontrar el archivo subido" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Directorio inválido." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Archivos" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "No ha sido posible subir {filename} porque es un directorio o tiene 0 bytes" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "No hay suficiente espacio disponible" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "" +msgstr "No se pudo obtener respuesta del servidor." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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 cancelará la subida." +msgstr "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada." -#: js/file-upload.js:520 -msgid "URL cannot be empty." -msgstr "La URL no puede estar vacía." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "La dirección URL no puede estar vacía" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Nombre de carpeta invalido. El uso de \"Shared\" está reservado por ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "En la carpeta de inicio, 'Shared' es un nombre reservado" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Error" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} ya existe" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "No se pudo crear el archivo" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "No se pudo crear la carpeta" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Error al descargar URL." -#: js/fileactions.js:119 +#: js/fileactions.js:125 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Pendiente" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} ya existe" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "reemplazar" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "No se pudo renombrar el archivo" -#: js/filelist.js:416 -msgid "suggest name" -msgstr "sugerir nombre" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "cancelar" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "deshacer" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Error borrando el archivo." + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" -msgstr[0] "" +msgstr[0] "%n carpeta" msgstr[1] "%n carpetas" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" -msgstr[0] "" +msgstr[0] "%n archivo" msgstr[1] "%n archivos" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} y {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Subiendo %n archivo" msgstr[1] "Subiendo %n archivos" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' no es un nombre de archivo válido." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "El nombre de archivo no puede estar vacío." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " +msgstr "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Su almacenamiento está lleno, ¡no se pueden actualizar o sincronizar más!" +msgstr "Su almacenamiento está lleno, ¡los archivos no se actualizarán ni sincronizarán más!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Su almacenamiento está casi lleno ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "La app de crifrado está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo." + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "La clave privada no es válida para la app de cifrado. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos cifrados." + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "El cifrado ha sido deshabilitado pero tus archivos permanecen cifrados. Por favor, ve a tus ajustes personales para descifrar tus archivos." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Su descarga está siendo preparada. Esto puede tardar algún tiempo si los archivos son grandes." +msgstr "Su descarga está siendo preparada. Esto podría tardar algo de tiempo si los archivos son grandes." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" -msgstr "" +msgstr "Error moviendo archivo" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Error" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Nombre" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Tamaño" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Modificado" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado." + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" -msgstr "%s no se pudo renombrar" +msgstr "%s no pudo ser renombrado" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Subir" #: templates/admin.php:5 msgid "File handling" -msgstr "Manejo de archivos" +msgstr "Administración de archivos" #: templates/admin.php:7 msgid "Maximum upload size" @@ -272,7 +341,7 @@ msgstr "Habilitar descarga en ZIP" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 es ilimitado" +msgstr "0 significa ilimitado" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" @@ -282,68 +351,72 @@ msgstr "Tamaño máximo para archivos ZIP de entrada" msgid "Save" msgstr "Guardar" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nuevo" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "Nuevo archivo de texto" + +#: templates/index.php:8 msgid "Text file" msgstr "Archivo de texto" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Nueva carpeta" + +#: templates/index.php:10 msgid "Folder" msgstr "Carpeta" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Desde enlace" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Archivos eliminados" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "No tiene permisos de escritura aquí." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "No tienes permisos para subir o crear archivos aquí." -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "No hay nada aquí. ¡Suba algo!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Descargar" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Dejar de compartir" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Eliminar" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Subida demasido grande" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Los archivos están siendo escaneados, por favor espere." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Escaneo actual" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Actualizando caché del sistema de archivos" +msgstr "Actualizando caché del sistema de archivos..." diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index e32866e30113b8fb588bd628a6f7705771521b1c..cb14c25e467d30eec5b7fc20663ac570a2c8ffca 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -3,20 +3,25 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Art O. Pal , 2013 # asaez , 2013 # gmoriello , 2013 +# japaol , 2013 +# juanman , 2013 +# Maenso , 2013 # mikelanabitarte , 2013 -# Korrosivo , 2013 +# Raul Fernandez Garcia , 2013 +# Rubén del Campo , 2013 # saskarip , 2013 # William Díaz , 2013 # xhiena , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-05 07:36-0400\n" -"PO-Revision-Date: 2013-09-03 18:20+0000\n" -"Last-Translator: Korrosivo \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-02 17:27-0500\n" +"PO-Revision-Date: 2013-11-29 22:20+0000\n" +"Last-Translator: Raul Fernandez Garcia \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -50,75 +55,96 @@ msgstr "Su contraseña ha sido cambiada" msgid "Could not change the password. Maybe the old password was not correct." msgstr "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Contraseña de clave privada actualizada con éxito." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea correcta." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar su clave privada en sus opciones personales para recuperar el acceso a sus ficheros." +"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 "¡La aplicación de cifrado no ha sido inicializada! Quizá fue restablecida durante tu sesión. Por favor intenta cerrar la sesión y volver a iniciarla para inicializar la aplicación de cifrado." -#: hooks/hooks.php:51 +#: 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 "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. de %s (Ej:Su directorio corporativo). Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus archivos." + +#: 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 "No fue posible descifrar este archivo, probablemente se trate de un archivo compartido. Solicite al propietario del mismo que vuelva a compartirlo con usted." + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Error desconocido. Verifique la configuración de su sistema o póngase en contacto con su administrador" + +#: hooks/hooks.php:59 msgid "Missing requirements." msgstr "Requisitos incompletos." -#: hooks/hooks.php:52 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada." -#: hooks/hooks.php:250 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "Los siguientes usuarios no han sido configurados para el cifrado:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "Encriptación iniciada..... Esto puede tomar un tiempo. Por favor espere." + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Guardando..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Ir directamente a su" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Puede desbloquear su clave privada en su" - -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "opciones personales" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Cifrado" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Habilitar la clave de recuperación (permite recuperar los ficheros del usuario en caso de pérdida de la contraseña);" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Contraseña de clave de recuperación" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Repite la contraseña de clave de recuperación" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Habilitar" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Deshabilitado" @@ -126,58 +152,62 @@ msgstr "Deshabilitado" msgid "Change recovery key password:" msgstr "Cambiar la contraseña de la clave de recuperación" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Antigua clave de recuperación" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Nueva clave de recuperación" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "Repetir la nueva clave de recuperación" + +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Cambiar contraseña" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Su contraseña de clave privada ya no coincide con su contraseña de acceso:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Establecer la contraseña de su antigua clave privada a su contraseña actual de acceso." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Si no recuerda su antigua contraseña puede pedir a su administrador que le recupere sus ficheros." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Contraseña de acceso antigua" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Contraseña de acceso actual" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Actualizar Contraseña de Clave Privada" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Habilitar la recuperación de contraseña:" -#: templates/settings-personal.php:47 +#: 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 "Habilitar esta opción le permitirá volver a tener acceso a sus ficheros cifrados en caso de pérdida de contraseña" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Opciones de recuperación de archivos actualizada" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "No se pudo actualizar la recuperación de archivos" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index 6ffa1327ba1969bba43bb33067086ab0f156dc56..503d6f1758f299d6c43c57ef486ba85158218686 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Korrosivo , 2013 +# Rubén del Campo , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Korrosivo \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: Rubén del Campo \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,7 +18,7 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Acceso concedido" @@ -26,7 +26,7 @@ msgstr "Acceso concedido" msgid "Error configuring Dropbox storage" msgstr "Error configurando el almacenamiento de Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Conceder acceso" @@ -34,24 +34,24 @@ msgstr "Conceder acceso" msgid "Please provide a valid Dropbox app key and secret." msgstr "Por favor, proporcione un una clave válida de la app Dropbox y una clave secreta." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Error configurando el almacenamiento de Google Drive" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Advertencia: El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Advertencia: El soporte de FTP en PHP no se encuentra instalado. El montado de archivos o ficheros FTP no es posible. Por favor pida al administrador de su sistema que lo instale." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 26442ede404f6f510c24a04d2ce0a722917e6b31..e4fa41f4c8a56aad22eded340bd1c2812095abc9 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -4,14 +4,16 @@ # # Translators: # Art O. Pal , 2013 -# Korrosivo , 2013 +# Dominique Couot , 2013 +# juanman , 2013 +# Rubén del Campo , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-13 23:50+0000\n" -"Last-Translator: Korrosivo \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"Last-Translator: Rubén del Campo \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,17 +22,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Este elemento compartido esta protegido por contraseña" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "La contraseña introducida es errónea. Inténtelo de nuevo." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Contraseña" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Enviar" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Vaya, este enlace parece que no volverá a funcionar." @@ -55,28 +57,32 @@ msgstr "compartir está desactivado" msgid "For more info, please ask the person who sent this link." msgstr "Para mayor información, contacte a la persona que le envió el enlace." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartió la carpeta %s contigo" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartió el fichero %s contigo" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Descargar" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Subir" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "No hay vista previa disponible para" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Enlace directo" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 2f439a315fdb2a9fe58cdc0523c076812dbfce4d..186909f350573faa439ce545631acb9ed779a532 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -4,14 +4,14 @@ # # Translators: # Art O. Pal , 2013 -# Korrosivo , 2013 +# Rubén del Campo , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-05 07:36-0400\n" -"PO-Revision-Date: 2013-09-03 18:16+0000\n" -"Last-Translator: Korrosivo \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,55 +29,31 @@ msgstr "No se puede eliminar %s permanentemente" msgid "Couldn't restore %s" msgstr "No se puede restaurar %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "restaurar" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Error" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "eliminar archivo permanentemente" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Eliminar permanentemente" - -#: js/trash.js:184 templates/index.php:17 -msgid "Name" -msgstr "Nombre" - -#: js/trash.js:185 templates/index.php:27 -msgid "Deleted" -msgstr "Eliminado" - -#: js/trash.js:193 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n carpeta" -msgstr[1] "%n carpetas" - -#: js/trash.js:199 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n archivo" -msgstr[1] "%n archivos" - -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "recuperado" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "No hay nada aquí. ¡Tu papelera esta vacía!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Nombre" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Recuperar" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Eliminado" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Eliminar" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 319d9f9f13be6dd00912e7ea0f14cc68333d8924..6e80e0b1fe260357e1804046f7abff9c24b50671 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -5,14 +5,15 @@ # Translators: # Dharth , 2013 # pablomillaquen , 2013 -# Korrosivo , 2013 +# Raul Fernandez Garcia , 2013 +# Rubén del Campo , 2013 # xhiena , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:10+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" @@ -21,318 +22,317 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión de ownCloud" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "No se ha especificado nombre de la aplicación" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Ayuda" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Personal" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Ajustes" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Usuarios" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Administración" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Falló la actualización \"%s\"." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Tipo de archivo desconocido" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Imagen inválida" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Servicios web bajo su control" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "No se puede abrir \"%s\"" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados uno por uno." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Volver a Archivos" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Descargue los archivos en trozos más pequeños, por separado o solicítelos amablemente su administrador." +msgstr "Descargue los archivos en trozos más pequeños, por separado o solicítelos amablemente a su administrador." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "No se ha especificado origen cuando se ha instalado la aplicación" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "No href especificado cuando se ha instalado la aplicación" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Sin path especificado cuando se ha instalado la aplicación desde el fichero local" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Ficheros de tipo %s no son soportados" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Fallo de apertura de fichero mientras se instala la aplicación" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "La aplicación no suministra un fichero info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "La aplicación no puede ser instalada por tener código no autorizado en la aplicación" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "La aplicación no se puede instalar porque no es compatible con esta versión de ownCloud" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "La aplicación no se puede instalar porque contiene la etiqueta\n\ntrue\n\nque no está permitida para aplicaciones no distribuidas" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "La aplicación no puede ser instalada por que la versión en info.xml/version no es la misma que la establecida en la app store" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "El directorio de la aplicación ya existe" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "No se puede crear la carpeta de la aplicación. Corrija los permisos. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "La aplicación no está habilitada" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Error de autenticación" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token expirado. Por favor, recarga la página." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Archivos" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Texto" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Imágenes" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s ingresar el usuario de la base de datos." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s ingresar el nombre de la base de datos" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s puede utilizar puntos en el nombre de la base de datos" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Usuario y/o contraseña de MS SQL no válidos: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Tiene que ingresar una cuenta existente o la del administrador." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Usuario y/o contraseña de MySQL no válidos" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "Error BD: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Comando infractor: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Usuario MySQL '%s'@'localhost' ya existe." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Eliminar este usuario de MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Usuario MySQL '%s'@'%%' ya existe" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Eliminar este usuario de MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "No se pudo establecer la conexión a Oracle" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Usuario y/o contraseña de Oracle no válidos" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Comando infractor: \"%s\", nombre: %s, contraseña: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "Usuario y/o contraseña de PostgreSQL no válidos" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Configurar un nombre de usuario del administrador" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Configurar la contraseña del administrador." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, vuelva a comprobar las guías de instalación." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "No puede encontrar la categoria \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "hace segundos" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "hoy" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "ayer" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "mes pasado" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "año pasado" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "hace años" - -#: template.php:297 -msgid "Caused by:" -msgstr "Causado por:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "No puede encontrar la categoria \"%s\"" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index f11743ea9540e9259807146b56064850ce611a49..6ff8c4bf8e1398f46e133d61428ee471e1f1c3df 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -7,18 +7,21 @@ # asaez , 2013 # eadeprado , 2013 # ggam , 2013 +# japaol , 2013 +# juanman , 2013 # pablomillaquen , 2013 +# Raul Fernandez Garcia , 2013 # qdneren , 2013 -# Korrosivo , 2013 +# Rubén del Campo , 2013 # saskarip , 2013 # scambra , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-05 15:41+0000\n" +"Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +31,7 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Imposible cargar la lista desde el App Store" +msgstr "No se pudo cargar la lista desde el App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 changepassword/controller.php:55 @@ -36,12 +39,12 @@ msgid "Authentication error" msgstr "Error de autenticación" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Su nombre de usuario ha sido cambiado." +msgid "Your full name has been changed." +msgstr "Se ha cambiado su nombre completo." #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "No se pudo cambiar el nombre de usuario" +msgid "Unable to change full name" +msgstr "No se puede cambiar el nombre completo" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -53,11 +56,11 @@ msgstr "No se pudo añadir el grupo" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "E-mail guardado" +msgstr "Correo electrónico guardado" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Correo no válido" +msgstr "Correo electrónico no válido" #: ajax/removegroup.php:13 msgid "Unable to delete group" @@ -91,21 +94,21 @@ msgstr "No se pudo eliminar al usuario del grupo %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "No se pudo actualizar la aplicacion." +msgstr "No se pudo actualizar la aplicación." #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "Contraseña incorrecta" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "No se especificó un usuario" #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "Por favor facilite una contraseña de recuperación de administrador, sino se perderán todos los datos de usuario" +msgstr "Por favor facilite una contraseña de recuperación de administrador, sino podrían perderse todos los datos de usuario" #: changepassword/controller.php:79 msgid "" @@ -116,7 +119,7 @@ msgstr "Contraseña de recuperación de administrador incorrecta. Por favor comp msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "El back-end no soporta cambios de contraseña, pero la clave de cifrado del usuario ha sido actualizada satisfactoriamente." #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" @@ -126,11 +129,11 @@ msgstr "No se ha podido cambiar la contraseña" msgid "Update to {appversion}" msgstr "Actualizado a {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Desactivar" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Activar" @@ -138,31 +141,31 @@ msgstr "Activar" msgid "Please wait...." msgstr "Espere, por favor...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Error mientras se desactivaba la aplicación" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Error mientras se activaba la aplicación" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Actualizando...." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Error mientras se actualizaba la aplicación" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Error" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Actualizar" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Actualizado" @@ -170,7 +173,7 @@ msgstr "Actualizado" msgid "Select a profile picture" msgstr "Seleccionar una imagen de perfil" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "Descifrando archivos... Espere por favor, esto puede llevar algo de tiempo." @@ -180,7 +183,7 @@ msgstr "Guardando..." #: js/users.js:47 msgid "deleted" -msgstr "Eliminado" +msgstr "eliminado" #: js/users.js:47 msgid "undo" @@ -188,208 +191,267 @@ msgstr "deshacer" #: js/users.js:79 msgid "Unable to remove user" -msgstr "No se puede eliminar el usuario" +msgstr "Imposible eliminar al usuario" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupos" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Administrador del Grupo" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Eliminar" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "añadir Grupo" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" -msgstr "Se debe proporcionar un nombre de usuario válido" +msgstr "Se debe proporcionar un nombre de usuario válido" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "Error al crear usuario" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" -msgstr "Se debe proporcionar una contraseña valida" +msgstr "Se debe proporcionar una contraseña válida" + +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Atención: el directorio de inicio para el usuario \"{user}\" ya existe." #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Castellano" -#: templates/admin.php:15 +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "Todo (Información, Avisos, Errores, debug y problemas fatales)" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "Información, Avisos, Errores y problemas fatales" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "Advertencias, errores y problemas fatales" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "Errores y problemas fatales" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "Problemas fatales solamente" + +#: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" msgstr "Advertencia de seguridad" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 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 "Probablemente se puede acceder a su directorio de datos y sus archivos desde Internet. El archivo .htaccess no está funcionando. Nosotros le sugerimos encarecidamente que configure su servidor web de modo que el directorio de datos ya no sea accesible o que mueva el directorio de datos fuera de la raíz de documentos del servidor web." +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:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Advertencia de configuración" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, vuelva a comprobar las guías de instalación." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "No se ha encontrado el módulo \"fileinfo\"" -#: templates/admin.php:47 +#: templates/admin.php:68 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 del mime-type" +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:79 +msgid "Your PHP version is outdated" +msgstr "Su versión de PHP ha caducado" + +#: templates/admin.php:82 +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:58 +#: templates/admin.php:93 msgid "Locale not working" msgstr "La configuración regional no está funcionando" -#: templates/admin.php:63 +#: templates/admin.php:98 +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:102 +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:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "La configuración regional del sistema no se puede ajustar a %s. Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivo. Le recomendamos instalar los paquetes necesarios en el sistema para soportar % s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "Es muy recomendable instalar los paquetes necesarios para poder soportar una de las siguientes configuraciones regionales: %s. " -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" -msgstr "La conexion a internet no esta funcionando" +msgstr "La conexión a Internet no está funcionando" -#: templates/admin.php:78 +#: templates/admin.php:121 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 "Este servidor no tiene una conexión a Internet. Esto significa que algunas de las características como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones o instalación de aplicaciones de terceros no funcionan. Podría no funcionar el acceso a los archivos de forma remota y el envío de correos electrónicos de notificación. Sugerimos habilitar la conexión a Internet de este servidor, si quiere tener todas las funciones." +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:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Ejecutar una tarea con cada página cargada" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php está registrado en un servicio WebCron para llamar cron.php una vez por minuto a través de HTTP." +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Usar el servicio cron del sistema para llamar al archivo cron.php una vez por minuto." +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Compartiendo" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Activar API de Compartición" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones utilizar la API de Compartición" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:135 +#: templates/admin.php:178 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:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Permitir subidas públicas" -#: templates/admin.php:144 +#: templates/admin.php:187 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:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Permitir re-compartición" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Permitir a los usuarios compartir de nuevo elementos ya compartidos" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" -msgstr "Permitir a los usuarios compartir con todo el mundo" +msgstr "Permitir a los usuarios compartir con cualquier persona" -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Permitir notificaciones por correo electrónico" + +#: templates/admin.php:214 +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:221 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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 encriptada." +msgstr "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada." -#: templates/admin.php:191 +#: templates/admin.php:242 #, 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 SSL." +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:203 +#: templates/admin.php:254 msgid "Log" msgstr "Registro" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Nivel de registro" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Más" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Menos" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versión" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Utilice esta dirección paraacceder a sus archivos a través de WebDAV" +"Use this address to access your Files via " +"WebDAV" +msgstr "Utilice esta dirección para acceder a sus archivos vía WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Cifrado" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "La aplicación de cifrado no está activada, descifre sus archivos" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "La aplicación de cifrado ya no está activada, descifre todos sus archivos" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Contraseña de acceso" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Descifrar archivos" @@ -575,12 +641,16 @@ msgstr "Recuperación de la contraseña de administración" msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "Introduzca la contraseña de recuperación para recuperar los archivos de usuarios durante el cambio de contraseña." +msgstr "Introduzca la contraseña de recuperación a fin de recuperar los archivos de los usuarios durante el cambio de contraseña." #: templates/users.php:42 msgid "Default Storage" msgstr "Almacenamiento predeterminado" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "Por favor indique la cúota de almacenamiento (ej: \"512 MB\" o \"12 GB\")" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Ilimitado" @@ -598,12 +668,12 @@ msgid "Storage" msgstr "Almacenamiento" #: templates/users.php:108 -msgid "change display name" -msgstr "Cambiar nombre a mostrar" +msgid "change full name" +msgstr "cambiar el nombre completo" #: templates/users.php:112 msgid "set new password" -msgstr "Configurar nueva contraseña" +msgstr "establecer nueva contraseña" #: templates/users.php:143 msgid "Default" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 5751894003734cb1c83d865760554127f3fa4827..4f999d4127fd21d11cc57b8ae87e83c5984e0fc2 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -4,17 +4,19 @@ # # Translators: # Agustin Ferrario , 2013 +# Maenso , 2013 +# Raul Fernandez Garcia , 2013 # ordenet , 2013 # Rodrigo Rodríguez , 2013 -# Korrosivo , 2013 +# Rubén del Campo , 2013 # xhiena , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 18:23+0000\n" -"Last-Translator: Korrosivo \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,314 +32,425 @@ msgstr "Ocurrió un fallo al borrar las asignaciones." msgid "Failed to delete the server configuration" msgstr "No se pudo borrar la configuración del servidor" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "¡La configuración es válida y la conexión puede establecerse!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "La configuración es válida, pero falló el Enlace. Por favor, compruebe la configuración del servidor y las credenciales." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "La configuración no es válida. Por favor, busque en el log de ownCloud para más detalles." +msgstr "La configuración no es válida. Por favor, busque en el log para más detalles." + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "No se ha especificado la acción" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "No se ha especificado la configuración" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "No se han especificado los datos" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "No se pudo establecer la configuración %s" -#: js/settings.js:66 +#: js/settings.js:67 msgid "Deletion failed" msgstr "Falló el borrado" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "¿Asumir los ajustes actuales de la configuración del servidor?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "¿Mantener la configuración?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "No se puede añadir la configuración del servidor" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "Asignaciones borradas" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Éxito" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Error" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "Configuración OK" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "Configuración Incorrecta" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "Configuración incompleta" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Seleccionar grupos" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "Seleccionar la clase de objeto" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "Seleccionar atributos" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "La prueba de conexión fue exitosa" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "La prueba de conexión falló" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "¿Realmente desea eliminar la configuración actual del servidor?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Confirmar eliminación" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "Advertencia: Las apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pregunte al su administrador de sistemas para desactivar uno de ellos." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "Grupo %s encontrado" +msgstr[1] "Grupos %s encontrados" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "Usuario %s encontrado" +msgstr[1] "Usuarios %s encontrados" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "Host inválido" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "No se puede encontrar la función deseada." + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Guardar" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Configuración de prueba" -#: templates/settings.php:12 +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Ayuda" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "Limitar el acceso a %s a los grupos que cumplan este criterio:" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "solamente de estas clases de objeto:" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "solamente de estos grupos:" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "Editar el filtro en bruto en su lugar" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "Filtro LDAP en bruto" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Advertencia: El módulo LDAP de PHP no está instalado, el sistema no funcionará. Por favor consulte al administrador del sistema para instalarlo." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "El filtro especifica que grupos LDAP tendrán acceso a %s." -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Configuración del Servidor" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "grupos encontrados" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "Que atributo debe ser usado como login:" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "Nombre de usuario LDAP:" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "Dirección e-mail LDAP:" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "Otros atributos:" + +#: 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 "Define el filtro a aplicar cuando se intenta identificar. %%uid remplazará al nombre de usuario en el proceso de identificación. Por ejemplo: \"uid=%%uid\"" + +#: templates/part.wizard-server.php:18 msgid "Add Server Configuration" msgstr "Agregar configuracion del servidor" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Servidor" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "DN base" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Un DN Base por línea" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Puerto" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "DN usuario" -#: templates/settings.php:46 +#: 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 "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, deje DN y contraseña vacíos." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Contraseña" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Para acceso anónimo, deje DN y contraseña vacíos." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Filtro de inicio de sesión de usuario" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Un DN Base por línea" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "Limitar el acceso a %s a los usuarios que cumplan el siguiente criterio:" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "Define el filtro a aplicar cuando se intenta identificar. %%uid remplazará al nombre de usuario en el proceso de identificación. Por ejemplo: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "El filtro especifica que usuarios LDAP pueden tener acceso a %s." -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Lista de filtros de usuario" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "usuarios encontrados" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "Define el filtro a aplicar, cuando se obtienen usuarios (sin comodines). Por ejemplo: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Atrás" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Filtro de grupo" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Continuar" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "Advertencia: Las apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pregunte al su administrador de sistemas para desactivar uno de ellos." -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "Define el filtro a aplicar, cuando se obtienen grupos (sin comodines). Por ejemplo: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Advertencia: El módulo LDAP de PHP no está instalado, el sistema no funcionará. Por favor consulte al administrador del sistema para instalarlo." -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Configuración de conexión" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Configuracion activa" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Cuando deseleccione, esta configuracion sera omitida." -#: templates/settings.php:69 -msgid "Port" -msgstr "Puerto" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Servidor de copia de seguridad (Replica)" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Dar un servidor de copia de seguridad opcional. Debe ser una réplica del servidor principal LDAP / AD." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Puerto para copias de seguridad (Replica)" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Deshabilitar servidor principal" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "Conectar sólo con el servidor de réplica." -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Usar TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "No lo use para conexiones LDAPS, Fallará." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Servidor de LDAP no sensible a mayúsculas/minúsculas (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Apagar la validación por certificado SSL." -#: templates/settings.php:75 +#: 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 "No se recomienda, ¡utilízalo únicamente para pruebas! Si la conexión únicamente funciona con esta opción, importa el certificado SSL del servidor LDAP en tu servidor %s." -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Cache TTL" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "en segundos. Un cambio vacía la caché." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Configuracion de directorio" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Campo de nombre de usuario a mostrar" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "El campo LDAP a usar para generar el nombre para mostrar del usuario." -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Árbol base de usuario" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "Un DN Base de Usuario por línea" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "Atributos de la busqueda de usuario" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Opcional; un atributo por linea" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Campo de nombre de grupo a mostrar" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "El campo LDAP a usar para generar el nombre para mostrar del grupo." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Árbol base de grupo" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "Un DN Base de Grupo por línea" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Atributos de busqueda de grupo" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Asociación Grupo-Miembro" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Atributos especiales" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Cuota" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Cuota por defecto" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "en bytes" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "E-mail" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "Regla para la carpeta Home de usuario" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Vacío para el nombre de usuario (por defecto). En otro caso, especifique un atributo LDAP/AD." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "Nombre de usuario interno" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -353,15 +466,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "El nombre de usuario interno será creado de forma predeterminada desde el atributo UUID. Esto asegura que el nombre de usuario es único y los caracteres no necesitan ser convertidos. En el nombre de usuario interno sólo se pueden usar estos caracteres: [ a-zA-Z0-9_.@- ]. El resto de caracteres son sustituidos por su correspondiente en ASCII o simplemente omitidos. En caso de duplicidades, se añadirá o incrementará un número. El nombre de usuario interno es usado para identificar un usuario. Es también el nombre predeterminado para la carpeta personal del usuario en ownCloud. También es parte de URLs remotas, por ejemplo, para todos los servicios *DAV. Con esta configuración el comportamiento predeterminado puede ser cambiado. Para conseguir un comportamiento similar a como era antes de ownCloud 5, introduzca el campo del nombre para mostrar del usuario en la siguiente caja. Déjelo vacío para el comportamiento predeterminado. Los cambios solo tendrán efecto en los usuarios LDAP mapeados (añadidos) recientemente." -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "Atributo Nombre de usuario Interno:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "Sobrescribir la detección UUID" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -372,15 +485,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Por defecto, el atributo UUID es autodetectado. Este atributo es usado para identificar indudablemente usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no ha sido especificado otro comportamiento arriba. Puedes sobrescribir la configuración y pasar un atributo de tu elección. Debes asegurarte de que el atributo de tu elección sea accesible por los usuarios y grupos y ser único. Déjalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto solo en los usuarios y grupos de LDAP mapeados (añadidos) recientemente." -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atributo UUID:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "Atributo UUID para usuarios:" -#: templates/settings.php:104 +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "Atributo UUID para Grupos:" + +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "Asignación del Nombre de usuario de un usuario LDAP" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -394,18 +511,10 @@ msgid "" "experimental stage." msgstr "Los usuarios son usados para almacenar y asignar (meta) datos. Con el fin de identificar de forma precisa y reconocer usuarios, cada usuario de LDAP tendrá un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es cacheado para reducir la interacción entre el LDAP, pero no es usado para identificar. Si el DN cambia, los cambios serán aplicados. El nombre de usuario interno es usado por encima de todo. Limpiar los mapeos dejará restos por todas partes, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, únicamente en una fase de desarrollo o experimental." -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "Borrar la asignación de los Nombres de usuario de los usuarios LDAP" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Borrar la asignación de los Nombres de grupo de los grupos de LDAP" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Configuración de prueba" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Ayuda" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 6c72e8a9b003fb54bd63d93216da4fa921fc6403..598b6b7cf18e88eb0522627963203053b6a625f0 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -18,14 +18,15 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s compartió \"%s\" con vos" -#: ajax/share.php:227 -msgid "group" -msgstr "grupo" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -52,56 +53,17 @@ msgstr "Caché de archivos actualizada" msgid "... %d%% done ..." msgstr "... %d%% hecho ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Tipo de categoría no provisto. " - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "¿Ninguna categoría para añadir?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Esta categoría ya existe: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Tipo de objeto no provisto. " - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID no provista. " - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Error al agregar %s a favoritos. " - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "No se seleccionaron categorías para borrar." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Error al borrar %s de favoritos. " - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Tipo de archivo desconocido" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Imagen inválida" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" @@ -187,59 +149,59 @@ msgstr "noviembre" msgid "December" msgstr "diciembre" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Configuración" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "hoy" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "ayer" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "el mes pasado" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "meses atrás" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "el año pasado" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "años atrás" @@ -307,155 +269,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "El tipo de objeto no está especificado. " - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Error" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "El nombre de la App no está especificado." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "¡El archivo requerido {file} no está instalado!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Compartido" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Compartir" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Error" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Error al compartir" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Error en al dejar de compartir" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Error al cambiar permisos" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Compartido con vos y el grupo {group} por {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Compartido con vos por {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Compartir con" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "Compartir con enlace" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Proteger con contraseña " -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Contraseña" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Permitir Subida Pública" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Enviar el enlace por e-mail." -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Mandar" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Asignar fecha de vencimiento" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Fecha de vencimiento" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Compartir a través de e-mail:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "No se encontraron usuarios" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "grupo" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "No se permite volver a compartir" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "podés editar" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "control de acceso" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "crear" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "actualizar" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "borrar" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "compartir" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Protegido por contraseña" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Error al remover la fecha de vencimiento" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Error al asignar fecha de vencimiento" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Mandando..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "e-mail mandado" +#: js/share.js:769 +msgid "Warning" +msgstr "Atención" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "El tipo de objeto no está especificado. " + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Borrar" + +#: js/tags.js:31 +msgid "Add" +msgstr "Agregar" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "El enlace para restablecer la contraseña fue enviada a tu e-mail.
    Si no lo recibís en un plazo de tiempo razonable, revisá tu carpeta de spam / correo no deseado.
    Si no está ahí, preguntale a tu administrador." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "¡Error en el pedido!
    ¿Estás seguro de que tu dirección de correo electrónico o nombre de usuario son correcto?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Vas a recibir un enlace por e-mail para restablecer tu contraseña." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Nombre de usuario" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -504,13 +494,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Tus archivos están encriptados. Si no habilitaste la clave de recuperación, no vas a tener manera de obtener nuevamente tus datos después que se restablezca tu contraseña. Si no estás seguro sobre qué hacer, ponete en contacto con el administrador antes de seguir. ¿Estás seguro/a que querés continuar?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Sí, definitivamente quiero restablecer mi contraseña ahora" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Solicitar restablecimiento" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Resetear" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -536,7 +526,7 @@ msgstr "Personal" msgid "Users" msgstr "Usuarios" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Apps" @@ -548,6 +538,34 @@ msgstr "Administración" msgid "Help" msgstr "Ayuda" +#: 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 "Acceso prohibido" @@ -564,108 +582,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hola,\n\nSimplemente te informo que %s compartió %s con vos.\nMiralo acá: %s\n\n¡Chau!" +msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Editar categorías" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Agregar" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Advertencia de seguridad" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "La versión de PHP que tenés, es vulnerable al ataque de byte NULL (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Por favor, actualizá tu instalación PHP para poder usar %s de manera segura." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "No hay disponible ningún generador de números aleatorios seguro. Por favor, habilitá la extensión OpenSSL de PHP." -#: templates/installation.php:33 +#: 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 "Sin un generador de números aleatorios seguro un atacante podría predecir las pruebas de reinicio de tu contraseña y tomar control de tu cuenta." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Tu directorio de datos y tus archivos probablemente son accesibles a través de internet, ya que el archivo .htaccess no está funcionando." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "Para información sobre cómo configurar apropiadamente tu servidor, por favor mirá la documentación." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Crear una cuenta de administrador" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Directorio de almacenamiento" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Configurar la base de datos" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "se usarán" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Contraseña de la base de datos" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Huésped de la base de datos" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Completar la instalación" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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 "%s está disponible. Obtené más información sobre cómo actualizar." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Cerrar la sesión" @@ -683,19 +712,27 @@ msgstr "¡Si no cambiaste tu contraseña recientemente, puede ser que tu cuenta msgid "Please change your password to secure your account again." msgstr "Por favor, cambiá tu contraseña para incrementar la seguridad de tu cuenta." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "¿Perdiste tu contraseña?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "recordame" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Iniciar sesión" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Nombre alternativos de usuarios" @@ -703,10 +740,37 @@ msgstr "Nombre alternativos de usuarios" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Hola,

    Simplemente te informo que %s compartió %s con vos.
    Miralo acá:

    ¡Chau!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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 "Actualizando ownCloud a la versión %s, puede demorar un rato." + +#: 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/es_AR/files.po b/l10n/es_AR/files.po index f502ba71685d650b478b77f3d70a653605f29c4f..85f0e087448698d83f6d6af1b31ae7a295383bd7 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -31,220 +31,286 @@ msgstr "No se pudo mover %s - Un archivo con este nombre ya existe" msgid "Could not move %s" msgstr "No se pudo mover %s " -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "El nombre del archivo no puede quedar vacío." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "No fue posible crear el directorio de subida." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Token Inválido" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "El archivo no fue subido. Error desconocido" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "No hay errores, el archivo fue subido con éxito" -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "El archivo fue subido parcialmente" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "No se subió ningún archivo " -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Falta un directorio temporal" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Error al escribir en el disco" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "No hay suficiente almacenamiento" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Directorio inválido." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Archivos" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "No hay suficiente espacio disponible" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "La subida fue cancelada" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "La URL no puede estar vacía" +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Nombre de directorio inválido. El uso de \"Shared\" está reservado por ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Error" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} ya existe" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Borrar permanentemente" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Cambiar nombre" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Pendientes" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} ya existe" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "reemplazar" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "sugerir nombre" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "cancelar" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "se reemplazó {new_name} con {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "deshacer" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetas" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n archivo" msgstr[1] "%n archivos" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{carpetas} y {archivos}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Subiendo %n archivo" msgstr[1] "Subiendo %n archivos" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' es un nombre de archivo inválido." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "El nombre del archivo no puede quedar vacío." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "El almacenamiento está lleno, los archivos no se pueden seguir actualizando ni sincronizando" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "El almacenamiento está casi lleno ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "El proceso de cifrado se ha desactivado, pero los archivos aún están encriptados. Por favor, vaya a la configuración personal para descifrar los archivos." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Tu descarga se está preparando. Esto puede demorar si los archivos son muy grandes." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Error" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Nombre" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Tamaño" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Modificado" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "No se pudo renombrar %s" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Subir" @@ -280,65 +346,69 @@ msgstr "Tamaño máximo para archivos ZIP de entrada" msgid "Save" msgstr "Guardar" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nuevo" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "Archivo de texto" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Nueva Carpeta" + +#: templates/index.php:10 msgid "Folder" msgstr "Carpeta" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Desde enlace" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Archivos borrados" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "No tenés permisos de escritura acá." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "No hay nada. ¡Subí contenido!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Descargar" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Dejar de compartir" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Borrar" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "El tamaño del archivo que querés subir es demasiado grande" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los archivos que intentás subir sobrepasan el tamaño máximo " -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Se están escaneando los archivos, por favor esperá." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/es_AR/files_encryption.po b/l10n/es_AR/files_encryption.po index c01c38b8342c7fd7e2855425e8a4858e8faaf112..cb3c9a08a0d39b577fc6647c998313b3ef699a98 100644 --- a/l10n/es_AR/files_encryption.po +++ b/l10n/es_AR/files_encryption.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:39-0400\n" -"PO-Revision-Date: 2013-09-06 20:20+0000\n" -"Last-Translator: cnngimenez\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,75 +45,96 @@ msgstr "Tu contraseña fue cambiada" msgid "Could not change the password. Maybe the old password was not correct." msgstr "No se pudo cambiar la contraseña. Comprobá que la contraseña actual sea correcta." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Contraseña de clave privada actualizada con éxito." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "No fue posible actualizar la contraseña de clave privada. Tal vez la contraseña anterior no es correcta." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde fuera del sistema de ownCloud (por ej. desde tu cuenta de sistema). Podés actualizar tu clave privada en la sección de \"configuración personal\", para recuperar el acceso a tus archivos." +"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:51 +#: hooks/hooks.php:59 msgid "Missing requirements." msgstr "Requisitos incompletos." -#: hooks/hooks.php:52 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Por favor, asegúrese de que PHP 5.3.3 o una versión más reciente esté instalado y que OpenSSL junto con la extensión PHP esté habilitado y configurado apropiadamente. Por ahora, la aplicación de encriptación ha sido deshabilitada." -#: hooks/hooks.php:250 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "Los siguientes usuarios no fueron configurados para encriptar:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Guardando..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde afuera." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Podés desbloquear tu clave privada en tu" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "Configuración personal" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Encriptación" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Habilitar clave de recuperación (te permite recuperar los archivos de usuario en el caso que pierdas la contraseña):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Contraseña de recuperación de clave" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Habilitado" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Deshabilitado" @@ -121,58 +142,62 @@ msgstr "Deshabilitado" msgid "Change recovery key password:" msgstr "Cambiar contraseña para recuperar la clave:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Contraseña antigua de recuperación de clave" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Nueva contraseña de recuperación de clave" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Cambiar contraseña" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Tu contraseña de clave privada ya no coincide con la contraseña de ingreso:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Usá tu contraseña de clave privada antigua para tu contraseña de ingreso actual." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Si no te acordás de tu contraseña antigua, pedile al administrador que recupere tus archivos" -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Contraseña anterior" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Contraseña actual" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Actualizar contraseña de la clave privada" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Habilitar recuperación de contraseña:" -#: templates/settings-personal.php:47 +#: 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 "Habilitando esta opción, vas a tener acceso a tus archivos encriptados, incluso si perdés la contraseña" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Las opciones de recuperación de archivos fueron actualizadas" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "No fue posible actualizar la recuperación de archivos" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index 91783cd3659edb305866506388f7d8c57a4508f5..acf6aafe87e680c90b9ac4af9e3881ad1c6805d4 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Acceso permitido" @@ -26,7 +26,7 @@ msgstr "Acceso permitido" msgid "Error configuring Dropbox storage" msgstr "Error al configurar el almacenamiento de Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Permitir acceso" @@ -34,24 +34,24 @@ msgstr "Permitir acceso" msgid "Please provide a valid Dropbox app key and secret." msgstr "Por favor, proporcioná un secreto y una contraseña válida para la aplicación Dropbox." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Error al configurar el almacenamiento de Google Drive" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Advertencia: El cliente smb \"smbclient\" no está instalado. Montar archivos CIFS/SMB no es posible. Por favor, pedile al administrador de tu sistema que lo instale." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Advertencia: El soporte de FTP en PHP no está instalado. Montar archivos FTP no es posible. Por favor, pedile al administrador de tu sistema que lo instale." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index cea65819e726030c263f40f880c9271f24f00d16..7cf9250e1ced69b0498ffcc321417f408ea4b91a 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: cjtess \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "La contraseña no es correcta. Probá de nuevo." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Contraseña" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Enviar" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Perdón, este enlace parece no funcionar más." @@ -54,28 +54,32 @@ msgstr "compartir está desactivado" msgid "For more info, please ask the person who sent this link." msgstr "Para mayor información, contactá a la persona que te mandó el enlace." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartió la carpeta %s con vos" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartió el archivo %s con vos" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Descargar" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Subir" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "La vista preliminar no está disponible para" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index cf833c421a973e893adf19b510e7c60f64028c2c..9ace7d23d43d8710479e274424f84a3008579ad7 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-10 10:41-0400\n" -"PO-Revision-Date: 2013-09-10 13:50+0000\n" -"Last-Translator: cjtess \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "No fue posible borrar %s de manera permanente" msgid "Couldn't restore %s" msgstr "No se pudo restaurar %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "Restaurar" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Error" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "Borrar archivo de manera permanente" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Borrar de manera permanente" - -#: js/trash.js:184 templates/index.php:17 -msgid "Name" -msgstr "Nombre" - -#: js/trash.js:185 templates/index.php:27 -msgid "Deleted" -msgstr "Borrado" - -#: js/trash.js:193 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n directorio" -msgstr[1] "%n directorios" - -#: js/trash.js:199 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n archivo" -msgstr[1] "%n archivos" - -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "recuperado" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "No hay nada acá. ¡La papelera está vacía!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Nombre" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Recuperar" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Borrado" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Borrar" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 17cc36ca73214629b1e7b17274290df6570b70c0..6fa78e41c1384c36f1301435a2087f8db7bbc77a 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -18,318 +18,317 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "La app \"%s\" no puede ser instalada porque no es compatible con esta versión de ownCloud" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "No fue especificado el nombre de la app" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Ayuda" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Personal" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Configuración" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Usuarios" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Administración" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "No se pudo actualizar \"%s\"." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Tipo de archivo desconocido" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Imagen inválida" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "servicios web sobre los que tenés control" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "no se puede abrir \"%s\"" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados de a uno." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Volver a Archivos" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Descargá los archivos en partes más chicas, de forma separada, o pedíselos al administrador" +msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "No se especificó el origen al instalar la app" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "No se especificó href al instalar la app" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "No se especificó PATH al instalar la app desde el archivo local" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "No hay soporte para archivos de tipo %s" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Error al abrir archivo mientras se instalaba la app" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "La app no suministra un archivo info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "No puede ser instalada la app por tener código no autorizado" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "No se puede instalar la app porque no es compatible con esta versión de ownCloud" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "La app no se puede instalar porque contiene la etiqueta true que no está permitida para apps no distribuidas" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "La app no puede ser instalada porque la versión en info.xml/version no es la misma que la establecida en el app store" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "El directorio de la app ya existe" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "No se puede crear el directorio para la app. Corregí los permisos. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "La aplicación no está habilitada" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Error al autenticar" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token expirado. Por favor, recargá la página." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Archivos" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Texto" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Imágenes" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s Entrá el usuario de la base de datos" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s Entrá el nombre de la base de datos." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s no podés usar puntos en el nombre de la base de datos" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nombre de usuario y contraseña de MS SQL no son válidas: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Tenés que ingresar una cuenta existente o el administrador." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Usuario y/o contraseña MySQL no válido" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "Error DB: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "El comando no comprendido es: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Usuario MySQL '%s'@'localhost' ya existe." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Borrar este usuario de MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Usuario MySQL '%s'@'%%' ya existe" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Borrar este usuario de MySQL" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "No fue posible establecer la conexión a Oracle" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "El nombre de usuario y/o contraseña no son válidos" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "El comando no comprendido es: \"%s\", nombre: \"%s\", contraseña: \"%s\"" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "Nombre de usuario o contraseña PostgradeSQL inválido." -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Configurar un nombre de administrador." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Configurar una contraseña de administrador." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Tu servidor web no está configurado todavía para permitir sincronización de archivos porque la interfaz WebDAV parece no funcionar." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, comprobá nuevamente la guía de instalación." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "No fue posible encontrar la categoría \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "segundos atrás" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "hoy" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "ayer" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "el mes pasado" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "el año pasado" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "años atrás" - -#: template.php:297 -msgid "Caused by:" -msgstr "Provocado por:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "No fue posible encontrar la categoría \"%s\"" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index faf86eb46038a9ef441f0b098b6f1d20de403c8f..b7a8c51deab6ce3405f246653955d6852d4b7ac1 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+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" @@ -30,12 +30,12 @@ msgid "Authentication error" msgstr "Error al autenticar" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "El nombre mostrado que usás fue cambiado." +msgid "Your full name has been changed." +msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "No fue posible cambiar el nombre mostrado" +msgid "Unable to change full name" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -120,11 +120,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "Actualizar a {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Desactivar" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Activar" @@ -132,31 +132,31 @@ msgstr "Activar" msgid "Please wait...." msgstr "Por favor, esperá...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Se ha producido un error mientras se deshabilitaba la aplicación" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Se ha producido un error mientras se habilitaba la aplicación" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Actualizando...." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Error al actualizar App" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Error" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Actualizar" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Actualizado" @@ -164,7 +164,7 @@ msgstr "Actualizado" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "Desencriptando archivos... Por favor espere, esto puede tardar." @@ -184,44 +184,75 @@ msgstr "deshacer" msgid "Unable to remove user" msgstr "Imposible borrar usuario" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupos" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grupo Administrador" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Borrar" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "agregar grupo" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "Debe ingresar un nombre de usuario válido" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "Error creando usuario" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "Debe ingresar una contraseña válida" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Castellano (Argentina)" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "Advertencia de seguridad" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -230,48 +261,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:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Alerta de Configuración" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, cheque bien la guía de instalación." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "El módulo 'fileinfo' no existe" -#: templates/admin.php:47 +#: templates/admin.php:68 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:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "\"Locale\" no está funcionando" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "No se pudo asignar la localización del sistema a %s. Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos. Recomendamos fuertemente instalar los paquetes de sistema requeridos para poder dar soporte a %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "La conexión a Internet no esta funcionando. " -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -280,110 +331,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "El servidor no posee una conexión a Internet activa. Esto significa que algunas características como el montaje de un almacenamiento externo, las notificaciones acerca de actualizaciones o la instalación de aplicaciones de terceros no funcionarán. El acceso a archivos de forma remota y el envío de correos con notificaciones es posible que tampoco funcionen. Sugerimos habilitar la conexión a Internet para este servidor si deseas tener todas estas características." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Ejecutá una tarea con cada pagina cargada." -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php está registrado al servicio webcron para que sea llamado una vez por cada minuto sobre http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Usa el servicio cron del sistema para ejecutar al archivo cron.php por cada minuto." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Compartiendo" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Habilitar Share API" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones usar la Share API" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Permitir a los usuarios compartir enlaces públicos" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Permitir subidas públicas" -#: templates/admin.php:144 +#: templates/admin.php:187 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:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Permitir Re-Compartir" -#: templates/admin.php:153 +#: templates/admin.php:196 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:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Permitir a los usuarios compartir con cualquiera." -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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:191 +#: templates/admin.php:242 #, 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:203 +#: templates/admin.php:254 msgid "Log" msgstr "Log" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Nivel de Log" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Más" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Menos" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versión" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Usá esta dirección para acceder a tus archivos a través de WebDAV" +"Use this address to access your Files via " +"WebDAV" +msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Encriptación" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "La aplicación de encriptación ya no está habilitada, desencriptando todos los archivos" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Clave de acceso" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Desencriptar todos los archivos" @@ -575,6 +638,10 @@ msgstr "Ingresá la contraseña de recuperación para recuperar los archivos de msgid "Default Storage" msgstr "Almacenamiento Predeterminado" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Ilimitado" @@ -592,8 +659,8 @@ msgid "Storage" msgstr "Almacenamiento" #: templates/users.php:108 -msgid "change display name" -msgstr "Cambiar el nombre mostrado" +msgid "change full name" +msgstr "" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index fbe5fabbcf3d59730d52f6ce0e0aa56eefd4ac21..4588bc43a22a9c22467bb8434552cb981fe5a96f 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:47-0400\n" -"PO-Revision-Date: 2013-09-11 11:00+0000\n" -"Last-Translator: cjtess \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,314 +26,425 @@ msgstr "Hubo un error al borrar las asignaciones." msgid "Failed to delete the server configuration" msgstr "Fallo al borrar la configuración del servidor" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "La configuración es válida y la conexión pudo ser establecida." -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "La configuración es válida, pero el enlace falló. Por favor, comprobá la configuración del servidor y las credenciales." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "La configuración no es válida. Por favor, buscá en el log de ownCloud más detalles." +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 "" -#: js/settings.js:66 +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 msgid "Deletion failed" msgstr "Error al borrar" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Tomar los valores de la anterior configuración de servidor?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "¿Mantener preferencias?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "No se pudo añadir la configuración del servidor" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "Asignaciones borradas" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Éxito" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Error" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Seleccionar grupos" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "El este de conexión ha sido completado satisfactoriamente" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Falló es test de conexión" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "¿Realmente desea borrar la configuración actual del servidor?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Confirmar borrado" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "Advertencia: Las apps user_ldap y user_webdavauth son incompatibles. Puede ser que experimentes comportamientos inesperados. Pedile al administrador que desactive uno de ellos." +#: 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:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" -#: templates/settings.php:12 +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Guardar" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Probar configuración" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Ayuda" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Atención: El módulo PHP LDAP no está instalado, este elemento no va a funcionar. Por favor, pedile al administrador que lo instale." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Configuración del Servidor" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +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 "Define el filtro a aplicar cuando se intenta ingresar. %%uid remplaza el nombre de usuario en el proceso de identificación. Por ejemplo: \"uid=%%uid\"" + +#: templates/part.wizard-server.php:18 msgid "Add Server Configuration" msgstr "Añadir Configuración del Servidor" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Servidor" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Podés omitir el protocolo, excepto si SSL es requerido. En ese caso, empezá con ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "DN base" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Una DN base por línea" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Podés especificar el DN base para usuarios y grupos en la pestaña \"Avanzado\"" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Puerto" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "DN usuario" -#: templates/settings.php:46 +#: 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 "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, dejá DN y contraseña vacíos." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Contraseña" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Para acceso anónimo, dejá DN y contraseña vacíos." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Filtro de inicio de sesión de usuario" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Una DN base por línea" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Podés especificar el DN base para usuarios y grupos en la pestaña \"Avanzado\"" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "Define el filtro a aplicar cuando se intenta ingresar. %%uid remplaza el nombre de usuario en el proceso de identificación. Por ejemplo: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Lista de filtros de usuario" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "Define el filtro a aplicar al obtener usuarios (sin comodines). Por ejemplo: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Volver" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Filtro de grupo" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "Advertencia: Las apps user_ldap y user_webdavauth son incompatibles. Puede ser que experimentes comportamientos inesperados. Pedile al administrador que desactive uno de ellos." -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "Define el filtro a aplicar al obtener grupos (sin comodines). Por ejemplo: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Atención: El módulo PHP LDAP no está instalado, este elemento no va a funcionar. Por favor, pedile al administrador que lo instale." -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Configuración de Conección" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Configuración activa" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Si no está seleccionada, esta configuración será omitida." -#: templates/settings.php:69 -msgid "Port" -msgstr "Puerto" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Host para copia de seguridad (réplica)" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Dar un servidor de copia de seguridad opcional. Debe ser una réplica del servidor principal LDAP/AD." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Puerto para copia de seguridad (réplica)" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Deshabilitar el Servidor Principal" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "Conectarse únicamente al servidor de réplica." -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Usar TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "No usar adicionalmente para conexiones LDAPS, las mismas fallarán" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Servidor de LDAP sensible a mayúsculas/minúsculas (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Desactivar la validación por certificado SSL." -#: templates/settings.php:75 +#: 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 "No es recomendado, ¡Usalo solamente para pruebas! Si la conexión únicamente funciona con esta opción, importá el certificado SSL del servidor LDAP en tu servidor %s." -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Tiempo de vida del caché" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "en segundos. Cambiarlo vacía la cache." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Configuración de Directorio" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Campo de nombre de usuario a mostrar" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "El atributo LDAP a usar para generar el nombre de usuario mostrado." -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Árbol base de usuario" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "Una DN base de usuario por línea" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "Atributos de la búsqueda de usuario" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Opcional; un atributo por linea" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Campo de nombre de grupo a mostrar" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "El atributo LDAP a usar para generar el nombre de grupo mostrado." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Árbol base de grupo" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "Una DN base de grupo por línea" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Atributos de búsqueda de grupo" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Asociación Grupo-Miembro" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Atributos Especiales" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Campo de cuota" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Cuota por defecto" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "en bytes" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "Campo de e-mail" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "Regla de nombre de los directorios de usuario" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Vacío para el nombre de usuario (por defecto). En otro caso, especificá un atributo LDAP/AD." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "Nombre interno de usuario" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -349,15 +460,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Por defecto, el nombre de usuario interno es creado a partir del atributo UUID. Esto asegura que el nombre de usuario es único y no es necesaria una conversión de caracteres. El nombre de usuario interno sólo se pueden usar estos caracteres: [ a-zA-Z0-9_.@- ]. El resto de caracteres son sustituidos por su correspondiente en ASCII o simplemente omitidos. En caso colisiones, se agregará o incrementará un número. El nombre de usuario interno es usado para identificar un usuario. Es también el nombre predeterminado para el directorio personal del usuario en ownCloud. También es parte de las URLs remotas, por ejemplo, para los servicios *DAV. Con esta opción, se puede cambiar el comportamiento por defecto. Para conseguir un comportamiento similar a versiones anteriores a ownCloud 5, ingresá el atributo del nombre mostrado en el campo siguiente. Dejalo vacío para el comportamiento por defecto. Los cambios solo tendrán efecto en los nuevos usuarios LDAP mapeados (agregados)." -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "Atributo Nombre Interno de usuario:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "Sobrescribir la detección UUID" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -368,15 +479,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Por defecto, el atributo UUID es detectado automáticamente. Este atributo es usado para identificar de manera certera usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no fue especificado otro comportamiento más arriba. Podés sobrescribir la configuración y pasar un atributo de tu elección. Tenés que asegurarte que el atributo de tu elección sea accesible por los usuarios y grupos y que sea único. Dejalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto sólo en los nuevos usuarios y grupos de LDAP mapeados (agregados)." -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atributo UUID:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "Atributo UUID para usuarios:" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "Atributo UUID para grupos:" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "Asignación del Nombre de usuario de un usuario LDAP" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -390,18 +505,10 @@ msgid "" "experimental stage." msgstr "Los usuarios son usados para almacenar y asignar datos (metadatos). Con el fin de identificar de forma precisa y reconocer usuarios, a cada usuario de LDAP se será asignado un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es dejado en caché para reducir la interacción entre el LDAP, pero no es usado para la identificación. Si el DN cambia, los cambios van a ser aplicados. El nombre de usuario interno es usado en todos los lugares. Vaciar los mapeos, deja restos por todas partes. Vaciar los mapeos, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, solamente en fase de desarrollo o experimental." -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "Borrar la asignación de los Nombres de usuario de los usuarios LDAP" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Borrar la asignación de los Nombres de grupo de los grupos de LDAP" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Probar configuración" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Ayuda" diff --git a/l10n/es_CL/core.po b/l10n/es_CL/core.po new file mode 100644 index 0000000000000000000000000000000000000000..05b6eb1d9eddb858c0eaf4ff7987a37d8031343c --- /dev/null +++ b/l10n/es_CL/core.po @@ -0,0 +1,775 @@ +# 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: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:22+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:119 ajax/share.php:198 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: ajax/share.php:169 +#, 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 "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +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:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:33 +msgid "Monday" +msgstr "" + +#: js/config.php:34 +msgid "Tuesday" +msgstr "" + +#: js/config.php:35 +msgid "Wednesday" +msgstr "" + +#: js/config.php:36 +msgid "Thursday" +msgstr "" + +#: js/config.php:37 +msgid "Friday" +msgstr "" + +#: js/config.php:38 +msgid "Saturday" +msgstr "" + +#: js/config.php:43 +msgid "January" +msgstr "" + +#: js/config.php:44 +msgid "February" +msgstr "" + +#: js/config.php:45 +msgid "March" +msgstr "" + +#: js/config.php:46 +msgid "April" +msgstr "" + +#: js/config.php:47 +msgid "May" +msgstr "" + +#: js/config.php:48 +msgid "June" +msgstr "" + +#: js/config.php:49 +msgid "July" +msgstr "" + +#: js/config.php:50 +msgid "August" +msgstr "" + +#: js/config.php:51 +msgid "September" +msgstr "" + +#: js/config.php:52 +msgid "October" +msgstr "" + +#: js/config.php:53 +msgid "November" +msgstr "" + +#: js/config.php:54 +msgid "December" +msgstr "" + +#: js/js.js:398 +msgid "Settings" +msgstr "Configuración" + +#: js/js.js:869 +msgid "seconds ago" +msgstr "" + +#: js/js.js:870 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:871 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:872 +msgid "today" +msgstr "" + +#: js/js.js:873 +msgid "yesterday" +msgstr "" + +#: js/js.js:874 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:875 +msgid "last month" +msgstr "" + +#: js/js.js:876 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:877 +msgid "months ago" +msgstr "" + +#: js/js.js:878 +msgid "last year" +msgstr "" + +#: js/js.js:879 +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/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:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 +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:187 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:189 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:219 +msgid "Share link" +msgstr "" + +#: js/share.js:222 +msgid "Password protect" +msgstr "" + +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +msgid "Password" +msgstr "Clave" + +#: js/share.js:229 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:233 +msgid "Email link to person" +msgstr "" + +#: js/share.js:234 +msgid "Send" +msgstr "" + +#: js/share.js:239 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:240 +msgid "Expiration date" +msgstr "" + +#: js/share.js:275 +msgid "Share via email:" +msgstr "" + +#: js/share.js:278 +msgid "No people found" +msgstr "" + +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:375 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:397 +msgid "Unshare" +msgstr "" + +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 +msgid "can edit" +msgstr "" + +#: js/share.js:410 +msgid "access control" +msgstr "" + +#: js/share.js:413 +msgid "create" +msgstr "" + +#: js/share.js:416 +msgid "update" +msgstr "" + +#: js/share.js:419 +msgid "delete" +msgstr "" + +#: js/share.js:422 +msgid "share" +msgstr "" + +#: js/share.js:694 +msgid "Password protected" +msgstr "" + +#: js/share.js:707 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:719 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:734 +msgid "Sending ..." +msgstr "" + +#: js/share.js:745 +msgid "Email sent" +msgstr "" + +#: js/share.js:769 +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 ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:62 +#, php-format +msgid "%s password reset" +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.
    If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
    If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
    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:52 +#: templates/login.php:31 +msgid "Username" +msgstr "Usuario" + +#: 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 "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:111 +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 documentation." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:67 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:74 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:86 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 +msgid "will be used" +msgstr "" + +#: templates/installation.php:149 +msgid "Database user" +msgstr "" + +#: templates/installation.php:156 +msgid "Database password" +msgstr "" + +#: templates/installation.php:161 +msgid "Database name" +msgstr "" + +#: templates/installation.php:169 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:176 +msgid "Database host" +msgstr "" + +#: templates/installation.php:185 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:72 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:44 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:49 +msgid "remember" +msgstr "" + +#: templates/login.php:52 +msgid "Log in" +msgstr "" + +#: templates/login.php:58 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    " +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/es_CL/files.po b/l10n/es_CL/files.po new file mode 100644 index 0000000000000000000000000000000000000000..2bb37f65f473ca6106aa6c62dcc4d951dcc861c4 --- /dev/null +++ b/l10n/es_CL/files.po @@ -0,0 +1,413 @@ +# 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: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06: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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:27 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:64 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:71 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:72 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:74 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:75 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:76 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:77 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:78 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:96 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:127 ajax/upload.php:154 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:144 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:172 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 +msgid "Files" +msgstr "Archivos" + +#: js/file-upload.js:228 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:239 +msgid "Not enough space available" +msgstr "" + +#: js/file-upload.js:306 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:344 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:436 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 +msgid "Share" +msgstr "" + +#: js/fileactions.js:137 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:194 +msgid "Rename" +msgstr "" + +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" +msgstr "" + +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:539 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:539 +msgid "undo" +msgstr "" + +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:617 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:828 js/filelist.js:866 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:72 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:81 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:93 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:97 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:349 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error moving file" +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 +msgid "Name" +msgstr "" + +#: js/files.js:614 templates/index.php:68 +msgid "Size" +msgstr "" + +#: js/files.js:615 templates/index.php:70 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:11 templates/index.php:16 +msgid "Upload" +msgstr "Subir" + +#: 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:5 +msgid "New" +msgstr "" + +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 +msgid "Text file" +msgstr "" + +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From link" +msgstr "" + +#: templates/index.php:29 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:34 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:45 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:62 +msgid "Download" +msgstr "" + +#: templates/index.php:73 templates/index.php:74 +msgid "Delete" +msgstr "" + +#: templates/index.php:86 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:88 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:93 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:96 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/es_CL/files_encryption.po b/l10n/es_CL/files_encryption.po new file mode 100644 index 0000000000000000000000000000000000000000..27a1d9e6e5abe7a6d8beef4334f03c7044a4f821 --- /dev/null +++ b/l10n/es_CL/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: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\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:59 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:60 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "" + +#: hooks/hooks.php:278 +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/settings-admin.js:13 +msgid "Saving..." +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/es_CL/files_external.po b/l10n/es_CL/files_external.po new file mode 100644 index 0000000000000000000000000000000000000000..9537ed246848dffc3ae20dc0f279b8137eaa315b --- /dev/null +++ b/l10n/es_CL/files_external.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:86 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:42 js/google.js:121 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:467 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:471 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:474 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/es_CL/files_sharing.po b/l10n/es_CL/files_sharing.po new file mode 100644 index 0000000000000000000000000000000000000000..a4836e6eea7b1064a68a4fbc9f8f989f672d3fab --- /dev/null +++ b/l10n/es_CL/files_sharing.po @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 16:42-0500\n" +"PO-Revision-Date: 2013-12-17 15:30+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: 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 "Clave" + +#: 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:18 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:21 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:29 templates/public.php:95 +msgid "Download" +msgstr "" + +#: templates/public.php:46 templates/public.php:49 +msgid "Upload" +msgstr "Subir" + +#: templates/public.php:59 +msgid "Cancel upload" +msgstr "" + +#: templates/public.php:92 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/es_CL/files_trashbin.po b/l10n/es_CL/files_trashbin.po new file mode 100644 index 0000000000000000000000000000000000000000..1e0643be9b26eb9fc21f5922273e821a320457e0 --- /dev/null +++ b/l10n/es_CL/files_trashbin.po @@ -0,0 +1,60 @@ +# 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: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:63 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:43 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 +msgid "Error" +msgstr "" + +#: lib/trashbin.php:905 lib/trashbin.php:907 +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/es_CL/files_versions.po b/l10n/es_CL/files_versions.po new file mode 100644 index 0000000000000000000000000000000000000000..96a6427ad998e2a16aac30d9bdecfc2eb6cfc6e1 --- /dev/null +++ b/l10n/es_CL/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: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\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:86 +msgid "More versions..." +msgstr "" + +#: js/versions.js:123 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:154 +msgid "Restore" +msgstr "" diff --git a/l10n/es_CL/lib.po b/l10n/es_CL/lib.po new file mode 100644 index 0000000000000000000000000000000000000000..a6cad8d93cb97632e15dcca472c126dc41577061 --- /dev/null +++ b/l10n/es_CL/lib.po @@ -0,0 +1,333 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: private/app.php:243 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:255 +msgid "No app name specified" +msgstr "" + +#: private/app.php:360 +msgid "Help" +msgstr "" + +#: private/app.php:373 +msgid "Personal" +msgstr "" + +#: private/app.php:384 +msgid "Settings" +msgstr "Configuración" + +#: private/app.php:396 +msgid "Users" +msgstr "" + +#: private/app.php:409 +msgid "Admin" +msgstr "" + +#: private/app.php:873 +#, 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:34 +msgid "web services under your control" +msgstr "" + +#: private/files.php:66 private/files.php:98 +#, php-format +msgid "cannot open \"%s\"" +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:63 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:125 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:131 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:140 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:146 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:159 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:169 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:182 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:39 private/json.php:62 private/json.php:73 +msgid "Authentication error" +msgstr "" + +#: private/json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: private/search/provider/file.php:18 private/search/provider/file.php:36 +msgid "Files" +msgstr "Archivos" + +#: 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:24 +#: private/setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL 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:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#, 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL." +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:23 private/setup/postgresql.php:69 +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:195 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:196 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:131 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:132 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:133 +msgid "today" +msgstr "" + +#: private/template/functions.php:134 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:136 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:138 +msgid "last month" +msgstr "" + +#: private/template/functions.php:139 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:141 +msgid "last year" +msgstr "" + +#: private/template/functions.php:142 +msgid "years ago" +msgstr "" diff --git a/l10n/es_CL/settings.po b/l10n/es_CL/settings.po new file mode 100644 index 0000000000000000000000000000000000000000..75d4de7ece4d19919f4ec2f46635fac6ade1581f --- /dev/null +++ b/l10n/es_CL/settings.po @@ -0,0 +1,668 @@ +# 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: 2013-12-17 16:42-0500\n" +"PO-Revision-Date: 2013-12-17 15:30+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 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/apps.js:43 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +msgid "Disable" +msgstr "" + +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +msgid "Enable" +msgstr "" + +#: js/apps.js:71 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:125 +msgid "Updating...." +msgstr "" + +#: js/apps.js:128 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:128 +msgid "Error" +msgstr "" + +#: js/apps.js:129 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:132 +msgid "Updated" +msgstr "" + +#: js/personal.js:220 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:266 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/personal.js:287 +msgid "Saving..." +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:95 templates/users.php:26 templates/users.php:90 +#: templates/users.php:118 +msgid "Groups" +msgstr "" + +#: js/users.js:100 templates/users.php:92 templates/users.php:130 +msgid "Group Admin" +msgstr "" + +#: js/users.js:123 templates/users.php:170 +msgid "Delete" +msgstr "" + +#: js/users.js:284 +msgid "add group" +msgstr "" + +#: js/users.js:454 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:455 js/users.js:461 js/users.js:476 +msgid "Error creating user" +msgstr "" + +#: js/users.js:460 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:45 personal.php:46 +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:22 templates/admin.php:36 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:25 +#, 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:39 +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:50 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:53 +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:54 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:65 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:68 +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:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 +#, 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:118 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:121 +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:135 +msgid "Cron" +msgstr "" + +#: templates/admin.php:142 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:150 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:163 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:169 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:170 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:177 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:178 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:186 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:187 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:195 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:196 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:203 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:206 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 +msgid "Security" +msgstr "" + +#: templates/admin.php:234 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:236 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:242 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:254 +msgid "Log" +msgstr "" + +#: templates/admin.php:255 +msgid "Log level" +msgstr "" + +#: templates/admin.php:287 +msgid "More" +msgstr "" + +#: templates/admin.php:288 +msgid "Less" +msgstr "" + +#: templates/admin.php:294 templates/personal.php:173 +msgid "Version" +msgstr "" + +#: templates/admin.php:298 templates/personal.php:176 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:13 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:28 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:33 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:39 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:41 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +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 %s of the available %s" +msgstr "" + +#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +msgid "Password" +msgstr "Clave" + +#: templates/personal.php:40 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:41 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:44 +msgid "New password" +msgstr "" + +#: templates/personal.php:46 +msgid "Change password" +msgstr "" + +#: templates/personal.php:58 templates/users.php:88 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:73 +msgid "Email" +msgstr "" + +#: templates/personal.php:75 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:76 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:86 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:91 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:93 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:94 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:95 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:97 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:101 +msgid "Abort" +msgstr "" + +#: templates/personal.php:102 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:110 templates/personal.php:111 +msgid "Language" +msgstr "" + +#: templates/personal.php:130 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:137 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:139 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "" + +#: templates/personal.php:150 +msgid "Encryption" +msgstr "" + +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:158 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:163 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:21 +msgid "Login Name" +msgstr "" + +#: templates/users.php:30 +msgid "Create" +msgstr "" + +#: templates/users.php:36 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:48 templates/users.php:148 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:66 templates/users.php:163 +msgid "Other" +msgstr "" + +#: templates/users.php:87 +msgid "Username" +msgstr "Usuario" + +#: templates/users.php:94 +msgid "Storage" +msgstr "" + +#: templates/users.php:108 +msgid "change full name" +msgstr "" + +#: templates/users.php:112 +msgid "set new password" +msgstr "" + +#: templates/users.php:143 +msgid "Default" +msgstr "" diff --git a/l10n/es_CL/user_ldap.po b/l10n/es_CL/user_ldap.po new file mode 100644 index 0000000000000000000000000000000000000000..d7d15250941696e05c2529291c3781fe15a94290 --- /dev/null +++ b/l10n/es_CL/user_ldap.po @@ -0,0 +1,513 @@ +# 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: 2013-12-17 16:42-0500\n" +"PO-Revision-Date: 2013-12-17 15:30+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\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:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:912 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:921 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:922 +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:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +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 "Limit the access to %s to groups meeting this criteria:" +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 "What attribute shall be used as login name:" +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 "Clave" + +#: 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 the access to %s to users meeting this 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 "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php: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:40 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:42 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:43 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:43 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:44 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:45 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:45 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:51 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:52 +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:53 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:54 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:55 +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:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:58 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:59 +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:60 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:60 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/es_CL/user_webdavauth.po b/l10n/es_CL/user_webdavauth.po new file mode 100644 index 0000000000000000000000000000000000000000..80f0076616089b411ec9f09cb0e68ff007167222 --- /dev/null +++ b/l10n/es_CL/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: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-16 14:34+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\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/es_MX/core.po b/l10n/es_MX/core.po index d351beb1b75e7a83daf99191e1793c12f5492579..978e2ba5a47cba72eaa46f4b820db1bf6f2e93fb 100644 --- a/l10n/es_MX/core.po +++ b/l10n/es_MX/core.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2014-01-02 01:23+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,543 +17,561 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s ha compartido »%s« contigo" -#: ajax/share.php:227 -msgid "group" -msgstr "" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "No se pudo enviar el mensaje a los siguientes usuarios: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" -msgstr "" +msgstr "Modo mantenimiento activado" #: ajax/update.php:14 msgid "Turned off maintenance mode" -msgstr "" +msgstr "Modo mantenimiento desactivado" #: ajax/update.php:17 msgid "Updated database" -msgstr "" +msgstr "Base de datos actualizada" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "" +msgstr "Actualizando caché de archivos, esto puede tardar bastante tiempo..." #: ajax/update.php:23 msgid "Updated filecache" -msgstr "" +msgstr "Caché de archivos actualizada" #: ajax/update.php:26 #, php-format msgid "... %d%% done ..." -msgstr "" - -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" +msgstr "... %d%% hecho ..." #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "No se especificó ningún archivo o imagen" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Tipo de archivo desconocido" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Imagen inválida" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "No hay disponible una imagen temporal de perfil, pruebe de nuevo" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "No se proporcionó datos del recorte" #: js/config.php:32 msgid "Sunday" -msgstr "" +msgstr "Domingo" #: js/config.php:33 msgid "Monday" -msgstr "" +msgstr "Lunes" #: js/config.php:34 msgid "Tuesday" -msgstr "" +msgstr "Martes" #: js/config.php:35 msgid "Wednesday" -msgstr "" +msgstr "Miércoles" #: js/config.php:36 msgid "Thursday" -msgstr "" +msgstr "Jueves" #: js/config.php:37 msgid "Friday" -msgstr "" +msgstr "Viernes" #: js/config.php:38 msgid "Saturday" -msgstr "" +msgstr "Sábado" #: js/config.php:43 msgid "January" -msgstr "" +msgstr "Enero" #: js/config.php:44 msgid "February" -msgstr "" +msgstr "Febrero" #: js/config.php:45 msgid "March" -msgstr "" +msgstr "Marzo" #: js/config.php:46 msgid "April" -msgstr "" +msgstr "Abril" #: js/config.php:47 msgid "May" -msgstr "" +msgstr "Mayo" #: js/config.php:48 msgid "June" -msgstr "" +msgstr "Junio" #: js/config.php:49 msgid "July" -msgstr "" +msgstr "Julio" #: js/config.php:50 msgid "August" -msgstr "" +msgstr "Agosto" #: js/config.php:51 msgid "September" -msgstr "" +msgstr "Septiembre" #: js/config.php:52 msgid "October" -msgstr "" +msgstr "Octubre" #: js/config.php:53 msgid "November" -msgstr "" +msgstr "Noviembre" #: js/config.php:54 msgid "December" -msgstr "" +msgstr "Diciembre" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" -msgstr "" +msgstr "Ajustes" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" -msgstr "" +msgstr "segundos antes" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace %n minuto" +msgstr[1] "Hace %n minutos" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace %n hora" +msgstr[1] "Hace %n horas" -#: js/js.js:869 +#: js/js.js:872 msgid "today" -msgstr "" +msgstr "hoy" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" -msgstr "" +msgstr "ayer" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace %n día" +msgstr[1] "Hace %n días" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" -msgstr "" +msgstr "el mes pasado" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace %n mes" +msgstr[1] "Hace %n meses" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" -msgstr "" +msgstr "meses antes" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" -msgstr "" +msgstr "el año pasado" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" -msgstr "" +msgstr "años antes" #: js/oc-dialogs.js:123 msgid "Choose" -msgstr "" +msgstr "Seleccionar" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Error cargando plantilla del seleccionador de archivos: {error}" #: js/oc-dialogs.js:172 msgid "Yes" -msgstr "" +msgstr "Sí" #: js/oc-dialogs.js:182 msgid "No" -msgstr "" +msgstr "No" #: js/oc-dialogs.js:199 msgid "Ok" -msgstr "" +msgstr "Aceptar" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Error cargando plantilla del mensaje: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{count} conflicto de archivo" +msgstr[1] "{count} conflictos de archivo" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Un conflicto de archivo" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "¿Que archivos deseas mantener?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Si seleccionas ambas versiones, el archivo copiado tendrá añadido un número en su nombre." #: js/oc-dialogs.js:376 msgid "Cancel" -msgstr "" +msgstr "Cancelar" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Continuar" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(todos seleccionados)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} seleccionados)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" - -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "" +msgstr "Error cargando plantilla de archivo existente" -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" -msgstr "" +msgstr "Compartido" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" -msgstr "" +msgstr "Compartir" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Error" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" -msgstr "" +msgstr "Error al compartir" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" -msgstr "" +msgstr "Error al dejar de compartir" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" -msgstr "" +msgstr "Error al cambiar permisos" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "Compartido contigo y el grupo {group} por {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" -msgstr "" +msgstr "Compartido contigo por {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Compartido con el usuario o con el grupo …" -#: js/share.js:188 -msgid "Share with link" -msgstr "" +#: js/share.js:219 +msgid "Share link" +msgstr "Enlace compartido" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" -msgstr "" +msgstr "Protección con contraseña" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" -msgstr "" +msgstr "Contraseña" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" -msgstr "" +msgstr "Permitir Subida Pública" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" -msgstr "" +msgstr "Enviar enlace por correo electrónico a una persona" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" -msgstr "" +msgstr "Enviar" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" -msgstr "" +msgstr "Establecer fecha de caducidad" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" -msgstr "" +msgstr "Fecha de caducidad" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" -msgstr "" +msgstr "Compartir por correo electrónico:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" -msgstr "" +msgstr "No se encontró gente" + +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "grupo" -#: js/share.js:283 +#: js/share.js:333 msgid "Resharing is not allowed" -msgstr "" +msgstr "No se permite compartir de nuevo" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "Compartido en {item} con {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" -msgstr "" +msgstr "Dejar de compartir" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "notificar al usuario por correo electrónico" + +#: js/share.js:408 msgid "can edit" -msgstr "" +msgstr "puede editar" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" -msgstr "" +msgstr "control de acceso" -#: js/share.js:357 +#: js/share.js:413 msgid "create" -msgstr "" +msgstr "crear" -#: js/share.js:360 +#: js/share.js:416 msgid "update" -msgstr "" +msgstr "actualizar" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" -msgstr "" +msgstr "eliminar" -#: js/share.js:366 +#: js/share.js:422 msgid "share" -msgstr "" +msgstr "compartir" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" -msgstr "" +msgstr "Protegido con contraseña" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Error eliminando fecha de caducidad" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" -msgstr "" +msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." -msgstr "" +msgstr "Enviando..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" -msgstr "" +msgstr "Correo electrónico enviado" + +#: js/share.js:769 +msgid "Warning" +msgstr "Precaución" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "El tipo de objeto no está especificado." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Ingresar nueva" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Eliminar" + +#: js/tags.js:31 +msgid "Add" +msgstr "Agregar" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Editar etiquetas" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Error cargando plantilla de diálogo: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "No hay etiquetas seleccionadas para borrar." + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "Vuelva a cargar la página." #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "" +msgstr "La actualización ha fracasado. Por favor, informe de este problema a la Comunidad de ownCloud." #: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora." #: lostpassword/controller.php:62 #, php-format msgid "%s password reset" -msgstr "" +msgstr "%s restablecer contraseña" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "" +msgstr "Utilice el siguiente enlace para restablecer su contraseña: {link}" -#: lostpassword/templates/lostpassword.php:4 +#: lostpassword/templates/lostpassword.php:7 msgid "" "The link to reset your password has been sent to your email.
    If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." -msgstr "" +msgstr "El enlace para restablecer la contraseña ha sido enviada a su correo electrónico.
    Si no lo recibe en un plazo razonable de tiempo, revise su carpeta de spam / correo no deseado.
    Si no está allí, pregunte a su administrador local." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" -msgstr "" +msgstr "La petición ha fallado!
    ¿Está seguro de que su dirección de correo electrónico o nombre de usuario era correcto?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." -msgstr "" +msgstr "Recibirá un enlace por correo electrónico para restablecer su contraseña" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" -msgstr "" +msgstr "Nombre de usuario" -#: lostpassword/templates/lostpassword.php:22 +#: 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 "" +msgstr "Sus archivos están cifrados. Si no ha habilitado la clave de recurperación, no habrá forma de recuperar sus datos luego de que la contraseña sea reseteada. Si no está seguro de qué hacer, contacte a su administrador antes de continuar. ¿Realmente desea continuar?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Sí. Realmente deseo resetear mi contraseña ahora" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Reiniciar" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "" +msgstr "Su contraseña fue restablecida" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "" +msgstr "A la página de inicio de sesión" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "" +msgstr "Nueva contraseña" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "" +msgstr "Restablecer contraseña" #: strings.php:5 msgid "Personal" -msgstr "" +msgstr "Personal" #: strings.php:6 msgid "Users" -msgstr "" +msgstr "Usuarios" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" -msgstr "" +msgstr "Aplicaciones" #: strings.php:8 msgid "Admin" -msgstr "" +msgstr "Administración" #: strings.php:9 msgid "Help" -msgstr "" +msgstr "Ayuda" + +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "Error cargando etiquetas." + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "La etiqueta ya existe" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "Error borrando etiqueta(s)" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "Error al etiquetar" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "Error al quitar etiqueta" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "Error al marcar como favorito" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "Error al quitar como favorito" #: templates/403.php:12 msgid "Access forbidden" -msgstr "" +msgstr "Acceso denegado" #: templates/404.php:15 msgid "Cloud not found" -msgstr "" +msgstr "No se encuentra la nube" #: templates/altmail.php:2 #, php-format @@ -563,149 +581,195 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "" +msgstr "Hola:\n\nTan solo queremos informarte que %s compartió %s contigo.\nMíralo aquí: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "El objeto dejará de ser compartido el %s." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "¡Saludos!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" -msgstr "" +msgstr "Advertencia de seguridad" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Su versión de PHP es vulnerable al ataque de Byte NULL (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Por favor, actualice su instalación PHP para usar %s con seguridad." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "" +msgstr "No está disponible un generador de números aleatorios seguro, por favor habilite la extensión OpenSSL de PHP." -#: templates/installation.php:33 +#: 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 "" +msgstr "Sin un generador de números aleatorios seguro, un atacante podría predecir los tokens de restablecimiento de contraseñas y tomar el control de su cuenta." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "Su directorio de datos y sus archivos probablemente sean accesibles a través de internet ya que el archivo .htaccess no funciona." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "Para información de cómo configurar apropiadamente su servidor, por favor vea la documentación." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" -msgstr "" +msgstr "Crear una cuenta de administrador" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" -msgstr "" +msgstr "Avanzado" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" -msgstr "" +msgstr "Directorio de datos" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" -msgstr "" +msgstr "Configurar la base de datos" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" -msgstr "" +msgstr "se utilizarán" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" -msgstr "" +msgstr "Usuario de la base de datos" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" -msgstr "" +msgstr "Contraseña de la base de datos" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" -msgstr "" +msgstr "Nombre de la base de datos" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" -msgstr "" +msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" -msgstr "" +msgstr "Host de la base de datos" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" -msgstr "" +msgstr "Completar la instalación" + +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Finalizando …" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "Esta aplicación requiere que se habilite JavaScript para su correcta operación. Por favor habilite JavaScript y vuelva a cargar esta interfaz." -#: templates/layout.user.php:41 +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s esta disponible. Obtener mas información de como actualizar." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" -msgstr "" +msgstr "Salir" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "" +msgstr "¡Inicio de sesión automático rechazado!" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "" +msgstr "Si no ha cambiado su contraseña recientemente, ¡puede que su cuenta esté comprometida!" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "Por favor cambie su contraseña para asegurar su cuenta nuevamente." + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "La autenticación a fallado en el servidor." + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Por favor, contacte con el administrador." -#: templates/login.php:32 +#: templates/login.php:44 msgid "Lost your password?" -msgstr "" +msgstr "¿Ha perdido su contraseña?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" -msgstr "" +msgstr "recordar" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" -msgstr "" +msgstr "Entrar" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" -msgstr "" +msgstr "Accesos Alternativos" #: templates/mail.php:15 #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "" +"href=\"%s\">View it!

    " +msgstr "Hola:

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

    " + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "Esta instalación de ownCloud se encuentra en modo de usuario único." + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "Esto quiere decir que solo un administrador puede usarla." -#: templates/update.php:3 +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "Contacte con su administrador de sistemas si este mensaje persiste o aparece de forma inesperada." + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "Gracias por su paciencia." + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "Esta versión de ownCloud se está actualizando, esto puede demorar un tiempo." + +#: 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." diff --git a/l10n/es_MX/files.po b/l10n/es_MX/files.po index 7405f7a77b613c39666949060f713ff4b00311b6..3ab8a00fc9add9d3a27d5039c94e8eaa7ad85ea9 100644 --- a/l10n/es_MX/files.po +++ b/l10n/es_MX/files.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2014-01-02 01:10+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,324 +20,394 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "No se pudo mover %s - Ya existe un archivo con ese nombre." #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "No se pudo mover %s" + +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "El nombre de archivo no puede estar vacío." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "El nombre del archivo, NO puede contener el simbolo\"/\", por favor elija un nombre diferente." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "El nombre %s ya está en uso por la carpeta %s. Por favor elija uno diferente." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "No es un origen válido" + +#: ajax/newfile.php:86 +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:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Error mientras se descargaba %s a %s" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Error al crear el archivo" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "El nombre de la carpeta no puede estar vacío." -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "El nombre de la carpeta, NO puede contener el simbolo\"/\", por favor elija un nombre diferente." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Error al crear la carpeta." + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." -msgstr "" +msgstr "Incapaz de crear directorio de subida." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" -msgstr "" +msgstr "Token Inválido" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "No se subió ningún archivo. Error desconocido" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "No hubo ningún problema, el archivo se subió con éxito" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "El archivo subido sobrepasa la directiva 'upload_max_filesize' en php.ini:" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "" +msgstr "El archivo subido sobrepasa la directiva 'MAX_FILE_SIZE' especificada en el formulario HTML" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "El archivo subido fue sólo subido parcialmente" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" -msgstr "" +msgstr "No se subió ningún archivo" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" -msgstr "" +msgstr "Falta la carpeta temporal" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" -msgstr "" +msgstr "Falló al escribir al disco" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" -msgstr "" +msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Actualización fallida. No se pudo obtener información del archivo." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Actualización fallida. No se pudo encontrar el archivo subido" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." -msgstr "" +msgstr "Directorio inválido." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" -msgstr "" +msgstr "Archivos" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "No ha sido posible subir {filename} porque es un directorio o tiene 0 bytes" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" -msgstr "" +msgstr "No hay suficiente espacio disponible" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." -msgstr "" +msgstr "Subida cancelada." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "" +msgstr "No se pudo obtener respuesta del servidor." -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada." -#: js/file-upload.js:520 -msgid "URL cannot be empty." -msgstr "" +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "La dirección URL no puede estar vacía" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "En la carpeta de inicio, 'Shared' es un nombre reservado" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} ya existe" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "No se pudo crear el archivo" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "No se pudo crear la carpeta" -#: js/fileactions.js:119 +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Error al descargar URL." + +#: js/fileactions.js:125 msgid "Share" -msgstr "" +msgstr "Compartir" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" -msgstr "" +msgstr "Eliminar permanentemente" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" -msgstr "" +msgstr "Renombrar" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" -msgstr "" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "" +msgstr "Pendiente" -#: js/filelist.js:416 -msgid "suggest name" -msgstr "" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "No se pudo renombrar el archivo" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" -msgstr "" +msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" -msgstr "" +msgstr "deshacer" + +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Error borrando el archivo." -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n carpeta" +msgstr[1] "%n carpetas" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n archivo" +msgstr[1] "%n archivos" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" -msgstr "" +msgstr "{dirs} y {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Subiendo %n archivo" +msgstr[1] "Subiendo %n archivos" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' no es un nombre de archivo válido." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "Su almacenamiento está lleno, ¡los archivos no se actualizarán ni sincronizarán más!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "Su almacenamiento está casi lleno ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "La aplicación de crifrado está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo." + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "La clave privada no es válida para la aplicación de cifrado. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos cifrados." + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." -msgstr "" +msgstr "El cifrado ha sido deshabilitado pero tus archivos permanecen cifrados. Por favor, ve a tus ajustes personales para descifrar tus archivos." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "Su descarga está siendo preparada. Esto podría tardar algo de tiempo si los archivos son grandes." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" -msgstr "" +msgstr "Error moviendo archivo" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Error" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:613 templates/index.php:56 msgid "Name" -msgstr "" +msgstr "Nombre" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" -msgstr "" +msgstr "Tamaño" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" -msgstr "" +msgstr "Modificado" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado." + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s no pudo ser renombrado" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" -msgstr "" +msgstr "Subir" #: templates/admin.php:5 msgid "File handling" -msgstr "" +msgstr "Administración de archivos" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "" +msgstr "Tamaño máximo de subida" #: templates/admin.php:10 msgid "max. possible: " -msgstr "" +msgstr "máx. posible:" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "" +msgstr "Necesario para multi-archivo y descarga de carpetas" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "" +msgstr "Habilitar descarga en ZIP" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "" +msgstr "0 significa ilimitado" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "" +msgstr "Tamaño máximo para archivos ZIP de entrada" #: templates/admin.php:26 msgid "Save" -msgstr "" +msgstr "Guardar" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" -msgstr "" +msgstr "Nuevo" + +#: templates/index.php:8 +msgid "New text file" +msgstr "Nuevo archivo de texto" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Text file" -msgstr "" +msgstr "Archivo de texto" + +#: templates/index.php:10 +msgid "New folder" +msgstr "Nueva carpeta" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" -msgstr "" +msgstr "Carpeta" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" -msgstr "" +msgstr "Desde enlace" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" -msgstr "" +msgstr "Archivos eliminados" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" -msgstr "" +msgstr "Cancelar subida" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "" +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "No tienes permisos para subir o crear archivos aquí." -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" -msgstr "" +msgstr "No hay nada aquí. ¡Suba algo!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" -msgstr "" - -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" +msgstr "Descargar" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" -msgstr "" +msgstr "Eliminar" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" -msgstr "" +msgstr "Subida demasido grande" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "" +msgstr "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." -msgstr "" +msgstr "Los archivos están siendo escaneados, por favor espere." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" -msgstr "" +msgstr "Escaneo actual" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "Actualizando caché del sistema de archivos..." diff --git a/l10n/es_MX/files_encryption.po b/l10n/es_MX/files_encryption.po index 0aa9dac64883faeae3eb2474b6bb356751e8ac06..568f9b2783c5e7363f42797a0d9cfa7ef284de4b 100644 --- a/l10n/es_MX/files_encryption.po +++ b/l10n/es_MX/files_encryption.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:39-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 19:30+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,158 +19,183 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "" +msgstr "Se ha habilitado la recuperación de archivos" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "No se pudo habilitar la clave de recuperación. Por favor compruebe su contraseña." #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "" +msgstr "Clave de recuperación deshabilitada" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "No se pudo deshabilitar la clave de recuperación. Por favor compruebe su contraseña!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "" +msgstr "Su contraseña ha sido cambiada" #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "" +msgstr "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "" +msgstr "Contraseña de clave privada actualizada con éxito." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea correcta." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "" +"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 "¡La aplicación de cifrado no ha sido inicializada! Quizá fue restablecida durante tu sesión. Por favor intenta cerrar la sesión y volver a iniciarla para inicializar la aplicación de cifrado." + +#: 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 "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. de %s (Ej:Su directorio corporativo). Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus archivos." + +#: 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 "No fue posible descifrar este archivo, probablemente se trate de un archivo compartido. Solicite al propietario del mismo que vuelva a compartirlo con usted." -#: hooks/hooks.php:51 +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Error desconocido. Verifique la configuración de su sistema o póngase en contacto con su administrador" + +#: hooks/hooks.php:62 msgid "Missing requirements." -msgstr "" +msgstr "Requisitos incompletos." -#: hooks/hooks.php:52 +#: hooks/hooks.php:63 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada." -#: hooks/hooks.php:250 +#: hooks/hooks.php:281 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Los siguientes usuarios no han sido configurados para el cifrado:" -#: js/settings-admin.js:11 -msgid "Saving..." -msgstr "" +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "Encriptación iniciada... Esto puede tomar un tiempo. Por favor espere." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" +#: js/settings-admin.js:13 +msgid "Saving..." +msgstr "Guardando..." -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Ir directamente a su" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" -msgstr "" +msgstr "opciones personales" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" -msgstr "" +msgstr "Cifrado" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Habilitar la clave de recuperación (permite recuperar los archivos del usuario en caso de pérdida de la contraseña);" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" -msgstr "" +msgstr "Contraseña de clave de recuperación" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Repite la contraseña de clave de recuperación" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" -msgstr "" +msgstr "Habilitar" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" -msgstr "" +msgstr "Deshabilitado" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Cambiar la contraseña de la clave de recuperación" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" -msgstr "" +msgstr "Antigua clave de recuperación" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" -msgstr "" +msgstr "Nueva clave de recuperación" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "Repetir la nueva clave de recuperación" + +#: templates/settings-admin.php:58 msgid "Change Password" -msgstr "" +msgstr "Cambiar contraseña" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Su contraseña de clave privada ya no coincide con su contraseña de acceso:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Establecer la contraseña de su antigua clave privada a su contraseña actual de acceso." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Si no recuerda su antigua contraseña puede pedir a su administrador que le recupere sus archivos." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" -msgstr "" +msgstr "Contraseña de acceso antigua" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" -msgstr "" +msgstr "Contraseña de acceso actual" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" -msgstr "" +msgstr "Actualizar Contraseña de Clave Privada" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" -msgstr "" +msgstr "Habilitar la recuperación de contraseña:" -#: templates/settings-personal.php:47 +#: 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 "" +msgstr "Habilitar esta opción le permitirá volver a tener acceso a sus archivos cifrados en caso de pérdida de contraseña" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" -msgstr "" +msgstr "Opciones de recuperación de archivos actualizada" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" -msgstr "" +msgstr "No se pudo actualizar la recuperación de archivos" diff --git a/l10n/es_MX/files_external.po b/l10n/es_MX/files_external.po index a6b6cd618ba31a6379366a8d9c996d412a48fb24..1f535c50fdfe6a6338635b059fb54974f77e40fb 100644 --- a/l10n/es_MX/files_external.po +++ b/l10n/es_MX/files_external.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 19:50+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,105 +19,105 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" -msgstr "" +msgstr "Acceso concedido" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "" +msgstr "Error configurando el almacenamiento de Dropbox" #: js/dropbox.js:65 js/google.js:86 msgid "Grant access" -msgstr "" +msgstr "Conceder acceso" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "" +msgstr "Por favor, proporcione un una clave válida de la app Dropbox y una clave secreta." #: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" -msgstr "" +msgstr "Error configurando el almacenamiento de Google Drive" -#: lib/config.php:453 +#: lib/config.php:467 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Advertencia: El cliente \"smbclient\" no se encuentra instalado. El montado de carpetas CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale." -#: lib/config.php:457 +#: lib/config.php:471 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "" +msgstr "Advertencia: El soporte de FTP en PHP no se encuentra instalado. El montado de carpetas FTP no es posible. Por favor pida al administrador de su sistema que lo instale." -#: lib/config.php:460 +#: lib/config.php:474 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "Advertencia: El soporte de Curl en PHP no está activado ni instalado. El montado de ownCloud, WebDAV o GoogleDrive no es posible. Pida al administrador de su sistema que lo instale." #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "Almacenamiento externo" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "" +msgstr "Nombre de la carpeta" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "Almacenamiento externo" #: templates/settings.php:11 msgid "Configuration" -msgstr "" +msgstr "Configuración" #: templates/settings.php:12 msgid "Options" -msgstr "" +msgstr "Opciones" #: templates/settings.php:13 msgid "Applicable" -msgstr "" +msgstr "Aplicable" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "Añadir almacenamiento" #: templates/settings.php:90 msgid "None set" -msgstr "" +msgstr "No se ha configurado" #: templates/settings.php:91 msgid "All Users" -msgstr "" +msgstr "Todos los usuarios" #: templates/settings.php:92 msgid "Groups" -msgstr "" +msgstr "Grupos" #: templates/settings.php:100 msgid "Users" -msgstr "" +msgstr "Usuarios" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "" +msgstr "Habilitar almacenamiento externo de usuario" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Permitir a los usuarios montar su propio almacenamiento externo" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "" +msgstr "Certificados raíz SSL" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "" +msgstr "Importar certificado raíz" diff --git a/l10n/es_MX/files_sharing.po b/l10n/es_MX/files_sharing.po index 3cce6ac339f6dccbec4367a40743b3a00e25d3c6..610c125b72b7a4aae4f553273a23e23e7e80ad26 100644 --- a/l10n/es_MX/files_sharing.po +++ b/l10n/es_MX/files_sharing.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2014-01-02 01:10+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,63 +18,67 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." -msgstr "" +msgid "This share is password-protected" +msgstr "Este elemento compartido esta protegido por contraseña" #: templates/authenticate.php:7 -msgid "Password" -msgstr "" +msgid "The password is wrong. Try again." +msgstr "La contraseña introducida es errónea. Inténtelo de nuevo." -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "" +#: templates/authenticate.php:10 +msgid "Password" +msgstr "Contraseña" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Lo siento, este enlace al parecer ya no funciona." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Las causas podrían ser:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "el elemento fue eliminado" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "el enlace expiró" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "compartir está desactivado" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Para mayor información, contacte a la persona que le envió el enlace." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" -msgstr "" +msgstr "%s compartió la carpeta %s contigo" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" -msgstr "" +msgstr "%s compartió el archivo %s contigo" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" -msgstr "" +msgstr "Descargar" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" -msgstr "" +msgstr "Subir" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" -msgstr "" +msgstr "Cancelar subida" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" -msgstr "" +msgstr "No hay vista previa disponible para" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Enlace directo" diff --git a/l10n/es_MX/files_trashbin.po b/l10n/es_MX/files_trashbin.po index 42fb8a7b1f2564304bbedfff5281774910f52cb9..7a4bf2cfd794ee733d25e0901a539d4b1c4dd054 100644 --- a/l10n/es_MX/files_trashbin.po +++ b/l10n/es_MX/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 19:50+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,68 +17,44 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:63 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "No se puede eliminar %s permanentemente" -#: ajax/undelete.php:42 +#: ajax/undelete.php:43 #, php-format msgid "Couldn't restore %s" -msgstr "" - -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" +msgstr "No se puede restaurar %s" -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 msgid "Error" -msgstr "" - -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:184 templates/index.php:17 -msgid "Name" -msgstr "" - -#: js/trash.js:185 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:193 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:199 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" +msgstr "Error" -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:905 lib/trashbin.php:907 msgid "restored" -msgstr "" +msgstr "recuperado" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" -msgstr "" +msgstr "No hay nada aquí. ¡Tu papelera esta vacía!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:20 +msgid "Name" +msgstr "Nombre" + +#: templates/index.php:23 templates/index.php:25 msgid "Restore" -msgstr "" +msgstr "Recuperar" + +#: templates/index.php:31 +msgid "Deleted" +msgstr "Eliminado" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" -msgstr "" +msgstr "Eliminar" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" -msgstr "" +msgstr "Archivos Eliminados" diff --git a/l10n/es_MX/files_versions.po b/l10n/es_MX/files_versions.po index b1866ae6ce36c3fb67a411a143c462f866ff66bc..afc3a3238a7352ea431aac7ec556e49f1caeedbf 100644 --- a/l10n/es_MX/files_versions.po +++ b/l10n/es_MX/files_versions.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 19:40+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,24 +20,24 @@ msgstr "" #: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "No se puede revertir: %s" -#: js/versions.js:7 +#: js/versions.js:14 msgid "Versions" -msgstr "" +msgstr "Revisiones" -#: js/versions.js:53 +#: js/versions.js:60 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "No se ha podido revertir {archivo} a revisión {timestamp}." -#: js/versions.js:79 +#: js/versions.js:86 msgid "More versions..." -msgstr "" +msgstr "Más versiones..." -#: js/versions.js:116 +#: js/versions.js:123 msgid "No other versions available" -msgstr "" +msgstr "No hay otras versiones disponibles" -#: js/versions.js:145 +#: js/versions.js:154 msgid "Restore" -msgstr "" +msgstr "Recuperar" diff --git a/l10n/es_MX/lib.po b/l10n/es_MX/lib.po index 7861d1b48366b8a0854741acd721ee82601adc93..e47ddeeee98f9e27464f007b69b4ff0d41146fbc 100644 --- a/l10n/es_MX/lib.po +++ b/l10n/es_MX/lib.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2014-01-02 00:20+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,318 +17,317 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:245 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." -msgstr "" +msgstr "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión de ownCloud" -#: app.php:250 +#: private/app.php:257 msgid "No app name specified" -msgstr "" +msgstr "No se ha especificado nombre de la aplicación" -#: app.php:361 +#: private/app.php:362 msgid "Help" -msgstr "" +msgstr "Ayuda" -#: app.php:374 +#: private/app.php:375 msgid "Personal" -msgstr "" +msgstr "Personal" -#: app.php:385 +#: private/app.php:386 msgid "Settings" -msgstr "" +msgstr "Ajustes" -#: app.php:397 +#: private/app.php:398 msgid "Users" -msgstr "" +msgstr "Usuarios" -#: app.php:410 +#: private/app.php:411 msgid "Admin" -msgstr "" +msgstr "Administración" -#: app.php:839 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." -msgstr "" - -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" +msgstr "Falló la actualización \"%s\"." -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Tipo de archivo desconocido" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Imagen inválida" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" -msgstr "" +msgstr "Servicios web bajo su control" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "No se puede abrir \"%s\"" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." -msgstr "" +msgstr "La descarga en ZIP está desactivada." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Los archivos deben ser descargados uno por uno." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" -msgstr "" +msgstr "Volver a Archivos" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "Descargue los archivos en trozos más pequeños, por separado o solicítelos amablemente a su administrador." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" -msgstr "" +msgstr "No se ha especificado origen cuando se ha instalado la aplicación" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" -msgstr "" +msgstr "No href especificado cuando se ha instalado la aplicación" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" -msgstr "" +msgstr "Sin path especificado cuando se ha instalado la aplicación desde el archivo local" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" -msgstr "" +msgstr "Archivos de tipo %s no son soportados" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" -msgstr "" +msgstr "Fallo de abrir archivo mientras se instala la aplicación" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" -msgstr "" +msgstr "La aplicación no suministra un archivo info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" -msgstr "" +msgstr "La aplicación no puede ser instalada por tener código no autorizado en la aplicación" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" -msgstr "" +msgstr "La aplicación no se puede instalar porque no es compatible con esta versión de ownCloud" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" -msgstr "" +msgstr "La aplicación no se puede instalar porque contiene la etiqueta\n\ntrue\n\nque no está permitida para aplicaciones no distribuidas" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "" +msgstr "La aplicación no puede ser instalada por que la versión en info.xml/version no es la misma que la establecida en la app store" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" -msgstr "" +msgstr "El directorio de la aplicación ya existe" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "" +msgstr "No se puede crear la carpeta de la aplicación. Corrija los permisos. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "La aplicación no está habilitada" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" -msgstr "" +msgstr "Error de autenticación" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Token expirado. Por favor, recarga la página." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" -msgstr "" +msgstr "Archivos" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" -msgstr "" +msgstr "Texto" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" -msgstr "" +msgstr "Imágenes" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." -msgstr "" +msgstr "%s ingresar el usuario de la base de datos." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." -msgstr "" +msgstr "%s ingresar el nombre de la base de datos" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" -msgstr "" +msgstr "%s puede utilizar puntos en el nombre de la base de datos" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "Usuario y/o contraseña de MS SQL no válidos: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." -msgstr "" +msgstr "Tiene que ingresar una cuenta existente o la del administrador." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" -msgstr "" - -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +msgstr "Usuario y/o contraseña de MySQL no válidos" + +#: 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 #, php-format msgid "DB Error: \"%s\"" -msgstr "" - -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +msgstr "Error BD: \"%s\"" + +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" -msgstr "" +msgstr "Comando infractor: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" +msgstr "Usuario MySQL '%s'@'localhost' ya existe." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" -msgstr "" +msgstr "Eliminar este usuario de MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "" +msgstr "Usuario MySQL '%s'@'%%' ya existe" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." -msgstr "" +msgstr "Eliminar este usuario de MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" -msgstr "" +msgstr "No se pudo establecer la conexión a Oracle" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" -msgstr "" +msgstr "Usuario y/o contraseña de Oracle no válidos" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" +msgstr "Comando infractor: \"%s\", nombre: %s, contraseña: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" -msgstr "" +msgstr "Usuario y/o contraseña de PostgreSQL no válidos" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." -msgstr "" +msgstr "Configurar un nombre de usuario del administrador" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." -msgstr "" +msgstr "Configurar la contraseña del administrador." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Por favor, vuelva a comprobar las guías de instalación." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "No puede encontrar la categoria \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" -msgstr "" +msgstr "hace segundos" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace %n minuto" +msgstr[1] "Hace %n minutos" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace %n hora" +msgstr[1] "Hace %n horas" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" -msgstr "" +msgstr "hoy" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" -msgstr "" +msgstr "ayer" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace %n día" +msgstr[1] "Hace %n días" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" -msgstr "" +msgstr "mes pasado" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace %n mes" +msgstr[1] "Hace %n meses" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" -msgstr "" +msgstr "año pasado" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" -msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" +msgstr "hace años" diff --git a/l10n/es_MX/settings.po b/l10n/es_MX/settings.po index 7b7e92dc23dad4c9619df0f305b382b2101fbad1..62fafbc21c83cb90da7ec10fbd39fc68ba4293c3 100644 --- a/l10n/es_MX/settings.po +++ b/l10n/es_MX/settings.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2014-01-02 01:42+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,368 +19,427 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "" +msgstr "No se pudo cargar la lista desde el App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 changepassword/controller.php:55 msgid "Authentication error" -msgstr "" +msgstr "Error de autenticación" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "" +msgid "Your full name has been changed." +msgstr "Se ha cambiado su nombre completo." #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "" +msgid "Unable to change full name" +msgstr "No se puede cambiar el nombre completo" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "" +msgstr "El grupo ya existe" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "" +msgstr "No se pudo añadir el grupo" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "" +msgstr "Correo electrónico guardado" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "" +msgstr "Correo electrónico no válido" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "" +msgstr "No se pudo eliminar el grupo" #: ajax/removeuser.php:25 msgid "Unable to delete user" -msgstr "" +msgstr "No se pudo eliminar el usuario" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "" +msgstr "Idioma cambiado" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "" +msgstr "Petición no válida" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "" +msgstr "Los administradores no se pueden eliminar a ellos mismos del grupo de administrador" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "No se pudo añadir el usuario al grupo %s" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "No se pudo eliminar al usuario del grupo %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "No se pudo actualizar la aplicación." #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "Contraseña incorrecta" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "No se especificó un usuario" #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "Por favor facilite una contraseña de recuperación de administrador, sino podrían perderse todos los datos de usuario" #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "Contraseña de recuperación de administrador incorrecta. Por favor compruebe la contraseña e inténtelo de nuevo." #: changepassword/controller.php:87 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "El back-end no soporta cambios de contraseña, pero la clave de cifrado del usuario ha sido actualizada satisfactoriamente." #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" -msgstr "" +msgstr "No se ha podido cambiar la contraseña" #: js/apps.js:43 msgid "Update to {appversion}" -msgstr "" +msgstr "Actualizado a {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" -msgstr "" +msgstr "Desactivar" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" -msgstr "" +msgstr "Activar" #: js/apps.js:71 msgid "Please wait...." -msgstr "" +msgstr "Espere, por favor...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" -msgstr "" +msgstr "Error mientras se desactivaba la aplicación" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" -msgstr "" +msgstr "Error mientras se activaba la aplicación" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." -msgstr "" +msgstr "Actualizando...." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" -msgstr "" +msgstr "Error mientras se actualizaba la aplicación" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" -msgstr "" +msgstr "Error" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" -msgstr "" +msgstr "Actualizar" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" -msgstr "" +msgstr "Actualizado" #: js/personal.js:220 msgid "Select a profile picture" -msgstr "" +msgstr "Seleccionar una imagen de perfil" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." -msgstr "" +msgstr "Descifrando archivos... Espere por favor, esto puede llevar algo de tiempo." #: js/personal.js:287 msgid "Saving..." -msgstr "" +msgstr "Guardando..." #: js/users.js:47 msgid "deleted" -msgstr "" +msgstr "eliminado" #: js/users.js:47 msgid "undo" -msgstr "" +msgstr "deshacer" #: js/users.js:79 msgid "Unable to remove user" -msgstr "" +msgstr "Imposible eliminar al usuario" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" -msgstr "" +msgstr "Grupos" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" -msgstr "" +msgstr "Administrador del Grupo" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" -msgstr "" +msgstr "Eliminar" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" -msgstr "" +msgstr "añadir Grupo" -#: js/users.js:436 +#: js/users.js:454 msgid "A valid username must be provided" -msgstr "" +msgstr "Se debe proporcionar un nombre de usuario válido" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" -msgstr "" +msgstr "Error al crear usuario" -#: js/users.js:442 +#: js/users.js:460 msgid "A valid password must be provided" -msgstr "" +msgstr "Se debe proporcionar una contraseña válida" + +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Atención: el directorio de inicio para el usuario \"{user}\" ya existe." #: personal.php:45 personal.php:46 msgid "__language_name__" -msgstr "" +msgstr "Español (México)" + +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "Todo (Información, Avisos, Errores, debug y problemas fatales)" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "Información, Avisos, Errores y problemas fatales" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "Advertencias, errores y problemas fatales" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "Errores y problemas fatales" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "Problemas fatales solamente" -#: templates/admin.php:15 +#: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" -msgstr "" +msgstr "Advertencia de seguridad" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 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 "" +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:29 +#: templates/admin.php:50 msgid "Setup Warning" -msgstr "" +msgstr "Advertencia de configuración" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Por favor, vuelva a comprobar las guías de instalación." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "No se ha encontrado el módulo \"fileinfo\"" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +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:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "Su versión de PHP ha caducado" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" -msgstr "" +msgstr "La configuración regional no está funcionando" + +#: templates/admin.php:98 +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:63 +#: templates/admin.php:102 +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:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "" +"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:75 +#: templates/admin.php:118 msgid "Internet connection not working" -msgstr "" +msgstr "La conexión a Internet no está funcionando" -#: templates/admin.php:78 +#: templates/admin.php:121 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 "" +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:92 +#: templates/admin.php:135 msgid "Cron" -msgstr "" +msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Ejecutar una tarea con cada página cargada" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "" +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "" +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" -msgstr "" +msgstr "Compartiendo" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" -msgstr "" +msgstr "Activar API de Compartición" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Permitir a las aplicaciones utilizar la API de Compartición" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" -msgstr "" +msgstr "Permitir enlaces" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Permitir a los usuarios compartir elementos con el público mediante enlaces" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" -msgstr "" +msgstr "Permitir subidas públicas" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "Permitir a los usuarios habilitar a otros para subir archivos en sus carpetas compartidas públicamente" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" -msgstr "" +msgstr "Permitir re-compartición" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Permitir a los usuarios compartir de nuevo elementos ya compartidos" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Permitir a los usuarios compartir con cualquier persona" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Permitir a los usuarios compartir sólo con los usuarios en sus grupos" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Permitir notificaciones por correo electrónico" + +#: templates/admin.php:214 +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:221 msgid "Security" -msgstr "" +msgstr "Seguridad" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" -msgstr "" +msgstr "Forzar HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada." -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." -msgstr "" +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:203 +#: templates/admin.php:254 msgid "Log" -msgstr "" +msgstr "Registro" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" -msgstr "" +msgstr "Nivel de registro" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" -msgstr "" +msgstr "Más" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" -msgstr "" +msgstr "Menos" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" -msgstr "" +msgstr "Versión" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the AGPL." -msgstr "" +msgstr "Desarrollado por la comunidad ownCloud, el código fuente está bajo licencia AGPL." #: templates/apps.php:13 msgid "Add your App" -msgstr "" +msgstr "Añade tu aplicación" #: templates/apps.php:28 msgid "More Apps" -msgstr "" +msgstr "Más aplicaciones" #: templates/apps.php:33 msgid "Select an App" -msgstr "" +msgstr "Seleccionar una aplicación" #: templates/apps.php:39 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Ver la página de aplicaciones en apps.owncloud.com" #: templates/apps.php:41 msgid "-licensed by " -msgstr "" +msgstr "-licencia otorgada por " #: templates/help.php:4 msgid "User Documentation" -msgstr "" +msgstr "Documentación de usuario" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "" +msgstr "Documentación de administrador" #: templates/help.php:9 msgid "Online Documentation" -msgstr "" +msgstr "Documentación en línea" #: templates/help.php:11 msgid "Forum" -msgstr "" +msgstr "Foro" #: templates/help.php:14 msgid "Bugtracker" -msgstr "" +msgstr "Rastreador de fallos" #: templates/help.php:17 msgid "Commercial Support" -msgstr "" +msgstr "Soporte comercial" #: templates/personal.php:8 msgid "Get the apps to sync your files" -msgstr "" +msgstr "Obtener las aplicaciones para sincronizar sus archivos" #: templates/personal.php:19 msgid "Show First Run Wizard again" -msgstr "" +msgstr "Mostrar nuevamente el Asistente de ejecución inicial" #: templates/personal.php:27 #, php-format msgid "You have used %s of the available %s" -msgstr "" +msgstr "Ha usado %s de los %s disponibles" #: templates/personal.php:39 templates/users.php:23 templates/users.php:89 msgid "Password" -msgstr "" +msgstr "Contraseña" #: templates/personal.php:40 msgid "Your password was changed" -msgstr "" +msgstr "Su contraseña ha sido cambiada" #: templates/personal.php:41 msgid "Unable to change your password" -msgstr "" +msgstr "No se ha podido cambiar su contraseña" #: templates/personal.php:42 msgid "Current password" -msgstr "" +msgstr "Contraseña actual" #: templates/personal.php:44 msgid "New password" -msgstr "" +msgstr "Nueva contraseña" #: templates/personal.php:46 msgid "Change password" -msgstr "" +msgstr "Cambiar contraseña" #: templates/personal.php:58 templates/users.php:88 -msgid "Display Name" -msgstr "" +msgid "Full Name" +msgstr "Nombre completo" #: templates/personal.php:73 msgid "Email" -msgstr "" +msgstr "Correo electrónico" #: templates/personal.php:75 msgid "Your email address" -msgstr "" +msgstr "Su dirección de correo" #: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" -msgstr "" +msgstr "Escriba una dirección de correo electrónico para restablecer la contraseña" #: templates/personal.php:86 msgid "Profile picture" -msgstr "" +msgstr "Foto de perfil" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Upload new" -msgstr "" +msgstr "Subir otra" -#: templates/personal.php:92 +#: templates/personal.php:93 msgid "Select new from Files" -msgstr "" +msgstr "Seleccionar otra desde Archivos" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "Remove image" -msgstr "" +msgstr "Borrar imagen" -#: templates/personal.php:94 +#: templates/personal.php:95 msgid "Either png or jpg. Ideally square but you will be able to crop it." -msgstr "" +msgstr "Archivo PNG o JPG. Preferiblemente cuadrado, pero tendrás la posibilidad de recortarlo." #: templates/personal.php:97 +msgid "Your avatar is provided by your original account." +msgstr "Su avatar es proporcionado por su cuenta original." + +#: templates/personal.php:101 msgid "Abort" -msgstr "" +msgstr "Cancelar" -#: templates/personal.php:98 +#: templates/personal.php:102 msgid "Choose as profile image" -msgstr "" +msgstr "Seleccionar como imagen de perfil" -#: templates/personal.php:106 templates/personal.php:107 +#: templates/personal.php:110 templates/personal.php:111 msgid "Language" -msgstr "" +msgstr "Idioma" -#: templates/personal.php:119 +#: templates/personal.php:130 msgid "Help translate" -msgstr "" +msgstr "Ayúdanos a traducir" -#: templates/personal.php:125 +#: templates/personal.php:137 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:139 #, php-format msgid "" -"Use this address to access your Files via WebDAV" -msgstr "" +"Use this address to access your Files via " +"WebDAV" +msgstr "Utilice esta dirección para acceder a sus archivos vía WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" -msgstr "" +msgstr "Cifrado" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "La aplicación de cifrado ya no está activada, descifre todos sus archivos" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" -msgstr "" +msgstr "Contraseña de acceso" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" -msgstr "" +msgstr "Descifrar archivos" #: templates/users.php:21 msgid "Login Name" -msgstr "" +msgstr "Nombre de usuario" #: templates/users.php:30 msgid "Create" -msgstr "" +msgstr "Crear" #: templates/users.php:36 msgid "Admin Recovery Password" -msgstr "" +msgstr "Recuperación de la contraseña de administración" #: templates/users.php:37 templates/users.php:38 msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Introduzca la contraseña de recuperación a fin de recuperar los archivos de los usuarios durante el cambio de contraseña." #: templates/users.php:42 msgid "Default Storage" -msgstr "" +msgstr "Almacenamiento predeterminado" + +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "Por favor indique la cúota de almacenamiento (ej: \"512 MB\" o \"12 GB\")" #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" -msgstr "" +msgstr "Ilimitado" #: templates/users.php:66 templates/users.php:163 msgid "Other" -msgstr "" +msgstr "Otro" #: templates/users.php:87 msgid "Username" -msgstr "" +msgstr "Nombre de usuario" #: templates/users.php:94 msgid "Storage" -msgstr "" +msgstr "Almacenamiento" #: templates/users.php:108 -msgid "change display name" -msgstr "" +msgid "change full name" +msgstr "cambiar el nombre completo" #: templates/users.php:112 msgid "set new password" -msgstr "" +msgstr "establecer nueva contraseña" #: templates/users.php:143 msgid "Default" -msgstr "" +msgstr "Predeterminado" diff --git a/l10n/es_MX/user_ldap.po b/l10n/es_MX/user_ldap.po index 54dc1b5192a24d82cb3aa2951de574bbf386d12e..4a5d82737a3e5c38b33b28e6c423069477a2a6f4 100644 --- a/l10n/es_MX/user_ldap.po +++ b/l10n/es_MX/user_ldap.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 19:50+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,320 +19,431 @@ msgstr "" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." -msgstr "" +msgstr "Ocurrió un fallo al borrar las asignaciones." #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "No se pudo borrar la configuración del servidor" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "¡La configuración es válida y la conexión puede establecerse!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "" +msgstr "La configuración es válida, pero falló el Enlace. Por favor, compruebe la configuración del servidor y las credenciales." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "" +msgstr "La configuración no es válida. Por favor, busque en el log para más detalles." + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "No se ha especificado la acción" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "No se ha especificado la configuración" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "No se han especificado los datos" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "No se pudo establecer la configuración %s" -#: js/settings.js:66 +#: js/settings.js:67 msgid "Deletion failed" -msgstr "" +msgstr "Falló el borrado" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "¿Asumir los ajustes actuales de la configuración del servidor?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" -msgstr "" +msgstr "¿Mantener la configuración?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" -msgstr "" +msgstr "No se puede añadir la configuración del servidor" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" -msgstr "" +msgstr "Asignaciones borradas" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" -msgstr "" +msgstr "Éxito" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" -msgstr "" +msgstr "Error" + +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "Configuración OK" -#: js/settings.js:141 +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "Configuración Incorrecta" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "Configuración incompleta" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Seleccionar grupos" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "Seleccionar la clase de objeto" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "Seleccionar atributos" + +#: js/settings.js:905 msgid "Connection test succeeded" -msgstr "" +msgstr "La prueba de conexión fue exitosa" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" -msgstr "" +msgstr "La prueba de conexión falló" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "¿Realmente desea eliminar la configuración actual del servidor?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" -msgstr "" +msgstr "Confirmar eliminación" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "" +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "Grupo %s encontrado" +msgstr[1] "Grupos %s encontrados" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "Usuario %s encontrado" +msgstr[1] "Usuarios %s encontrados" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "Host inválido" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "No se puede encontrar la función deseada." + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Guardar" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Configuración de prueba" -#: templates/settings.php:12 +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Ayuda" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "Limitar el acceso a %s a los grupos que cumplan este criterio:" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "solamente de estas clases de objeto:" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "solamente de estos grupos:" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "Editar el filtro en bruto en su lugar" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "Filtro LDAP en bruto" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "El filtro especifica que grupos LDAP tendrán acceso a %s." -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "grupos encontrados" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "Que atributo debe ser usado como login:" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "Nombre de usuario LDAP:" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "Dirección e-mail LDAP:" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "Otros atributos:" + +#: 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 "Define el filtro a aplicar cuando se intenta identificar. %%uid remplazará al nombre de usuario en el proceso de identificación. Por ejemplo: \"uid=%%uid\"" + +#: templates/part.wizard-server.php:18 msgid "Add Server Configuration" -msgstr "" +msgstr "Agregar configuracion del servidor" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" -msgstr "" +msgstr "Servidor" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Puerto" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" -msgstr "" +msgstr "DN usuario" -#: templates/settings.php:46 +#: 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 "" +msgstr "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, deje DN y contraseña vacíos." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" -msgstr "" +msgstr "Contraseña" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "Para acceso anónimo, deje DN y contraseña vacíos." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Un DN Base por línea" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "Limitar el acceso a %s a los usuarios que cumplan el siguiente criterio:" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "El filtro especifica que usuarios LDAP pueden tener acceso a %s." -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "usuarios encontrados" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Atrás" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Continuar" -#: templates/settings.php:62 +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "Advertencia: Las apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pregunte al su administrador de sistemas para desactivar uno de ellos." -#: templates/settings.php:66 +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Advertencia: El módulo LDAP de PHP no está instalado, el sistema no funcionará. Por favor consulte al administrador del sistema para instalarlo." + +#: templates/settings.php:20 msgid "Connection Settings" -msgstr "" +msgstr "Configuración de conexión" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" -msgstr "" +msgstr "Configuracion activa" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "Cuando deseleccione, esta configuracion sera omitida." -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" -msgstr "" +msgstr "Servidor de copia de seguridad (Replica)" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "Dar un servidor de copia de seguridad opcional. Debe ser una réplica del servidor principal LDAP / AD." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" -msgstr "" +msgstr "Puerto para copias de seguridad (Replica)" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" -msgstr "" +msgstr "Deshabilitar servidor principal" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." -msgstr "" - -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" +msgstr "Conectar sólo con el servidor de réplica." -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "Servidor de LDAP no sensible a mayúsculas/minúsculas (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "Apagar la validación por certificado SSL." -#: templates/settings.php:75 +#: 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 "" +msgstr "No se recomienda, ¡utilízalo únicamente para pruebas! Si la conexión únicamente funciona con esta opción, importa el certificado SSL del servidor LDAP en tu servidor %s." -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Cache TTL" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "en segundos. Un cambio vacía la caché." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" -msgstr "" +msgstr "Configuración de directorio" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" -msgstr "" +msgstr "Campo de nombre de usuario a mostrar" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "El campo LDAP a usar para generar el nombre para mostrar del usuario." -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" -msgstr "" +msgstr "Árbol base de usuario" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" -msgstr "" +msgstr "Un DN Base de Usuario por línea" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" -msgstr "" +msgstr "Atributos de la busqueda de usuario" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" -msgstr "" +msgstr "Opcional; un atributo por linea" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" -msgstr "" +msgstr "Campo de nombre de grupo a mostrar" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "El campo LDAP a usar para generar el nombre para mostrar del grupo." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" -msgstr "" +msgstr "Árbol base de grupo" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" -msgstr "" +msgstr "Un DN Base de Grupo por línea" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" -msgstr "" +msgstr "Atributos de busqueda de grupo" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" -msgstr "" +msgstr "Asociación Grupo-Miembro" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" -msgstr "" +msgstr "Atributos especiales" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" -msgstr "" +msgstr "Cuota" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" -msgstr "" +msgstr "Cuota por defecto" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" -msgstr "" +msgstr "en bytes" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" -msgstr "" +msgstr "E-mail" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Regla para la carpeta Home de usuario" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "Vacío para el nombre de usuario (por defecto). En otro caso, especifique un atributo LDAP/AD." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" -msgstr "" +msgstr "Nombre de usuario interno" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -346,17 +457,17 @@ msgid "" "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 "" +msgstr "El nombre de usuario interno será creado de forma predeterminada desde el atributo UUID. Esto asegura que el nombre de usuario es único y los caracteres no necesitan ser convertidos. En el nombre de usuario interno sólo se pueden usar estos caracteres: [ a-zA-Z0-9_.@- ]. El resto de caracteres son sustituidos por su correspondiente en ASCII o simplemente omitidos. En caso de duplicidades, se añadirá o incrementará un número. El nombre de usuario interno es usado para identificar un usuario. Es también el nombre predeterminado para la carpeta personal del usuario en ownCloud. También es parte de URLs remotas, por ejemplo, para todos los servicios *DAV. Con esta configuración el comportamiento predeterminado puede ser cambiado. Para conseguir un comportamiento similar a como era antes de ownCloud 5, introduzca el campo del nombre para mostrar del usuario en la siguiente caja. Déjelo vacío para el comportamiento predeterminado. Los cambios solo tendrán efecto en los usuarios LDAP mapeados (añadidos) recientemente." -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" -msgstr "" +msgstr "Atributo Nombre de usuario Interno:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" -msgstr "" +msgstr "Sobrescribir la detección UUID" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -365,17 +476,21 @@ msgid "" "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 "" +msgstr "Por defecto, el atributo UUID es autodetectado. Este atributo es usado para identificar indudablemente usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no ha sido especificado otro comportamiento arriba. Puedes sobrescribir la configuración y pasar un atributo de tu elección. Debes asegurarte de que el atributo de tu elección sea accesible por los usuarios y grupos y ser único. Déjalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto solo en los usuarios y grupos de LDAP mapeados (añadidos) recientemente." -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "Atributo UUID para usuarios:" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "Atributo UUID para Grupos:" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" -msgstr "" +msgstr "Asignación del Nombre de usuario de un usuario LDAP" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -387,20 +502,12 @@ msgid "" " 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 "" +msgstr "Los usuarios son usados para almacenar y asignar (meta) datos. Con el fin de identificar de forma precisa y reconocer usuarios, cada usuario de LDAP tendrá un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es cacheado para reducir la interacción entre el LDAP, pero no es usado para identificar. Si el DN cambia, los cambios serán aplicados. El nombre de usuario interno es usado por encima de todo. Limpiar los mapeos dejará restos por todas partes, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, únicamente en una fase de desarrollo o experimental." -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" -msgstr "" +msgstr "Borrar la asignación de los Nombres de usuario de los usuarios LDAP" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" -msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "" +msgstr "Borrar la asignación de los Nombres de grupo de los grupos de LDAP" diff --git a/l10n/es_MX/user_webdavauth.po b/l10n/es_MX/user_webdavauth.po index 9948a588c8b0b02431fe53d52b20d78cd65fe105..063bdc8a6b79c69a7405b4dc66b7fcc96686ddd6 100644 --- a/l10n/es_MX/user_webdavauth.po +++ b/l10n/es_MX/user_webdavauth.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-02 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 19:40+0000\n" +"Last-Translator: byoship\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +19,15 @@ msgstr "" #: templates/settings.php:3 msgid "WebDAV Authentication" -msgstr "" +msgstr "Autenticación mediante WevDAV" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Dirección:" #: 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 "" +msgstr "Las credenciales de usuario se enviarán a esta dirección. Este complemento verifica la respuesta e interpretará los códigos de respuesta HTTP 401 y 403 como credenciales inválidas y todas las otras respuestas como credenciales válidas." diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 872a66ae6aa6b9445381bcb4dcf8934c639d801a..c9eaf5ba161fbd0859039d0677d88e95406cbdae 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,22 +19,23 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s jagas sinuga »%s«" -#: ajax/share.php:227 -msgid "group" -msgstr "grupp" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Kirja saatmine järgnevatele kasutajatele ebaõnnestus: %s " #: ajax/update.php:11 msgid "Turned on maintenance mode" -msgstr "Haldusreziimis" +msgstr "Haldusrežiimis sisse lülitatud" #: ajax/update.php:14 msgid "Turned off maintenance mode" -msgstr "Haldusreziim lõpetatud" +msgstr "Haldusrežiimis välja lülitatud" #: ajax/update.php:17 msgid "Updated database" @@ -42,7 +43,7 @@ msgstr "Uuendatud andmebaas" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "Uuendan failipuhvrit, see võib kesta väga kaua..." +msgstr "Failipuhvri uuendamine, see võib kesta väga kaua..." #: ajax/update.php:23 msgid "Updated filecache" @@ -53,48 +54,9 @@ msgstr "Uuendatud failipuhver" msgid "... %d%% done ..." msgstr "... %d%% tehtud ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Kategooria tüüp puudub." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Pole kategooriat, mida lisada?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "See kategooria on juba olemas: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Objekti tüüb puudub." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID puudub." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Viga %s lisamisel lemmikutesse." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Kustutamiseks pole kategooriat valitud." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Viga %s eemaldamisel lemmikutest." - #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "Ühtegi pilti või faili ei pakutud" +msgstr "Ühtegi pilti või faili pole pakutud" #: avatar/controller.php:81 msgid "Unknown filetype" @@ -188,59 +150,59 @@ msgstr "November" msgid "December" msgstr "Detsember" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Seaded" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut tagasi" msgstr[1] "%n minutit tagasi" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tund tagasi" msgstr[1] "%n tundi tagasi" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "täna" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "eile" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n päev tagasi" msgstr[1] "%n päeva tagasi" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuu tagasi" msgstr[1] "%n kuud tagasi" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "aastat tagasi" @@ -250,7 +212,7 @@ msgstr "Vali" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "Viga faili valija malli laadimisel: {error}" +msgstr "Viga failivalija malli laadimisel: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -266,27 +228,27 @@ msgstr "Ok" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "Viga sõnumi malli laadimisel: {error}" +msgstr "Viga sõnumi malli laadimisel: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{count} failikonflikt" +msgstr[1] "{count} failikonflikti" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Üks failikonflikt" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Milliseid faile sa soovid alles hoida?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Kui valid mõlemad versioonid, siis lisatakse kopeeritud faili nimele number." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -294,169 +256,197 @@ msgstr "Loobu" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Jätka" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(kõik valitud)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} valitud)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" +msgstr "Viga faili olemasolu malli laadimisel" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Objekti tüüp pole määratletud." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Viga" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Rakenduse nimi ole määratletud." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Vajalikku faili {file} pole paigaldatud!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Jagatud" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Jaga" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Viga" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Viga jagamisel" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Viga jagamise lõpetamisel" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Viga õiguste muutmisel" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Jagatud sinu ja {group} grupiga {owner} poolt" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Sinuga jagas {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Jaga" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Jaga kasutaja või grupiga ..." -#: js/share.js:188 -msgid "Share with link" -msgstr "Jaga lingiga" +#: js/share.js:219 +msgid "Share link" +msgstr "Jaga linki" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Parooliga kaitstud" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Parool" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Luba avalik üleslaadimine" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Saada link isikule e-postiga" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Saada" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Määra aegumise kuupäev" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Aegumise kuupäev" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Jaga e-postiga:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Ühtegi inimest ei leitud" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "grupp" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Edasijagamine pole lubatud" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Jagatud {item} kasutajaga {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Lõpeta jagamine" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "teavita e-postiga" + +#: js/share.js:408 msgid "can edit" msgstr "saab muuta" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "ligipääsukontroll" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "loo" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "uuenda" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "kustuta" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "jaga" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Parooliga kaitstud" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Viga aegumise kuupäeva eemaldamisel" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Viga aegumise kuupäeva määramisel" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Saatmine ..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "E-kiri on saadetud" +#: js/share.js:769 +msgid "Warning" +msgstr "Hoiatus" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Objekti tüüp pole määratletud." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Sisesta uus" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Kustuta" + +#: js/tags.js:31 +msgid "Add" +msgstr "Lisa" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Muuda silte" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Viga dialoogi malli laadimisel: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Kustutamiseks pole ühtegi silti valitud." + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "Palun laadi see uuesti." + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Link parooli vahetuseks on saadetud Sinu e-posti aadressile.
    Kui kiri pole saabunud mõistliku aja jooksul, siis kontrolli oma spam-/rämpskirjade katalooge.
    Kui kirja pole ka seal, siis küsi abi süsteemihaldurilt." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Päring ebaõnnestus!
    Oled sa veendunud, et e-post/kasutajanimi on õiged?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Sinu parooli taastamise link saadetakse sulle e-postile." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Kasutajanimi" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -505,13 +495,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Sinu failid on krüpteeritud. Kui sa pole taastamise võtit veel määranud, siis pole präast parooli taastamist mingit võimalust sinu andmeid tagasi saada. Kui sa pole kindel, mida teha, siis palun väta enne jätkamist ühendust oma administaatoriga. Oled sa kindel, et sa soovid jätkata?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" -msgstr "Jah, ma tõesti soovin oma parooli praegu nullida" +msgstr "Jah, ma tõesti soovin oma parooli praegu taastada" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Päringu taastamine" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Algseaded" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -537,7 +527,7 @@ msgstr "Isiklik" msgid "Users" msgstr "Kasutajad" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Rakendused" @@ -549,6 +539,34 @@ msgstr "Admin" msgid "Help" msgstr "Abiinfo" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "Viga siltide laadimisel" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "Silt on juba olemas" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "Viga sildi (siltide) kustutamisel" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "Viga sildi lisamisel" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "Viga sildi eemaldamisel" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "Viga lemmikuks lisamisel" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "Viga lemmikutest eemaldamisel" + #: templates/403.php:12 msgid "Access forbidden" msgstr "Ligipääs on keelatud" @@ -565,108 +583,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hei,\n\nlihtsalt annan sulle teada, et %s jagas sinuga %s.\nVaata seda siin: %s\n\nTervitused!" +msgstr "Hei,\n\nlihtsalt annan sulle teada, et %s jagas sulle välja %s.\nVaata seda: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Muuda kategooriaid" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "Jagamine aegub %s." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Lisa" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Terekest!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Turvahoiatus" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Sinu PHP versioon on haavatav NULL Baidi (CVE-2006-7243) rünnakuga." -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Palun uuenda oma paigaldatud PHP-d tagamaks %s turvalisus." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Turvalist juhuslike numbrite generaatorit pole saadaval. Palun luba PHP-s OpenSSL laiendus." -#: templates/installation.php:33 +#: 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 "Ilma turvalise juhuslike numbrite generaatorita võib ründaja ennustada paroolivahetuse võtme ning hõivata su konto." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Su andmete kataloog ja failid on tõenäoliselt internetist vabalt saadaval kuna .htaccess fail ei toimi." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "Serveri korrektseks seadistuseks palun tutvu dokumentatsiooniga." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Loo admini konto" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Täpsem" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Andmete kaust" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Seadista andmebaasi" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "kasutatakse" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Andmebaasi kasutaja" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Andmebaasi parool" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Andmebasi nimi" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Andmebaasi tabeliruum" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Andmebaasi host" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Lõpeta seadistamine" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Lõpetamine ..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "See rakendus vajab toimimiseks JavaScripti. Palun luba JavaScript ning laadi see leht uuesti." + +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s on saadaval. Vaata lähemalt kuidas uuendada." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Logi välja" @@ -684,19 +713,27 @@ msgstr "Kui sa ei muutnud oma parooli hiljuti, siis võib su kasutajakonto olla msgid "Please change your password to secure your account again." msgstr "Palun muuda parooli, et oma kasutajakonto uuesti turvata." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "Serveripoolne autentimine ebaõnnestus!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Palun kontakteeru oma süsteemihalduriga." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Kaotasid oma parooli?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "pea meeles" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Logi sisse" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Alternatiivsed sisselogimisviisid" @@ -704,10 +741,37 @@ msgstr "Alternatiivsed sisselogimisviisid" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Hei,

    lihtsalt annan sulle teada, et %s jagas sinuga »%s«.
    Vaata seda!

    Tervitades!" +"href=\"%s\">View it!

    " +msgstr "Hei,

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

    " + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "See ownCloud on momendil seadistatud ühe kasutaja jaoks." + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "See tähendab, et seda saavad kasutada ainult administraatorid." -#: templates/update.php:3 +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "Kontakteeru oma süsteemihalduriga, kui see teade püsib või on tekkinud ootamatult." + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "Täname kannatlikkuse eest." + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "ownCloudi uuendamine versioonile %s. See võib veidi aega võtta." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "Seda ownCloud instantsi hetkel uuendatakse, võib võtta veidi aega." + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "Palun laadi see leht uuesti veidi aja pärast jätkamaks ownCloud kasutamist." diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 52bcf2de8f04e82466ccc2940d99a846869586a7..e83960e36b8704c8a8f23c736f8c76cbd94b48cb 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# pisike.sipelgas , 2013 +# pisike.sipelgas , 2013-2014 # Rivo Zängov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 07:20+0000\n" +"Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,220 +29,286 @@ msgstr "Ei saa liigutada faili %s - samanimeline fail on juba olemas" msgid "Could not move %s" msgstr "%s liigutamine ebaõnnestus" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Faili nimi ei saa olla tühi." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "Faili nimi ei tohi sisaldada \"/\". Palun vali mõni teine nimi." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "Nimi %s on juba kasutusel kataloogis %s. Palun vali mõni teine nimi." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "Pole korrektne lähteallikas" + +#: ajax/newfile.php:86 +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:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Viga %s allalaadimisel %s" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Viga faili loomisel" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "Kataloogi nimi ei saa olla tühi." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "Kataloogi nimi ei tohi sisaldada \"/\". Palun vali mõni teine nimi." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Viga kataloogi loomisel" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Üleslaadimiste kausta määramine ebaõnnestus." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Vigane kontrollkood" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Ühtegi faili ei laetud üles. Tundmatu viga" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Ühtegi tõrget polnud, fail on üles laetud" -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Fail laeti üles ainult osaliselt" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Ühtegi faili ei laetud üles" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Ajutiste failide kaust puudub" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Kettale kirjutamine ebaõnnestus" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Saadaval pole piisavalt ruumi" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Üleslaadimine ebaõnnestus. Faili info hankimine ebaõnnestus." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Üleslaadimine ebaõnnestus. Üleslaetud faili ei leitud" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Vigane kaust." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Failid" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "Ei saa üles laadida {filename}, kuna see on kataloog või selle suurus on 0 baiti" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Pole piisavalt ruumi" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Üleslaadimine tühistati." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "" +msgstr "Serverist ei saadud tulemusi" -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "URL ei saa olla tühi." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "URL ei saa olla tühi" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Vigane kausta nimi. 'Shared' kasutamine on reserveeritud ownCloud poolt." +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "Kodukataloogis 'Shared' on reserveeritud failinimi" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Viga" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} on juba olemas" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Ei suuda luua faili" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Ei suuda luua kataloogi" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Viga URL-i haaramisel" -#: js/fileactions.js:119 +#: js/fileactions.js:125 msgid "Share" msgstr "Jaga" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Kustuta jäädavalt" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Nimeta ümber" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Ootel" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} on juba olemas" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "asenda" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Ei suuda faili ümber nimetada" -#: js/filelist.js:416 -msgid "suggest name" -msgstr "soovita nime" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "loobu" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "asendas nime {old_name} nimega {new_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "tagasi" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Viga faili kustutamisel." + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kataloog" msgstr[1] "%n kataloogi" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fail" msgstr[1] "%n faili" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} ja {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laadin üles %n faili" msgstr[1] "Laadin üles %n faili" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' on vigane failinimi." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Faili nimi ei saa olla tühi." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Sinu andmemaht on täis! Faile ei uuendata ega sünkroniseerita!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Su andmemaht on peaaegu täis ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "Krüpteerimisrakend on lubatud, kuid võtmeid pole lähtestatud. Palun logi välja ning uuesti sisse." + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "Vigane Krüpteerimisrakendi privaatvõti . Palun uuenda oma privaatse võtme parool oma personaasete seadete all taastamaks ligipääsu oma krüpteeritud failidele." + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Krüpteering on keelatud, kuid sinu failid on endiselt krüpteeritud. Palun vaata oma personaalseid seadeid oma failide dekrüpteerimiseks." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Valmistatakse allalaadimist. See võib võtta veidi aega, kui on tegu suurte failidega. " -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" -msgstr "" +msgstr "Viga faili eemaldamisel" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Viga" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Nimi" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Suurus" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Muudetud" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Vigane kausta nimi. Nime 'Shared' kasutamine on reserveeritud." + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s ümbernimetamine ebaõnnestus" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Lae üles" @@ -278,65 +344,69 @@ msgstr "Maksimaalne ZIP-faili sisestatava faili suurus" msgid "Save" msgstr "Salvesta" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Uus" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "Uus tekstifail" + +#: templates/index.php:8 msgid "Text file" msgstr "Tekstifail" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Uus kaust" + +#: templates/index.php:10 msgid "Folder" msgstr "Kaust" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Allikast" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Kustutatud failid" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Siin puudvad sul kirjutamisõigused." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "Sul puuduvad õigused siia failide üleslaadimiseks või tekitamiseks" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Siin pole midagi. Lae midagi üles!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Lae alla" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Lõpeta jagamine" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Kustuta" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Üleslaadimine on liiga suur" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Faile skannitakse, palun oota." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Praegune skannimine" diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index 317dc437d51f675c879617e0200e4c54eb8c3a80..c62b1fa13e72cd0c812fb8e23c9c314596764045 100644 --- a/l10n/et_EE/files_encryption.po +++ b/l10n/et_EE/files_encryption.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: pisike.sipelgas \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-02 17:27-0500\n" +"PO-Revision-Date: 2013-11-29 20:10+0000\n" +"Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,75 +45,96 @@ msgstr "Parool edukalt vahetatud." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Ei suutnud vahetada parooli. Võib-olla on vana parool valesti sisestatud." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Privaatse võtme parool edukalt uuendatud." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Ei suutnud uuendada privaatse võtme parooli. Võib-olla polnud vana parool õige." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "Sinu privaatne võti pole toimiv! Tõenäoliselt on sinu parool muutunud väljaspool ownCloud süsteemi (näiteks ettevõtte keskhaldus). Sa saad uuendada oma privaatse võtme parooli seadete all taastamaks ligipääsu oma krüpteeritud failidele." +"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 "Krüpteerimise rakend pole käivitatud. Võib-olla krüpteerimise rakend taaskäivitati sinu sessiooni kestel. Palun proovi logida välja ning uuesti sisse käivitamaks krüpteerimise rakendit." -#: hooks/hooks.php:41 +#: 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 "Sinu provaatne võti pole kehtiv! Tõenäoliselt mudueti parooli väljaspool kausta %s (nt. sinu ettevõtte kaust). Sa saad uuendada oma privaatse võtme parooli oma isiklikes seadetes, et taastada ligipääs sinu krüpteeritud failidele." + +#: 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 "Sa ei saa seda faili dekrüpteerida, see on tõenäoliselt jagatud fail. Palun lase omanikul seda faili sinuga uuesti jagada." + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Tundmatu tõrge. Palun kontrolli süsteemi seadeid või võta ühendust oma süsteemi administraatoriga" + +#: hooks/hooks.php:59 msgid "Missing requirements." msgstr "Nõutavad on puudu." -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Palun veendu, et on paigaldatud PHP 5.3.3 või uuem ning PHP OpenSSL laiendus on lubatud ning seadistatud korrektselt. Hetkel krüpteerimise rakendus on peatatud." -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "Järgmised kasutajad pole seadistatud krüpteeringuks:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "Algne krüpteerimine käivitati... See võib võtta natuke aega. Palun oota." + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Salvestamine..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Sinu privaatne võti ei ole õige. Võib-olla on parool vahetatud süsteemi väliselt." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Liigu otse oma" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Saad avada oma privaatse võtme oma" - -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "isiklikes seadetes" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Krüpteerimine" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "Luba taastevõti (võimada kasutaja failide taastamine parooli kaotuse puhul):" +msgstr "Luba taastevõti (võimalda kasutaja failide taastamine parooli kaotuse puhul):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Taastevõtme parool" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Korda taastevõtme parooli" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Sisse lülitatud" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Väljalülitatud" @@ -121,58 +142,62 @@ msgstr "Väljalülitatud" msgid "Change recovery key password:" msgstr "Muuda taastevõtme parooli:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Vana taastevõtme parool" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Uus taastevõtme parool" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "Korda uut taastevõtme parooli" + +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Muuda parooli" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Sinu privaatse võtme parool ei ühti enam sinu sisselogimise parooliga:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Pane oma vana privaatvõtme parooliks oma praegune sisselogimise parool." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Kui sa ei mäleta oma vana parooli, siis palu oma süsteemihalduril taastada ligipääs failidele." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Vana sisselogimise parool" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Praegune sisselogimise parool" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Uuenda privaatse võtme parooli" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Luba parooli taaste:" -#: templates/settings-personal.php:47 +#: 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 "Valiku lubamine võimaldab taastada ligipääsu krüpteeritud failidele kui parooli kaotuse puhul" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Faili taaste seaded uuendatud" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Ei suuda uuendada taastefaili" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index b371afd1271de812052e1dd8d3d93f0f520feb0e..8b5da6014ed8d1beabc1df101ae7b0596f399325 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Ligipääs on antud" @@ -26,7 +26,7 @@ msgstr "Ligipääs on antud" msgid "Error configuring Dropbox storage" msgstr "Viga Dropboxi salvestusruumi seadistamisel" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Anna ligipääs" @@ -34,24 +34,24 @@ msgstr "Anna ligipääs" msgid "Please provide a valid Dropbox app key and secret." msgstr "Palun sisesta korrektne Dropboxi rakenduse võti ja salasõna." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Viga Google Drive'i salvestusruumi seadistamisel" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Hoiatus: \"smbclient\" pole paigaldatud. Jagatud CIFS/SMB hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata SAMBA tugi." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Hoiatus: PHP-s puudub FTP tugi. Jagatud FTP hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata FTP tugi." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 438e1fb60a32ad7e5883aa4814f2b48df03e9063..5e8201efb58b1f6daaee00b3030cb5af6207d201 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: pisike.sipelgas \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "See jagamine on parooliga kaitstud" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Parool on vale. Proovi uuesti." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Parool" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Saada" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Vabandust, see link ei tundu enam toimivat." @@ -55,28 +55,32 @@ msgstr "jagamine on peatatud" msgid "For more info, please ask the person who sent this link." msgstr "Täpsema info saamiseks palun pöördu lingi saatnud isiku poole." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s jagas sinuga kausta %s" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s jagas sinuga faili %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Lae alla" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Lae üles" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Eelvaadet pole saadaval" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Otsene link" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index c40a30127450abe3aa111fa06f781cc464a8135d..b14ecfceb1fc4a3fb9186ae2e0aa2c73e902b54a 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-22 10:36-0400\n" -"PO-Revision-Date: 2013-08-22 09:50+0000\n" -"Last-Translator: pisike.sipelgas \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "%s jäädavalt kustutamine ebaõnnestus" msgid "Couldn't restore %s" msgstr "%s ei saa taastada" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "soorita taastamine" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Viga" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "kustuta fail jäädavalt" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Kustuta jäädavalt" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Nimi" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "Kustutatud" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n kataloogi" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n fail" -msgstr[1] "%n faili" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "taastatud" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Siin pole midagi. Sinu prügikast on tühi!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Nimi" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Taasta" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Kustutatud" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Kustuta" diff --git a/l10n/et_EE/files_versions.po b/l10n/et_EE/files_versions.po index cfb0bfca4a332d1a1cc6a8e6a8ae1b2d88437939..b44937bc612f42e582c09be549e7f125381569de 100644 --- a/l10n/et_EE/files_versions.po +++ b/l10n/et_EE/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" -"PO-Revision-Date: 2013-08-12 10:40+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 17:47+0000\n" +"Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,6 +40,6 @@ msgstr "Rohkem versioone..." msgid "No other versions available" msgstr "Muid versioone pole saadaval" -#: js/versions.js:149 +#: js/versions.js:147 msgid "Restore" msgstr "Taasta" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 70416438c1697bb616156da03333adfece834c5c..7f76fa152273ead79cf48c4394903ac68f316ca2 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-18 08:20+0000\n" -"Last-Translator: pisike.sipelgas \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,318 +19,317 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Rakendit \"%s\" ei saa paigaldada, kuna see pole ühilduv selle ownCloud versiooniga." -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "Ühegi rakendi nime pole määratletud" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Abiinfo" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Isiklik" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Seaded" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Kasutajad" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ebaõnnestunud uuendus \"%s\"." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Kohandatud profiili pildid ei toimi veel koos krüpteeringuga" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Tundmatu failitüüp" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Vigane pilt" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "veebitenused sinu kontrolli all" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "ei suuda avada \"%s\"" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP-ina allalaadimine on välja lülitatud." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Failid tuleb alla laadida ükshaaval." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Tagasi failide juurde" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Valitud failid on ZIP-faili loomiseks liiga suured." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Laadi failid alla eraldi väiksemate osadena või küsi nõu oma süsteemiadminstraatorilt." +msgstr "Palun laadi failid alla eraldi väiksemate osadena või palu abi oma süsteemihaldurilt." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Ühegi lähteallikat pole rakendi paigalduseks määratletud" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Ühtegi aadressi pole määratletud rakendi paigalduseks veebist" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Ühtegi teed pole määratletud paigaldamaks rakendit kohalikust failist" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "%s tüüpi arhiivid pole toetatud" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Arhiivi avamine ebaõnnestus rakendi paigalduse käigus" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "Rakend ei paku ühtegi info.xml faili" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "Rakendit ei saa paigaldada, kuna sisaldab lubamatud koodi" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Rakendit ei saa paigaldada, kuna see pole ühilduv selle ownCloud versiooniga." -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Rakendit ei saa paigaldada, kuna see sisaldab \n\n\ntrue\n\nmärgendit, mis pole lubatud mitte veetud (non shipped) rakendites" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Rakendit ei saa paigaldada, kuna selle versioon info.xml/version pole sama, mis on märgitud rakendite laos." -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Rakendi kataloog on juba olemas" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Ei saa luua rakendi kataloogi. Palun korrigeeri õigusi. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Rakendus pole sisse lülitatud" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Autentimise viga" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Kontrollkood aegus. Paelun lae leht uuesti." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Failid" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Tekst" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Pildid" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s sisesta andmebaasi kasutajatunnus." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s sisesta andmebaasi nimi." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s punktide kasutamine andmebaasi nimes pole lubatud" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL kasutajatunnus ja/või parool pole õiged: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Sisesta kas juba olemasolev konto või administrator." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL kasutajatunnus ja/või parool pole õiged" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "Andmebaasi viga: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Tõrkuv käsk oli: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL kasutaja '%s'@'localhost' on juba olemas." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Kustuta see kasutaja MySQL-ist" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL kasutaja '%s'@'%%' on juba olemas" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Kustuta see kasutaja MySQL-ist." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Ei suuda luua ühendust Oracle baasiga" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Oracle kasutajatunnus ja/või parool pole õiged" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Tõrkuv käsk oli: \"%s\", nimi: %s, parool: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL kasutajatunnus ja/või parool pole õiged" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Määra admin kasutajanimi." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Määra admini parool." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Palun tutvu veelkord paigalduse juhenditega." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Ei leia kategooriat \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "sekundit tagasi" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minutit tagasi" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n tundi tagasi" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "täna" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "eile" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n päeva tagasi" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "viimasel kuul" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n kuud tagasi" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "viimasel aastal" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "aastat tagasi" - -#: template.php:297 -msgid "Caused by:" -msgstr "Põhjustaja:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Ei leia kategooriat \"%s\"" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 72d666a7d0bca3b7d2bf895d3f7de6c08144698e..e8e52f6d3dc71565d572c601c5fa89d4adabc1f9 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"PO-Revision-Date: 2013-12-13 10:10+0000\n" +"Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,12 +29,12 @@ msgid "Authentication error" msgstr "Autentimise viga" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Sinu näidatav nimi on muudetud." +msgid "Your full name has been changed." +msgstr "Sinu täispikk nimi on muudetud." #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Ei saa muuta näidatavat nime" +msgid "Unable to change full name" +msgstr "Täispika nime muutmine ebaõnnestus" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -70,7 +70,7 @@ msgstr "Vigane päring" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Administraatorid ei saa ise end eemaldada admin grupist" +msgstr "Administraatorid ei saa ise end admin grupist eemaldada" #: ajax/togglegroups.php:30 #, php-format @@ -119,11 +119,11 @@ msgstr "Ei suuda parooli muuta" msgid "Update to {appversion}" msgstr "Uuenda versioonile {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Lülita välja" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Lülita sisse" @@ -131,31 +131,31 @@ msgstr "Lülita sisse" msgid "Please wait...." msgstr "Palun oota..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" -msgstr "Viga rakendi keelamisel" +msgstr "Viga rakenduse keelamisel" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" -msgstr "Viga rakendi lubamisel" +msgstr "Viga rakenduse lubamisel" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Uuendamine..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Viga rakenduse uuendamisel" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Viga" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Uuenda" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Uuendatud" @@ -163,7 +163,7 @@ msgstr "Uuendatud" msgid "Select a profile picture" msgstr "Vali profiili pilt" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dekrüpteerin faile... Palun oota, see võib võtta veidi aega." @@ -183,44 +183,75 @@ msgstr "tagasi" msgid "Unable to remove user" msgstr "Kasutaja eemaldamine ebaõnnestus" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupid" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grupi admin" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Kustuta" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "lisa grupp" -#: js/users.js:436 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Sisesta nõuetele vastav kasutajatunnus" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Viga kasutaja loomisel" -#: js/users.js:442 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Sisesta nõuetele vastav parool" +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Hoiatus: kasutaja \"{user}\" kodukataloog on juba olemas" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Eesti" -#: templates/admin.php:15 +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "Kõik (tõsised probleemid, veateated, hoiatused, info, veatuvastus)" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "Info, hoiatused, veateted ja tõsised probleemid" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "Hoiatused, veateated ja tõsised probleemid" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "Veateated ja tõsised probleemid" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "Ainult tõsised probleemid" + +#: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" msgstr "Turvahoiatus" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -229,48 +260,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:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Paigalduse hoiatus" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Palun kontrolli uuesti paigaldusjuhendeid." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Moodul 'fileinfo' puudub" -#: templates/admin.php:47 +#: templates/admin.php:68 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:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "PHP versioon on aegunud" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "Lokalisatsioon ei toimi" -#: templates/admin.php:63 +#: templates/admin.php:98 +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:102 +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:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "Süsteemi lokaliseeringut ei saa panna %s. See tähendab, et võib esineda probleeme teatud tähemärkidega failide nimedes. Soovitame tungivalt paigaldada süsteemi vajalikud pakid toetamaks %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "Soovitame tungivalt paigaldada vajalikud paketid oma süsteemi tagamaks tuge järgmistele lokaliseeringutele: %s." -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Internetiühendus ei toimi" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -279,110 +330,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Serveril puudub toimiv internetiühendus. See tähendab, et mõned funktsionaalsused, nagu näiteks väliste andmehoidlate ühendamine, teavitused uuendustest või kolmandate osapoolte rakenduste paigaldamine ei tööta. Eemalt failidele ligipääs ning teadete saatmine emailiga ei pruugi samuti toimida. Kui soovid täielikku funktsionaalsust, siis soovitame serverile tagada ligipääs internetti." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" -msgstr "Käivita toiming lehe laadimisel" +msgstr "Käivita toiming igal lehe laadimisel" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php on registreeritud webcron teenusena laadimaks cron.php iga minut üle http." +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Kasuta süsteemi cron teenust käivitamaks faili cron.php kord minutis." +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Jagamine" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Luba Share API" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Luba rakendustel kasutada Share API-t" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Luba lingid" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Luba kasutajatel jagada kirjeid avalike linkidega" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Luba avalikud üleslaadimised" -#: templates/admin.php:144 +#: templates/admin.php:187 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:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Luba edasijagamine" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Luba kasutajatel jagada edasi kirjeid, mida on neile jagatud" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Luba kasutajatel kõigiga jagada" -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Luba teavitused e-postiga" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "Luba kasutajatel saata jagatud failide kohta e-postiga teavitusi" + +#: templates/admin.php:221 msgid "Security" msgstr "Turvalisus" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Sunni peale HTTPS-i kasutamine" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Sunnib kliente %s ühenduma krüpteeritult." -#: templates/admin.php:191 +#: templates/admin.php:242 #, 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:203 +#: templates/admin.php:254 msgid "Log" msgstr "Logi" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Logi tase" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Rohkem" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Vähem" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versioon" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Kasuta seda aadressi oma failidele ligipääsuks WebDAV kaudu" +"Use this address to access your Files via " +"WebDAV" +msgstr "Kasuta seda aadressi oma failidele ligipääsuks WebDAV kaudu" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Krüpteerimine" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Küpteeringu rakend pole lubatud, dekrüpteeri kõik oma failid" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Sisselogimise parool" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Dekrüpteeri kõik failid" @@ -562,7 +625,7 @@ msgstr "Lisa" #: templates/users.php:36 msgid "Admin Recovery Password" -msgstr "Admin taasteparool" +msgstr "Admini parooli taastamine" #: templates/users.php:37 templates/users.php:38 msgid "" @@ -574,6 +637,10 @@ msgstr "Sisesta taasteparool kasutaja failide taastamiseks paroolivahetuse käig msgid "Default Storage" msgstr "Vaikimisi maht" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "Palun sisesta mahupiir (nt: \"512 MB\" või \"12 GB\")" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Piiramatult" @@ -591,8 +658,8 @@ msgid "Storage" msgstr "Maht" #: templates/users.php:108 -msgid "change display name" -msgstr "muuda näidatavat nime" +msgid "change full name" +msgstr "Muuda täispikka nime" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index bdc18ee7dba2d96261d67095384f7411ee590d8b..afe426888cc1a992ec241b8b0cc8e02c972750ba 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" -"Last-Translator: pisike.sipelgas \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,314 +27,425 @@ msgstr "Vastendususte puhastamine ebaõnnestus." msgid "Failed to delete the server configuration" msgstr "Serveri seadistuse kustutamine ebaõnnestus" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Seadistus on korrektne ning ühendus on olemas!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Seadistus on korrektne, kuid ühendus ebaõnnestus. Palun kontrolli serveri seadeid ja ühenduseks kasutatavaid kasutajatunnuseid." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "Seadistus on vigane. Palun vaata ownCloud logist täpsemalt." +msgstr "Seadistus on vigane. Lisainfot vaata palun logidest." + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "Tegevusi pole määratletud" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "Seadistust pole määratletud" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "Andmeid pole määratletud" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "Ei suutnud seadistada %s" -#: js/settings.js:66 +#: js/settings.js:67 msgid "Deletion failed" msgstr "Kustutamine ebaõnnestus" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Võta sätted viimasest serveri seadistusest?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Säilitada seadistused?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Ei suuda lisada serveri seadistust" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "vastendused puhastatud" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Korras" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Viga" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "Seadistus on korras" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "Seadistus on vigane" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "Seadistus on puudulik" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Vali grupid" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "Vali objekti klassid" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "Vali atribuudid" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Ühenduse testimine õnnestus" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Ühenduse testimine ebaõnnestus" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Oled kindel, et tahad kustutada praegust serveri seadistust?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Kinnita kustutamine" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "Hoiatus: rakendused user_ldap ja user_webdavauht ei ole ühilduvad. Töös võib esineda ootamatuid tõrkeid.\nPalu oma süsteemihalduril üks neist rakendustest kasutusest eemaldada." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "%s grupp leitud" +msgstr[1] "%s gruppi leitud" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "%s kasutaja leitud" +msgstr[1] "%s kasutajat leitud" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "Vigane server" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "Ei suuda leida soovitud funktsioonaalsust" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Salvesta" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Testi seadistust" -#: templates/settings.php:12 +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Abiinfo" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "Piira ligipääs %s grupile, mis sobivad kriteeriumiga:" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "ainult need objektiklassid:" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "ainult nendest gruppidest:" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "Selle asemel muuda filtrit" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "LDAP filter" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Hoiatus:PHP LDAP moodul pole paigaldatud ning LDAP kasutamine ei ole võimalik. Palu oma süsteeihaldurit see paigaldada." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "Filter määrab millised LDAP grupid saavad ligipääsu sellele %s instantsile." -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Serveri seadistus" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "gruppi leitud" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "Mis atribuuti kasutada sisselogimise kasutajatunnusena:" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "LDAP kasutajanimi:" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "LDAP e-posti aadress:" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "Muud atribuudid:" + +#: 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 "Määrab sisselogimisel kasutatava filtri. %%uid asendab sisselogimistegevuses kasutajanime. Näide: \"uid=%%uid\"" + +#: templates/part.wizard-server.php:18 msgid "Add Server Configuration" msgstr "Lisa serveri seadistus" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Host" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Sa ei saa protokolli ära jätta, välja arvatud siis, kui sa nõuad SSL-ühendust. Sel juhul alusta eesliitega ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Baas DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Üks baas-DN rea kohta" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Sa saad kasutajate ja gruppide baas DN-i määrata lisavalikute vahekaardilt" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Port" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "Kasutaja DN" -#: templates/settings.php:46 +#: 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 "Klientkasutaja DN, kellega seotakse, nt. uid=agent,dc=näidis,dc=com. Anonüümseks ligipääsuks jäta DN ja parool tühjaks." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Parool" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Anonüümseks ligipääsuks jäta DN ja parool tühjaks." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Kasutajanime filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Üks baas-DN rea kohta" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Sa saad kasutajate ja gruppide baas DN-i määrata lisavalikute vahekaardilt" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "Piira ligipääs %s kasutajale, kes sobivad kriteeriumiga:" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "Määrab sisselogimisel kasutatava filtri. %%uid asendab sisselogimistegevuses kasutajanime. Näide: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "Filter määrab millised LDAP kasutajad pääsevad ligi %s instantsile." -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Kasutajate nimekirja filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "kasutajat leitud" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "Määrab kasutajate leidmiseks kasutatava filtri (ilma muutujateta). Näide: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Tagasi" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Grupi filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Jätka" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "Hoiatus: rakendused user_ldap ja user_webdavauht ei ole ühilduvad. Töös võib esineda ootamatuid tõrkeid.\nPalu oma süsteemihalduril üks neist rakendustest kasutusest eemaldada." -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "Määrab gruppide leidmiseks kasutatava filtri (ilma muutujateta). Näide: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Hoiatus:PHP LDAP moodul pole paigaldatud ning LDAP kasutamine ei ole võimalik. Palu oma süsteeihaldurit see paigaldada." -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Ühenduse seaded" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Seadistus aktiivne" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." -msgstr "Kui märkimata, siis seadistust ei kasutata" - -#: templates/settings.php:69 -msgid "Port" -msgstr "Port" +msgstr "Kui on märkimata, siis seadistust ei kasutata." -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Varuserver" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Lisa täiendav LDAP/AD server, mida replikeeritakse peaserveriga." +msgstr "Lisa valikuline varuserver. See peab olema koopia peamisest LDAP/AD serverist." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Varuserveri (replika) port" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Ära kasuta peaserverit" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "Ühendu ainult replitseeriva serveriga." -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Kasuta TLS-i" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "LDAPS puhul ära kasuta. Ühendus ei toimi." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Mittetõstutundlik LDAP server (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Lülita SSL sertifikaadi kontrollimine välja." -#: templates/settings.php:75 +#: 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 "Pole soovitatav, kasuta seda ainult testimiseks! Kui ühendus toimib ainult selle valikuga, siis impordi LDAP serveri SSL sertifikaat oma %s serverisse." -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Puhvri iga" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "sekundites. Muudatus tühjendab vahemälu." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" -msgstr "Kataloogi seaded" +msgstr "Kausta seaded" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Kasutaja näidatava nime väli" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "LDAP atribuut, mida kasutatakse kasutaja kuvatava nime loomiseks." -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Baaskasutaja puu" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" -msgstr "Üks kasutajate baas-DN rea kohta" +msgstr "Üks kasutaja baas-DN rea kohta" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "Kasutaja otsingu atribuudid" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Valikuline; üks atribuut rea kohta" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Grupi näidatava nime väli" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "LDAP atribuut, mida kasutatakse ownCloudi grupi kuvatava nime loomiseks." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Baasgrupi puu" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "Üks grupi baas-DN rea kohta" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Grupi otsingu atribuudid" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Grupiliikme seotus" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Spetsiifilised atribuudid" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Mahupiirangu atribuut" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Vaikimisi mahupiirang" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "baitides" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" -msgstr "Email atribuut" +msgstr "E-posti väli" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "Kasutaja kodukataloogi nimetamise reegel" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Kasutajanime (vaikeväärtus) kasutamiseks jäta tühjaks. Vastasel juhul määra LDAP/AD omadus." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "Sisemine kasutajanimi" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -350,15 +461,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Vaikimisi tekitatakse sisemine kasutajanimi UUID atribuudist. See tagab, et kasutajanimi on unikaalne ja sümboleid pole vaja muuta. Sisemisel kasutajatunnuse puhul on lubatud ainult järgmised sümbolid: [ a-zA-Z0-9_.@- ]. Muud sümbolid asendatakse nende ASCII vastega või lihtsalt hüljatakse. Tõrgete korral lisatakse number või suurendatakse seda. Sisemist kasutajatunnust kasutatakse kasutaja sisemiseks tuvastamiseks. Ühtlasi on see ownCloudis kasutaja vaikimisi kodukataloogi nimeks. See on ka serveri URLi osaks, näiteks kõikidel *DAV teenustel. Selle seadistusega saab tühistada vaikimisi käitumise. Saavutamaks sarnast käitumist eelnevate ownCloud 5 versioonidega, sisesta kasutaja kuvatava nime atribuut järgnevale väljale. Vaikimisi seadistuseks jäta tühjaks. Muudatused mõjutavad ainult uusi (lisatud) LDAP kasutajate vastendusi." -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "Sisemise kasutajatunnuse atribuut:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "Tühista UUID tuvastus" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -369,15 +480,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Vaikimis ownCloud tuvastab automaatselt UUID atribuudi. UUID atribuuti kasutatakse LDAP kasutajate ja gruppide kindlaks tuvastamiseks. Samuti tekitatakse sisemine kasutajanimi UUID alusel, kui pole määratud teisiti. Sa saad tühistada selle seadistuse ning määrata atribuudi omal valikul. Pead veenduma, et valitud atribuut toimib nii kasutajate kui gruppide puhul ning on unikaalne. Vaikimisi seadistuseks jäta tühjaks. Muudatused mõjutavad ainult uusi (lisatud) LDAP kasutajate vastendusi." -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID atribuut:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "UUID atribuut kasutajatele:" -#: templates/settings.php:104 +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "UUID atribuut gruppidele:" + +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "LDAP-Kasutajatunnus Kasutaja Vastendus" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -391,18 +506,10 @@ msgid "" "experimental stage." msgstr "ownCloud kasutab kasutajanime talletamaks ja omistamaks (pseudo) andmeid. Et täpselt tuvastada ja määratleda kasutajaid, peab iga LDAP kasutaja omama sisemist kasutajatunnust. See vajab ownCloud kasutajatunnuse vastendust LDAP kasutajaks. Tekitatud kasutajanimi vastendatakse LDAP kasutaja UUID-iks. Lisaks puhverdatakse DN vähendamaks LDAP päringuid, kuid seda ei kasutata tuvastamisel. ownCloud suudab tuvastada ka DN muutumise. ownCloud sisemist kasutajatunnust kasutatakse üle kogu ownCloudi. Eemaldates vastenduse tekivad kõikjal andmejäägid. Vastenduste eemaldamine ei ole konfiguratsiooni tundlik, see mõjutab kõiki LDAP seadistusi! Ära kunagi eemalda vastendusi produktsioonis! Seda võid teha ainult testis või katsetuste masinas." -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "Puhasta LDAP-Kasutajatunnus Kasutaja Vastendus" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Puhasta LDAP-Grupinimi Grupp Vastendus" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Testi seadistust" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Abiinfo" diff --git a/l10n/et_EE/user_webdavauth.po b/l10n/et_EE/user_webdavauth.po index 575c051d6aa67cd14e87661a0ae745e09e8a4f9d..1b5c1513160fe5bef16ec207e70bcc413cde38ef 100644 --- a/l10n/et_EE/user_webdavauth.po +++ b/l10n/et_EE/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" -"PO-Revision-Date: 2013-08-12 10:40+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 17:40+0000\n" +"Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,4 +32,4 @@ 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 "ownCloud saadab kasutajatunnused sellel aadressil. See vidin kontrollib vastust ning tuvastab HTTP vastuskoodid 401 ja 403 kui vigased, ning kõik teised vastused kui korrektsed kasutajatunnused." +msgstr "ownCloud saadab kasutajatunnused sellel aadressil. See vidin kontrollib vastust ning tuvastab ning tõlgendab HTTP olekukoodid 401 ja 403 valedeks andmeteks ning kõik teised vastused korrektseteks andmeteks." diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 456f415e68465aa26ed9f4be4a5219ed581ee08a..ccd03367277d455fed94eace4e86f2930b55763f 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,98 +19,60 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s-ek »%s« zurekin partekatu du" -#: ajax/share.php:227 -msgid "group" -msgstr "taldea" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Ezin izan da posta bidali hurrengo erabiltzaileei: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" -msgstr "" +msgstr "Mantenu modua gaitu da" #: ajax/update.php:14 msgid "Turned off maintenance mode" -msgstr "" +msgstr "Mantenu modua desgaitu da" #: ajax/update.php:17 msgid "Updated database" -msgstr "" +msgstr "Datu basea eguneratu da" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "" +msgstr "Fitxategi katxea eguneratzen, honek oso denbora luzea har dezake..." #: ajax/update.php:23 msgid "Updated filecache" -msgstr "" +msgstr "Fitxategi katxea eguneratu da" #: ajax/update.php:26 #, php-format msgid "... %d%% done ..." -msgstr "" - -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Kategoria mota ez da zehaztu." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Ez dago gehitzeko kategoriarik?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Kategoria hau dagoeneko existitzen da: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Objetu mota ez da zehaztu." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID mota ez da zehaztu." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Errorea gertatu da %s gogokoetara gehitzean." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Ez da ezabatzeko kategoriarik hautatu." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Errorea gertatu da %s gogokoetatik ezabatzean." +msgstr "... %d%% egina ..." #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "Ez da irudi edo fitxategirik zehaztu" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Fitxategi mota ezezaguna" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Baliogabeko irudia" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "Ez dago behin-behineko profil irudirik, saiatu berriro" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "Ez da ebaketarako daturik zehaztu" #: js/config.php:32 msgid "Sunday" @@ -188,59 +150,59 @@ msgstr "Azaroa" msgid "December" msgstr "Abendua" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "segundu" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "orain dela minutu %n" msgstr[1] "orain dela %n minutu" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "orain dela ordu %n" msgstr[1] "orain dela %n ordu" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "gaur" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "atzo" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "orain dela egun %n" msgstr[1] "orain dela %n egun" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "orain dela hilabete %n" msgstr[1] "orain dela %n hilabete" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "hilabete" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "joan den urtean" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "urte" @@ -250,7 +212,7 @@ msgstr "Aukeratu" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Errorea fitxategi hautatzaile txantiloiak kargatzerakoan: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -266,27 +228,27 @@ msgstr "Ados" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Errorea mezu txantiloia kargatzean: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "fitxategi {count}ek konfliktua sortu du" +msgstr[1] "{count} fitxategik konfliktua sortu dute" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Fitxategi batek konfliktua sortu du" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Ze fitxategi mantendu nahi duzu?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Bi bertsioak hautatzen badituzu, kopiatutako fitxategiaren izenean zenbaki bat atxikituko zaio." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -294,169 +256,197 @@ msgstr "Ezeztatu" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Jarraitu" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(denak hautatuta)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} hautatuta)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" - -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Objetu mota ez dago zehaztuta." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Errorea" +msgstr "Errorea fitxategia existitzen da txantiloiak kargatzerakoan" -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "App izena ez dago zehaztuta." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Beharrezkoa den {file} fitxategia ez dago instalatuta!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Elkarbanatuta" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Elkarbanatu" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Errorea" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Errore bat egon da elkarbanatzean" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Errore bat egon da elkarbanaketa desegitean" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Errore bat egon da baimenak aldatzean" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner}-k zu eta {group} taldearekin elkarbanatuta" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "{owner}-k zurekin elkarbanatuta" -#: js/share.js:183 -msgid "Share with" -msgstr "Elkarbanatu honekin" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Elkarbanatu erabiltzaile edo taldearekin..." -#: js/share.js:188 -msgid "Share with link" -msgstr "Elkarbanatu lotura batekin" +#: js/share.js:219 +msgid "Share link" +msgstr "Elkarbanatu lotura" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Babestu pasahitzarekin" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Pasahitza" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Gaitu igotze publikoa" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Postaz bidali lotura " -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Bidali" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Ezarri muga data" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Muga data" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Elkarbanatu eposta bidez:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Ez da inor aurkitu" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "taldea" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Berriz elkarbanatzea ez dago baimendua" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "{user}ekin {item}-n elkarbanatuta" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Ez elkarbanatu" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "jakinarazi eposta bidez" + +#: js/share.js:408 msgid "can edit" msgstr "editatu dezake" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "sarrera kontrola" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "sortu" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "eguneratu" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "ezabatu" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "elkarbanatu" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Pasahitzarekin babestuta" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Errorea izan da muga data kentzean" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Errore bat egon da muga data ezartzean" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Bidaltzen ..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "Eposta bidalia" +#: js/share.js:769 +msgid "Warning" +msgstr "Abisua" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Objetu mota ez dago zehaztuta." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Sartu berria" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Ezabatu" + +#: js/tags.js:31 +msgid "Add" +msgstr "Gehitu" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Editatu etiketak" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Errorea elkarrizketa txantiloia kargatzean: {errorea}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Ez dira ezabatzeko etiketak hautatu." + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "Mesedez birkargatu orria." + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Zure pasahitza berrezartzeko lotura zure postara bidalia izan da.
    Ez baduzu arrazoizko denbora \nepe batean jasotzen begiratu zure zabor-posta karpetan.
    Hor ere ez badago kudeatzailearekin harremanetan ipini." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Eskaerak huts egin du!
    Ziur zaude posta/pasahitza zuzenak direla?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Zure pashitza berrezartzeko lotura bat jasoko duzu Epostaren bidez." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Erabiltzaile izena" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -505,13 +495,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Zure fitxategiak enkriptaturik daude. Ez baduzu berreskuratze gakoa gaitzen pasahitza berrabiaraztean ez da zure fitxategiak berreskuratzeko modurik egongo. Zer egin ziur ez bazaude kudeatzailearekin harremanetan ipini jarraitu aurretik. Ziur zaude aurrera jarraitu nahi duzula?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Bai, nire pasahitza orain berrabiarazi nahi dut" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Eskaera berrezarri da" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Berrezarri" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -537,7 +527,7 @@ msgstr "Pertsonala" msgid "Users" msgstr "Erabiltzaileak" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Aplikazioak" @@ -549,6 +539,34 @@ msgstr "Admin" msgid "Help" msgstr "Laguntza" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "Errore bat izan da etiketak kargatzearkoan." + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "Etiketa dagoeneko existitzen da" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "Errore bat izan da etiketa(k) ezabatzerakoan" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "Errorea etiketa ezartzerakoan" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "Errorea etiketa kentzerakoan" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "Errorea gogokoetara gehitzerakoan" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "Errorea gogokoetatik kentzerakoan" + #: templates/403.php:12 msgid "Access forbidden" msgstr "Sarrera debekatuta" @@ -565,108 +583,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Kaixo\n\n%s-ek %s zurekin partekatu duela jakin dezazun.\nIkusi ezazu: %s\n\nOngi jarraitu!" +msgstr "Kaixo\n\n%s-ek %s zurekin partekatu duela jakin dezazun.\nIkusi ezazu: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Editatu kategoriak" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "Elkarbanaketa %s-n iraungiko da." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Gehitu" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Ongi izan!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Segurtasun abisua" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Zure PHP bertsioa NULL Byte erasoak (CVE-2006-7243) mendera dezake." -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Mesedez eguneratu zure PHP instalazioa %s seguru erabiltzeko" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Ez dago hausazko zenbaki sortzaile segururik eskuragarri, mesedez gatiu PHP OpenSSL extensioa." -#: templates/installation.php:33 +#: 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 "Hausazko zenbaki sortzaile segururik gabe erasotzaile batek pasahitza berrezartzeko kodeak iragarri ditzake eta zure kontuaz jabetu." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Zure data karpeta eta fitxategiak interneten bidez eskuragarri egon daitezke .htaccess fitxategia ez delako funtzionatzen ari." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "Zure zerbitrzaria ongi konfiguratzeko, mezedez dokumentazioa ikusi." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Sortu kudeatzaile kontu bat" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Aurreratua" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Datuen karpeta" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Konfiguratu datu basea" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "erabiliko da" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Datubasearen erabiltzailea" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Datubasearen pasahitza" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Datubasearen izena" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Datu basearen taula-lekua" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Datubasearen hostalaria" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Bukatu konfigurazioa" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Bukatzen..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "Aplikazio honek ongi funtzionatzeko JavaScript gaitua behar du. Mesedez gaitu JavaScript eta birkargatu interfaze hau." + +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s erabilgarri dago. Eguneratzeaz argibide gehiago eskuratu." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Saioa bukatu" @@ -684,19 +713,27 @@ msgstr "Zure pasahitza orain dela gutxi ez baduzu aldatu, zure kontua arriskuan msgid "Please change your password to secure your account again." msgstr "Mesedez aldatu zure pasahitza zure kontua berriz segurtatzeko." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "Zerbitzari aldeko autentifikazioak huts egin du!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Mesedez jarri harremetan zure administradorearekin." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Galdu duzu pasahitza?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "gogoratu" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Hasi saioa" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Beste erabiltzaile izenak" @@ -704,10 +741,37 @@ msgstr "Beste erabiltzaile izenak" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Kaixo

    %s-ek %s zurekin partekatu duela jakin dezazun.
    \nIkusi ezazu

    Ongi jarraitu!" +"href=\"%s\">View it!

    " +msgstr "Kaixo

    %s-ek %s zurekin partekatu duela jakin dezazun.
    \nIkusi ezazu

    " + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "ownCloud instantzia hau erabiltzaile bakar moduan dago." -#: templates/update.php:3 +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "Honek administradoreak bakarrik erabili dezakeela esan nahi du." + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "Jarri harremanetan zure sistema administratzailearekin mezu hau irauten badu edo bat-batean agertu bada." + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "Milesker zure patzientziagatik." + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "ownCloud %s bertsiora eguneratzen, denbora har dezake." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "ownCloud instantzia hau eguneratzen ari da, honek denbora har dezake." + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "Mesedez birkargatu orri hau denbora gutxi barru ownCloud erabiltzen jarraitzeko." diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 46b992abc377bd4e6e6aad9e66de80f2100753e2..98e24d2cd0ac19cf3f3024a8fa4ad1096c9cb0d2 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -29,220 +29,286 @@ msgstr "Ezin da %s mugitu - Izen hau duen fitxategia dagoeneko existitzen da" msgid "Could not move %s" msgstr "Ezin dira fitxategiak mugitu %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Fitxategi izena ezin da hutsa izan." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "Fitxategi izenak ezin du \"/\" izan. Mesedez hautatu beste izen bat." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "%s izena dagoeneko erabilita dago %s karpetan. Mesdez hautatu izen ezberdina." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "Ez da jatorri baliogarria" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Errorea %s %sra deskargatzerakoan" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Errorea fitxategia sortzerakoan" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "Karpeta izena ezin da hutsa izan." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "Karpeta izenak ezin du \"/\" izan. Mesedez hautatu beste izen bat." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Errorea karpeta sortzerakoan" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Ezin da igoera direktorioa ezarri." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Lekuko baliogabea" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Ez da fitxategirik igo. Errore ezezaguna" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Ez da errorerik egon, fitxategia ongi igo da" -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Igotako fitxategiaren zati bat bakarrik igo da" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Ez da fitxategirik igo" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Aldi bateko karpeta falta da" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Errore bat izan da diskoan idazterakoan" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Ez dago behar aina leku erabilgarri," -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Igoerak huts egin du. Ezin izan da fitxategiaren informazioa eskuratu." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Igoerak huts egin du. Ezin izan da igotako fitxategia aurkitu" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Baliogabeko karpeta." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Fitxategiak" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "Ezin da {filename} igo karpeta bat delako edo 0 byte dituelako" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Ez dago leku nahikorik." -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Igoera ezeztatuta" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "" +msgstr "Ezin da zerbitzaritik emaitzik lortu" -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "URLa ezin da hutsik egon." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "URLa ezin da hutsik egon" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Karpeta izne baliogabea. \"Shared\" karpeta erabilpena OwnCloudentzat erreserbaturik dago." +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "Etxeko (home) karpetan 'Shared' erreserbatutako fitxategi izena da" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Errorea" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} dagoeneko existitzen da" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Ezin izan da fitxategia sortu" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Ezin izan da karpeta sortu" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "Elkarbanatu" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Ezabatu betirako" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Berrizendatu" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Zain" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} dagoeneko existitzen da" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "ordeztu" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Ezin izan da fitxategia berrizendatu" -#: js/filelist.js:416 -msgid "suggest name" -msgstr "aholkatu izena" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "ezeztatu" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr " {new_name}-k {old_name} ordezkatu du" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "desegin" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Errorea fitxategia ezabatzerakoan." + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "karpeta %n" msgstr[1] "%n karpeta" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "fitxategi %n" msgstr[1] "%n fitxategi" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" -msgstr "" +msgstr "{dirs} eta {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Fitxategi %n igotzen" msgstr[1] "%n fitxategi igotzen" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' ez da fitxategi izen baliogarria." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Fitxategi izena ezin da hutsa izan." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Zure biltegiratzea beterik dago, ezingo duzu aurrerantzean fitxategirik igo edo sinkronizatu!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Zure biltegiratzea nahiko beterik dago (%{usedSpacePercent})" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "Enkriptazio aplikazioa gaituta dago baina zure gakoak ez daude konfiguratuta, mesedez saioa bukatu eta berriro hasi" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "Enkriptazio aplikaziorako gako pribatu okerra. Mesedez eguneratu zure gako pribatuaren pasahitza zure ezarpen pertsonaletan zure enkriptatuko fitxategietarako sarrera berreskuratzeko." + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Enkriptazioa desgaitua izan da baina zure fitxategiak oraindik enkriptatuta daude. Mesedez jo zure ezarpen pertsonaletara zure fitxategiak dekodifikatzeko." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Zure deskarga prestatu egin behar da. Denbora bat har lezake fitxategiak handiak badira. " -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" -msgstr "" +msgstr "Errorea fitxategia mugitzean" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Errorea" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Izena" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Tamaina" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Aldatuta" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Baliogabeako karpeta izena. 'Shared' izena erreserbatuta dago." + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s ezin da berrizendatu" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Igo" @@ -278,65 +344,69 @@ msgstr "ZIP fitxategien gehienezko tamaina" msgid "Save" msgstr "Gorde" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Berria" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "Testu fitxategi berria" + +#: templates/index.php:8 msgid "Text file" msgstr "Testu fitxategia" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Karpeta berria" + +#: templates/index.php:10 msgid "Folder" msgstr "Karpeta" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Estekatik" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Ezabatutako fitxategiak" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Ezeztatu igoera" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Ez duzu hemen idazteko baimenik." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "Ez duzu fitxategiak hona igotzeko edo hemen sortzeko baimenik" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Ez dago ezer. Igo zerbait!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Deskargatu" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Ez elkarbanatu" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Ezabatu" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Igoera handiegia da" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Igotzen saiatzen ari zaren fitxategiak zerbitzari honek igotzeko onartzen duena baino handiagoak dira." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Fitxategiak eskaneatzen ari da, itxoin mezedez." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Orain eskaneatzen ari da" diff --git a/l10n/eu/files_encryption.po b/l10n/eu/files_encryption.po index 456db338acb5eb11b1b4e059d06c731d0bfb9fec..5384b729633eaeb5130b03b6d6c8acd8004307c8 100644 --- a/l10n/eu/files_encryption.po +++ b/l10n/eu/files_encryption.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-07 14:40+0000\n" +"Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,75 +46,96 @@ msgstr "Pasahitza behar bezala aldatu da." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Ezin izan da pasahitza aldatu. Agian pasahitz zaharra okerrekoa da." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Gako pasahitz pribatu behar bezala eguneratu da." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Ezin izan da gako pribatu pasahitza eguneratu. Agian pasahitz zaharra okerrekoa da." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "Zure gako pribatua ez da egokia! Seguruaski zure pasahitza ownCloud sistematik kanpo aldatu da (adb. zure direktorio korporatiboa). Zure gako pribatuaren pasahitza eguneratu dezakezu zure ezarpen pertsonaletan zure enkriptatutako fitxategiak berreskuratzeko." +"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 "Enkriptazio aplikazioa ez dago hasieratuta! Agian aplikazioa birgaitu egin da zure saioa bitartean. Mesdez atear eta sartu berriz enkriptazio aplikazioa hasierarazteko." -#: hooks/hooks.php:41 +#: 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 "Zure gako pribatua ez da egokia! Seguruaski zure pasahitza %s-tik kanpo aldatu da (adb. zure direktorio korporatiboa). Zure gako pribatuaren pasahitza eguneratu dezakezu zure ezarpen pertsonaletan zure enkriptatutako fitxategiak berreskuratzeko." + +#: 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 "Ezin izan da fitxategi hau deszifratu, ziurrenik elkarbanatutako fitxategi bat da. Mesdez, eskatu fitxategiaren jabeari fitxategia zurekin berriz elkarbana dezan." + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Errore ezezaguna mesedez egiaztatu zure sistemaren ezarpenak edo harremanetan jarri zure administradorearekin" + +#: hooks/hooks.php:59 msgid "Missing requirements." msgstr "Eskakizun batzuk ez dira betetzen." -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "Mesedez ziurtatu PHP 5.3.3 edo berriago bat instalatuta dagoela eta OpenSSL PHP hedapenarekin gaitua eta ongi konfiguratuta dagoela. Oraingoz, enkriptazio aplikazioa desgaituta dago." -#: hooks/hooks.php:249 +#: hooks/hooks.php:278 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Hurrengo erabiltzaileak ez daude enktriptatzeko konfiguratutak:" + +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "Hasierako enkriptazioa hasi da... Honek denbora har dezake. Mesedez itxaron." -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Gordetzen..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Zure gako pribatua ez da egokia! Agian zure pasahitza kanpotik aldatu da." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Zure gako pribatua desblokeatu dezakezu zure" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Joan zuzenean zure" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "ezarpen pertsonalak" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Enkriptazioa" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Gaitu berreskurapen gakoa (erabiltzaileen fitxategiak berreskuratzea ahalbidetzen du pasahitza galtzen badute ere):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Berreskuratze gako pasahitza" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Errepikatu berreskuratze gakoaren pasahitza" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Gaitua" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Ez-gaitua" @@ -122,58 +143,62 @@ msgstr "Ez-gaitua" msgid "Change recovery key password:" msgstr "Aldatu berreskuratze gako pasahitza:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Berreskuratze gako pasahitz zaharra" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Berreskuratze gako pasahitz berria" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "Errepikatu berreskuratze gako berriaren pasahitza" + +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Aldatu Pasahitza" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Zure gako pribatuaren pasahitza ez da dagoeneko zure sarrera pasahitza:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Ezarri zure gako pribatu zaharraren pasahitza zure oraingo sarrerako psahitzara." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Ez baduzu zure pasahitz zaharra gogoratzen eskatu zure administratzaileari zure fitxategiak berreskuratzeko." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Sartzeko pasahitz zaharra" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Sartzeko oraingo pasahitza" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Eguneratu gako pribatu pasahitza" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Gaitu pasahitz berreskuratzea:" -#: templates/settings-personal.php:47 +#: 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 "Aukera hau gaituz zure enkriptatutako fitxategiak berreskuratu ahal izango dituzu pasahitza galtzekotan" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Fitxategi berreskuratze ezarpenak eguneratuak" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Ezin da fitxategi berreskuratzea eguneratu" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index fbe14c6446f23379ff8f0a0dc8c492311c329d1e..68f29e218efab4d4965715846230affcb7a52fbe 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Sarrera baimendua" @@ -26,7 +26,7 @@ msgstr "Sarrera baimendua" msgid "Error configuring Dropbox storage" msgstr "Errore bat egon da Dropbox biltegiratzea konfiguratzean" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Baimendu sarrera" @@ -34,24 +34,24 @@ msgstr "Baimendu sarrera" msgid "Please provide a valid Dropbox app key and secret." msgstr "Mesedez eman baliozkoa den Dropbox app giltza eta sekretua" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Errore bat egon da Google Drive biltegiratzea konfiguratzean" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Abisua: \"smbclient\" ez dago instalatuta. CIFS/SMB partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Abisua: PHPren FTP modulua ez dago instalatuta edo gaitua. FTP partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index ce629410a61ed944d7064f3d29b5c21fdd9c7d18..608ec647a9d84612a430b571c24c5fc8b4b7c340 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-14 21:50+0000\n" "Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Elkarbanatutako hau pasahitzarekin babestuta dago" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Pasahitza ez da egokia. Saiatu berriro." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Pasahitza" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Bidali" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Barkatu, lotura ez dirudi eskuragarria dagoenik." @@ -54,28 +54,32 @@ msgstr "elkarbanatzea ez dago gaituta" msgid "For more info, please ask the person who sent this link." msgstr "Informazio gehiagorako, mesedez eskatu lotura hau bidali zuen pertsonari" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%sk zurekin %s karpeta elkarbanatu du" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%sk zurekin %s fitxategia elkarbanatu du" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Deskargatu" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Igo" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Ezeztatu igoera" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Ez dago aurrebista eskuragarririk hauentzat " + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Lotura zuzena" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index bdb27c8c6d930d148bd6ae8830eb31c2db9b0f5c..16877608645b5fc434475f075161c308e5dba310 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-25 19:18-0400\n" -"PO-Revision-Date: 2013-08-25 23:10+0000\n" -"Last-Translator: asieriko \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "Ezin izan da %s betirako ezabatu" msgid "Couldn't restore %s" msgstr "Ezin izan da %s berreskuratu" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "berreskuratu" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Errorea" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "ezabatu fitxategia betirako" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Ezabatu betirako" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Izena" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "Ezabatuta" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "karpeta %n" -msgstr[1] "%n karpeta" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "fitxategi %n" -msgstr[1] "%n fitxategi" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "Berrezarrita" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Ez dago ezer ez. Zure zakarrontzia hutsik dago!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Izena" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Berrezarri" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Ezabatuta" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Ezabatu" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 017ba3930fdcbda0ceed168b497eb87eafb74e74..aca65bbef7af2c31da4b88d1e4fc1803ce71e990 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,318 +19,317 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." -msgstr "" +msgstr "\"%s\" Aplikazioa ezin da instalatu ownCloud bertsio honekin bateragarria ez delako" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" -msgstr "" +msgstr "Ez da aplikazioaren izena zehaztu" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Laguntza" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Pertsonala" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Ezarpenak" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Erabiltzaileak" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ezin izan da \"%s\" eguneratu." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Fitxategi mota ezezaguna" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Baliogabeko irudia" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "web zerbitzuak zure kontrolpean" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "ezin da \"%s\" ireki" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP deskarga ez dago gaituta." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Fitxategiak banan-banan deskargatu behar dira." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Itzuli fitxategietara" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Hautatuko fitxategiak oso handiak dira zip fitxategia sortzeko." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Deskargatu fitzategiak zati txikiagoetan, banan-banan edo eskatu mesedez zure administradoreari" +msgstr "Mesedez deskargatu fitzategiak zati txikiagoetan, banan-banan edo eskatu mesedez zure administradoreari." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" -msgstr "" +msgstr "Ez da jatorririk zehaztu aplikazioa instalatzerakoan" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" -msgstr "" +msgstr "Ez da href parametrorik zehaztu http bidez aplikazioa instalatzerakoan" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" -msgstr "" +msgstr "Ez da kokalekurik zehaztu fitxategi lokal moduan aplikazioa instalatzerakoan" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" -msgstr "" +msgstr "%s motako fitxategiak ez dira onartzen" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" -msgstr "" +msgstr "Fitxategia irekitzeak huts egin du aplikazioa instalatzerakoan" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" -msgstr "" +msgstr "Aplikazioak ez du info.xml fitxategia" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" -msgstr "" +msgstr "Aplikazioa ezin da instalatu bertan duen baimendu gabeko kodea dela eta" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" -msgstr "" +msgstr "Aplikazioa ezin da instalatu ownCloud bertsio honekin bateragarria ez delako" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" -msgstr "" +msgstr "Aplikazioa ezin da instalatu true etiketa duelako eta etiketa hau ez da onartzen banaketan ez datozen aplikazioetan" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "" +msgstr "Aplikazioa ezin da instalatu info.xml/version bertsioa ez delako \"app store\"an jartzen duenaren berdina" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" -msgstr "" +msgstr "Aplikazioaren karpeta dagoeneko existitzen da" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "" +msgstr "Ezin izan da aplikazioaren karpeta sortu. Mesdez konpondu baimenak. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Aplikazioa ez dago gaituta" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Autentifikazio errorea" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Tokena iraungitu da. Mesedez birkargatu orria." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Fitxategiak" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Testua" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Irudiak" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s sartu datu basearen erabiltzaile izena." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s sartu datu basearen izena." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s ezin duzu punturik erabili datu basearen izenean." -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL erabiltzaile izena edota pasahitza ez dira egokiak: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Existitzen den kontu bat edo administradorearena jarri behar duzu." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL erabiltzaile edota pasahitza ez dira egokiak." -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "DB errorea: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Errorea komando honek sortu du: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL '%s'@'localhost' erabiltzailea dagoeneko existitzen da." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Ezabatu erabiltzaile hau MySQLtik" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL '%s'@'%%' erabiltzailea dagoeneko existitzen da" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Ezabatu erabiltzaile hau MySQLtik." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Ezin da Oracle konexioa sortu" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Oracle erabiltzaile edota pasahitza ez dira egokiak." -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Errorea komando honek sortu du: \"%s\", izena: %s, pasahitza: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL erabiltzaile edota pasahitza ez dira egokiak." -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Ezarri administraziorako erabiltzaile izena." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Ezarri administraziorako pasahitza." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sinkronizazioa egiteko, WebDAV interfazea ongi ez dagoela dirudi." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Mesedez begiratu instalazio gidak." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Ezin da \"%s\" kategoria aurkitu" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "segundu" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "orain dela minutu %n" msgstr[1] "orain dela %n minutu" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "orain dela ordu %n" msgstr[1] "orain dela %n ordu" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "gaur" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "atzo" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "orain dela egun %n" msgstr[1] "orain dela %n egun" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "joan den hilabetean" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "orain dela hilabete %n" msgstr[1] "orain dela %n hilabete" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "joan den urtean" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "urte" - -#: template.php:297 -msgid "Caused by:" -msgstr "Honek eraginda:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Ezin da \"%s\" kategoria aurkitu" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index fc5007d8579ca4c521cea726e599ba9112e7aa8a..fcb7b61c60f5b0041b6c33c7cb965ce53101d25e 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -4,14 +4,15 @@ # # Translators: # asieriko , 2013 +# Debatik mundura!, 2013 # Piarres Beobide , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-11 13:31-0500\n" +"PO-Revision-Date: 2013-12-10 21:50+0000\n" +"Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,12 +30,12 @@ msgid "Authentication error" msgstr "Autentifikazio errorea" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Zure bistaratze izena aldatu egin da." +msgid "Your full name has been changed." +msgstr "Zure izena aldatu egin da." #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Ezin izan da bistaratze izena aldatu" +msgid "Unable to change full name" +msgstr "Ezin izan da izena aldatu" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -88,22 +89,22 @@ msgstr "Ezin izan da aplikazioa eguneratu." #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "Pasahitz okerra" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "Ez da erabiltzailerik zehaztu" #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "Mesedez eman berreskuratzeko administrazio pasahitza, bestela erabiltzaile datu guztiak galduko dira" #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "Berreskuratze administradore pasahitz ez egokia. Medesez egiaztatu pasahitza eta saiatu berriz." #: changepassword/controller.php:87 msgid "" @@ -113,17 +114,17 @@ msgstr "" #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" -msgstr "" +msgstr "Ezin izan da pasahitza aldatu" #: js/apps.js:43 msgid "Update to {appversion}" msgstr "Eguneratu {appversion}-ra" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Ez-gaitu" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Gaitu" @@ -131,39 +132,39 @@ msgstr "Gaitu" msgid "Please wait...." msgstr "Itxoin mesedez..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" -msgstr "" +msgstr "Erroea izan da aplikazioa desgaitzerakoan" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" -msgstr "" +msgstr "Erroea izan da aplikazioa gaitzerakoan" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Eguneratzen..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Errorea aplikazioa eguneratzen zen bitartean" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Errorea" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Eguneratu" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Eguneratuta" #: js/personal.js:220 msgid "Select a profile picture" -msgstr "" +msgstr "Profil argazkia aukeratu" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -183,206 +184,265 @@ msgstr "desegin" msgid "Unable to remove user" msgstr "Ezin izan da erabiltzailea aldatu" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Taldeak" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Talde administradorea" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Ezabatu" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "gehitu taldea" -#: js/users.js:436 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Baliozko erabiltzaile izena eman behar da" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Errore bat egon da erabiltzailea sortzean" -#: js/users.js:442 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Baliozko pasahitza eman behar da" +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Abisua: \"{user}\" erabiltzailearen Home karpeta dagoeneko exisititzen da" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Euskera" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "Segurtasun abisua" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 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 "" +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:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Konfiguratu Abisuak" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Mesedez birpasatu instalazio gidak." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "'fileinfo' Modulua falta da" -#: templates/admin.php:47 +#: templates/admin.php:68 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:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "Zure PHP bertsioa zaharkituta dago" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "Lokala ez dabil" -#: templates/admin.php:63 +#: templates/admin.php:98 +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:102 +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:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Interneteko konexioak ez du funtzionatzen" -#: templates/admin.php:78 +#: templates/admin.php:121 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 "" +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:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Exekutatu zeregin bat orri karga bakoitzean" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php webcron zerbitzu batean erregistratua dago cron.php minuturo http bidez deitzeko." +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Erabili sistemaren cron zerbitzua cron.php fitxategia minuturo deitzeko." +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Partekatzea" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Gaitu Elkarbanatze APIa" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Baimendu aplikazioak Elkarbanatze APIa erabiltzeko" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Baimendu loturak" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Baimendu erabiltzaileak loturen bidez fitxategiak publikoki elkarbanatzen" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Baimendu igoera publikoak" -#: templates/admin.php:144 +#: templates/admin.php:187 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:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Baimendu birpartekatzea" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Baimendu erabiltzaileak haiekin elkarbanatutako fitxategiak berriz ere elkarbanatzen" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Baimendu erabiltzaileak edonorekin elkarbanatzen" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin elkarbanatzen" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Baimendu posta bidezko jakinarazpenak" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "Baimendu erabiltzailea posta bidezko jakinarazpenak bidaltzen partekatutako fitxategietarako" + +#: templates/admin.php:221 msgid "Security" msgstr "Segurtasuna" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Behartu HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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:191 +#: templates/admin.php:242 #, 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:203 +#: templates/admin.php:254 msgid "Log" msgstr "Egunkaria" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Erregistro maila" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Gehiago" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Gutxiago" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Bertsioa" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "helbidea erabili zure fitxategiak WebDAV bidez eskuratzeko" +"Use this address to access your Files via " +"WebDAV" +msgstr "helbidea erabili zure fitxategiak WebDAV bidez eskuratzeko" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Enkriptazioa" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "Enkriptazio aplikazioa ez dago jada gaiturik, mesedez desenkriptatu zure fitxategi guztiak." -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" -msgstr "" +msgstr "Saioa hasteko pasahitza" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" -msgstr "" +msgstr "Desenkripattu fitxategi guztiak" #: templates/users.php:21 msgid "Login Name" @@ -574,6 +638,10 @@ msgstr "berreskuratze pasahitza idatzi pasahitz aldaketan erabiltzaileen fitxate msgid "Default Storage" msgstr "Lehenetsitako Biltegiratzea" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "Mesedez sartu biltegiratze kouta (adb: \"512 MB\" edo \"12 GB\")" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Mugarik gabe" @@ -591,8 +659,8 @@ msgid "Storage" msgstr "Biltegiratzea" #: templates/users.php:108 -msgid "change display name" -msgstr "aldatu bistaratze izena" +msgid "change full name" +msgstr "aldatu izena" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 7712a3e1d1820702340fc20e5949033305ab2338..017372efcdaa01a1c6b5c00122dd9500ab4a4bd6 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,314 +26,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "Zerbitzariaren konfigurazioa ezabatzeak huts egin du" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Konfigurazioa egokia da eta konexioa ezarri daiteke!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Konfigurazioa ongi dago, baina Bind-ek huts egin du. Mesedez egiaztatu zerbitzariaren ezarpenak eta kredentzialak." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "Konfigurazioa ez dago ongi. Mesedez ikusi ownCloud-en egunerokoa informazio gehiago eskuratzeko." +msgstr "Konfigurazioa ez dago ongi. Mesedez ikusi egunerokoak (log) informazio gehiago eskuratzeko." + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "Ez da ekintzarik zehaztu" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "Ez da konfiguraziorik zehaztu" -#: js/settings.js:66 +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "Ez da daturik zehaztu" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "Ezin izan da %s konfigurazioa ezarri" + +#: js/settings.js:67 msgid "Deletion failed" msgstr "Ezabaketak huts egin du" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "oraintsuko zerbitzariaren konfigurazioaren ezarpenen ardura hartu?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Mantendu ezarpenak?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Ezin da zerbitzariaren konfigurazioa gehitu" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Arrakasta" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Errorea" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "Konfigurazioa ongi dago" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "Konfigurazioa ez dago ongi" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "Konfigurazioa osatu gabe dago" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Hautatu taldeak" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "Hautatu objektu klaseak" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "Hautatu atributuak" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Konexio froga ongi burutu da" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Konexio frogak huts egin du" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Ziur zaude Zerbitzariaren Konfigurazioa ezabatu nahi duzula?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Baieztatu Ezabatzea" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "Talde %s aurkitu da" +msgstr[1] "%s talde aurkitu dira" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "Erabiltzaile %s aurkitu da" +msgstr[1] "%s erabiltzaile aurkitu dira" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "Baliogabeko hostalaria" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "Ezin izan da nahi zen ezaugarria aurkitu" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Gorde" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Egiaztatu Konfigurazioa" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Laguntza" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "Mugatu sarrera baldintza hauek betetzen dituzten %s taldetara:" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "bakarrik objektu klase hauetakoak:" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "bakarrik talde hauetakoak:" + +#: 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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Abisua: PHPk behar duen LDAP modulua ez dago instalaturik, motorrak ez du funtzionatuko. Mesedez eskatu zure sistema kudeatzaileari instala dezan." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "Iragazkiak zehazten du ze LDAP taldek izango duten sarrera %s instantziara:" -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Zerbitzariaren konfigurazioa" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "talde aurkituta" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "Sarrera izen gisa erabiliko den atributua:" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "LDAP Erabiltzaile izena:" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "LDAP Eposta helbidea:" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "Bestelako atributuak:" + +#: 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 "Gehitu Zerbitzariaren Konfigurazioa" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Hostalaria" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Protokoloa ez da beharrezkoa, SSL behar baldin ez baduzu. Honela bada hasi ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Oinarrizko DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "DN Oinarri bat lerroko" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Erabiltzaile eta taldeentzako Oinarrizko DN zehaztu dezakezu Aurreratu fitxan" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Portua" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "Erabiltzaile DN" -#: templates/settings.php:46 +#: 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 "Lotura egingo den bezero erabiltzailearen DNa, adb. uid=agent,dc=example,dc=com. Sarrera anonimoak gaitzeko utzi DN eta Pasahitza hutsik." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Pasahitza" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Sarrera anonimoak gaitzeko utzi DN eta Pasahitza hutsik." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Erabiltzaileen saioa hasteko iragazkia" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "DN Oinarri bat lerroko" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Erabiltzaile eta taldeentzako Oinarrizko DN zehaztu dezakezu Aurreratu fitxan" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "Mugatu sarrera hurrengo baldintzak betetzen duten %s erabiltzaileei:" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "Iragazkiak zehazten du ze LDAP erabiltzailek izango duten sarrera %s instantziara:" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Erabiltzaile zerrendaren Iragazkia" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "erabiltzaile aurkituta" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Atzera" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Taldeen iragazkia" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Jarraitu" -#: templates/settings.php:62 +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Abisua: PHPk behar duen LDAP modulua ez dago instalaturik, motorrak ez du funtzionatuko. Mesedez eskatu zure sistema kudeatzaileari instala dezan." + +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Konexio Ezarpenak" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Konfigurazio Aktiboa" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Markatuta ez dagoenean, konfigurazio hau ez da kontutan hartuko." -#: templates/settings.php:69 -msgid "Port" -msgstr "Portua" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Babeskopia (Replica) Ostalaria" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Eman babeskopia ostalari gehigarri bat. LDAP/AD zerbitzari nagusiaren replica bat izan behar da." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Babeskopia (Replica) Ataka" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Desgaitu Zerbitzari Nagusia" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." -msgstr "" +msgstr "Konektatu bakarrik erreplika zerbitzarira" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Erabili TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Ez erabili LDAPS konexioetarako, huts egingo du." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Maiuskulak eta minuskulak ezberditzen ez dituen LDAP zerbitzaria (windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Ezgaitu SSL ziurtagirien egiaztapena." -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Katxearen Bizi-Iraupena" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "segundutan. Aldaketak katxea husten du." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Karpetaren Ezarpenak" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Erabiltzaileen bistaratzeko izena duen eremua" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "Erabiltzailearen bistaratze izena sortzeko erabiliko den LDAP atributua." -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Oinarrizko Erabiltzaile Zuhaitza" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "Erabiltzaile DN Oinarri bat lerroko" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "Erabili Bilaketa Atributuak " -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Aukerakoa; atributu bat lerro bakoitzeko" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Taldeen bistaratzeko izena duen eremua" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "Taldearen bistaratze izena sortzeko erabiliko den LDAP atributua." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Oinarrizko Talde Zuhaitza" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "Talde DN Oinarri bat lerroko" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Taldekatu Bilaketa Atributuak " -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Talde-Kide elkarketak" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Atributu Bereziak" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Kuota Eremua" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Kuota Lehenetsia" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "bytetan" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "Eposta eremua" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "Erabiltzailearen Karpeta Nagusia Izendatzeko Patroia" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Utzi hutsik erabiltzaile izenarako (lehentsia). Bestela zehaztu LDAP/AD atributua." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "Barneko erabiltzaile izena" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -349,15 +460,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" -msgstr "" +msgstr "Baliogabeko Erabiltzaile Izen atributua" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" -msgstr "" +msgstr "Gainidatzi UUID antzematea" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -368,15 +479,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "Erabiltzaileentzako UUID atributuak:" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "Taldeentzako UUID atributuak:" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -390,18 +505,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Egiaztatu Konfigurazioa" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Laguntza" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 971a51aa87d4922df501a2467e3e5d5421d0bf24..0aa0b374c61dacb35d044859c8ab2dcdc2485e41 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -18,14 +18,15 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s به اشتراک گذاشته شده است »%s« توسط شما" -#: ajax/share.php:227 -msgid "group" -msgstr "گروه" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -52,45 +53,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "نوع دسته بندی ارائه نشده است." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "آیا گروه دیگری برای افزودن ندارید" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "این دسته هم اکنون وجود دارد: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "نوع شی ارائه نشده است." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "شناسه %s ارائه نشده است." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "خطای اضافه کردن %s به علاقه مندی ها." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "هیج دسته ای برای پاک شدن انتخاب نشده است" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "خطای پاک کردن %s از علاقه مندی ها." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -187,55 +149,55 @@ msgstr "نوامبر" msgid "December" msgstr "دسامبر" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "ثانیه‌ها پیش" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "امروز" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "دیروز" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "ماه قبل" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "ماه‌های قبل" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "سال قبل" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "سال‌های قبل" @@ -302,155 +264,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "نوع شی تعیین نشده است." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "خطا" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "نام برنامه تعیین نشده است." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "پرونده { پرونده} درخواست شده نصب نشده است !" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "اشتراک گذاشته شده" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "اشتراک‌گذاری" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "خطا" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "خطا درحال به اشتراک گذاشتن" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "خطا درحال لغو اشتراک" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "خطا در حال تغییر مجوز" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "به اشتراک گذاشته شده با شما و گروه {گروه} توسط {دارنده}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "به اشتراک گذاشته شده با شما توسط { دارنده}" -#: js/share.js:183 -msgid "Share with" -msgstr "به اشتراک گذاشتن با" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "به اشتراک گذاشتن با پیوند" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "نگهداری کردن رمز عبور" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "گذرواژه" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "اجازه آپلود عمومی" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "پیوند ایمیل برای شخص." -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "ارسال" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "تنظیم تاریخ انقضا" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "تاریخ انقضا" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "از طریق ایمیل به اشتراک بگذارید :" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "کسی یافت نشد" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "گروه" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "اشتراک گذاری مجدد مجاز نمی باشد" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "به اشتراک گذاشته شده در {بخش} با {کاربر}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "لغو اشتراک" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "می توان ویرایش کرد" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "کنترل دسترسی" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "ایجاد" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "به روز" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "پاک کردن" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "به اشتراک گذاشتن" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "نگهداری از رمز عبور" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "خطا در تنظیم نکردن تاریخ انقضا " -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "خطا در تنظیم تاریخ انقضا" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "درحال ارسال ..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "ایمیل ارسال شد" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "لینک تنظیم مجدد رمز عبور به ایمیل شما ارسال شده است.
    اگر آن رادر یک زمان مشخصی دریافت نکرده اید، لطفا هرزنامه/ پوشه های ناخواسته را بررسی کنید.
    در صورت نبودن از مدیر خود بپرسید." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "درخواست رد شده است !
    آیا مطمئن هستید که ایمیل/ نام کاربری شما صحیح میباشد ؟" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "شما یک نامه الکترونیکی حاوی یک لینک جهت بازسازی گذرواژه دریافت خواهید کرد." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "نام کاربری" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -499,13 +489,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "فایل های شما رمزگذاری شده اند. اگر شما کلید بازیابی را فعال نکرده اید، پس از راه اندازی مجدد رمزعبور هیچ راهی برای بازگشت اطلاعاتتان وجود نخواهد داشت.در صورت عدم اطمینان به انجام کار، لطفا ابتدا با مدیر خود تماس بگیرید. آیا واقعا میخواهید ادامه دهید ؟" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "بله، من اکنون میخواهم رمز عبور خود را مجددا راه اندازی کنم." -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "درخواست دوباره سازی" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "تنظیم مجدد" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -531,7 +521,7 @@ msgstr "شخصی" msgid "Users" msgstr "کاربران" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr " برنامه ها" @@ -543,6 +533,34 @@ msgstr "مدیر" 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 "اجازه دسترسی به مناطق ممنوعه را ندارید" @@ -559,108 +577,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "اینجا,⏎\n فقط به شما اجازه میدهد که بدانید %s به اشتراک گذاشته شده %s توسط شما.⏎\nمشاهده آن : %s⏎\n⏎\nبه سلامتی!" +msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "ویرایش گروه" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "افزودن" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "اخطار امنیتی" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "نسخه ی PHP شما در برابر حملات NULL Byte آسیب پذیر است.(CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "هیچ مولد تصادفی امن در دسترس نیست، لطفا فرمت PHP OpenSSL را فعال نمایید." -#: templates/installation.php:33 +#: 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:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "فایلها و فهرست های داده های شما قابل از اینترنت قابل دسترسی هستند، چونکه فایل htacces. کار نمی کند." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "لطفا یک شناسه برای مدیر بسازید" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "پیشرفته" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "پوشه اطلاعاتی" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "پایگاه داده برنامه ریزی شدند" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "استفاده خواهد شد" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "شناسه پایگاه داده" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "پسورد پایگاه داده" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "نام پایگاه داده" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "جدول پایگاه داده" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "هاست پایگاه داده" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "اتمام نصب" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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 "%s در دسترس است. برای چگونگی به روز رسانی اطلاعات بیشتر را دریافت نمایید." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "خروج" @@ -678,19 +707,27 @@ msgstr "اگر شما اخیرا رمزعبور را تغییر نداده ای msgid "Please change your password to secure your account again." msgstr "لطفا رمز عبور خود را تغییر دهید تا مجددا حساب شما در امان باشد." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "آیا گذرواژه تان را به یاد نمی آورید؟" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "بیاد آوری" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "ورود" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "ورود متناوب" @@ -698,10 +735,37 @@ msgstr "ورود متناوب" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "اینجا

    فقط به شما اجازه میدهد که بدانید %s به اشتراک گذاشته شده»%s« توسط شما.
    مشاهده آن!

    به سلامتی!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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 "به روز رسانی OwnCloud به نسخه ی %s، این عملیات ممکن است زمان بر باشد." + +#: 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/fa/files.po b/l10n/fa/files.po index b6b078cb364677190b8f0c488da46da9b4f40873..9f8d9edde2caa84842d855c7124d276d9de2e683 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -28,217 +28,283 @@ msgstr "%s نمی تواند حرکت کند - در حال حاضر پرونده msgid "Could not move %s" msgstr "%s نمی تواند حرکت کند " -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "نام پرونده نمی تواند خالی باشد." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "قادر به تنظیم پوشه آپلود نمی باشد." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "رمز نامعتبر" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "هیچ فایلی آپلود نشد.خطای ناشناس" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "هیچ خطایی نیست بارگذاری پرونده موفقیت آمیز بود" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "پرونده آپلود شده بیش ازدستور ماکزیمم_حجم فایل_برای آپلود در php.ini استفاده کرده است." -#: ajax/upload.php:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "پرونده بارگذاری شده فقط تاحدودی بارگذاری شده" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "هیچ پروندهای بارگذاری نشده" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "یک پوشه موقت گم شده" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "نوشتن بر روی دیسک سخت ناموفق بود" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "فضای کافی در دسترس نیست" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "فهرست راهنما نامعتبر می باشد." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "پرونده‌ها" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "فضای کافی در دسترس نیست" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "بار گذاری لغو شد" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "آپلودکردن پرونده در حال پیشرفت است. در صورت خروج از صفحه آپلود لغو میگردد. " -#: js/file-upload.js:520 -msgid "URL cannot be empty." -msgstr "URL نمی تواند خالی باشد." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "نام پوشه نامعتبر است. استفاده از 'به اشتراک گذاشته شده' متعلق به ownCloud میباشد." +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "خطا" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{نام _جدید} در حال حاضر وجود دارد." -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "اشتراک‌گذاری" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "حذف قطعی" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "تغییرنام" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "در انتظار" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{نام _جدید} در حال حاضر وجود دارد." - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "جایگزین" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "پیشنهاد نام" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "لغو" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "{نام_جدید} با { نام_قدیمی} جایگزین شد." -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "بازگشت" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' یک نام پرونده نامعتبر است." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "نام پرونده نمی تواند خالی باشد." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "نام نامعتبر ، '\\', '/', '<', '>', ':', '\"', '|', '?' و '*' مجاز نمی باشند." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "فضای ذخیره ی شما کاملا پر است، بیش از این فایلها بهنگام یا همگام سازی نمی توانند بشوند!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "فضای ذخیره ی شما تقریبا پر است ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "دانلود شما در حال آماده شدن است. در صورتیکه پرونده ها بزرگ باشند ممکن است مدتی طول بکشد." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "خطا" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "نام" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "اندازه" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "تاریخ" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s نمیتواند تغییر نام دهد." -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "بارگزاری" @@ -274,65 +340,69 @@ msgstr "حداکثرمقدار برای بار گزاری پرونده های ف msgid "Save" msgstr "ذخیره" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "جدید" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "فایل متنی" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "پوشه جدید" + +#: templates/index.php:10 msgid "Folder" msgstr "پوشه" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "از پیوند" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "فایل های حذف شده" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "متوقف کردن بار گذاری" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "شما اجازه ی نوشتن در اینجا را ندارید" +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "اینجا هیچ چیز نیست." -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "دانلود" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "لغو اشتراک" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "حذف" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "سایز فایل برای آپلود زیاد است(م.تنظیمات در php.ini)" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "پرونده ها در حال بازرسی هستند لطفا صبر کنید" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "بازرسی کنونی" diff --git a/l10n/fa/files_encryption.po b/l10n/fa/files_encryption.po index 4e22a4b067c3dd3ee1a18c2d75baeffd53af4d5c..302940faf343955ae656a6d844855c12e8c6bb92 100644 --- a/l10n/fa/files_encryption.po +++ b/l10n/fa/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:09+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" @@ -44,75 +44,96 @@ msgstr "رمزعبور با موفقیت تغییر یافت." msgid "Could not change the password. Maybe the old password was not correct." msgstr "رمزعبور را نمیتواند تغییر دهد. شاید رمزعبورقدیمی صحیح نمی باشد." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "رمزعبور کلید خصوصی با موفقیت به روز شد." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "رمزعبور کلید خصوصی را نمی تواند به روز کند. شاید رمزعبور قدیمی صحیح نمی باشد." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "کلید خصوصی شما معتبر نمی باشد! ظاهرا رمزعبور شما بیرون از سیستم ownCloud تغییر یافته است( به عنوان مثال پوشه سازمان شما ). شما میتوانید رمزعبور کلید خصوصی خود را در تنظیمات شخصیتان به روز کنید تا بتوانید به فایل های رمزگذاری شده خود را دسترسی داشته باشید." +"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:41 +#: hooks/hooks.php:59 msgid "Missing requirements." msgstr "نیازمندی های گمشده" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "در حال ذخیره سازی..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "کلید خصوصی شما معتبر نیست! شاید رمزعبوراز بیرون تغییر یافته است." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "شما میتوانید کلید خصوصی خود را باز نمایید." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "تنظیمات شخصی" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "رمزگذاری" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "فعال کردن کلید بازیابی(اجازه بازیابی فایل های کاربران در صورت از دست دادن رمزعبور):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "رمزعبور کلید بازیابی" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "غیرفعال شده" @@ -120,58 +141,62 @@ msgstr "غیرفعال شده" msgid "Change recovery key password:" msgstr "تغییر رمزعبور کلید بازیابی:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "رمزعبور قدیمی کلید بازیابی " -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "رمزعبور کلید خصوصی شما با رمزعبور شما یکسان نیست :" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "رمزعبور قدیمی کلید خصوصی خود را با رمزعبور فعلی تنظیم نمایید." -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "رمزعبور قدیمی" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "رمزعبور فعلی" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "به روز رسانی رمزعبور کلید خصوصی" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "فعال سازی بازیابی رمزعبور:" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "تنظیمات بازیابی فایل به روز شده است." -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "به روز رسانی بازیابی فایل را نمی تواند انجام دهد." diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index 28f6d3cb82a8616d45f3c0af8f849bc32efc9c3e..dc90b713f0a9124aa12a27a52d0104b4b2073afc 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "مجوز دسترسی صادر شد" @@ -26,7 +26,7 @@ msgstr "مجوز دسترسی صادر شد" msgid "Error configuring Dropbox storage" msgstr "خطا به هنگام تنظیم فضای دراپ باکس" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr " مجوز اعطا دسترسی" @@ -34,24 +34,24 @@ msgstr " مجوز اعطا دسترسی" msgid "Please provide a valid Dropbox app key and secret." msgstr "لطفا یک کلید و کد امنیتی صحیح دراپ باکس وارد کنید." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "خطا به هنگام تنظیم فضای Google Drive" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "خطا: \"smbclient\" نصب نشده است. نصب و راه اندازی سهام CIFS/SMB امکان پذیر نمیباشد. لطفا از مدیریت سازمان خود برای راه اندازی آن درخواست نمایید." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "خطا: پشتیبانی FTP در PHP فعال نمی باشد یا نصب نشده است. نصب و راه اندازی از سهم های FTP امکان پذیر نمی باشد. لطفا از مدیر سیستم خود برای راه اندازی آن درخواست\nکنید." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 14a3c4edfa7251c355aa1dfc224b8d3efb227092..f14d78619ae4dcb21e5afdbe16a557545fa5a2cc 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: 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:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "گذرواژه" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "ثبت" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -54,28 +54,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%sپوشه %s را با شما به اشتراک گذاشت" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%sفایل %s را با شما به اشتراک گذاشت" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "دانلود" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "بارگزاری" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "متوقف کردن بار گذاری" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "هیچگونه پیش نمایشی موجود نیست" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index b7425ae04baa4d38799800679999bf5754f49bf7..f986d7c13c2b39f8ed14b87a5ce18859f966d004 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -27,53 +27,31 @@ msgstr "%s را نمی توان برای همیشه حذف کرد" msgid "Couldn't restore %s" msgstr "%s را نمی توان بازگرداند" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "انجام عمل بازگرداندن" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "خطا" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "حذف فایل برای همیشه" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "حذف قطعی" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "نام" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "حذف شده" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "هیچ چیزی اینجا نیست. سطل زباله ی شما خالی است." -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "نام" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "بازیابی" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "حذف شده" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "حذف" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index e395df54b9c3498bfa6955ab940c41e1c8d81461..d33ebcdc1f83110a5b28c4b218f96c43d30f1da1 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -18,314 +18,313 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "راه‌نما" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "شخصی" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "تنظیمات" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "کاربران" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "مدیر" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "سرویس های تحت وب در کنترل شما" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "دانلود به صورت فشرده غیر فعال است" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "فایل ها باید به صورت یکی یکی دانلود شوند" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "بازگشت به فایل ها" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "فایل های انتخاب شده بزرگتر از آن هستند که بتوان یک فایل فشرده تولید کرد" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "برنامه فعال نشده است" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "خطا در اعتبار سنجی" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "رمز منقضی شده است. لطفا دوباره صفحه را بارگذاری نمایید." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "پرونده‌ها" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "متن" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "تصاویر" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s نام کاربری پایگاه داده را وارد نمایید." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s نام پایگاه داده را وارد نمایید." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s شما نباید از نقطه در نام پایگاه داده استفاده نمایید." -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "نام کاربری و / یا رمزعبور MS SQL معتبر نیست: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "شما نیاز به وارد کردن یک حساب کاربری موجود یا حساب مدیریتی دارید." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "نام کاربری و / یا رمزعبور MySQL معتبر نیست." -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "خطای پایگاه داده: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "دستور متخلف عبارت است از: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "کاربرMySQL '%s'@'localhost' درحال حاضر موجود است." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "این کاربر را از MySQL حذف نمایید." -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "کاربر'%s'@'%%' MySQL در حال حاضر موجود است." -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "این کاربر را از MySQL حذف نمایید." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "ارتباط اراکل نمیتواند برقرار باشد." -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "نام کاربری و / یا رمزعبور اراکل معتبر نیست." -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "دستور متخلف عبارت است از: \"%s\"، نام: \"%s\"، رمزعبور:\"%s\"" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL نام کاربری و / یا رمزعبور معتبر نیست." -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "یک نام کاربری برای مدیر تنظیم نمایید." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "یک رمزعبور برای مدیر تنظیم نمایید." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "لطفاً دوباره راهنمای نصبرا بررسی کنید." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "دسته بندی %s یافت نشد" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "ثانیه‌ها پیش" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "امروز" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "دیروز" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "ماه قبل" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "سال قبل" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "سال‌های قبل" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "دسته بندی %s یافت نشد" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 7a3f31a719578a9029284557c81befb2c732819a..f24912b2a71e93d54cfc9efa2f0a4f227b40c2cb 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+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" @@ -28,12 +28,12 @@ msgid "Authentication error" msgstr "خطا در اعتبار سنجی" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "نام نمایش شما تغییر یافته است." +msgid "Your full name has been changed." +msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "امکان تغییر نام نمایشی شما وجود ندارد" +msgid "Unable to change full name" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -118,11 +118,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "بهنگام شده به {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "غیرفعال" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "فعال" @@ -130,31 +130,31 @@ msgstr "فعال" msgid "Please wait...." msgstr "لطفا صبر کنید ..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "در حال بروز رسانی..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "خطا در هنگام بهنگام سازی برنامه" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "خطا" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "به روز رسانی" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "بروز رسانی انجام شد" @@ -162,7 +162,7 @@ msgstr "بروز رسانی انجام شد" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -182,44 +182,75 @@ msgstr "بازگشت" msgid "Unable to remove user" msgstr "حذف کاربر امکان پذیر نیست" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "گروه ها" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "گروه مدیران" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "حذف" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "افزودن گروه" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "نام کاربری صحیح باید وارد شود" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "خطا در ایجاد کاربر" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "رمز عبور صحیح باید وارد شود" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "اخطار امنیتی" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -228,48 +259,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "هشدار راه اندازی" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "ماژول 'fileinfo' از کار افتاده" -#: templates/admin.php:47 +#: templates/admin.php:68 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:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "زبان محلی کار نمی کند." -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "اتصال اینترنت کار نمی کند" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -278,110 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "زمانبند" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "اجرای یک وظیفه با هر بار بارگذاری صفحه" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "اشتراک گذاری" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "فعال کردن API اشتراک گذاری" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "اجازه ی برنامه ها برای استفاده از API اشتراک گذاری" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "اجازه ی لینک ها" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "اجازه دادن به کاربران برای اشتراک گذاری آیتم ها با عموم از طریق پیوند ها" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "مجوز اشتراک گذاری مجدد" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "اجازه به کاربران برای اشتراک گذاری دوباره با آنها" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "اجازه به کابران برای اشتراک گذاری با همه" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "اجازه به کاربران برای اشتراک گذاری ، تنها با دیگر کابران گروه خودشان" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "امنیت" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "وادار کردن HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "کارنامه" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "سطح ورود" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "بیش‌تر" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "کم‌تر" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "نسخه" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "استفاده ابن آدرس برای دسترسی فایل های شما از طریق WebDAV " +"Use this address to access your Files via " +"WebDAV" +msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "رمزگذاری" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -573,6 +636,10 @@ msgstr "در حین تغییر رمز عبور به منظور بازیابی ف msgid "Default Storage" msgstr "ذخیره سازی پیش فرض" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "نامحدود" @@ -590,8 +657,8 @@ msgid "Storage" msgstr "حافظه" #: templates/users.php:108 -msgid "change display name" -msgstr "تغییر نام نمایشی" +msgid "change full name" +msgstr "" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 9496f28720188d6dbd5f48741d9144acfd015419..d3a71506907b394a696f09be651c6609a9f88e1b 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -26,314 +26,423 @@ msgstr "عدم موفقیت در پاک کردن نگاشت." msgid "Failed to delete the server configuration" msgstr "عملیات حذف پیکربندی سرور ناموفق ماند" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "پیکربندی معتبر است و ارتباط می تواند برقرار شود" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "پیکربندی معتبراست، اما اتصال شکست خورد. لطفا تنظیمات و اعتبارهای سرور را بررسی کنید." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "آیا تنظیمات ذخیره شود ؟" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "نمی توان پیکربندی سرور را اضافه نمود" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "نگاشت پاک شده است" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "موفقیت" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "خطا" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "تست اتصال با موفقیت انجام گردید" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "تست اتصال ناموفق بود" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "آیا واقعا می خواهید پیکربندی کنونی سرور را حذف کنید؟" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "تایید حذف" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" msgstr "" -#: templates/settings.php:12 +#: lib/wizard.php:951 +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 "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "پیکربندی سرور" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +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/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "میزبانی" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "پایه DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "یک پایه DN در هر خط" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "شما می توانید پایه DN را برای کاربران و گروه ها در زبانه Advanced مشخص کنید." +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "درگاه" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "کاربر DN" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "گذرواژه" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "برای دسترسی ناشناس، DN را رها نموده و رمزعبور را خالی بگذارید." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "فیلتر ورودی کاربر" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "یک پایه DN در هر خط" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "شما می توانید پایه DN را برای کاربران و گروه ها در زبانه Advanced مشخص کنید." + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "بازگشت" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "فیلتر گروه" +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "تنظیمات اتصال" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "پیکربندی فعال" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "زمانیکه انتخاب نشود، این پیکربندی نادیده گرفته خواهد شد." -#: templates/settings.php:69 -msgid "Port" -msgstr "درگاه" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "پشتیبان گیری (بدل) میزبان" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "پشتیبان گیری (بدل) پورت" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "غیر فعال کردن سرور اصلی" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "استفاده ازTLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "علاوه بر این برای اتصالات LDAPS از آن استفاده نکنید، با شکست مواجه خواهد شد." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "غیر حساس به بزرگی و کوچکی حروف LDAP سرور (ویندوز)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "غیرفعال کردن اعتبار گواهی نامه SSL ." -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "تنظیمات پوشه" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "فیلد نام کاربر" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "کاربر درخت پایه" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "یک کاربر پایه DN در هر خط" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "ویژگی های جستجوی کاربر" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "اختیاری؛ یک ویژگی در هر خط" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "فیلد نام گروه" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "گروه درخت پایه " -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "یک گروه پایه DN در هر خط" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "گروه صفات جستجو" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "انجمن گروه کاربران" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "ویژگی های مخصوص" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "سهمیه بندی انجام نشد." -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "سهمیه بندی پیش فرض" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "در بایت" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "ایمیل ارسال نشد." -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "قانون نامگذاری پوشه خانه کاربر" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "خالی گذاشتن برای نام کاربری (پیش فرض). در غیر این صورت، تعیین یک ویژگی LDAP/AD." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "نام کاربری داخلی" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -349,15 +458,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "ویژگی نام کاربری داخلی:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "نادیده گرفتن تشخیص UUID " -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -368,15 +477,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "صفت UUID:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "نام کاربری - نگاشت کاربر LDAP " -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -390,18 +503,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "پاک کردن نام کاربری- LDAP نگاشت کاربر " -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "پاک کردن نام گروه -LDAP گروه نقشه برداری" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "امتحان پیکربندی" - -#: templates/settings.php:108 -msgid "Help" -msgstr "راه‌نما" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 2a2872e255064f2b9055f652039ca48935301792..c70d3fda2c8bfe821c811a533bd4a5960de0da87 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-21 10:30+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -19,14 +19,15 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s jakoi kohteen »%s« kanssasi" -#: ajax/share.php:227 -msgid "group" -msgstr "ryhmä" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Sähköpostin lähetys seuraaville käyttäjille epäonnistui: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -53,48 +54,9 @@ msgstr "Tiedostojen välimuisti päivitetty" msgid "... %d%% done ..." msgstr "... %d%% valmis ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Luokan tyyppiä ei määritelty." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Ei lisättävää luokkaa?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Luokka on jo olemassa: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Virhe lisätessä kohdetta %s suosikkeihin." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Luokkia ei valittu poistettavaksi." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Virhe poistaessa kohdetta %s suosikeista." - #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "Kuvaa tai tiedostoa ei määritelty" #: avatar/controller.php:81 msgid "Unknown filetype" @@ -188,59 +150,59 @@ msgstr "marraskuu" msgid "December" msgstr "joulukuu" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Asetukset" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuutti sitten" msgstr[1] "%n minuuttia sitten" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tunti sitten" msgstr[1] "%n tuntia sitten" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "tänään" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "eilen" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n päivä sitten" msgstr[1] "%n päivää sitten" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "viime kuussa" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuukausi sitten" msgstr[1] "%n kuukautta sitten" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "viime vuonna" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "vuotta sitten" @@ -266,27 +228,27 @@ msgstr "Ok" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Virhe ladatessa viestipohjaa: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{count} tiedoston ristiriita" +msgstr[1] "{count} tiedoston ristiriita" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Yhden tiedoston ristiriita" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Mitkä tiedostot haluat säilyttää?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Jos valitset kummatkin versiot, kopioidun tiedoston nimeen lisätään numero." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -308,155 +270,183 @@ msgstr "({count} valittu)" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Virhe" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Sovelluksen nimeä ei ole määritelty." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Vaadittua tiedostoa {file} ei ole asennettu!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Jaettu" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Jaa" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Virhe" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Virhe jaettaessa" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Virhe jakoa peruttaessa" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Virhe oikeuksia muuttaessa" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Jaettu sinun ja ryhmän {group} kanssa käyttäjän {owner} toimesta" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Jaettu kanssasi käyttäjän {owner} toimesta" -#: js/share.js:183 -msgid "Share with" -msgstr "Jaa" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Jaa käyttäjän tai ryhmän kanssa…" -#: js/share.js:188 -msgid "Share with link" -msgstr "Jaa linkillä" +#: js/share.js:219 +msgid "Share link" +msgstr "Jaa linkki" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Suojaa salasanalla" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Salasana" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Salli julkinen lähetys" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Lähetä linkki sähköpostitse" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Lähetä" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Aseta päättymispäivä" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Päättymispäivä" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Jaa sähköpostilla:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Henkilöitä ei löytynyt" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "ryhmä" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Jakaminen uudelleen ei ole salittu" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "{item} on jaettu {user} kanssa" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Peru jakaminen" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "ilmoita sähköpostitse" + +#: js/share.js:408 msgid "can edit" msgstr "voi muokata" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "Pääsyn hallinta" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "luo" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "päivitä" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "poista" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "jaa" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Salasanasuojattu" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Virhe purettaessa eräpäivää" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Virhe päättymispäivää asettaessa" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Lähetetään..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "Sähköposti lähetetty" +#: js/share.js:769 +msgid "Warning" +msgstr "Varoitus" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Kirjoita uusi" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Poista" + +#: js/tags.js:31 +msgid "Add" +msgstr "Lisää" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Muokkaa tunnisteita" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Tunnisteita ei valittu poistettavaksi." + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "Päivitä sivu." + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Linkki salasanan nollaamiseen on lähetetty sähköpostiisi.
    Jos et saa viestiä pian, tarkista roskapostikansiosi.
    Jos et löydä viestiä roskapostinkaan seasta, ota yhteys ylläpitäjään." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Pyyntö epäonnistui!
    Olihan sähköpostiosoitteesi/käyttäjätunnuksesi oikein?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Saat sähköpostitse linkin nollataksesi salasanan." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Käyttäjätunnus" -#: lostpassword/templates/lostpassword.php:22 +#: 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 "" +msgstr "Tiedostosi on salattu. Jos et ole ottanut palautusavainta käyttöön, et voi käyttää tiedostojasi enää salasanan nollauksen jälkeen. Jos et ole varma mitä tehdä, ota yhteys ylläpitoon ennen kuin jatkat. Haluatko varmasti jatkaa?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Kyllä, haluan nollata salasanani nyt" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Tilaus lähetetty" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Nollaa salasana" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -537,7 +527,7 @@ msgstr "Henkilökohtainen" msgid "Users" msgstr "Käyttäjät" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Sovellukset" @@ -549,6 +539,34 @@ msgstr "Ylläpitäjä" msgid "Help" msgstr "Ohje" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "Virhe tunnisteita ladattaessa" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "Tunniste on jo olemassa" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "Virhe tunnisteita poistaessa" + +#: 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 "Pääsy estetty" @@ -565,108 +583,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hei!\n\n%s jakoi kohteen %s kanssasi.\nKatso se tästä: %s\n\nNäkemiin!" +msgstr "Hei sinä!\n\n%s jakoi kohteen %s kanssasi.\nTutustu siihen: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Muokkaa luokkia" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "Jakaminen päättyy %s." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Lisää" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Turvallisuusvaroitus" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "PHP-asennuksesi on haavoittuvainen NULL Byte -hyökkäykselle (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Päivitä PHP-asennus varmistaaksesi, että %s on turvallinen käyttää." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Turvallista satunnaislukugeneraattoria ei ole käytettävissä, ota käyttöön PHP:n OpenSSL-laajennus" -#: templates/installation.php:33 +#: 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:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Datakansiosi ja tiedostosi ovat mitä luultavimmin muiden saavutettavissa internetistä, koska .htaccess-tiedosto ei toimi." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "Lisätietoja palvelimen asetuksien määrittämisestä on saatavilla dokumentaatiosta." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Luo ylläpitäjän tunnus" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Lisäasetukset" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Datakansio" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Muokkaa tietokantaa" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "käytetään" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Tietokannan käyttäjä" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Tietokannan salasana" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Tietokannan nimi" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Tietokannan taulukkotila" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Tietokantapalvelin" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Viimeistele asennus" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Valmistellaan…" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "Tämä sovellus vaatii toimiakseen JavaScriptin käyttöä. Ota JavaScript käyttöön ja päivitä tämä käyttöliittymä." + +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s on saatavilla. Lue lisätietoja, miten päivitys asennetaan." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Kirjaudu ulos" @@ -684,19 +713,27 @@ msgstr "Jos et vaihtanut salasanaasi äskettäin, tilisi saattaa olla murrettu." msgid "Please change your password to secure your account again." msgstr "Vaihda salasanasi suojataksesi tilisi uudelleen." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "Palvelimen puoleinen tunnistautuminen epäonnistui!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Ota yhteys ylläpitäjään." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Unohditko salasanasi?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "muista" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Kirjaudu sisään" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Vaihtoehtoiset kirjautumiset" @@ -704,10 +741,37 @@ msgstr "Vaihtoehtoiset kirjautumiset" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Hei!

    %s jakoi kohteen »%s« kanssasi.
    Katso se tästä!

    Näkemiin!" +"href=\"%s\">View it!

    " +msgstr "Hei sinä!

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

    " + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "Tämä ownCloud-asennus on parhaillaan single user -tilassa." + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "Se tarkoittaa, että vain ylläpitäjät voivat nyt käyttää tätä ownCloudia." -#: templates/update.php:3 +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "Ota yhteys järjestelmän ylläpitäjään, jos tämä viesti ilmenee uudelleen tai odottamatta." + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "Kiitos kärsivällisyydestäsi." + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "Päivitetään ownCloud versioon %s, tämä saattaa kestää hetken." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "Tätä ownCloud-asennusta päivitetään parhaillaan, siinä saattaa kestää hetki." + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "Päivitä tämä sivu hetken kuluttua jatkaaksesi ownCloudin käyttämistä." diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 3e4e67e31d9c1c13f6223f9739dceb0e6a381dc6..87ec5b64f6d644721d7e1da2c5b08a11ce70227a 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -4,12 +4,13 @@ # # Translators: # Jiri Grönroos , 2013 +# ioxo , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:51-0400\n" -"PO-Revision-Date: 2013-09-21 10:30+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -28,62 +29,107 @@ msgstr "Kohteen %s siirto ei onnistunut - Tiedosto samalla nimellä on jo olemas msgid "Could not move %s" msgstr "Kohteen %s siirto ei onnistunut" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Tiedoston nimi ei voi olla tyhjä." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "Tiedoston nimessä ei saa olla merkkiä \"/\". Valitse toinen nimi." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "Nimi %s on jo käytössä kansiossa %s. Valitse toinen nimi." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "Virheellinen lähde" + +#: ajax/newfile.php:86 +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:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Virhe ladatessa kohdetta %s sijaintiin %s" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Virhe tiedostoa luotaessa" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "Kansion nimi ei voi olla tyhjä." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "Kansion nimessä ei saa olla merkkiä \"/\". Valitse toinen nimi." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Virhe kansiota luotaessa" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Tiedostoa ei lähetetty. Tuntematon virhe" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Ei virheitä, tiedosto lähetettiin onnistuneesti" -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Ladattavan tiedoston maksimikoko ylittää MAX_FILE_SIZE dirketiivin, joka on määritelty HTML-lomakkeessa" +msgstr "Lähetettävän tiedoston enimmäiskoko ylittää HTML-lomakkeessa määritellyn MAX_FILE_SIZE-säännön" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Tiedoston lähetys onnistui vain osittain" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Yhtäkään tiedostoa ei lähetetty" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Tilapäiskansio puuttuu" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Levylle kirjoitus epäonnistui" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Tallennustilaa ei ole riittävästi käytettävissä" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Lähetys epäonnistui. Lähettävää tiedostoa ei löydetty." -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Virheellinen kansio." @@ -91,157 +137,178 @@ msgstr "Virheellinen kansio." msgid "Files" msgstr "Tiedostot" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Kohdetta {filename} ei voi lähettää, koska se on joko kansio tai sen koko on 0 tavua" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Tilaa ei ole riittävästi" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Lähetys peruttu." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "Tuloksien saaminen palvelimelta ei onnistunut." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "Verkko-osoite ei voi olla tyhjä" +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "Osoite ei voi olla tyhjä" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Virhe" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} on jo olemassa" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Tiedoston luominen epäonnistui" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Kansion luominen epäonnistui" -#: js/fileactions.js:119 +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Virhe noutaessa verkko-osoitetta" + +#: js/fileactions.js:125 msgid "Share" msgstr "Jaa" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Poista pysyvästi" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Nimeä uudelleen" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Odottaa" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} on jo olemassa" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "korvaa" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Tiedoston nimeäminen uudelleen epäonnistui" -#: js/filelist.js:416 -msgid "suggest name" -msgstr "ehdota nimeä" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "peru" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "kumoa" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Virhe tiedostoa poistaessa." + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kansio" msgstr[1] "%n kansiota" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n tiedosto" msgstr[1] "%n tiedostoa" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} ja {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Lähetetään %n tiedosto" msgstr[1] "Lähetetään %n tiedostoa" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' on virheellinen nimi tiedostolle." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Tiedoston nimi ei voi olla tyhjä." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Tallennustila on loppu, tiedostoja ei voi enää päivittää tai synkronoida!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Tallennustila on melkein loppu ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." -msgstr "" +msgstr "Salaus poistettiin käytöstä, mutta tiedostosi ovat edelleen salattuina. Siirry henkilökohtaisiin asetuksiin avataksesi tiedostojesi salauksen." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Lataustasi valmistellaan. Tämä saattaa kestää hetken, jos tiedostot ovat suuria kooltaan." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "Virhe tiedostoa siirrettäessä" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Virhe" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Nimi" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Koko" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Muokattu" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Virheellinen kansion nimi. 'Shared':n käyttö on varattu." + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "kohteen %s nimeäminen uudelleen epäonnistui" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Lähetä" @@ -277,65 +344,69 @@ msgstr "ZIP-tiedostojen enimmäiskoko" msgid "Save" msgstr "Tallenna" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Uusi" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "Uusi tekstitiedosto" + +#: templates/index.php:8 msgid "Text file" msgstr "Tekstitiedosto" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Uusi kansio" + +#: templates/index.php:10 msgid "Folder" msgstr "Kansio" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Linkistä" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Poistetut tiedostot" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Tunnuksellasi ei ole kirjoitusoikeuksia tänne." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "Käyttöoikeutesi eivät riitä tiedostojen lähettämiseen tai kansioiden luomiseen tähän sijaintiin" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Täällä ei ole mitään. Lähetä tänne jotakin!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Lataa" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Peru jakaminen" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Poista" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Lähetettävä tiedosto on liian suuri" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Tiedostoja tarkistetaan, odota hetki." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Tämänhetkinen tutkinta" diff --git a/l10n/fi_FI/files_encryption.po b/l10n/fi_FI/files_encryption.po index b3dea67b9279f7e211e9a3da8bda5db413a51882..e4e35b2150e26a9455bb2083943ac5fcb11bf568 100644 --- a/l10n/fi_FI/files_encryption.po +++ b/l10n/fi_FI/files_encryption.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-10 10:41-0400\n" -"PO-Revision-Date: 2013-09-09 19:20+0000\n" -"Last-Translator: muro \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:09+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" @@ -45,75 +45,96 @@ msgstr "Salasana vaihdettiin onnistuneesti." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Salasanan vaihto epäonnistui. Kenties vanha salasana oli väärin." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:51 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:52 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:250 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "Seuraavat käyttäjät eivät ole määrittäneet salausta:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Tallennetaan..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "henkilökohtaiset asetukset" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Salaus" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Palautusavaimen salasana" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Käytössä" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Ei käytössä" @@ -121,58 +142,62 @@ msgstr "Ei käytössä" msgid "Change recovery key password:" msgstr "Vaihda palautusavaimen salasana:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Vanha palautusavaimen salasana" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Uusi palautusavaimen salasana" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Vaihda salasana" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Vanha kirjautumis-salasana" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Nykyinen kirjautumis-salasana" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Ota salasanan palautus käyttöön:" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index cc90b8dc79b797678f6661629908c285d18cd8bf..0813c9ede073b80e0a9369c1795d4723231050b7 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Pääsy sallittu" @@ -25,7 +25,7 @@ msgstr "Pääsy sallittu" msgid "Error configuring Dropbox storage" msgstr "Virhe Dropbox levyn asetuksia tehtäessä" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Salli pääsy" @@ -33,24 +33,24 @@ msgstr "Salli pääsy" msgid "Please provide a valid Dropbox app key and secret." msgstr "Anna kelvollinen Dropbox-sovellusavain ja salainen vastaus." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Virhe Google Drive levyn asetuksia tehtäessä" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varoitus: \"smbclient\" ei ole asennettuna. CIFS-/SMB-jakojen liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää asentamaan smbclient." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Varoitus: PHP:n FTP-tuki ei ole käytössä tai sitä ei ole asennettu. FTP-jakojen liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan FTP-tuki käyttöön." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index a2ffb0fc8272e8557ec31bf7b4a1fc1686dd4804..046e8cf96021cd38dd75a89b352908380b960231 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Tämä jako on suojattu salasanalla" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Väärä salasana. Yritä uudelleen." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Salasana" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Lähetä" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Valitettavasti linkki ei vaikuta enää toimivan." @@ -54,28 +54,32 @@ msgstr "jakaminen on poistettu käytöstä" msgid "For more info, please ask the person who sent this link." msgstr "Kysy lisätietoja henkilöltä, jolta sait linkin." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s jakoi kansion %s kanssasi" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s jakoi tiedoston %s kanssasi" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Lataa" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Lähetä" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Ei esikatselua kohteelle" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Suora linkki" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 717af8af88c64322ae6a7b9c47f34ed149ab18ab..55da622da0a718e514334e246c532b7814149b5c 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-16 01:29-0400\n" -"PO-Revision-Date: 2013-08-15 09:01+0000\n" -"Last-Translator: Jiri Grönroos \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "Kohdetta %s ei voitu poistaa pysyvästi" msgid "Couldn't restore %s" msgstr "Kohteen %s palautus epäonnistui" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "suorita palautustoiminto" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Virhe" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "poista tiedosto pysyvästi" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Poista pysyvästi" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Nimi" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "Poistettu" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n kansio" -msgstr[1] "%n kansiota" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n tiedosto" -msgstr[1] "%n tiedostoa" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "palautettu" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Tyhjää täynnä! Roskakorissa ei ole mitään." -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Nimi" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Palauta" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Poistettu" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Poista" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 41e7241ad3d22d3042fe141715fc1fe7bb4e383c..fa1f6eebd027978c63802b4d6eaafd3823833cc6 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -18,318 +18,317 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Sovellusta \"%s\" ei voi asentaa, koska se ei ole yhteensopiva käytössä olevan ownCloud-version kanssa." -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "Sovelluksen nimeä ei määritelty" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Ohje" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Henkilökohtainen" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Asetukset" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Käyttäjät" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Ylläpitäjä" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Kohteen \"%s\" päivitys epäonnistui." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Omavalintaiset profiilikuvat eivät toimi salauksen kanssa vielä" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Tuntematon tiedostotyyppi" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Virheellinen kuva" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "verkkopalvelut hallinnassasi" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP-lataus on poistettu käytöstä." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Tiedostot on ladattava yksittäin." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Takaisin tiedostoihin" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Valitut tiedostot ovat liian suurikokoisia mahtuakseen zip-tiedostoon." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Lähdettä ei määritelty sovellusta asennettaessa" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" -msgstr "" +msgstr "Href-määritettä ei asetettu asennettaessa sovellusta http:n yli" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Polkua ei määritelty sovellusta asennettaessa paikallisesta tiedostosta" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Tyypin %s arkistot eivät ole tuettuja" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" -msgstr "" +msgstr "Pakettitiedoston avaaminen epäonnistui sovellusta asennettaessa" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "Sovellus ei sisällä info.xml-tiedostoa" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "Sovellusta ei voi asentaa, koska sovellus sisältää kiellettyä koodia" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Sovellusta ei voi asentaa, koska se ei ole yhteensopiva käytössä olevan ownCloud-version kanssa" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Sovelluskansio on jo olemassa" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Sovelluskansion luominen ei onnistu. Korjaa käyttöoikeudet. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Sovellusta ei ole otettu käyttöön" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Tunnistautumisvirhe" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Valtuutus vanheni. Lataa sivu uudelleen." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Tiedostot" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Teksti" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Kuvat" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s anna tietokannan käyttäjätunnus." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s anna tietokannan nimi." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s et voi käyttää pisteitä tietokannan nimessä" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL -käyttäjätunnus ja/tai -salasana on väärin: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL:n käyttäjätunnus ja/tai salasana on väärin" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "Tietokantavirhe: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL-käyttäjä '%s'@'localhost' on jo olemassa." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Pudota tämä käyttäjä MySQL:stä" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL-käyttäjä '%s'@'%%' on jo olemassa" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Pudota tämä käyttäjä MySQL:stä." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Oracle-yhteyttä ei voitu muodostaa" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Oraclen käyttäjätunnus ja/tai salasana on väärin" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL:n käyttäjätunnus ja/tai salasana on väärin" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Aseta ylläpitäjän käyttäjätunnus." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Aseta ylläpitäjän salasana." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Lue tarkasti asennusohjeet." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Luokkaa \"%s\" ei löytynyt" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "sekuntia sitten" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuutti sitten" msgstr[1] "%n minuuttia sitten" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tunti sitten" msgstr[1] "%n tuntia sitten" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "tänään" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "eilen" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n päivä sitten" msgstr[1] "%n päivää sitten" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "viime kuussa" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuukausi sitten" msgstr[1] "%n kuukautta sitten" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "viime vuonna" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "vuotta sitten" - -#: template.php:297 -msgid "Caused by:" -msgstr "Aiheuttaja:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Luokkaa \"%s\" ei löytynyt" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 2b9b270367a7d780f64ae7b1cf5fbc7214ea56f1..d06a8157074f889096ce77d8c4a8cae8c01a7177 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-05 06:30+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,12 +28,12 @@ msgid "Authentication error" msgstr "Tunnistautumisvirhe" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Näyttönimesi on muutettu." +msgid "Your full name has been changed." +msgstr "Koko nimesi on muutettu." #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Näyttönimen muuttaminen epäonnistui" +msgid "Unable to change full name" +msgstr "Koko nimen muuttaminen epäonnistui" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -118,11 +118,11 @@ msgstr "Salasanan vaihto ei onnistunut" msgid "Update to {appversion}" msgstr "Päivitä versioon {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Poista käytöstä" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Käytä" @@ -130,31 +130,31 @@ msgstr "Käytä" msgid "Please wait...." msgstr "Odota hetki..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Virhe poistaessa sovellusta käytöstä" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Virhe ottaessa sovellusta käyttöön" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Päivitetään..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Virhe sovellusta päivittäessä" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Virhe" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Päivitä" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Päivitetty" @@ -162,7 +162,7 @@ msgstr "Päivitetty" msgid "Select a profile picture" msgstr "Valitse profiilikuva" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "Puretaan tiedostojen salausta... Odota, tämä voi kestää jonkin aikaa." @@ -182,44 +182,75 @@ msgstr "kumoa" msgid "Unable to remove user" msgstr "Käyttäjän poistaminen ei onnistunut" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Ryhmät" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Ryhmän ylläpitäjä" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Poista" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "lisää ryhmä" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "Anna kelvollinen käyttäjätunnus" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "Virhe käyttäjää luotaessa" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "Anna kelvollinen salasana" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Varoitus: käyttäjällä \"{user}\" on jo olemassa kotikansio" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "_kielen_nimi_" -#: templates/admin.php:15 +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "Kaikki (vakavat ongelmat, virheet, varoitukset, tiedot, vianjäljitys)" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "Tiedot, varoitukset, virheet ja vakavat ongelmat" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "Varoitukset, virheet ja vakavat ongelmat" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "Virheet ja vakavat ongelmat" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "Vain vakavat ongelmat" + +#: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" msgstr "Turvallisuusvaroitus" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -228,48 +259,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" -msgstr "" +msgstr "Asetusvaroitus" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Lue asennusohjeet tarkasti." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Moduuli 'fileinfo' puuttuu" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +msgstr "PHP-moduuli \"fileinfo\" puuttuu. Sen käyttö on erittäin suositeltavaa, jotta MIME-tyypin havaitseminen onnistuu parhaalla mahdollisella tavalla." + +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "Käytössä oleva PHP-versio on vanhentunut" -#: templates/admin.php:58 +#: templates/admin.php:82 +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 "Käytössä oleva PHP on vanhentunut. Päivitä versioon 5.3.8 tai uudempaan, koska aiemmat versiot eivät ole toimivia. On mahdollista, että tämä ownCloud-asennus ei toimi kunnolla." + +#: templates/admin.php:93 msgid "Locale not working" -msgstr "" +msgstr "Maa-asetus ei toimi" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "Järjestelmän maa-asetusta ei voi asettaa UTF-8:aa tukevaksi." + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "Tämä tarkoittaa, että tiettyjen merkkien kanssa tiedostojen nimissä saattaa olla ongelmia." + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Internet-yhteys ei toimi" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -278,110 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "" +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Jakaminen" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Käytä jakamisen ohjelmointirajapintaa" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Salli sovellusten käyttää jakamisen ohjelmointirajapintaa" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Salli linkit" -#: templates/admin.php:135 +#: templates/admin.php:178 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:143 +#: templates/admin.php:186 msgid "Allow public uploads" -msgstr "" +msgstr "Salli julkiset lähetykset" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Salli uudelleenjakaminen" -#: templates/admin.php:153 +#: templates/admin.php:196 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:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Salli käyttäjien jakaa kenen tahansa kanssa" -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Salli sähköposti-ilmoitukset" + +#: templates/admin.php:214 +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:221 msgid "Security" msgstr "Tietoturva" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Pakota HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "Loki" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Lokitaso" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Enemmän" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Vähemmän" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versio" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Käytä tätä osoitetta päästäksesi käsiksi tiedostoihisi WebDAVin kautta" +"Use this address to access your Files via " +"WebDAV" +msgstr "Käytä tätä osoitetta käyttääksesi tiedostojasi WebDAVin kautta" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Salaus" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "Salaussovellus ei ole enää käytössä, pura kaikkien tiedostojesi salaus" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "Salaussovellus ei ole enää käytössä, joten pura kaikkien tiedostojesi salaus" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Pura kaikkien tiedostojen salaus" @@ -573,6 +636,10 @@ msgstr "" msgid "Default Storage" msgstr "Oletustallennustila" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Rajoittamaton" @@ -590,8 +657,8 @@ msgid "Storage" msgstr "Tallennustila" #: templates/users.php:108 -msgid "change display name" -msgstr "vaihda näyttönimi" +msgid "change full name" +msgstr "muuta koko nimi" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index fb7a03660481ab92d2144928a992e16d4d279b2c..fbdfcd5cd6ea6789b02861735c9212b47aa1f02a 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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 "Poisto epäonnistui" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Säilytetäänkö asetukset?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Palvelinasetusten lisäys epäonnistui" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Onnistui!" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Virhe" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Valitse ryhmät" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Yhteystesti onnistui" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Yhteystesti epäonnistui" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Vahvista poisto" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Tallenna" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Ohje" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +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/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Isäntä" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Voit jättää protokollan määrittämättä, paitsi kun vaadit SSL:ää. Aloita silloin ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Oletus DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Voit määrittää käyttäjien ja ryhmien oletus DN:n (distinguished name) 'tarkemmat asetukset'-välilehdeltä " +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Portti" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "Käyttäjän DN" -#: templates/settings.php:46 +#: 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 "Asiakasohjelman DN, jolla yhdistäminen tehdään, ts. uid=agent,dc=example,dc=com. Mahdollistaaksesi anonyymin yhteyden, jätä DN ja salasana tyhjäksi." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Salasana" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Jos haluat mahdollistaa anonyymin pääsyn, jätä DN ja Salasana tyhjäksi " -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Login suodatus" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Voit määrittää käyttäjien ja ryhmien oletus DN:n (distinguished name) 'tarkemmat asetukset'-välilehdeltä " + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Käyttäjien suodatus" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" -#: templates/settings.php:58 +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Takaisin" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Jatka" + +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Ryhmien suodatus" - -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Yhteysasetukset" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "Portti" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Poista pääpalvelin käytöstä" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Käytä TLS:ää" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Kirjainkoosta piittamaton LDAP-palvelin (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Poista käytöstä SSL-varmenteen vahvistus" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "sekunneissa. Muutos tyhjentää välimuistin." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Hakemistoasetukset" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Käyttäjän näytettävän nimen kenttä" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Oletuskäyttäjäpuu" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Ryhmän \"näytettävä nimi\"-kenttä" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Ryhmien juuri" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Ryhmän ja jäsenen assosiaatio (yhteys)" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "tavuissa" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "Sähköpostikenttä" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD-atribuutti." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Ohje" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index bce932689a0cdf4f56ceebabbe402c662c368bcc..29d5bd021648e44523e640fb25de42d50d95e5c7 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -5,16 +5,18 @@ # Translators: # Adalberto Rodrigues , 2013 # Christophe Lherieau , 2013 +# etiess , 2013 # msoko , 2013 # ogre_sympathique , 2013 # plachance , 2013 # red0ne , 2013 +# RyDroid , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-27 00:01-0400\n" -"PO-Revision-Date: 2013-09-26 15:10+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -23,14 +25,15 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s partagé »%s« avec vous" -#: ajax/share.php:227 -msgid "group" -msgstr "groupe" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Impossible d'envoyer un mail aux utilisateurs suivant : %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -57,45 +60,6 @@ msgstr "Cache de fichier mis à jour" msgid "... %d%% done ..." msgstr "... %d%% effectué ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Type de catégorie non spécifié." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Pas de catégorie à ajouter ?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Cette catégorie existe déjà : %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Type d'objet non spécifié." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "L'identifiant de %s n'est pas spécifié." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Erreur lors de l'ajout de %s aux favoris." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Pas de catégorie sélectionnée pour la suppression." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Erreur lors de la suppression de %s des favoris." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Aucune image ou fichier fourni" @@ -192,59 +156,59 @@ msgstr "novembre" msgid "December" msgstr "décembre" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Paramètres" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "il y a %n minute" msgstr[1] "il y a %n minutes" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Il y a %n heure" msgstr[1] "Il y a %n heures" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "aujourd'hui" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "hier" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "il y a %n jour" msgstr[1] "il y a %n jours" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "le mois dernier" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Il y a %n mois" msgstr[1] "Il y a %n mois" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "l'année dernière" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "il y a plusieurs années" @@ -312,155 +276,183 @@ msgstr "({count} sélectionnés)" msgid "Error loading file exists template" msgstr "Erreur de chargement du modèle de fichier existant" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Le type d'objet n'est pas spécifié." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 -msgid "Error" -msgstr "Erreur" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Le nom de l'application n'est pas spécifié." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Le fichier requis {file} n'est pas installé !" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Partagé" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Partager" -#: js/share.js:131 js/share.js:696 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Erreur" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Erreur lors de la mise en partage" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Erreur lors de l'annulation du partage" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Erreur lors du changement des permissions" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Partagé par {owner} avec vous et le groupe {group}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Partagé avec vous par {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Partager avec" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Partager avec un utilisateur ou un groupe..." -#: js/share.js:188 -msgid "Share with link" -msgstr "Partager via lien" +#: js/share.js:219 +msgid "Share link" +msgstr "Partager le lien" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Protéger par un mot de passe" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Mot de passe" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Autoriser l'upload par les utilisateurs non enregistrés" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Envoyez le lien par email" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Envoyer" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Spécifier la date d'expiration" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Date d'expiration" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Partager via e-mail :" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Aucun utilisateur trouvé" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "groupe" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Le repartage n'est pas autorisé" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Partagé dans {item} avec {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Ne plus partager" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "Notifier par email" + +#: js/share.js:408 msgid "can edit" msgstr "édition autorisée" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "contrôle des accès" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "créer" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "mettre à jour" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "supprimer" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "partager" -#: js/share.js:400 js/share.js:643 +#: js/share.js:694 msgid "Password protected" msgstr "Protégé par un mot de passe" -#: js/share.js:656 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Une erreur est survenue pendant la suppression de la date d'expiration" -#: js/share.js:668 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Erreur lors de la spécification de la date d'expiration" -#: js/share.js:683 +#: js/share.js:734 msgid "Sending ..." msgstr "En cours d'envoi ..." -#: js/share.js:694 +#: js/share.js:745 msgid "Email sent" msgstr "Email envoyé" +#: js/share.js:769 +msgid "Warning" +msgstr "Attention" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Le type d'objet n'est pas spécifié." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Saisir un nouveau" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Supprimer" + +#: js/tags.js:31 +msgid "Add" +msgstr "Ajouter" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Modifier les balises" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Erreur de chargement du modèle de dialogue : {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Aucune balise sélectionnée pour la suppression." + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "Veuillez recharger la page." + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Le lien permettant de réinitialiser votre mot de passe vous a été transmis.
    Si vous ne le recevez pas dans un délai raisonnable, vérifier votre boîte de pourriels.
    Au besoin, contactez votre administrateur local." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Requête en échec!
    Avez-vous vérifié vos courriel/nom d'utilisateur?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Vous allez recevoir un e-mail contenant un lien pour réinitialiser votre mot de passe." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Nom d'utilisateur" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -509,13 +501,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Vos fichiers sont chiffrés. Si vous n'avez pas activé la clef de récupération, il n'y aura plus aucun moyen de récupérer vos données une fois le mot de passe réinitialisé. Si vous n'êtes pas sûr de ce que vous faites, veuillez contacter votre administrateur avant de continuer. Voulez-vous vraiment continuer ?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Oui, je veux vraiment réinitialiser mon mot de passe maintenant" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Demander la réinitialisation" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Réinitialiser" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -541,7 +533,7 @@ msgstr "Personnel" msgid "Users" msgstr "Utilisateurs" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Applications" @@ -553,6 +545,34 @@ msgstr "Administration" msgid "Help" msgstr "Aide" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "Erreur de chargement des balises." + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "La balise existe déjà." + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "Erreur de suppression de(s) balise(s)" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "Erreur lors de la mise en place de la balise" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "Erreur lors de la suppression de la balise" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "Erreur lors de la mise en favori" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "Erreur lors de la suppression des favoris" + #: templates/403.php:12 msgid "Access forbidden" msgstr "Accès interdit" @@ -569,108 +589,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Salut,\n\nje veux juste vous signaler %s partagé %s avec vous.\nVoyez-le: %s\n\nBonne continuation!" +msgstr "Bonjour,\n\nNous vous informons que %s a partagé %s avec vous.\nConsultez-le : %s\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Editer les catégories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "Le partage expirera le %s." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Ajouter" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "À bientôt !" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Avertissement de sécurité" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Votre version de PHP est vulnérable à l'attaque par caractère NULL (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Veuillez mettre à jour votre installation PHP pour utiliser %s de façon sécurisée." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Aucun générateur de nombre aléatoire sécurisé n'est disponible, veuillez activer l'extension PHP OpenSSL" -#: templates/installation.php:33 +#: 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 "Sans générateur de nombre aléatoire sécurisé, un attaquant peut être en mesure de prédire les jetons de réinitialisation du mot de passe, et ainsi prendre le contrôle de votre compte utilisateur." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Votre répertoire data est certainement accessible depuis l'internet car le fichier .htaccess ne semble pas fonctionner" -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "Pour les informations de configuration de votre serveur, veuillez lire la documentation." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Créer un compte administrateur" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Avancé" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Répertoire des données" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Configurer la base de données" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "sera utilisé" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Utilisateur pour la base de données" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Mot de passe de la base de données" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Nom de la base de données" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Tablespaces de la base de données" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Serveur de la base de données" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Terminer l'installation" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "En cours de finalisation..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "Cette application nécessite que JavaScript soit activé pour fonctionner correctement. Veuillez activer JavaScript puis charger à nouveau cette interface." + +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s est disponible. Obtenez plus d'informations sur la façon de mettre à jour." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Se déconnecter" @@ -688,19 +719,27 @@ msgstr "Si vous n'avez pas changé votre mot de passe récemment, votre compte r msgid "Please change your password to secure your account again." msgstr "Veuillez changer votre mot de passe pour sécuriser à nouveau votre compte." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "L'authentification côté serveur a échoué !" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Veuillez contacter votre administrateur." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Mot de passe perdu ?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "se souvenir de moi" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Connexion" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Logins alternatifs" @@ -708,10 +747,37 @@ msgstr "Logins alternatifs" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Salut,

    je veux juste vous signaler %s partagé »%s« avec vous.
    Voyez-le!

    Bonne continuation!" +"href=\"%s\">View it!

    " +msgstr "Bonjour,

    Nous vous informons que %s a partagé »%s« avec vous.
    Consultez-le !

    " + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "Cette instance de ownCloud est actuellement en mode utilisateur unique." + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "Cela signifie que uniquement les administrateurs peuvent utiliser l'instance." -#: templates/update.php:3 +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "Contactez votre administrateur système si ce message persiste ou apparaît de façon innatendue." + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "Merci de votre patience." + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "Mise à jour en cours d'ownCloud vers la version %s, cela peut prendre du temps." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "Cette instance d'ownCloud est en cours de mise à jour, cela peut prendre du temps." + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "Merci de recharger cette page après un moment pour continuer à utiliser ownCloud." diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 72963e3573fd773385e070bf64815be0cf51340e..c6057d1fd5f9429d7a0f79856b90f5dd7c4e2c68 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -5,15 +5,16 @@ # Translators: # Adalberto Rodrigues , 2013 # Christophe Lherieau , 2013 +# etiess , 2013 # MathieuP , 2013 # ogre_sympathique , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-24 12:58-0400\n" -"PO-Revision-Date: 2013-09-23 19:30+0000\n" -"Last-Translator: ogre_sympathique \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 14:30+0000\n" +"Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,62 +32,107 @@ msgstr "Impossible de déplacer %s - Un fichier possédant ce nom existe déjà" msgid "Could not move %s" msgstr "Impossible de déplacer %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Le nom de fichier ne peut être vide." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "Le nom de fichier ne doit pas contenir \"/\". Merci de choisir un nom différent." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "Le nom %s est déjà utilisé dans le dossier %s. Merci de choisir un nom différent." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "La source n'est pas valide" + +#: ajax/newfile.php:86 +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:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Erreur pendant le téléchargement de %s à %s" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Erreur pendant la création du fichier" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "Le nom de dossier ne peux pas être vide." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "Le nom de dossier ne doit pas contenir \"/\". Merci de choisir un nom différent." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Erreur pendant la création du dossier" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Impossible de définir le dossier pour l'upload, charger." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Jeton non valide" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Aucun fichier n'a été envoyé. Erreur inconnue" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Aucune erreur, le fichier a été envoyé avec succès." -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Le fichier n'a été que partiellement envoyé." -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Pas de fichier envoyé." -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Absence de dossier temporaire." -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Erreur d'écriture sur le disque" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Plus assez d'espace de stockage disponible" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "L'envoi a échoué. Impossible d'obtenir les informations du fichier." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "L'envoi a échoué. Impossible de trouver le fichier envoyé." -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Dossier invalide." @@ -94,157 +140,178 @@ msgstr "Dossier invalide." msgid "Files" msgstr "Fichiers" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Impossible d'envoyer {filename} car il s'agit d'un répertoire ou d'un fichier de taille nulle" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Espace disponible insuffisant" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Envoi annulé." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "Ne peut recevoir les résultats du serveur." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "L'URL ne peut-être vide" +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "L'URL ne peut pas être vide" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "Dans le dossier home, 'Partagé' est un nom de fichier réservé" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Erreur" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} existe déjà" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Impossible de créer le fichier" -#: js/fileactions.js:119 +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Impossible de créer le dossier" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Erreur d'accès à l'URL" + +#: js/fileactions.js:125 msgid "Share" msgstr "Partager" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Supprimer de façon définitive" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Renommer" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "En attente" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} existe déjà" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Impossible de renommer le fichier" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "remplacer" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "Suggérer un nom" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "annuler" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} a été remplacé par {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "annuler" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Erreur pendant la suppression du fichier." + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dossier" msgstr[1] "%n dossiers" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fichier" msgstr[1] "%n fichiers" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" -msgstr "{dir} et {files}" +msgstr "{dirs} et {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Téléversement de %n fichier" msgstr[1] "Téléversement de %n fichiers" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' n'est pas un nom de fichier valide." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Le nom de fichier ne peut être vide." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Votre espage de stockage est plein, les fichiers ne peuvent plus être téléversés ou synchronisés !" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Votre espace de stockage est presque plein ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "L'application de chiffrement est activée mais vos clés ne sont pas initialisées, veuillez vous déconnecter et ensuite vous reconnecter." + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "Votre clef privée pour l'application de chiffrement est invalide ! Veuillez mettre à jour le mot de passe de votre clef privée dans vos paramètres personnels pour récupérer l'accès à vos fichiers chiffrés." + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Le chiffrement était désactivé mais vos fichiers sont toujours chiffrés. Veuillez vous rendre sur vos Paramètres personnels pour déchiffrer vos fichiers." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Votre téléchargement est cours de préparation. Ceci peut nécessiter un certain temps si les fichiers sont volumineux." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "Erreur lors du déplacement du fichier" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Erreur" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Nom" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Taille" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Modifié" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée." + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s ne peut être renommé" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Envoyer" @@ -280,65 +347,69 @@ msgstr "Taille maximale pour les fichiers ZIP" msgid "Save" msgstr "Sauvegarder" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nouveau" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "Nouveau fichier texte" + +#: templates/index.php:8 msgid "Text file" msgstr "Fichier texte" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Nouveau dossier" + +#: templates/index.php:10 msgid "Folder" msgstr "Dossier" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Depuis le lien" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Fichiers supprimés" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Vous n'avez pas le droit d'écriture ici." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "Vous n'avez pas la permission de téléverser ou de créer des fichiers ici" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Télécharger" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Ne plus partager" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Supprimer" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Téléversement trop volumineux" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Les fichiers sont en cours d'analyse, veuillez patienter." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Analyse en cours" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index 6616ed62275b217e12987118a2fab04a56f163f8..8fe287b2281ef1de6e239cb98c19ebdacb1c60a7 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.po @@ -5,14 +5,16 @@ # Translators: # Adalberto Rodrigues , 2013 # Christophe Lherieau , 2013 +# etiess , 2013 # froozeify , 2013 # lyly95, 2013 +# ogre_sympathique , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-03 07:42-0400\n" -"PO-Revision-Date: 2013-09-03 10:00+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-02 17:27-0500\n" +"PO-Revision-Date: 2013-12-02 20:30+0000\n" "Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -47,75 +49,96 @@ msgstr "Mot de passe changé avec succès " msgid "Could not change the password. Maybe the old password was not correct." msgstr "Ne peut pas changer le mot de passe. L'ancien mot de passe est peut-être incorrect." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Mot de passe de la clé privé mis à jour avec succès." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Impossible de mettre à jour le mot de passe de la clé privé. Peut-être que l'ancien mot de passe n'était pas correcte." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "Votre clé de sécurité privée n'est pas valide! Il est probable que votre mot de passe ait été changé sans passer par le système ownCloud (par éxemple: le serveur de votre entreprise). Ain d'avoir à nouveau accès à vos fichiers cryptés, vous pouvez mettre à jour votre clé de sécurité privée dans les paramètres personnels de votre compte." +"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 "L'application de chiffrement n'est pas initialisée ! Peut-être que cette application a été réactivée pendant votre session. Veuillez essayer de vous déconnecter et ensuite de vous reconnecter pour initialiser l'application de chiffrement." -#: hooks/hooks.php:51 +#: 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 "Votre clef privée est invalide ! Votre mot de passe a probablement été modifié hors de %s (ex. votre annuaire d'entreprise). Vous pouvez mettre à jour le mot de passe de votre clef privée dans les paramètres personnels pour pouvoir récupérer l'accès à vos fichiers chiffrés." + +#: 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 "Impossible de déchiffrer ce fichier, il s'agit probablement d'un fichier partagé. Veuillez demander au propriétaire de ce fichier de le repartager avec vous." + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Erreur inconnue. Veuillez vérifier vos paramètres système ou contacter votre administrateur." + +#: hooks/hooks.php:59 msgid "Missing requirements." msgstr "Système minimum requis non respecté." -#: hooks/hooks.php:52 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Veuillez vous assurer qu'une version de PHP 5.3.3 ou supérieure est installée et qu'OpenSSL et son extension PHP sont activés et configurés correctement. En attendant, l'application de chiffrement été désactivée." -#: hooks/hooks.php:250 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "Les utilisateurs suivants ne sont pas configurés pour le chiffrement :" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "Chiffrement initial démarré... Cela peut prendre un certain temps. Veuillez patienter." + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Enregistrement..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Votre clef privée est invalide ! Votre mot de passe a peut-être été modifié depuis l'extérieur." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Allez directement à votre" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Vous pouvez déverrouiller votre clé privée dans votre" - -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "paramètres personnel" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Chiffrement" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Activer la clef de récupération (permet de récupérer les fichiers des utilisateurs en cas de perte de mot de passe)." -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Mot de passe de la clef de récupération" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Répétez le mot de passe de la clé de récupération" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Activer" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Désactiver" @@ -123,58 +146,62 @@ msgstr "Désactiver" msgid "Change recovery key password:" msgstr "Modifier le mot de passe de la clef de récupération :" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Ancien mot de passe de la clef de récupération" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Nouveau mot de passe de la clef de récupération" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "Répétez le nouveau mot de passe de la clé de récupération" + +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Changer de mot de passe" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Le mot de passe de votre clef privée ne correspond plus à votre mot de passe de connexion :" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Configurez le mot de passe de votre ancienne clef privée avec votre mot de passe courant de connexion. " -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Si vous ne vous souvenez plus de votre ancien mot de passe, vous pouvez demander à votre administrateur de récupérer vos fichiers." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Ancien mot de passe de connexion" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Actuel mot de passe de connexion" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Mettre à jour le mot de passe de votre clé privée" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Activer la récupération du mot de passe :" -#: templates/settings-personal.php:47 +#: 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 "Activer cette option vous permettra d'obtenir à nouveau l'accès à vos fichiers chiffrés en cas de perte de mot de passe" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Paramètres de récupération de fichiers mis à jour" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Ne peut pas remettre à jour les fichiers de récupération" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index c1e69f0c90269814a2f35068493e53c28a14bbab..7eb1176ba8cc3f7a19ae3c018944b9dbd283798f 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Accès autorisé" @@ -25,7 +25,7 @@ msgstr "Accès autorisé" msgid "Error configuring Dropbox storage" msgstr "Erreur lors de la configuration du support de stockage Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Autoriser l'accès" @@ -33,24 +33,24 @@ msgstr "Autoriser l'accès" msgid "Please provide a valid Dropbox app key and secret." msgstr "Veuillez fournir une clé d'application (app key) ainsi qu'un mot de passe valides." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Erreur lors de la configuration du support de stockage Google Drive" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Attention : \"smbclient\" n'est pas installé. Le montage des partages CIFS/SMB n'est pas disponible. Contactez votre administrateur système pour l'installer." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Attention : Le support FTP de PHP n'est pas activé ou installé. Le montage des partages FTP n'est pas disponible. Contactez votre administrateur système pour l'installer." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index c9b74a2e271fe41a5a71bb322d8e1b7b4871c272..3dbac303a0ad7a41312ea5cb8b99d9a208ed510c 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -5,13 +5,15 @@ # Translators: # square , 2013 # Christophe Lherieau , 2013 +# etiess , 2013 +# ogre_sympathique , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Christophe Lherieau \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 14:30+0000\n" +"Last-Translator: etiess \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" @@ -20,17 +22,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Ce partage est protégé par un mot de passe" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Le mot de passe est incorrect. Veuillez réessayer." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Mot de passe" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Envoyer" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Désolé, mais le lien semble ne plus fonctionner." @@ -55,28 +57,32 @@ msgstr "le partage est désactivé" msgid "For more info, please ask the person who sent this link." msgstr "Pour plus d'informations, veuillez contacter la personne qui a envoyé ce lien." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s a partagé le répertoire %s avec vous" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s a partagé le fichier %s avec vous" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Télécharger" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Envoyer" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Pas d'aperçu disponible pour" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Lien direct" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index 52238114518a7d377641da8faea59cafbf63aa8d..351fde9ddac1e977f6eb3a0f2ba67407e3f2073b 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-03 07:43-0400\n" -"PO-Revision-Date: 2013-09-03 09:30+0000\n" -"Last-Translator: Christophe Lherieau \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "Impossible d'effacer %s de façon permanente" msgid "Couldn't restore %s" msgstr "Impossible de restaurer %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "effectuer l'opération de restauration" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Erreur" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "effacer définitivement le fichier" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Supprimer de façon définitive" - -#: js/trash.js:184 templates/index.php:17 -msgid "Name" -msgstr "Nom" - -#: js/trash.js:185 templates/index.php:27 -msgid "Deleted" -msgstr "Effacé" - -#: js/trash.js:193 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n dossiers" - -#: js/trash.js:199 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "%n fichiers" - -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "restauré" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Il n'y a rien ici. Votre corbeille est vide !" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Nom" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Restaurer" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Effacé" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Supprimer" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 792ec31010552bf3dc7a96dd04df132e5cb4cee3..a0d3113e8e302c1a5eba499dc0140ed78dd55b20 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -5,14 +5,15 @@ # Translators: # Christophe Lherieau , 2013 # Cyril Glapa , 2013 +# etiess , 2013 # ogre_sympathique , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-19 13:10+0000\n" -"Last-Translator: ogre_sympathique \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -20,318 +21,317 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "L'application \"%s\" ne peut être installée car elle n'est pas compatible avec cette version de ownCloud." -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "Aucun nom d'application spécifié" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Aide" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Personnel" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Paramètres" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Utilisateurs" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Administration" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Echec de la mise à niveau \"%s\"." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Les images de profil personnalisées ne fonctionnent pas encore avec le système de chiffrement." - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Type de fichier inconnu" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Image invalide" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "services web sous votre contrôle" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "impossible d'ouvrir \"%s\"" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Téléchargement ZIP désactivé." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Les fichiers nécessitent d'être téléchargés un par un." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Retour aux Fichiers" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Les fichiers sélectionnés sont trop volumineux pour être compressés." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Télécharger les fichiers en parties plus petites, séparément ou demander avec bienveillance à votre administrateur." +msgstr "Merci de télécharger les fichiers séparément en parties plus petites, ou demandez aimablement à votre administrateur." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Aucune source spécifiée pour installer l'application" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Aucun href spécifié pour installer l'application par http" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Aucun chemin spécifié pour installer l'application depuis un fichier local" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Les archives de type %s ne sont pas supportées" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Échec de l'ouverture de l'archive lors de l'installation de l'application" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "L'application ne fournit pas de fichier info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "L'application ne peut être installée car elle contient du code non-autorisé" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "L'application ne peut être installée car elle n'est pas compatible avec cette version de ownCloud" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "L'application ne peut être installée car elle contient la balise true qui n'est pas autorisée pour les applications non-diffusées" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "L'application ne peut être installée car la version de info.xml/version n'est identique à celle indiquée sur l'app store" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Le dossier de l'application existe déjà" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Impossible de créer le dossier de l'application. Corrigez les droits d'accès. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "L'application n'est pas activée" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Erreur d'authentification" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "La session a expiré. Veuillez recharger la page." -#: search/provider/file.php:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Fichiers" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Texte" -#: search/provider/file.php:30 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Images" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s entrez le nom d'utilisateur de la base de données." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s entrez le nom de la base de données." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s vous nez pouvez pas utiliser de points dans le nom de la base de données" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Le nom d'utilisateur et/ou le mot de passe de la base MS SQL est invalide : %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Vous devez spécifier soit le nom d'un compte existant, soit celui de l'administrateur." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Nom d'utilisateur et/ou mot de passe de la base MySQL invalide" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "Erreur de la base de données : \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "La requête en cause est : \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "L'utilisateur MySQL '%s'@'localhost' existe déjà." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Retirer cet utilisateur de la base MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "L'utilisateur MySQL '%s'@'%%' existe déjà" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Retirer cet utilisateur de la base MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "La connexion Oracle ne peut pas être établie" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Nom d'utilisateur et/ou mot de passe de la base Oracle invalide" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "La requête en cause est : \"%s\", nom : %s, mot de passe : %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "Nom d'utilisateur et/ou mot de passe de la base PostgreSQL invalide" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Spécifiez un nom d'utilisateur pour l'administrateur." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Spécifiez un mot de passe administrateur." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Veuillez vous référer au guide d'installation." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Impossible de trouver la catégorie \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "il y a quelques secondes" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "il y a %n minutes" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "Il y a %n heures" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "aujourd'hui" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "hier" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "il y a %n jours" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "le mois dernier" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "Il y a %n mois" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "l'année dernière" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "il y a plusieurs années" - -#: template.php:297 -msgid "Caused by:" -msgstr "Causé par :" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Impossible de trouver la catégorie \"%s\"" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 21918cf68dabf59b248822b88aef61e0dd826802..d0edd3b5c43886193a8c92ff11276452de9a7be2 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -5,16 +5,18 @@ # Translators: # Adalberto Rodrigues , 2013 # Christophe Lherieau , 2013 +# etiess , 2013 # lyly95, 2013 # Mystyle , 2013 # ogre_sympathique , 2013 # red0ne , 2013 +# RyDroid , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-27 00:01-0400\n" -"PO-Revision-Date: 2013-09-26 15:00+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-18 10:30+0000\n" "Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -33,12 +35,12 @@ msgid "Authentication error" msgstr "Erreur d'authentification" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Votre nom d'affichage a bien été modifié." +msgid "Your full name has been changed." +msgstr "Votre nom complet a été modifié." #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Impossible de modifier le nom d'affichage" +msgid "Unable to change full name" +msgstr "Impossible de changer le nom complet" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -167,7 +169,7 @@ msgstr "Mise à jour effectuée avec succès" msgid "Select a profile picture" msgstr "Selectionner une photo de profil " -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "Déchiffrement en cours... Cela peut prendre un certain temps." @@ -187,44 +189,75 @@ msgstr "annuler" msgid "Unable to remove user" msgstr "Impossible de retirer l'utilisateur" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Groupes" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Groupe Admin" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Supprimer" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "ajouter un groupe" -#: js/users.js:436 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Un nom d'utilisateur valide doit être saisi" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Erreur lors de la création de l'utilisateur" -#: js/users.js:442 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Un mot de passe valide doit être saisi" +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Attention : Le dossier Home pour l'utilisateur \"{user}\" existe déjà" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Français" -#: templates/admin.php:15 +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "Tout (erreurs fatales, erreurs, avertissements, informations, debogage)" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "Informations, avertissements, erreurs et erreurs fatales" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "Avertissements, erreurs et erreurs fatales" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "Erreurs et erreurs fatales" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "Erreurs fatales uniquement" + +#: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" msgstr "Avertissement de sécurité" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "Vous accédez à %s via HTTP. Nous vous recommandons fortement de configurer votre serveur pour forcer l'utilisation de HTTPS à la place." + +#: templates/admin.php:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -233,48 +266,68 @@ msgid "" "root." msgstr "Votre dossier de données et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de façon à ce que ce dossier de données ne soit plus accessible, ou bien de le déplacer à l'extérieur de la racine du serveur web." -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Avertissement, problème de configuration" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut." -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Veuillez consulter à nouveau les guides d'installation." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' manquant" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Le module PHP 'fileinfo' est manquant. Il est vivement recommandé de l'activer afin d'obtenir de meilleurs résultats pour la détection des types de fichiers." -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "Votre version de PHP est trop ancienne" + +#: templates/admin.php:82 +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 "Votre version de PHP est trop ancienne. Nous vous recommandons fortement de migrer vers une version 5.3.8 ou plus récente encore, car les versions antérieures sont réputées problématiques. Il est possible que cette installation ne fonctionne pas correctement." + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Localisation non fonctionnelle" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "Les paramètres régionaux ne peuvent pas être configurés avec un qui supporte UTF-8." + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "Cela signifie qu'il pourrait y avoir des problèmes avec certains caractères dans les noms de fichier." + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "Le localisation du système n'a pu être configurée à %s. Cela signifie qu'il pourrait y avoir des problèmes avec certains caractères dans les noms de fichiers. Il est fortement recommandé d'installer les paquets requis pour le support de %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "Nous conseillons vivement d'installer les paquets requis sur votre système pour supporter l'un des paramètres régionaux suivants : %s." -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "La connexion internet ne fonctionne pas" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -283,110 +336,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Ce serveur ne peut se connecter à internet. Cela signifie que certaines fonctionnalités, telles que le montage de supports de stockage distants, les notifications de mises à jour ou l'installation d'applications tierces ne fonctionneront pas. L'accès aux fichiers à distance, ainsi que les notifications par mails ne seront pas fonctionnels également. Il est recommandé d'activer la connexion internet pour ce serveur si vous souhaitez disposer de l'ensemble des fonctionnalités offertes." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Exécute une tâche à chaque chargement de page" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php est enregistré en tant que service webcron pour appeler cron.php une fois par minute via http." +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Utilise le service cron du système pour appeler cron.php une fois par minute." +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Partage" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Activer l'API de partage" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Autoriser les applications à utiliser l'API de partage" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Autoriser les liens" -#: templates/admin.php:135 +#: templates/admin.php:178 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:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Autoriser les téléversements publics" -#: templates/admin.php:144 +#: templates/admin.php:187 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:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Autoriser le repartage" -#: templates/admin.php:153 +#: templates/admin.php:196 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:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Autoriser les utilisateurs à partager avec tout le monde" -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Autoriser les notifications par couriel" + +#: templates/admin.php:214 +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:221 msgid "Security" msgstr "Sécurité" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Forcer HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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:191 +#: templates/admin.php:242 #, 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:203 +#: templates/admin.php:254 msgid "Log" msgstr "Log" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Niveau de log" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Plus" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Moins" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Version" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Utilisez cette adresse pour accéder à vos fichiers via WebDAV" +"Use this address to access your Files via " +"WebDAV" +msgstr "Utiliser cette adresse pour accéder à vos fichiers par WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Chiffrement" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "L'application de chiffrement n'est plus activée, déchiffrez tous vos fichiers" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "L'app de chiffrement n’est plus activée, veuillez déchiffrer tous vos fichiers" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Mot de passe de connexion" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Déchiffrer tous les fichiers" @@ -578,6 +643,10 @@ msgstr "Entrer le mot de passe de récupération dans le but de récupérer les msgid "Default Storage" msgstr "Support de stockage par défaut" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "Veuillez entrer le quota de stockage (ex. \"512 MB\" ou \"12 GB\")" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Illimité" @@ -595,8 +664,8 @@ msgid "Storage" msgstr "Support de stockage" #: templates/users.php:108 -msgid "change display name" -msgstr "Changer le nom affiché" +msgid "change full name" +msgstr "Modifier le nom complet" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 5d5731c15756684cc9e41ce3d6f20b06628ea718..9a26a1a2d9553b65eb53052866bbe2536efdb495 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -4,14 +4,15 @@ # # Translators: # Christophe Lherieau , 2013 +# etiess , 2013 # plachance , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" -"Last-Translator: Christophe Lherieau \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -27,314 +28,425 @@ msgstr "Erreur lors de la suppression des associations." msgid "Failed to delete the server configuration" msgstr "Échec de la suppression de la configuration du serveur" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "La configuration est valide et la connexion peut être établie !" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "La configuration est valide, mais le lien ne peut être établi. Veuillez vérifier les paramètres du serveur ainsi que vos identifiants de connexion." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "La configuration est invalide. Veuillez vous référer aux fichiers de journaux ownCloud pour plus d'information." +msgstr "La configuration est invalide. Veuillez consulter les logs pour plus de détails." + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "Aucune action spécifiée" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "Aucune configuration spécifiée" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "Aucune donnée spécifiée" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "Impossible de spécifier la configuration %s" -#: js/settings.js:66 +#: js/settings.js:67 msgid "Deletion failed" msgstr "La suppression a échoué" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Récupérer les paramètres depuis une configuration récente du serveur ?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Garder ces paramètres ?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Impossible d'ajouter la configuration du serveur" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "associations supprimées" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Succès" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Erreur" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "Configuration OK" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "Configuration incorrecte" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "Configuration incomplète" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Sélectionnez les groupes" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "Sélectionner les classes d'objet" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "Sélectionner les attributs" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Test de connexion réussi" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Test de connexion échoué" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Êtes-vous vraiment sûr de vouloir effacer la configuration actuelle du serveur ?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Confirmer la suppression" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "Avertissement : Les applications user_ldap et user_webdavauth sont incompatibles. Des dysfonctionnements peuvent survenir. Contactez votre administrateur système pour qu'il désactive l'une d'elles." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "%s groupe trouvé" +msgstr[1] "%s groupes trouvés" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "%s utilisateur trouvé" +msgstr[1] "%s utilisateurs trouvés" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "Hôte invalide" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "Impossible de trouver la fonction souhaitée" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Sauvegarder" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Tester la configuration" -#: templates/settings.php:12 +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Aide" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "Limiter l'accès à %s aux groupes respectant ce critère :" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "seulement ces classes d'objet :" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "seulement de ces groupes :" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "Éditer le filtre raw à la place" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "Filtre Raw LDAP" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Attention : Le module php LDAP n'est pas installé, par conséquent cette extension ne pourra fonctionner. Veuillez contacter votre administrateur système afin qu'il l'installe." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "Le filtre spécifie quels groupes LDAP doivent avoir accès à l'instance %s." -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Configuration du serveur" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "groupes trouvés" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "Quel attribut doit être utilisé comme nom de login:" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "Nom d'utilisateur LDAP :" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "Adresse email LDAP :" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "Autres attributs :" + +#: 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 "Définit le filtre à appliquer lors d'une tentative de connexion. %%uid remplace le nom d'utilisateur lors de la connexion. Exemple : \"uid=%%uid\"" + +#: templates/part.wizard-server.php:18 msgid "Add Server Configuration" msgstr "Ajouter une configuration du serveur" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Hôte" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Vous pouvez omettre le protocole, sauf si vous avez besoin de SSL. Dans ce cas préfixez avec ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "DN racine" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Un DN racine par ligne" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Vous pouvez spécifier les DN Racines de vos utilisateurs et groupes via l'onglet Avancé" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Port" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "DN Utilisateur (Autorisé à consulter l'annuaire)" -#: templates/settings.php:46 +#: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "DN de l'utilisateur client pour lequel la liaison doit se faire, par exemple uid=agent,dc=example,dc=com. Pour un accès anonyme, laisser le DN et le mot de passe vides." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Mot de passe" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Pour un accès anonyme, laisser le DN utilisateur et le mot de passe vides." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Modèle d'authentification utilisateurs" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Un DN racine par ligne" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Vous pouvez spécifier les DN Racines de vos utilisateurs et groupes via l'onglet Avancé" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "Limiter l'accès à %s aux utilisateurs respectant ce critère :" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "Définit le filtre à appliquer lors d'une tentative de connexion. %%uid remplace le nom d'utilisateur lors de la connexion. Exemple : \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "Le filtre spécifie quels utilisateurs LDAP doivent avoir accès à l'instance %s." -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Filtre d'utilisateurs" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "utilisateurs trouvés" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "Définit le filtre à appliquer lors de la récupération des utilisateurs. Exemple : \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Retour" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Filtre de groupes" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Poursuivre" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "Avertissement : Les applications user_ldap et user_webdavauth sont incompatibles. Des dysfonctionnements peuvent survenir. Contactez votre administrateur système pour qu'il désactive l'une d'elles." -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "Définit le filtre à appliquer lors de la récupération des groupes. Exemple : \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Attention : Le module php LDAP n'est pas installé, par conséquent cette extension ne pourra fonctionner. Veuillez contacter votre administrateur système afin qu'il l'installe." -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Paramètres de connexion" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Configuration active" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Lorsque non cochée, la configuration sera ignorée." -#: templates/settings.php:69 -msgid "Port" -msgstr "Port" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Serveur de backup (réplique)" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Fournir un serveur de backup optionnel. Il doit s'agir d'une réplique du serveur LDAP/AD principal." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Port du serveur de backup (réplique)" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Désactiver le serveur principal" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "Se connecter uniquement au serveur de replica." -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Utiliser TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "À ne pas utiliser pour les connexions LDAPS (cela échouera)." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Serveur LDAP insensible à la casse (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Désactiver la validation du certificat SSL." -#: templates/settings.php:75 +#: 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 "Non recommandé, à utiliser à des fins de tests uniquement. Si la connexion ne fonctionne qu'avec cette option, importez le certificat SSL du serveur LDAP dans le serveur %s." -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Durée de vie du cache" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "en secondes. Tout changement vide le cache." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Paramètres du répertoire" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Champ \"nom d'affichage\" de l'utilisateur" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "L'attribut LDAP utilisé pour générer le nom d'utilisateur affiché." -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "DN racine de l'arbre utilisateurs" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "Un DN racine utilisateur par ligne" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "Recherche des attributs utilisateur" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Optionnel, un attribut par ligne" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Champ \"nom d'affichage\" du groupe" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "L'attribut LDAP utilisé pour générer le nom de groupe affiché." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "DN racine de l'arbre groupes" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "Un DN racine groupe par ligne" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Recherche des attributs du groupe" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Association groupe-membre" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Attributs spéciaux" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Champ du quota" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Quota par défaut" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "en bytes" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "Champ Email" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "Convention de nommage du répertoire utilisateur" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Laisser vide " -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "Nom d'utilisateur interne" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -350,15 +462,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Par défaut le nom d'utilisateur interne sera créé à partir de l'attribut UUID. Ceci permet d'assurer que le nom d'utilisateur est unique et que les caractères ne nécessitent pas de conversion. Le nom d'utilisateur interne doit contenir uniquement les caractères suivants : [ a-zA-Z0-9_.@- ]. Les autres caractères sont remplacés par leur correspondance ASCII ou simplement omis. En cas de collision, un nombre est incrémenté/décrémenté. Le nom d'utilisateur interne est utilisé pour identifier l'utilisateur au sein du système. C'est aussi le nom par défaut du répertoire utilisateur dans ownCloud. C'est aussi le port d'URLs distants, par exemple pour tous les services *DAV. Le comportement par défaut peut être modifié à l'aide de ce paramètre. Pour obtenir un comportement similaire aux versions précédentes à ownCloud 5, saisir le nom d'utilisateur à afficher dans le champ suivant. Laissez à blanc pour le comportement par défaut. Les modifications prendront effet seulement pour les nouveaux (ajoutés) utilisateurs LDAP." -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "Nom d'utilisateur interne:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "Surcharger la détection d'UUID" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -369,15 +481,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Par défaut, l'attribut UUID est automatiquement détecté. Cet attribut est utilisé pour identifier les utilisateurs et groupes de façon fiable. Un nom d'utilisateur interne basé sur l'UUID sera automatiquement créé, sauf s'il est spécifié autrement ci-dessus. Vous pouvez modifier ce comportement et définir l'attribut de votre choix. Vous devez alors vous assurer que l'attribut de votre choix peut être récupéré pour les utilisateurs ainsi que pour les groupes et qu'il soit unique. Laisser à blanc pour le comportement par défaut. Les modifications seront effectives uniquement pour les nouveaux (ajoutés) utilisateurs et groupes LDAP." -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Attribut UUID :" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "Attribut UUID pour les utilisateurs :" -#: templates/settings.php:104 +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "Attribut UUID pour les groupes :" + +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "Association Nom d'utilisateur-Utilisateur LDAP" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -391,18 +507,10 @@ msgid "" "experimental stage." msgstr "Les noms d'utilisateurs sont utilisés pour le stockage et l'assignation de (meta) données. Pour identifier et reconnaitre précisément les utilisateurs, chaque utilisateur LDAP aura un nom interne spécifique. Cela requiert l'association d'un nom d'utilisateur ownCloud à un nom d'utilisateur LDAP. Le nom d'utilisateur créé est associé à l'attribut UUID de l'utilisateur LDAP. Par ailleurs, le DN est mémorisé en cache pour limiter les interactions LDAP mais il n'est pas utilisé pour l'identification. Si le DN est modifié, ces modifications seront retrouvées. Seul le nom interne à ownCloud est utilisé au sein du produit. Supprimer les associations créera des orphelins et l'action affectera toutes les configurations LDAP. NE JAMAIS SUPPRIMER LES ASSOCIATIONS EN ENVIRONNEMENT DE PRODUCTION, mais uniquement sur des environnements de tests et d'expérimentation." -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "Supprimer l'association utilisateur interne-utilisateur LDAP" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Supprimer l'association nom de groupe-groupe LDAP" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Tester la configuration" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Aide" diff --git a/l10n/fr_CA/core.po b/l10n/fr_CA/core.po new file mode 100644 index 0000000000000000000000000000000000000000..559ab1064292e0875c229679cb73fd5a7c7e9461 --- /dev/null +++ b/l10n/fr_CA/core.po @@ -0,0 +1,775 @@ +# 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: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-08 03:26+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: ajax/share.php:119 ajax/share.php:198 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: ajax/share.php:169 +#, 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 "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +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:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:33 +msgid "Monday" +msgstr "" + +#: js/config.php:34 +msgid "Tuesday" +msgstr "" + +#: js/config.php:35 +msgid "Wednesday" +msgstr "" + +#: js/config.php:36 +msgid "Thursday" +msgstr "" + +#: js/config.php:37 +msgid "Friday" +msgstr "" + +#: js/config.php:38 +msgid "Saturday" +msgstr "" + +#: js/config.php:43 +msgid "January" +msgstr "" + +#: js/config.php:44 +msgid "February" +msgstr "" + +#: js/config.php:45 +msgid "March" +msgstr "" + +#: js/config.php:46 +msgid "April" +msgstr "" + +#: js/config.php:47 +msgid "May" +msgstr "" + +#: js/config.php:48 +msgid "June" +msgstr "" + +#: js/config.php:49 +msgid "July" +msgstr "" + +#: js/config.php:50 +msgid "August" +msgstr "" + +#: js/config.php:51 +msgid "September" +msgstr "" + +#: js/config.php:52 +msgid "October" +msgstr "" + +#: js/config.php:53 +msgid "November" +msgstr "" + +#: js/config.php:54 +msgid "December" +msgstr "" + +#: js/js.js:387 +msgid "Settings" +msgstr "" + +#: js/js.js:858 +msgid "seconds ago" +msgstr "" + +#: js/js.js:859 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:860 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:861 +msgid "today" +msgstr "" + +#: js/js.js:862 +msgid "yesterday" +msgstr "" + +#: js/js.js:863 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:864 +msgid "last month" +msgstr "" + +#: js/js.js:865 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:866 +msgid "months ago" +msgstr "" + +#: js/js.js:867 +msgid "last year" +msgstr "" + +#: js/js.js:868 +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/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:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 +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:187 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:189 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:219 +msgid "Share link" +msgstr "" + +#: js/share.js:222 +msgid "Password protect" +msgstr "" + +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +msgid "Password" +msgstr "" + +#: js/share.js:229 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:233 +msgid "Email link to person" +msgstr "" + +#: js/share.js:234 +msgid "Send" +msgstr "" + +#: js/share.js:239 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:240 +msgid "Expiration date" +msgstr "" + +#: js/share.js:275 +msgid "Share via email:" +msgstr "" + +#: js/share.js:278 +msgid "No people found" +msgstr "" + +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:375 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:397 +msgid "Unshare" +msgstr "" + +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 +msgid "can edit" +msgstr "" + +#: js/share.js:410 +msgid "access control" +msgstr "" + +#: js/share.js:413 +msgid "create" +msgstr "" + +#: js/share.js:416 +msgid "update" +msgstr "" + +#: js/share.js:419 +msgid "delete" +msgstr "" + +#: js/share.js:422 +msgid "share" +msgstr "" + +#: js/share.js:694 +msgid "Password protected" +msgstr "" + +#: js/share.js:707 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:719 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:734 +msgid "Sending ..." +msgstr "" + +#: js/share.js:745 +msgid "Email sent" +msgstr "" + +#: js/share.js:769 +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 ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:62 +#, php-format +msgid "%s password reset" +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.
    If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
    If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
    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:52 +#: templates/login.php:31 +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 "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:111 +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 documentation." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:67 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:74 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:86 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 +msgid "will be used" +msgstr "" + +#: templates/installation.php:149 +msgid "Database user" +msgstr "" + +#: templates/installation.php:156 +msgid "Database password" +msgstr "" + +#: templates/installation.php:161 +msgid "Database name" +msgstr "" + +#: templates/installation.php:169 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:176 +msgid "Database host" +msgstr "" + +#: templates/installation.php:185 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:72 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:44 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:49 +msgid "remember" +msgstr "" + +#: templates/login.php:52 +msgid "Log in" +msgstr "" + +#: templates/login.php:58 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    " +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/fr_CA/files.po b/l10n/fr_CA/files.po new file mode 100644 index 0000000000000000000000000000000000000000..945c90682d93fa007f0c6cc87ecaaaa441fa2159 --- /dev/null +++ b/l10n/fr_CA/files.po @@ -0,0 +1,413 @@ +# 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: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06: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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:27 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:64 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:71 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:72 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:74 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:75 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:76 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:77 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:78 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:96 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:127 ajax/upload.php:154 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:144 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:172 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 +msgid "Files" +msgstr "" + +#: js/file-upload.js:228 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:239 +msgid "Not enough space available" +msgstr "" + +#: js/file-upload.js:306 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:344 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:436 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 +msgid "Share" +msgstr "" + +#: js/fileactions.js:137 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:194 +msgid "Rename" +msgstr "" + +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" +msgstr "" + +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:539 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:539 +msgid "undo" +msgstr "" + +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:617 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:828 js/filelist.js:866 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:72 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:81 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:93 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:97 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:349 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error moving file" +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 +msgid "Name" +msgstr "" + +#: js/files.js:614 templates/index.php:68 +msgid "Size" +msgstr "" + +#: js/files.js:615 templates/index.php:70 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:11 templates/index.php:16 +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:5 +msgid "New" +msgstr "" + +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 +msgid "Text file" +msgstr "" + +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From link" +msgstr "" + +#: templates/index.php:29 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:34 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:45 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:62 +msgid "Download" +msgstr "" + +#: templates/index.php:73 templates/index.php:74 +msgid "Delete" +msgstr "" + +#: templates/index.php:86 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:88 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:93 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:96 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/fr_CA/files_encryption.po b/l10n/fr_CA/files_encryption.po new file mode 100644 index 0000000000000000000000000000000000000000..cbf1900218235c93cf2f9999c3f79dd0547dbdd1 --- /dev/null +++ b/l10n/fr_CA/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: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_CA\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:59 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:60 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "" + +#: hooks/hooks.php:273 +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/settings-admin.js:13 +msgid "Saving..." +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/fr_CA/files_external.po b/l10n/fr_CA/files_external.po new file mode 100644 index 0000000000000000000000000000000000000000..373a3e669a32467740b9dd48f75e97fb6584fb81 --- /dev/null +++ b/l10n/fr_CA/files_external.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-26 21:30+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:86 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:42 js/google.js:121 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:466 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:470 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:473 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/fr_CA/files_sharing.po b/l10n/fr_CA/files_sharing.po new file mode 100644 index 0000000000000000000000000000000000000000..dfe5c2c332024931b7eccdabe0bab26387790d8a --- /dev/null +++ b/l10n/fr_CA/files_sharing.po @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-26 21:30+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: 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:18 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:21 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:29 templates/public.php:95 +msgid "Download" +msgstr "" + +#: templates/public.php:46 templates/public.php:49 +msgid "Upload" +msgstr "" + +#: templates/public.php:59 +msgid "Cancel upload" +msgstr "" + +#: templates/public.php:92 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/fr_CA/files_trashbin.po b/l10n/fr_CA/files_trashbin.po new file mode 100644 index 0000000000000000000000000000000000000000..a526cc8e7ee4200ef6520448a0dca227bd38b121 --- /dev/null +++ b/l10n/fr_CA/files_trashbin.po @@ -0,0 +1,60 @@ +# 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: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-26 21:30+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_CA\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:42 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:18 js/trash.js:45 js/trash.js:123 js/trash.js:176 +msgid "Error" +msgstr "" + +#: lib/trashbin.php:815 lib/trashbin.php:817 +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:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/fr_CA/files_versions.po b/l10n/fr_CA/files_versions.po new file mode 100644 index 0000000000000000000000000000000000000000..316a1ccee6048ee962599b428f500ef27b50150a --- /dev/null +++ b/l10n/fr_CA/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: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-26 21:30+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_CA\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:86 +msgid "More versions..." +msgstr "" + +#: js/versions.js:123 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:154 +msgid "Restore" +msgstr "" diff --git a/l10n/fr_CA/lib.po b/l10n/fr_CA/lib.po new file mode 100644 index 0000000000000000000000000000000000000000..37d8be2602ddb5761a38a19748200162aca3aecf --- /dev/null +++ b/l10n/fr_CA/lib.po @@ -0,0 +1,333 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: private/app.php:243 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:255 +msgid "No app name specified" +msgstr "" + +#: private/app.php:360 +msgid "Help" +msgstr "" + +#: private/app.php:373 +msgid "Personal" +msgstr "" + +#: private/app.php:384 +msgid "Settings" +msgstr "" + +#: private/app.php:396 +msgid "Users" +msgstr "" + +#: private/app.php:409 +msgid "Admin" +msgstr "" + +#: private/app.php:873 +#, 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:34 +msgid "web services under your control" +msgstr "" + +#: private/files.php:66 private/files.php:98 +#, php-format +msgid "cannot open \"%s\"" +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:63 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:125 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:131 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:140 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:146 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:159 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:169 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:182 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:39 private/json.php:62 private/json.php:73 +msgid "Authentication error" +msgstr "" + +#: private/json.php:51 +msgid "Token expired. Please reload page." +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:24 +#: private/setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL 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:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#, 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL." +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:23 private/setup/postgresql.php:69 +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:195 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:196 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:131 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:132 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:133 +msgid "today" +msgstr "" + +#: private/template/functions.php:134 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:136 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:138 +msgid "last month" +msgstr "" + +#: private/template/functions.php:139 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:141 +msgid "last year" +msgstr "" + +#: private/template/functions.php:142 +msgid "years ago" +msgstr "" diff --git a/l10n/fr_CA/settings.po b/l10n/fr_CA/settings.po new file mode 100644 index 0000000000000000000000000000000000000000..0653592a542e3fdf0ecc696112e6c7da27bfcd72 --- /dev/null +++ b/l10n/fr_CA/settings.po @@ -0,0 +1,668 @@ +# 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: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 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/apps.js:43 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +msgid "Disable" +msgstr "" + +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +msgid "Enable" +msgstr "" + +#: js/apps.js:71 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:125 +msgid "Updating...." +msgstr "" + +#: js/apps.js:128 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:128 +msgid "Error" +msgstr "" + +#: js/apps.js:129 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:132 +msgid "Updated" +msgstr "" + +#: js/personal.js:220 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:266 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/personal.js:287 +msgid "Saving..." +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:95 templates/users.php:26 templates/users.php:90 +#: templates/users.php:118 +msgid "Groups" +msgstr "" + +#: js/users.js:100 templates/users.php:92 templates/users.php:130 +msgid "Group Admin" +msgstr "" + +#: js/users.js:123 templates/users.php:170 +msgid "Delete" +msgstr "" + +#: js/users.js:284 +msgid "add group" +msgstr "" + +#: js/users.js:451 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:452 js/users.js:458 js/users.js:473 +msgid "Error creating user" +msgstr "" + +#: js/users.js:457 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:45 personal.php:46 +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:22 templates/admin.php:36 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:25 +#, 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:39 +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:50 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:53 +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:54 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:65 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:68 +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:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 +#, 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:118 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:121 +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:135 +msgid "Cron" +msgstr "" + +#: templates/admin.php:142 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:150 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:163 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:169 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:170 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:177 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:178 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:186 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:187 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:195 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:196 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:203 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:206 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 +msgid "Security" +msgstr "" + +#: templates/admin.php:234 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:236 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:242 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:254 +msgid "Log" +msgstr "" + +#: templates/admin.php:255 +msgid "Log level" +msgstr "" + +#: templates/admin.php:287 +msgid "More" +msgstr "" + +#: templates/admin.php:288 +msgid "Less" +msgstr "" + +#: templates/admin.php:294 templates/personal.php:173 +msgid "Version" +msgstr "" + +#: templates/admin.php:298 templates/personal.php:176 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:13 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:28 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:33 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:39 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:41 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +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 %s of the available %s" +msgstr "" + +#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +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:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:44 +msgid "New password" +msgstr "" + +#: templates/personal.php:46 +msgid "Change password" +msgstr "" + +#: templates/personal.php:58 templates/users.php:88 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:73 +msgid "Email" +msgstr "" + +#: templates/personal.php:75 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:76 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:86 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:91 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:93 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:94 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:95 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:97 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:101 +msgid "Abort" +msgstr "" + +#: templates/personal.php:102 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:110 templates/personal.php:111 +msgid "Language" +msgstr "" + +#: templates/personal.php:130 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:137 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:139 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "" + +#: templates/personal.php:150 +msgid "Encryption" +msgstr "" + +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:158 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:163 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:21 +msgid "Login Name" +msgstr "" + +#: templates/users.php:30 +msgid "Create" +msgstr "" + +#: templates/users.php:36 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:48 templates/users.php:148 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:66 templates/users.php:163 +msgid "Other" +msgstr "" + +#: templates/users.php:87 +msgid "Username" +msgstr "" + +#: templates/users.php:94 +msgid "Storage" +msgstr "" + +#: templates/users.php:108 +msgid "change full name" +msgstr "" + +#: templates/users.php:112 +msgid "set new password" +msgstr "" + +#: templates/users.php:143 +msgid "Default" +msgstr "" diff --git a/l10n/fr_CA/user_ldap.po b/l10n/fr_CA/user_ldap.po new file mode 100644 index 0000000000000000000000000000000000000000..89e3883b60acf7b40fef9b5f0e318248c5525487 --- /dev/null +++ b/l10n/fr_CA/user_ldap.po @@ -0,0 +1,513 @@ +# 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: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-27 17:09+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_CA\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:37 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:40 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:44 +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:777 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:786 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:795 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:812 js/settings.js:821 +msgid "Select groups" +msgstr "" + +#: js/settings.js:815 js/settings.js:824 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:818 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:845 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:852 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:861 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:862 +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:779 lib/wizard.php:791 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:952 +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 "Limit the access to %s to groups meeting this criteria:" +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 "What attribute shall be used as login name:" +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 the access to %s to users meeting this 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 "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php: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:40 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:42 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:43 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:43 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:44 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:45 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:45 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:51 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:52 +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:53 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:54 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:55 +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:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:58 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:59 +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:60 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:60 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/fr_CA/user_webdavauth.po b/l10n/fr_CA/user_webdavauth.po new file mode 100644 index 0000000000000000000000000000000000000000..bec148e967efebb519eeb32156223156eed93e66 --- /dev/null +++ b/l10n/fr_CA/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: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-26 21:30+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_CA\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/gl/core.po b/l10n/gl/core.po index b8bcfd4eea811c69b0e3a9ca06f2aaeefcf57994..760ba73cc77779850ec6f897bf66af3c20b82d4d 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-24 12:58-0400\n" -"PO-Revision-Date: 2013-09-23 10:30+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -18,14 +18,15 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s compartiu «%s» con vostede" -#: ajax/share.php:227 -msgid "group" -msgstr "grupo" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Non é posíbel enviar correo aos usuarios seguintes: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -52,45 +53,6 @@ msgstr "Ficheiro da caché actualizado" msgid "... %d%% done ..." msgstr "... %d%% feito ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Non se indicou o tipo de categoría" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Sen categoría que engadir?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Esta categoría xa existe: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Non se forneceu o tipo de obxecto." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "Non se forneceu o ID %s." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Produciuse un erro ao engadir %s aos favoritos." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Non se seleccionaron categorías para eliminación." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Produciuse un erro ao eliminar %s dos favoritos." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Non forneceu ningunha imaxe ou ficheiro" @@ -113,31 +75,31 @@ msgstr "Non indicou como recortar" #: js/config.php:32 msgid "Sunday" -msgstr "Domingo" +msgstr "domingo" #: js/config.php:33 msgid "Monday" -msgstr "Luns" +msgstr "luns" #: js/config.php:34 msgid "Tuesday" -msgstr "Martes" +msgstr "martes" #: js/config.php:35 msgid "Wednesday" -msgstr "Mércores" +msgstr "mércores" #: js/config.php:36 msgid "Thursday" -msgstr "Xoves" +msgstr "xoves" #: js/config.php:37 msgid "Friday" -msgstr "Venres" +msgstr "venres" #: js/config.php:38 msgid "Saturday" -msgstr "Sábado" +msgstr "sábado" #: js/config.php:43 msgid "January" @@ -187,59 +149,59 @@ msgstr "novembro" msgid "December" msgstr "decembro" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Axustes" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "hai %n minuto" msgstr[1] "hai %n minutos" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "hai %n hora" msgstr[1] "hai %n horas" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "hoxe" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "onte" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "hai %n día" msgstr[1] "hai %n días" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "último mes" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "hai %n mes" msgstr[1] "hai %n meses" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "meses atrás" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "último ano" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "anos atrás" @@ -307,155 +269,183 @@ msgstr "({count} seleccionados)" msgid "Error loading file exists template" msgstr "Produciuse un erro ao cargar o modelo de ficheiro existente" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Non se especificou o tipo de obxecto." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 -msgid "Error" -msgstr "Erro" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Non se especificou o nome do aplicativo." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Non está instalado o ficheiro {file} que se precisa" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Compartir" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Compartir" -#: js/share.js:131 js/share.js:696 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Erro" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Produciuse un erro ao compartir" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Produciuse un erro ao deixar de compartir" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Produciuse un erro ao cambiar os permisos" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Compartido con vostede e co grupo {group} por {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Compartido con vostede por {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Compartir con" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Compartir cun usuario ou grupo ..." -#: js/share.js:188 -msgid "Share with link" -msgstr "Compartir coa ligazón" +#: js/share.js:219 +msgid "Share link" +msgstr "Ligazón para compartir" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Protexido con contrasinais" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Contrasinal" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Permitir o envío público" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Enviar ligazón por correo" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Enviar" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Definir a data de caducidade" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Data de caducidade" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Compartir por correo:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Non se atopou xente" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "grupo" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Non se permite volver a compartir" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Deixar de compartir" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "notificar por correo" + +#: js/share.js:408 msgid "can edit" msgstr "pode editar" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "control de acceso" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "crear" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "actualizar" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "eliminar" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "compartir" -#: js/share.js:400 js/share.js:643 +#: js/share.js:694 msgid "Password protected" msgstr "Protexido con contrasinal" -#: js/share.js:656 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Produciuse un erro ao retirar a data de caducidade" -#: js/share.js:668 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Produciuse un erro ao definir a data de caducidade" -#: js/share.js:683 +#: js/share.js:734 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:694 +#: js/share.js:745 msgid "Email sent" msgstr "Correo enviado" +#: js/share.js:769 +msgid "Warning" +msgstr "Aviso" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Non se especificou o tipo de obxecto." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Introduza o novo" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Eliminar" + +#: js/tags.js:31 +msgid "Add" +msgstr "Engadir" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Editar etiquetas" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Produciuse un erro ao cargar o modelo do dialogo: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Non se seleccionaron etiquetas para borrado." + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "Volva a cargar a páxina." + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Envióuselle ao seu correo unha ligazón para restabelecer o seu contrasinal.
    Se non o recibe nun prazo razoábel de tempo, revise o seu cartafol de correo lixo ou de non desexados.
    Se non o atopa aí pregúntelle ao seu administrador local.." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Non foi posíbel facer a petición!
    Asegúrese de que o seu enderezo de correo ou nome de usuario é correcto." -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Recibirá unha ligazón por correo para restabelecer o contrasinal" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Nome de usuario" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -504,13 +494,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Os ficheiros están cifrados. Se aínda non activou a chave de recuperación non haberá xeito de recuperar os datos unha vez que se teña restabelecido o contrasinal. Se non ten certeza do que ten que facer, póñase en contacto co administrador antes de continuar. Confirma que quere continuar?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Si, confirmo que quero restabelecer agora o meu contrasinal" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Petición de restabelecemento" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Restabelecer" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -536,7 +526,7 @@ msgstr "Persoal" msgid "Users" msgstr "Usuarios" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Aplicativos" @@ -548,6 +538,34 @@ msgstr "Administración" msgid "Help" msgstr "Axuda" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "Produciuse un erro ao cargar as etiquetas" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "Xa existe a etiqueta" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "Produciuse un erro ao eliminar a(s) etiqueta(s)" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "Produciuse un erro ao etiquetar" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "Produciuse un erro ao eliminar a etiqueta" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "Produciuse un erro ao marcar como favorito" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "Produciuse un erro ao desmarcar como favorito" + #: templates/403.php:12 msgid "Access forbidden" msgstr "Acceso denegado" @@ -564,108 +582,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Ola,\n\nsó facerlle saber que %s compartiu %s con vostede.\nVéxao en: %s\n\nSaúdos!" +msgstr "Ola,\n\nsó facerlle saber que %s compartiu %s con vostede.\nVéxao en: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Editar as categorías" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "Esta compartición caduca o %s." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Engadir" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Saúdos!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Aviso de seguranza" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "A súa versión de PHP é vulnerábel a un ataque de byte nulo (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Actualice a instalación de PHP para empregar %s de xeito seguro." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Non hai un xerador de números ao chou dispoñíbel. Active o engadido de OpenSSL para PHP." -#: templates/installation.php:33 +#: 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 "Sen un xerador seguro de números ao chou podería acontecer que predicindo as cadeas de texto de reinicio de contrasinais se afagan coa súa conta." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "O seu directorio de datos e os ficheiros probabelmente sexan accesíbeis desde a Internet xa que o ficheiro .htaccess non está a traballar." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "Para obter información sobre como como configurar axeitadamente o seu servidor, vexa a documentación." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Crear unha contra de administrador" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Cartafol de datos" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Configurar a base de datos" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "vai ser utilizado" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Usuario da base de datos" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Contrasinal da base de datos" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Nome da base de datos" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Táboa de espazos da base de datos" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Servidor da base de datos" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Rematar a configuración" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Rematado ..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "Este aplicativo require que o JavaScript estea activado para unha operativa correcta. Active o JavaScript e volva a cargar a interface." + +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s está dispoñíbel. Obteña máis información sobre como actualizar." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Desconectar" @@ -683,19 +712,27 @@ msgstr "Se non fixo recentemente cambios de contrasinal é posíbel que a súa c msgid "Please change your password to secure your account again." msgstr "Cambie de novo o seu contrasinal para asegurar a súa conta." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "A autenticación fracasou do lado do servidor!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Contacte co administrador." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Perdeu o contrasinal?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "lembrar" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Conectar" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Accesos alternativos" @@ -703,10 +740,37 @@ msgstr "Accesos alternativos" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Ola,

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

    Saúdos!" +"href=\"%s\">View it!

    " +msgstr "Ola,

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

    " + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "Esta instancia do ownCloud está actualmente en modo de usuario único." + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "Isto significa que só os administradores poden utilizar a instancia." -#: templates/update.php:3 +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "Póñase en contacto co administrador do sistema se persiste esta mensaxe ou se aparece de forma inesperada." + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "Grazas pola súa paciencia." + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "Actualizando ownCloud a versión %s, esto pode levar un anaco." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "Esta instancia do ownCloud está actualizandose neste momento, pode levarlle un chisco." + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "Volva cargar a páxina de aquí a pouco para para continuar co ownCloud." diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 33e76e84873d4681ee7e72e25428a0a9dc5df899..00a61f78a735da395388b07e003cc02505621b28 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-24 12:58-0400\n" -"PO-Revision-Date: 2013-09-23 10:30+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -21,69 +21,114 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Non se moveu %s - Xa existe un ficheiro con ese nome." +msgstr "Non foi posíbel mover %s; Xa existe un ficheiro con ese nome." #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" msgstr "Non foi posíbel mover %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "O nome de ficheiro non pode estar baleiro" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "O nome do ficheiro non pode conter «/». Escolla outro nome." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "Xa existe o nome %s no cartafol %s. Escolla outro nome." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "Esta orixe non é correcta" + +#: ajax/newfile.php:86 +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:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Produciuse un erro ao descargar %s en %s" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Produciuse un erro ao crear o ficheiro" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "O nome de cartafol non pode estar baleiro." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "O nome do cartafol non pode conter «/». Escolla outro nome." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Produciuse un erro ao crear o cartafol" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Non é posíbel configurar o directorio de envíos." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Marca incorrecta" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Non se enviou ningún ficheiro. Produciuse un erro descoñecido." -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Non houbo erros, o ficheiro enviouse correctamente" -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro so foi parcialmente enviado" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Non se enviou ningún ficheiro" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Falta o cartafol temporal" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Produciuse un erro ao escribir no disco" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Non hai espazo de almacenamento abondo" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 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:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "O envío fracasou. Non foi posíbel atopar o ficheiro enviado" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "O directorio é incorrecto." @@ -91,157 +136,178 @@ msgstr "O directorio é incorrecto." msgid "Files" msgstr "Ficheiros" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Non é posíbel enviar {filename}, xa que ou é un directorio ou ten 0 bytes" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "O espazo dispoñíbel é insuficiente" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Envío cancelado." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "Non foi posíbel obter o resultado do servidor." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "O URL non pode quedar baleiro." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "O URL non pode quedar en branco." -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Nome de cartafol incorrecto. O uso de «Compartido» e «Shared» está reservado para o ownClod" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "«Shared» dentro do cartafol persoal é un nome reservado" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Erro" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "Xa existe un {new_name}" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Non foi posíbel crear o ficheiro" -#: js/fileactions.js:119 +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Non foi posíbel crear o cartafol" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Produciuse un erro ao obter o URL" + +#: js/fileactions.js:125 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Renomear" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Pendentes" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "Xa existe un {new_name}" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "substituír" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "suxerir nome" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Non foi posíbel renomear o ficheiro" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "cancelar" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "substituír {new_name} por {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "desfacer" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Produciuse un erro ao eliminar o ficheiro." + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartafol" msgstr[1] "%n cartafoles" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n ficheiro" msgstr[1] "%n ficheiros" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Cargando %n ficheiro" msgstr[1] "Cargando %n ficheiros" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "«.» é un nome de ficheiro incorrecto" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "O nome de ficheiro non pode estar baleiro" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome incorrecto, non se permite «\\», «/», «<», «>», «:», «\"», «|», «?» e «*»." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "O seu espazo de almacenamento está cheo, non é posíbel actualizar ou sincronizar máis os ficheiros!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "O seu espazo de almacenamento está case cheo ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "O aplicativo de cifrado está activado, mais as chaves non foron inicializadas, saia da sesión e volva a acceder de novo" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "A chave privada para o aplicativo de cifrado non é correcta. Actualice o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros cifrados." + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "O cifrado foi desactivado, mais os ficheiros están cifrados. Vaia á configuración persoal para descifrar os ficheiros." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Está a prepararse a súa descarga. Isto pode levar bastante tempo se os ficheiros son grandes." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "Produciuse un erro ao mover o ficheiro" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Erro" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Nome" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Tamaño" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Modificado" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Nome de cartafol non válido. O uso de «Shared» está reservado." + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s non pode cambiar de nome" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Enviar" @@ -277,65 +343,69 @@ msgstr "Tamaño máximo de descarga para os ficheiros ZIP" msgid "Save" msgstr "Gardar" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Novo" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "Ficheiro novo de texto" + +#: templates/index.php:8 msgid "Text file" msgstr "Ficheiro de texto" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Novo cartafol" + +#: templates/index.php:10 msgid "Folder" msgstr "Cartafol" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Desde a ligazón" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Ficheiros eliminados" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Cancelar o envío" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Non ten permisos para escribir aquí." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "Non ten permisos para enviar ou crear ficheiros aquí." -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Aquí non hai nada. Envíe algo." -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Descargar" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Deixar de compartir" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Eliminar" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Envío demasiado grande" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiros que tenta enviar exceden do tamaño máximo permitido neste servidor" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Estanse analizando os ficheiros. Agarde." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index bdd69c8404817b3ee741e295041d542462f72c2e..32805bfde64af87ede9428265332fc1837772ccc 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-02 17:27-0500\n" +"PO-Revision-Date: 2013-12-01 11:50+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -46,75 +46,96 @@ msgstr "O contrasinal foi cambiado satisfactoriamente" msgid "Could not change the password. Maybe the old password was not correct." msgstr "Non foi posíbel cambiar o contrasinal. Probabelmente o contrasinal antigo non é o correcto." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "A chave privada foi actualizada correctamente." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Non foi posíbel actualizar o contrasinal da chave privada. É probábel que o contrasinal antigo non sexa correcto." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior (p.ex. o seu directorio corporativo). Vostede pode actualizar o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros" +"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 "Non se iniciou o aplicativo de cifrado! Quizais volva a activarse durante a sesión. Tente pechar a sesión e volver iniciala que tamén se inicie o aplicativo de cifrado." -#: hooks/hooks.php:41 +#: 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 "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior do %s (p.ex. o seu directorio corporativo). Vostede pode actualizar o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros" + +#: 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 "Non foi posíbel descifrar o ficheiro, probabelmente tratase dun ficheiro compartido. Pidalle ao propietario do ficheiro que volva compartir o ficheiro con vostede." + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Produciuse un erro descoñecido. Comprobe os axustes do sistema ou póñase en contacto co administrador" + +#: hooks/hooks.php:59 msgid "Missing requirements." msgstr "Non se cumpren os requisitos." -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de o OpenSSL xunto coa extensión PHP estean activados e configurados correctamente. Polo de agora foi desactivado o aplicativo de cifrado." -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "Os seguintes usuarios non teñen configuración para o cifrado:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "Comezou o cifrado inicial... Isto pode levar bastante tempo. Agarde." + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Gardando..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior. " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Vaia directamente ao seu" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Pode desbloquear a chave privada nos seus" - -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "axustes persoais" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Cifrado" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Activar a chave de recuperación (permitirá recuperar os ficheiros dos usuarios no caso de perda do contrasinal):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Contrasinal da chave de recuperación" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Repita o contrasinal da chave da recuperación" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Activado" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Desactivado" @@ -122,58 +143,62 @@ msgstr "Desactivado" msgid "Change recovery key password:" msgstr "Cambiar o contrasinal da chave de la recuperación:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Antigo contrasinal da chave de recuperación" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Novo contrasinal da chave de recuperación" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "Repita o novo contrasinal da chave da recuperación" + +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Cambiar o contrasinal" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "O seu contrasinal da chave privada non coincide co seu contrasinal de acceso." -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Estabeleza o seu contrasinal antigo da chave de recuperación ao seu contrasinal de acceso actual" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr " Se non lembra o seu antigo contrasinal pode pedírllelo ao seu administrador para recuperar os seus ficheiros." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Contrasinal de acceso antigo" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Contrasinal de acceso actual" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Actualizar o contrasinal da chave privada" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Activar o contrasinal de recuperación:" -#: templates/settings-personal.php:47 +#: 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 "Ao activar esta opción permitiráselle volver a obter acceso aos ficheiros cifrados no caso de perda do contrasinal" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Actualizouse o ficheiro de axustes de recuperación" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Non foi posíbel actualizar o ficheiro de recuperación" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index c6a78af76d2ee8e4dcd87418f7dcc89297e9322a..1c5aff7b46188d25bc970975de934110590938c7 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Concedeuse acceso" @@ -25,7 +25,7 @@ msgstr "Concedeuse acceso" msgid "Error configuring Dropbox storage" msgstr "Produciuse un erro ao configurar o almacenamento en Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Permitir o acceso" @@ -33,24 +33,24 @@ msgstr "Permitir o acceso" msgid "Please provide a valid Dropbox app key and secret." msgstr "Forneza unha chave correcta e segreda do Dropbox." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Produciuse un erro ao configurar o almacenamento en Google Drive" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Aviso: «smbclient» non está instalado. Non é posibel a montaxe de comparticións CIFS/SMB. Consulte co administrador do sistema para instalalo." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Aviso: A compatibilidade de FTP en PHP non está activada ou instalada. Non é posibel a montaxe de comparticións FTP. Consulte co administrador do sistema para instalalo." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index bd0b79c5d8bec456428c4b8a08fc081eecb7983f..1058585dc19a9b5602a03f4e3728c68af2f26888 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Esta compartición está protexida con contrasinal" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "O contrasinal é incorrecto. Ténteo de novo." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Contrasinal" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Enviar" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Semella que esta ligazón non funciona." @@ -54,28 +54,32 @@ msgstr "foi desactivada a compartición" msgid "For more info, please ask the person who sent this link." msgstr "Para obter máis información, pregúntelle á persoa que lle enviou a ligazón." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartiu o cartafol %s con vostede" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartiu o ficheiro %s con vostede" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Descargar" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Enviar" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Cancelar o envío" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Sen vista previa dispoñíbel para" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Ligazón directa" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index ad7adc59d70554573a6b9b53607da427c8e77cd9..eea63f9317bc6fe1206de9ac49d8e27b63d2fbfe 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-16 01:29-0400\n" -"PO-Revision-Date: 2013-08-15 10:20+0000\n" -"Last-Translator: mbouzada \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "Non foi posíbel eliminar %s permanente" msgid "Couldn't restore %s" msgstr "Non foi posíbel restaurar %s" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "realizar a operación de restauración" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Erro" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "eliminar o ficheiro permanentemente" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Eliminar permanentemente" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Nome" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "Eliminado" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n cartafol" -msgstr[1] "%n cartafoles" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n ficheiro" -msgstr[1] "%n ficheiros" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "restaurado" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Aquí non hai nada. O cesto do lixo está baleiro!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Nome" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Restablecer" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Eliminado" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Eliminar" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 9cb8c43c361d5030f85bc2849985a704dcce660b..daba9df132d14e7d3a13c476c90a737eecb0ad97 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:05+0000\n" -"Last-Translator: mbouzada \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -18,318 +18,317 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Non é posíbel instalar o aplicativo «%s» por non seren compatíbel con esta versión do ownCloud." -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "Non se especificou o nome do aplicativo" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Axuda" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Persoal" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Axustes" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Usuarios" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Administración" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Non foi posíbel anovar «%s»." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "As imaxes personalizadas de perfil aínda non funcionan co cifrado" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Tipo de ficheiro descoñecido" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Imaxe incorrecta" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "servizos web baixo o seu control" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "non foi posíbel abrir «%s»" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "As descargas ZIP están desactivadas." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Os ficheiros necesitan seren descargados dun en un." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Volver aos ficheiros" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Os ficheiros seleccionados son demasiado grandes como para xerar un ficheiro zip." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Descargue os ficheiros en cachos máis pequenos e por separado, ou pídallos amabelmente ao seu administrador." +msgstr "Descargue os ficheiros en fragmentos máis pequenos e por separado, ou pídallos amabelmente ao seu administrador." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Non foi especificada ningunha orixe ao instalar aplicativos" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Non foi especificada ningunha href ao instalar aplicativos" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Non foi especificada ningunha ruta ao instalar aplicativos desde un ficheiro local" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Os arquivos do tipo %s non están admitidos" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Non foi posíbel abrir o arquivo ao instalar aplicativos" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "O aplicativo non fornece un ficheiro info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "Non é posíbel instalar o aplicativo por mor de conter código non permitido" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Non é posíbel instalar o aplicativo por non seren compatíbel con esta versión do ownCloud." -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Non é posíbel instalar o aplicativo por conter a etiqueta\n\n\ntrue\n\nque non está permitida para os aplicativos non enviados" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Non é posíbel instalar o aplicativo xa que a versión en info.xml/version non é a mesma que a versión informada desde a App Store" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Xa existe o directorio do aplicativo" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Non é posíbel crear o cartafol de aplicativos. Corrixa os permisos. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "O aplicativo non está activado" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Produciuse un erro de autenticación" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Testemuña caducada. Recargue a páxina." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Ficheiros" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Texto" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Imaxes" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s introduza o nome de usuario da base de datos" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s introduza o nome da base de datos" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s non se poden empregar puntos na base de datos" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nome de usuario e/ou contrasinal de MS SQL incorrecto: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Deberá introducir unha conta existente ou o administrador." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Nome de usuario e/ou contrasinal de MySQL incorrecto" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "Produciuse un erro na base de datos: «%s»" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "A orde ofensiva foi: «%s»" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "O usuario MySQL '%s'@'localhost' xa existe." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Omitir este usuario de MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "O usuario MySQL «%s»@«%%» xa existe." -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Omitir este usuario de MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Non foi posíbel estabelecer a conexión con Oracle" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Nome de usuario e/ou contrasinal de Oracle incorrecto" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "A orde ofensiva foi: «%s», nome: %s, contrasinal: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "Nome de usuario e/ou contrasinal de PostgreSQL incorrecto" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Estabeleza un nome de usuario administrador" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Estabeleza un contrasinal de administrador" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "O seu servidor web non está aínda configurado adecuadamente para permitir a sincronización de ficheiros xa que semella que a interface WebDAV non está a funcionar." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Volva comprobar as guías de instalación" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Non foi posíbel atopar a categoría «%s»" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "segundos atrás" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "hai %n minuto" msgstr[1] "hai %n minutos" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "hai %n hora" msgstr[1] "hai %n horas" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "hoxe" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "onte" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "hai %n día" msgstr[1] "hai %n días" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "último mes" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "hai %n mes" msgstr[1] "hai %n meses" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "último ano" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "anos atrás" - -#: template.php:297 -msgid "Caused by:" -msgstr "Causado por:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Non foi posíbel atopar a categoría «%s»" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 8533d9c17c63ce58305b627f1111397c5afb0bac..c52ea62a0a6943b2da406f3388d48ebfd2af55f3 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-05 08:40+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,12 +28,12 @@ msgid "Authentication error" msgstr "Produciuse un erro de autenticación" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "O seu nome visíbel foi cambiado" +msgid "Your full name has been changed." +msgstr "O seu nome completo foi cambiado" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Non é posíbel cambiar o nome visíbel" +msgid "Unable to change full name" +msgstr "Non é posíbel cambiar o nome completo" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -118,11 +118,11 @@ msgstr "Non é posíbel cambiar o contrasinal" msgid "Update to {appversion}" msgstr "Actualizar á {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Desactivar" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Activar" @@ -130,31 +130,31 @@ msgstr "Activar" msgid "Please wait...." msgstr "Agarde..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Produciuse un erro ao desactivar o aplicativo" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Produciuse un erro ao activar o aplicativo" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Actualizando..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Produciuse un erro mentres actualizaba o aplicativo" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Erro" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Actualizar" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Actualizado" @@ -162,7 +162,7 @@ msgstr "Actualizado" msgid "Select a profile picture" msgstr "Seleccione unha imaxe para o perfil" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "Descifrando ficheiros... isto pode levar un anaco." @@ -182,44 +182,75 @@ msgstr "desfacer" msgid "Unable to remove user" msgstr "Non é posíbel retirar o usuario" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupos" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grupo Admin" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Eliminar" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "engadir un grupo" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "Debe fornecer un nome de usuario" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "Produciuse un erro ao crear o usuario" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "Debe fornecer un contrasinal" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Aviso: O directorio persoal para o usuario «{user}» xa existe" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Galego" -#: templates/admin.php:15 +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "Todo (problemas críticos, erros, avisos, información, depuración)" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "Información, avisos, erros e problemas críticos" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "Avisos, erros e problemas críticos" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "Erros e problemas críticos" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "Só problemas críticos" + +#: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" msgstr "Aviso de seguranza" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "Está accedendo a %s a través de HTTP. Suxerímoslle que configure o seu servidor para requirir, no seu canto, o uso de HTTPS." + +#: templates/admin.php:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -228,48 +259,68 @@ msgid "" "root." msgstr "O seu cartafol de datos e os seus ficheiros probabelmente sexan accesíbeis a través de internet. O ficheiro .htaccess non está a traballar. Suxerímoslle que configure o seu servidor web de tal maneira que o cartafol de datos non estea accesíbel ou que mova o o directorio de datos fóra da raíz de documentos do servidor web." -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Configurar os avisos" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "O seu servidor web non está aínda configurado adecuadamente para permitir a sincronización de ficheiros xa que semella que a interface WebDAV non está a funcionar." -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Volva comprobar as guías de instalación" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Non se atopou o módulo «fileinfo»" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Non se atopou o módulo de PHP «fileinfo». É recomendábel activar este módulo para obter os mellores resultados coa detección do tipo MIME." -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "A versión de PHP está desactualizada" + +#: templates/admin.php:82 +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 versión de PHP está desactualizada. Recomendámoslle que a actualice á versión 5.3.8 ou posterior xa que as versións anteriores son coñecidas por estragarse. É probábel que esta instalación no estea a funcionar correctamente." + +#: templates/admin.php:93 msgid "Locale not working" msgstr "A configuración rexional non funciona" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "Non é posíbel estabelecer a configuración rexional do sistema a unha que admita UTF-8." + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "Isto significa que pode haber problemas con certos caracteres en nomes de ficheiro." + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "A configuración rexional do sistema non pode estabelecerse a %s. Isto significa que pode haber problemas con certos caracteres nos nomes de ficheiro. Recomendámoslle que instale os paquetes necesarios no sistema para aceptar o %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "Recomendamoslle que instale no sistema os paquetes necesarios para admitir unha das seguintes configuracións rexionais: %s." -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "A conexión á Internet non funciona" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -278,110 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Este servidor non ten conexión a Internet. Isto significa que algunhas das funcionalidades como a montaxe de almacenamento externo, as notificacións sobre actualizacións ou instalación de aplicativos de terceiros non funcionan. O acceso aos ficheiros de forma remota e o envío de mensaxes de notificación poderían non funcionar. Suxerímoslle que active a conexión a Internet deste servidor se quere dispor de todas as funcionalidades." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Executar unha tarefa con cada páxina cargada" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php está rexistrado nun servizo de WebCron para chamar a cron.php unha vez por minuto a través de HTTP." +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Use o servizo de sistema cron para chamar ao ficheiro cron.php unha vez por minuto." +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Compartindo" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Activar o API para compartir" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Permitir que os aplicativos empreguen o API para compartir" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Permitir ligazóns" -#: templates/admin.php:135 +#: templates/admin.php:178 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:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Permitir os envíos públicos" -#: templates/admin.php:144 +#: templates/admin.php:187 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:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Permitir compartir" -#: templates/admin.php:153 +#: templates/admin.php:196 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:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Permitir que os usuarios compartan con calquera" -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Permitir o envío de notificacións por correo" + +#: templates/admin.php:214 +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:221 msgid "Security" msgstr "Seguranza" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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:191 +#: templates/admin.php:242 #, 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:203 +#: templates/admin.php:254 msgid "Log" msgstr "Rexistro" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Nivel de rexistro" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Máis" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Menos" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versión" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Empregue esta ligazón para acceder aos sus ficheiros mediante WebDAV" +"Use this address to access your Files via " +"WebDAV" +msgstr "Empregue esta ligazón para acceder aos sus ficheiros mediante WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Cifrado" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "o aplicativo de cifrado non está activado, descifrar todos os ficheiros" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "O aplicativo de cifrado non está activado, descifre todos os ficheiros" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Contrasinal de acceso" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Descifrar todos os ficheiros" @@ -573,6 +636,10 @@ msgstr "Introduza o contrasinal de recuperación para recuperar os ficheiros dos msgid "Default Storage" msgstr "Almacenamento predeterminado" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "Introduza a cota de almacenamento (p.ex. «512 MB» ou «12 GB»)" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Sen límites" @@ -590,8 +657,8 @@ msgid "Storage" msgstr "Almacenamento" #: templates/users.php:108 -msgid "change display name" -msgstr "cambiar o nome visíbel" +msgid "change full name" +msgstr "Cambiar o nome completo" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 54fdccd2c352a75999ddeff9c1ded9735f9e42a5..f2492dc699a17b1e9a3a62889821b1e8bac82442 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" -"Last-Translator: mbouzada \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -26,314 +26,425 @@ msgstr "Non foi posíbel limpar as asignacións." msgid "Failed to delete the server configuration" msgstr "Non foi posíbel eliminar a configuración do servidor" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "A configuración é correcta e pode estabelecerse a conexión." -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "A configuración é correcta, mais a ligazón non. Comprobe a configuración do servidor e as credenciais." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "A configuración non é correcta. Vexa o rexistro de ownCloud para máis detalles" -#: js/settings.js:66 +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "Non se especificou unha acción" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "Non se especificou unha configuración" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "Non se especificaron datos" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "Non foi posíbel estabelecer a configuración %s" + +#: js/settings.js:67 msgid "Deletion failed" msgstr "Produciuse un fallo ao eliminar" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Tomar os recentes axustes de configuración do servidor?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Manter os axustes?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Non é posíbel engadir a configuración do servidor" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "limpadas as asignacións" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Correcto" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Erro" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "Configuración correcta" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "Configuración incorrecta" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "Configuración incompleta" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Seleccionar grupos" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "Seleccione as clases de obxectos" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "Seleccione os atributos" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "A proba de conexión foi satisfactoria" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "A proba de conexión fracasou" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Confirma que quere eliminar a configuración actual do servidor?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Confirmar a eliminación" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "Aviso: Os aplicativos user_ldap e user_webdavauth son incompatíbeis. Pode acontecer un comportamento estraño. Consulte co administrador do sistema para desactivar un deles." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "Atopouse %s grupo" +msgstr[1] "Atopáronse %s grupos" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "Atopouse %s usuario" +msgstr[1] "Atopáronse %s usuarios" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "Máquina incorrecta" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "Non foi posíbel atopar a función desexada" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Gardar" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Probar a configuración" -#: templates/settings.php:12 +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Axuda" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "Limitar o acceso a %s aos grupos que coincidan con estes criterios:" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "só as clases de obxecto:" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "só dos grupos:" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "Editar, no seu canto, o filtro en bruto" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "Filtro LDAP en bruto" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Aviso: O módulo PHP LDAP non está instalado, o servidor non funcionará. Consulte co administrador do sistema para instalalo." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "O filtro especifica que grupos LDAP teñen acceso á instancia %s." -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Configuración do servidor" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "atopáronse grupos" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "Atributo que utilizar como nome de usuario:" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "Nome de usuario LDAP:" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "Enderezo de correo LDAP:" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "Outros atributos:" + +#: 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 "Define o filtro que se aplica cando se intenta o acceso. %%uid substitúe o nome de usuario e a acción de acceso. Exemplo: «uid=%%uid»" + +#: templates/part.wizard-server.php:18 msgid "Add Server Configuration" msgstr "Engadir a configuración do servidor" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Servidor" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Pode omitir o protocolo agás que precise de SSL. Nese caso comece con ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "DN base" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Un DN base por liña" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Pode especificar a DN base para usuarios e grupos na lapela de «Avanzado»" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Porto" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "DN do usuario" -#: templates/settings.php:46 +#: 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 "O DN do cliente do usuario co que hai que estabelecer unha conexión, p.ex uid=axente, dc=exemplo, dc=com. Para o acceso anónimo deixe o DN e o contrasinal baleiros." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Contrasinal" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Para o acceso anónimo deixe o DN e o contrasinal baleiros." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Filtro de acceso de usuarios" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Un DN base por liña" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Pode especificar a DN base para usuarios e grupos na lapela de «Avanzado»" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "Limitar o acceso a %s aos usuarios que coincidan con estes criterios:" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "Define o filtro que se aplica cando se intenta o acceso. %%uid substitúe o nome de usuario e a acción de acceso. Exemplo: «uid=%%uid»" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "O filtro especifica que usuarios LDAP teñen acceso á instancia %s." -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Filtro da lista de usuarios" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "atopáronse usuarios" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "Define o filtro a aplicar cando de recuperan os usuarios (sen comodíns). Exemplo: «objectClass=person»" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Atrás" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Filtro de grupo" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Continuar" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "Aviso: Os aplicativos user_ldap e user_webdavauth son incompatíbeis. Pode acontecer un comportamento estraño. Consulte co administrador do sistema para desactivar un deles." -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "Define o filtro a aplicar cando de recuperan os usuarios (sen comodíns). Exemplo: «objectClass=posixGroup»" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Aviso: O módulo PHP LDAP non está instalado, o servidor non funcionará. Consulte co administrador do sistema para instalalo." -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Axustes da conexión" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Configuración activa" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Se está sen marcar, omítese esta configuración." -#: templates/settings.php:69 -msgid "Port" -msgstr "Porto" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Servidor da copia de seguranza (Réplica)" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Indicar un servidor de copia de seguranza opcional. Debe ser unha réplica do servidor principal LDAP/AD." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Porto da copia de seguranza (Réplica)" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Desactivar o servidor principal" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "Conectar só co servidor de réplica." -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Usar TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Non utilizalo ademais para conexións LDAPS xa que fallará." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Servidor LDAP que non distingue entre maiúsculas e minúsculas (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Desactiva a validación do certificado SSL." -#: templates/settings.php:75 +#: 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 "Non recomendado, utilizar só para probas! Se a conexión só funciona con esta opción importa o certificado SSL do servidor LDAP no seu servidor %s." -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Tempo de persistencia da caché" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "en segundos. Calquera cambio baleira a caché." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Axustes do directorio" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Campo de mostra do nome de usuario" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "O atributo LDAP a empregar para xerar o nome de usuario para amosar." -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Base da árbore de usuarios" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "Un DN base de usuario por liña" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "Atributos de busca do usuario" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Opcional; un atributo por liña" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Campo de mostra do nome de grupo" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "O atributo LDAP úsase para xerar os nomes dos grupos que amosar." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Base da árbore de grupo" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "Un DN base de grupo por liña" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Atributos de busca do grupo" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Asociación de grupos e membros" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Atributos especiais" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Campo de cota" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Cota predeterminada" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "en bytes" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "Campo do correo" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "Regra de nomeado do cartafol do usuario" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Deixar baleiro para o nome de usuario (predeterminado). Noutro caso, especifique un atributo LDAP/AD." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "Nome de usuario interno" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -349,15 +460,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "De xeito predeterminado, o nome de usuario interno crease a partires do atributo UUID. Asegurase de que o nome de usuario é único e de non ter que converter os caracteres. O nome de usuario interno ten a limitación de que só están permitidos estes caracteres: [ a-zA-Z0-9_.@- ]. Os outros caracteres substitúense pola súa correspondencia ASCII ou simplemente omítense. Nas colisións engadirase/incrementarase un número. O nome de usuario interno utilizase para identificar a un usuario interno. É tamén o nome predeterminado do cartafol persoal do usuario. Tamén é parte dun URL remoto, por exemplo, para todos os servizos *DAV. Con este axuste, o comportamento predeterminado pode ser sobrescrito. Para lograr un comportamento semellante ao anterior ownCloud 5 introduza o atributo do nome para amosar do usuario no seguinte campo. Déixeo baleiro para o comportamento predeterminado. Os cambios terán efecto só nas novas asignacións (engadidos) de usuarios de LDAP." -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "Atributo do nome de usuario interno:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "Ignorar a detección do UUID" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -368,15 +479,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "De xeito predeterminado, o atributo UUID é detectado automaticamente. O atributo UUID utilizase para identificar, sen dúbida, aos usuarios e grupos LDAP. Ademais, crearase o usuario interno baseado no UUID, se non se especifica anteriormente o contrario. Pode anular a configuración e pasar un atributo da súa escolla. Vostede debe asegurarse de que o atributo da súa escolla pode ser recuperado polos usuarios e grupos e de que é único. Déixeo baleiro para o comportamento predeterminado. Os cambios terán efecto só nas novas asignacións (engadidos) de usuarios de LDAP." -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atributo do UUID:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "Atributo do UUID para usuarios:" -#: templates/settings.php:104 +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "Atributo do UUID para grupos:" + +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "Asignación do usuario ao «nome de usuario LDAP»" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -390,18 +505,10 @@ msgid "" "experimental stage." msgstr "Os nomes de usuario empreganse para almacenar e asignar (meta) datos. Coa fin de identificar con precisión e recoñecer aos usuarios, cada usuario LDAP terá un nome de usuario interno. Isto require unha asignación de ownCloud nome de usuario a usuario LDAP. O nome de usuario creado asignase ao UUID do usuario LDAP. Ademais o DN almacenase na caché, para así reducir a interacción do LDAP, mais non se utiliza para a identificación. Se o DN cambia, os cambios poden ser atopados polo ownCloud. O nome interno no ownCloud utilizase en todo o ownCloud. A limpeza das asignacións deixará rastros en todas partes. A limpeza das asignacións non é sensíbel á configuración, afecta a todas as configuracións de LDAP! Non limpar nunca as asignacións nun entorno de produción. Limpar as asignacións só en fases de proba ou experimentais." -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "Limpar a asignación do usuario ao «nome de usuario LDAP»" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Limpar a asignación do grupo ao «nome de grupo LDAP»" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Probar a configuración" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Axuda" diff --git a/l10n/he/core.po b/l10n/he/core.po index c8ae1beb1e5fd92044829627135f701f7582ada1..9489597492a80c4e1b2209c1b4628ffedea783bd 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,14 +19,15 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s שיתף/שיתפה איתך את »%s«" -#: ajax/share.php:227 -msgid "group" -msgstr "קבוצה" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -53,45 +54,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "סוג הקטגוריה לא סופק." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "אין קטגוריה להוספה?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "הקטגוריה הבאה כבר קיימת: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "סוג הפריט לא סופק." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "מזהה %s לא סופק." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "אירעה שגיאה בעת הוספת %s למועדפים." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "לא נבחרו קטגוריות למחיקה" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "שגיאה בהסרת %s מהמועדפים." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -188,59 +150,59 @@ msgstr "נובמבר" msgid "December" msgstr "דצמבר" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "הגדרות" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "שניות" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "לפני %n דקה" msgstr[1] "לפני %n דקות" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "לפני %n שעה" msgstr[1] "לפני %n שעות" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "היום" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "אתמול" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "לפני %n יום" msgstr[1] "לפני %n ימים" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "לפני %n חודש" msgstr[1] "לפני %n חודשים" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "חודשים" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "שנים" @@ -308,155 +270,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "סוג הפריט לא צוין." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "שגיאה" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "שם היישום לא צוין." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "הקובץ הנדרש {file} אינו מותקן!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "שותף" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "שתף" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "שגיאה" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "שגיאה במהלך השיתוף" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "שגיאה במהלך ביטול השיתוף" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "שגיאה במהלך שינוי ההגדרות" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "שותף אתך ועם הקבוצה {group} שבבעלות {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "שותף אתך על ידי {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "שיתוף עם" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "שיתוף עם קישור" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "הגנה בססמה" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "סיסמא" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "שליחת קישור בדוא״ל למשתמש" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "שליחה" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "הגדרת תאריך תפוגה" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "תאריך התפוגה" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "שיתוף באמצעות דוא״ל:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "לא נמצאו אנשים" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "קבוצה" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "אסור לעשות שיתוף מחדש" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "שותף תחת {item} עם {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "הסר שיתוף" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "ניתן לערוך" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "בקרת גישה" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "יצירה" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "עדכון" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "מחיקה" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "שיתוף" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "מוגן בססמה" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "אירעה שגיאה בביטול תאריך התפוגה" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "אירעה שגיאה בעת הגדרת תאריך התפוגה" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "מתבצעת שליחה ..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "הודעת הדוא״ל נשלחה" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "הקישור לאיפוס הססמה שלך נשלח אליך בדוא״ל.
    אם לא קיבלת את הקישור תוך זמן סביר, מוטב לבדוק את תיבת הזבל שלך.
    אם ההודעה לא שם, כדאי לשאול את מנהל הרשת שלך ." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "הבקשה נכשלה!
    האם כתובת הדוא״ל/שם המשתמש שלך נכונים?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "יישלח לתיבת הדוא״ל שלך קישור לאיפוס הססמה." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "שם משתמש" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -505,13 +495,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "כן, אני רוצה לאפס את הסיסמה שלי עכשיו." -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "בקשת איפוס" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -537,7 +527,7 @@ msgstr "אישי" msgid "Users" msgstr "משתמשים" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "יישומים" @@ -549,6 +539,34 @@ msgstr "מנהל" 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 "הגישה נחסמה" @@ -565,108 +583,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "שלום,\n\nרצינו לעדכן כי %s שיתף/שיתפה איתך את »%s«.\n\nלצפיה: %s\n\nיום טוב!" +msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "ערוך קטגוריות" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "הוספה" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "אזהרת אבטחה" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "גרסת ה־PHP פגיעה בפני התקפת בית NULL/ריק (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "נא לעדכן את התקנת ה-PHP שלך כדי להשתמש ב-%s בצורה מאובטחת." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "אין מחולל מספרים אקראיים מאובטח, נא להפעיל את ההרחבה OpenSSL ב־PHP." -#: templates/installation.php:33 +#: 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:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "תיקיית וקבצי המידע שלך כנראה נגישים מהאינטרנט מכיוון שקובץ ה.htaccess לא עובד." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "יצירת חשבון מנהל" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "מתקדם" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "תיקיית נתונים" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "הגדרת מסד הנתונים" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "ינוצלו" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "שם משתמש במסד הנתונים" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "ססמת מסד הנתונים" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "שם מסד הנתונים" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "מרחב הכתובות של מסד הנתונים" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "שרת בסיס נתונים" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "סיום התקנה" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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 "%s זמינה להורדה. ניתן ללחוץ כדי לקבל מידע נוסף כיצד לעדכן." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "התנתקות" @@ -684,19 +713,27 @@ msgstr "אם לא שינית את ססמתך לאחרונה, יתכן שחשבו msgid "Please change your password to secure your account again." msgstr "נא לשנות את הססמה שלך כדי לאבטח את חשבונך מחדש." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "שכחת את ססמתך?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "שמירת הססמה" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "כניסה" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "כניסות אלטרנטיביות" @@ -704,10 +741,37 @@ msgstr "כניסות אלטרנטיביות" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "שלום,

    רצינו לעדכן כי %s שיתף/שיתפה איתך את »%s«.
    לצפיה

    יום טוב!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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 "מעדכן את ownCloud אל גרסא %s, זה עלול לקחת זמן מה." + +#: 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/he/files.po b/l10n/he/files.po index 15a0138955b493a0862daa1ef3814745da7b89d7..d688db7c5336ccb503e68ac893fe5073cde00e17 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# oriez, 2013 # Yaron Shahrabani , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -28,220 +29,286 @@ msgstr "לא ניתן להעביר את %s - קובץ בשם הזה כבר קי msgid "Could not move %s" msgstr "לא ניתן להעביר את %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "שם קובץ אינו יכול להיות ריק" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "לא הועלה קובץ. טעות בלתי מזוהה." -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "לא התרחשה שגיאה, הקובץ הועלה בהצלחה" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:" -#: ajax/upload.php:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "הקובץ הועלה באופן חלקי בלבד" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "שום קובץ לא הועלה" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "תקיה זמנית חסרה" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "הכתיבה לכונן נכשלה" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "אין די שטח פנוי באחסון" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "העלאה נכשלה. לא ניתן להשיג את פרטי הקובץ." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "תיקייה שגויה." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "קבצים" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "ההעלאה בוטלה." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "" +msgstr "לא ניתן לגשת לתוצאות מהשרת." -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה." -#: js/file-upload.js:520 -msgid "URL cannot be empty." -msgstr "קישור אינו יכול להיות ריק." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "שגיאה" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} כבר קיים" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "שתף" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "מחק לצמיתות" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "שינוי שם" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "ממתין" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} כבר קיים" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "החלפה" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "הצעת שם" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "ביטול" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} הוחלף ב־{old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "ביטול" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "שטח האחסון שלך כמעט מלא ({usedSpacePercent}%)" + +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" msgstr "" -#: js/files.js:67 +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "שגיאה" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "שם" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "גודל" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "זמן שינוי" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "העלאה" @@ -277,65 +344,69 @@ msgstr "גודל הקלט המרבי לקובצי ZIP" msgid "Save" msgstr "שמירה" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "חדש" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "קובץ טקסט" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "תיקייה" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "מקישור" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" -msgstr "" +msgstr "קבצים שנמחקו" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "ביטול ההעלאה" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "אין כאן שום דבר. אולי ברצונך להעלות משהו?" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "הורדה" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "הסר שיתוף" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "מחיקה" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "העלאה גדולה מידי" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "הקבצים נסרקים, נא להמתין." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "הסריקה הנוכחית" diff --git a/l10n/he/files_encryption.po b/l10n/he/files_encryption.po index 200c5801924cdc2e3e072ba769c44e0276a9b35b..1ca4a5dfcb177ebc308fbbe83d1278b9157980ea 100644 --- a/l10n/he/files_encryption.po +++ b/l10n/he/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:41 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "שמירה…" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "הצפנה" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 42013789e83c6e5b16cf04d965d5497bdf1bc70e..91ae5a6c44fb7eb2e86f6bfe712931d4cad1dce8 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "הוענקה גישה" @@ -25,7 +25,7 @@ msgstr "הוענקה גישה" msgid "Error configuring Dropbox storage" msgstr "אירעה שגיאה בעת הגדרת אחסון ב־Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "הענקת גישה" @@ -33,24 +33,24 @@ msgstr "הענקת גישה" msgid "Please provide a valid Dropbox app key and secret." msgstr "נא לספק קוד יישום וסוד תקניים של Dropbox." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "אירעה שגיאה בעת הגדרת אחסון ב־Google Drive" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index c181aa3c1eeef2b0c1ec4634d57c8920c9dcbec0..0a12ef9671bceb7d68115b16116fb2fa6311e554 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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/authenticate.php:9 -msgid "Submit" -msgstr "שליחה" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s שיתף עמך את התיקייה %s" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s שיתף עמך את הקובץ %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "הורדה" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "העלאה" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "ביטול ההעלאה" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "אין תצוגה מקדימה זמינה עבור" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index b938a87bca02c54801355c4f4de3a67af0211061..b13e9732c8e6b19cdd4ec12dcc6f3aa8267d5f6f 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -28,55 +28,31 @@ msgstr "לא ניתן למחוק את %s לצמיתות" msgid "Couldn't restore %s" msgstr "לא ניתן לשחזר את %s" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "ביצוע פעולת שחזור" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "שגיאה" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "מחיקת קובץ לצמיתות" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "מחיקה לצמיתות" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "שם" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "נמחק" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "אין כאן שום דבר. סל המיחזור שלך ריק!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "שם" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "שחזור" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "נמחק" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "מחיקה" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index d5ee81ab17acec454730f9ed001312ee9035e87f..641d9c76656b2d170b8bd40d394fb2d90e659cea 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,317 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "עזרה" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "אישי" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "הגדרות" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "משתמשים" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "מנהל" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "שירותי רשת תחת השליטה שלך" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "הורדת ZIP כבויה" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "יש להוריד את הקבצים אחד אחרי השני." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "חזרה לקבצים" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "הקבצים הנבחרים גדולים מידי ליצירת קובץ zip." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "יישומים אינם מופעלים" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "שגיאת הזדהות" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "פג תוקף. נא לטעון שוב את הדף." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "קבצים" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "טקסט" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "תמונות" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "שרת האינטרנט שלך אינו מוגדר לצורכי סנכרון קבצים עדיין כיוון שמנשק ה־WebDAV כנראה אינו תקין." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "נא לעיין שוב במדריכי ההתקנה." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "לא ניתן למצוא את הקטגוריה „%s“" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "שניות" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "לפני %n דקות" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "לפני %n שעות" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "היום" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "אתמול" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "לפני %n ימים" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "חודש שעבר" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "לפני %n חודשים" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "שנה שעברה" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "שנים" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "לא ניתן למצוא את הקטגוריה „%s“" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 25d1901bcce6e47afc9601c64f71d6595957e766..d27b262279cd5c204348658d10ffeb350b03f463 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+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" @@ -28,12 +28,12 @@ msgid "Authentication error" msgstr "שגיאת הזדהות" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "שם התצוגה שלך הוחלף." +msgid "Your full name has been changed." +msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "לא ניתן לשנות את שם התצוגה" +msgid "Unable to change full name" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -118,11 +118,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "עדכון לגרסה {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "בטל" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "הפעלה" @@ -130,31 +130,31 @@ msgstr "הפעלה" msgid "Please wait...." msgstr "נא להמתין…" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "מתבצע עדכון…" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "אירעה שגיאה בעת עדכון היישום" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "שגיאה" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "עדכון" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "מעודכן" @@ -162,7 +162,7 @@ msgstr "מעודכן" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -182,44 +182,75 @@ msgstr "ביטול" msgid "Unable to remove user" msgstr "לא ניתן להסיר את המשתמש" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "קבוצות" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "מנהל הקבוצה" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "מחיקה" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "הוספת קבוצה" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "יש לספק שם משתמש תקני" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "יצירת המשתמש נכשלה" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "יש לספק ססמה תקנית" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "עברית" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "אזהרת אבטחה" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -228,48 +259,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "שגיאת הגדרה" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "המודול „fileinfo“ חסר" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "החיבור לאינטרנט אינו פעיל" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -278,110 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "יש להפעיל משימה אחת עם כל עמוד שנטען" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "שיתוף" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "הפעלת API השיתוף" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "לאפשר ליישום להשתמש ב־API השיתוף" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "לאפשר קישורים" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "לאפשר למשתמשים לשתף פריטים " -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "לאפשר שיתוף מחדש" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "לאפשר למשתמשים לשתף הלאה פריטים ששותפו אתם" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "לאפשר למשתמשים לשתף עם כל אחד" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "לאפשר למשתמשים לשתף עם משתמשים בקבוצות שלהם בלבד" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "אבטחה" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "לאלץ HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "יומן" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "רמת הדיווח" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "יותר" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "פחות" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "גרסא" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "הצפנה" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -573,6 +636,10 @@ msgstr "" msgid "Default Storage" msgstr "אחסון בררת המחדל" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "ללא הגבלה" @@ -590,8 +657,8 @@ msgid "Storage" msgstr "אחסון" #: templates/users.php:108 -msgid "change display name" -msgstr "החלפת שם התצוגה" +msgid "change full name" +msgstr "" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 23b74eb81c3d2e917a409c4cde56f0a812b12486..33d85f4fc8b35e4b264a64dc40c0cd4b0783c76d 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -26,314 +26,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "האם לשמור את ההגדרות?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "לא ניתן להוסיף את הגדרות השרת" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "שגיאה" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "בדיקת החיבור עברה בהצלחה" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "בדיקת החיבור נכשלה" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "האם אכן למחוק את הגדרות השרת הנוכחיות?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "אישור המחיקה" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +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 "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "הגדרות השרת" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +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/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "מארח" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "פורט" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "DN משתמש" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "סיסמא" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "לגישה אנונימית, השאר את הDM והסיסמא ריקים." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "סנן כניסת משתמש" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "סנן רשימת משתמשים" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "אחורה" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "סנן קבוצה" +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "פורט" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "בשניות. שינוי מרוקן את המטמון." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "בבתים" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -349,15 +460,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -368,15 +479,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -390,18 +505,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "עזרה" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 834b2c48eba68cf6084af191c90cffdd754c8c77..c2548447650e71c20701a33824b499a9fdb59d33 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -19,13 +19,14 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -53,45 +54,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "कैटेगरी प्रकार उपलब्ध नहीं है" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "यह कैटेगरी पहले से ही मौजूद है: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "ऑब्जेक्ट प्रकार नहीं दिया हुआ" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -188,59 +150,59 @@ msgstr "नवंबर" msgid "December" msgstr "दिसम्बर" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "सेटिंग्स" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "" @@ -308,155 +270,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "त्रुटि" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "साझा करें" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "त्रुटि" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" -msgstr "के साथ साझा" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "पासवर्ड" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "भेजें" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "कोई व्यक्ति नहीं मिले " -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "भेजा जा रहा है" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "ईमेल भेज दिया गया है " +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "पासवर्ड बदलने कि लिंक आपको ई-मेल द्वारा भेजी जायेगी|" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "प्रयोक्ता का नाम" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -505,12 +495,12 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" msgstr "" #: lostpassword/templates/resetpassword.php:4 @@ -537,7 +527,7 @@ msgstr "यक्तिगत" msgid "Users" msgstr "उपयोगकर्ता" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Apps" @@ -549,6 +539,34 @@ msgstr "" 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 "" @@ -565,108 +583,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "डाले" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "सुरक्षा चेतावनी " -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "व्यवस्थापक खाता बनाएँ" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "उन्नत" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "डाटा फोल्डर" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "डेटाबेस कॉन्फ़िगर करें " -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "उपयोग होगा" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "डेटाबेस उपयोगकर्ता" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "डेटाबेस पासवर्ड" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "डेटाबेस का नाम" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "सेटअप समाप्त करे" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "लोग आउट" @@ -684,19 +713,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "याद रखें" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -704,10 +741,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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/hi/files.po b/l10n/hi/files.po index f6fcb10b392d49e74822a8f46161b47514a2d852..1438dd1547abd5086a38a83f9fc593f5014c75cd 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -27,220 +27,286 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "त्रुटि" - -#: js/fileactions.js:119 -msgid "Share" -msgstr "साझा करें" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" -#: js/fileactions.js:131 -msgid "Delete permanently" +#: js/file-upload.js:595 +msgid "Could not create file" msgstr "" -#: js/fileactions.js:197 -msgid "Rename" +#: js/file-upload.js:611 +msgid "Could not create folder" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 -msgid "Pending" +#: js/file-upload.js:661 +msgid "Error fetching URL" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/fileactions.js:125 +msgid "Share" +msgstr "साझा करें" + +#: js/fileactions.js:137 +msgid "Delete permanently" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" +#: js/fileactions.js:194 +msgid "Rename" msgstr "" -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "त्रुटि" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "अपलोड " @@ -276,65 +342,69 @@ msgstr "" msgid "Save" msgstr "सहेजें" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/hi/files_encryption.po b/l10n/hi/files_encryption.po index ac181cbae061eefad2de88e33b107dfc76ba03a2..7d5c5247a2b607d4c897bce2c7c15bf33f712427 100644 --- a/l10n/hi/files_encryption.po +++ b/l10n/hi/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:44 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 -msgid "Saving..." +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." +#: js/settings-admin.js:13 +msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/hi/files_sharing.po b/l10n/hi/files_sharing.po index 546e758e1c79ce0c9a079ed67e4241c624feb618..da1af71a1e8360a965a98560dbec683cba03029f 100644 --- a/l10n/hi/files_sharing.po +++ b/l10n/hi/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:14+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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/authenticate.php:9 -msgid "Submit" -msgstr "" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "अपलोड " -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index 6ebcc054149ac9df3e65dc0e0001972438d4ec09..64da02cb00e0d1260ed8911c7df8675e4312ff5d 100644 --- a/l10n/hi/files_trashbin.po +++ b/l10n/hi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "त्रुटि" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:814 lib/trashbin.php:816 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:23 msgid "Name" msgstr "" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:26 templates/index.php:28 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:34 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index e930c1b8889a3d7b18cd22ccb932abda4b2c988c..31789dfce8c95cd58d4dd11f4c530fbfe71f84d4 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,318 +17,317 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "सहयोग" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "यक्तिगत" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "सेटिंग्स" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "उपयोगकर्ता" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index fc8e5837c9ca3bdef8516cba463b0e2bb4c8e55c..a255b6e1db0ae420f9b179471d2fa35997a37485 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,31 +129,31 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "त्रुटि" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "अद्यतन" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "सुरक्षा चेतावनी " -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index 61c20ec61715010595ab6be6d57e3ef8a82cceae..f5133c43d7e433dc80988ffff54e8ac480063376 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "त्रुटि" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:778 lib/wizard.php:790 +msgid "Invalid Host" msgstr "" -#: templates/settings.php:12 +#: lib/wizard.php:951 +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 "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "पासवर्ड" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "सहयोग" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 59f10907b078a4324336b83371580486087c23aa..6289c6939acc9deefe479b98166928fd44f96ca6 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,13 +17,14 @@ 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/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Nemate kategorija koje možete dodati?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Niti jedna kategorija nije odabrana za brisanje." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -186,63 +148,63 @@ msgstr "Studeni" msgid "December" msgstr "Prosinac" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Postavke" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "danas" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "jučer" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "prošli mjesec" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "mjeseci" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "godina" @@ -311,155 +273,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Greška" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Podijeli" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Greška" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Greška prilikom djeljenja" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Greška prilikom isključivanja djeljenja" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Greška prilikom promjena prava" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" -msgstr "Djeli sa" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "Djeli preko link-a" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Zaštiti lozinkom" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Lozinka" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Postavi datum isteka" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Datum isteka" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Dijeli preko email-a:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Osobe nisu pronađene" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Ponovo dijeljenje nije dopušteno" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Makni djeljenje" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "može mjenjat" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "kontrola pristupa" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "kreiraj" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "ažuriraj" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "izbriši" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "djeli" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Zaštita lozinkom" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Greška prilikom brisanja datuma isteka" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Greška prilikom postavljanja datuma isteka" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 "Obriši" + +#: js/tags.js:31 +msgid "Add" +msgstr "Dodaj" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Primit ćete link kako biste poništili zaporku putem e-maila." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Korisničko ime" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -508,13 +498,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Zahtjev za resetiranjem" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -540,7 +530,7 @@ msgstr "Osobno" msgid "Users" msgstr "Korisnici" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Aplikacije" @@ -552,6 +542,34 @@ msgstr "Administrator" msgid "Help" msgstr "Pomoć" +#: 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 "Pristup zabranjen" @@ -568,108 +586,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Uredi kategorije" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Dodaj" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Stvori administratorski račun" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Napredno" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Mapa baze podataka" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Konfiguriraj bazu podataka" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "će se koristiti" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Korisnik baze podataka" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Lozinka baze podataka" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Ime baze podataka" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Poslužitelj baze podataka" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Završi postavljanje" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Odjava" @@ -687,19 +716,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Izgubili ste lozinku?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "zapamtiti" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Prijava" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -707,10 +744,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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.php:3 +#: 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/hr/files.po b/l10n/hr/files.po index 3eab0bfde87b557e1d4e112451ba21e0cc4f8b9e..42ad420919b3de04f11ef2445c4d2fa5570c386c 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -27,223 +27,289 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Nema pogreške, datoteka je poslana uspješno." -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Poslana datoteka je parcijalno poslana" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Datoteka nije poslana" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Nedostaje privremeni direktorij" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Neuspjelo pisanje na disk" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Datoteke" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Slanje poništeno." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Greška" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "Podijeli" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Promjeni ime" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "U tijeku" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "zamjeni" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "predloži ime" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "odustani" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "vrati" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Greška" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Ime" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Veličina" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Zadnja promjena" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Učitaj" @@ -279,65 +345,69 @@ msgstr "Maksimalna veličina za ZIP datoteke" msgid "Save" msgstr "Snimi" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "novo" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "tekstualna datoteka" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "mapa" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Prekini upload" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Nema ničega u ovoj mapi. Pošalji nešto!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Preuzimanje" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Makni djeljenje" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Obriši" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Prijenos je preobiman" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke koje pokušavate prenijeti prelaze maksimalnu veličinu za prijenos datoteka na ovom poslužitelju." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Datoteke se skeniraju, molimo pričekajte." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Trenutno skeniranje" diff --git a/l10n/hr/files_encryption.po b/l10n/hr/files_encryption.po index db272d0927c3c2203a2b8ad3572624f48c0c0199..63899770e54ccc091ee8a8417d30863734e40810 100644 --- a/l10n/hr/files_encryption.po +++ b/l10n/hr/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:44 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Spremanje..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index a7a8e13f531b5981c57087fabb8f2fc82ba7e5da..f33a72e66344b0ed874db2457c508173f26a2650 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ 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" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 308e9e9875577f4c756aa2ffc2cce487896b3a45..36eee3f2dd7b3fd98ab241e7d993e0b261e24104 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "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" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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 "Lozinka" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Pošalji" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Preuzimanje" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Učitaj" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Prekini upload" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 76a24e0c67e9b7d70bc6ea1c8db6a2021f5da3a3..d2e83f8faefaecd3ef8805d80704e32849e504c5 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -27,57 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Greška" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:815 lib/trashbin.php:817 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:8 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:22 msgid "Name" msgstr "Ime" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:25 templates/index.php:27 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:33 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Obriši" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 4450ee5f5d90f9877ef5ad3c8baea96a10d9dc26..3b8b04bcffd39bfdeb59c093e1d097e4867132b8 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,322 +17,321 @@ 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" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Pomoć" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Osobno" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Postavke" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Korisnici" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Administrator" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "web usluge pod vašom kontrolom" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Greška kod autorizacije" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Datoteke" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Tekst" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "sekundi prije" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "danas" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "jučer" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "prošli mjesec" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "prošlu godinu" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "godina" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index aec94bb5dfb042bf008db39f528c769c3e8c0a3b..f509f284564890457f696a398f09c15177796c95 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "Greška kod autorizacije" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Isključi" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Uključi" @@ -129,31 +129,31 @@ msgstr "Uključi" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Greška" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "vrati" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupe" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grupa Admin" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Obriši" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "__ime_jezika__" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "dnevnik" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "više" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 1d665b257f679dcdf59bb1f6e66b7867b1ff3a2f..83f2f5b9f36364bf85bdecf1485a2dd3fe3ac728 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,427 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Greška" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Snimi" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Pomoć" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Lozinka" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Natrag" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +461,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +480,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +506,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Pomoć" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 9a7a4428b56fd3083d20abeff75570e4543bb995..06314bc8c8952cfa1a6315ca49e5ec6178338871 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# sherlock79 , 2013 # ebela , 2013 # Laszlo Tornoci , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-30 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: ebela \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -19,14 +20,15 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s megosztotta Önnel ezt: »%s«" -#: ajax/share.php:227 -msgid "group" -msgstr "csoport" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Nem sikerült e-mailt küldeni a következő felhasználóknak: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -53,45 +55,6 @@ msgstr "Filecache frissítve" msgid "... %d%% done ..." msgstr "... %d%% kész ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Nincs megadva a kategória típusa." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Nincs hozzáadandó kategória?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Ez a kategória már létezik: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Az objektum típusa nincs megadva." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID nincs megadva." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Nem sikerült a kedvencekhez adni ezt: %s" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Nincs törlésre jelölt kategória" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Nem sikerült a kedvencekből törölni ezt: %s" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Nincs kép vagy file megadva" @@ -188,59 +151,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Beállítások" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n perccel ezelőtt" +msgstr[1] "%n perccel ezelőtt" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n órával ezelőtt" +msgstr[1] "%n órával ezelőtt" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "ma" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "tegnap" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n nappal ezelőtt" +msgstr[1] "%n nappal ezelőtt" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n hónappal ezelőtt" +msgstr[1] "%n hónappal ezelőtt" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "több hónapja" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "tavaly" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "több éve" @@ -271,8 +234,8 @@ msgstr "Nem sikerült betölteni az üzenet sablont: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{count} fájl ütközik" +msgstr[1] "{count} fájl ütközik" #: js/oc-dialogs.js:361 msgid "One file conflict" @@ -308,155 +271,183 @@ msgstr "({count} kiválasztva)" msgid "Error loading file exists template" msgstr "Hiba a létező sablon betöltésekor" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Az objektum típusa nincs megadva." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 -msgid "Error" -msgstr "Hiba" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Az alkalmazás neve nincs megadva." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "A szükséges fájl: {file} nincs telepítve!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Megosztott" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Megosztás" -#: js/share.js:131 js/share.js:696 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Hiba" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Nem sikerült létrehozni a megosztást" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Nem sikerült visszavonni a megosztást" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Nem sikerült módosítani a jogosultságokat" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Megosztotta Önnel és a(z) {group} csoporttal: {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Megosztotta Önnel: {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Kivel osztom meg" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Megosztani egy felhasználóval vagy csoporttal ..." -#: js/share.js:188 -msgid "Share with link" -msgstr "Link megadásával osztom meg" +#: js/share.js:219 +msgid "Share link" +msgstr "Megosztás hivatkozással" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Jelszóval is védem" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Jelszó" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Feltöltést is engedélyezek" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Email címre küldjük el" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Küldjük el" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Legyen lejárati idő" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "A lejárati idő" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Megosztás emaillel:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Nincs találat" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "csoport" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Ezt az állományt csak a tulajdonosa oszthatja meg másokkal" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Megosztva {item}-ben {user}-rel" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "A megosztás visszavonása" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "email értesítés" + +#: js/share.js:408 msgid "can edit" msgstr "módosíthat" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "jogosultság" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "létrehoz" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "szerkeszt" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "töröl" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "megoszt" -#: js/share.js:400 js/share.js:643 +#: js/share.js:694 msgid "Password protected" msgstr "Jelszóval van védve" -#: js/share.js:656 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Nem sikerült a lejárati időt törölni" -#: js/share.js:668 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Nem sikerült a lejárati időt beállítani" -#: js/share.js:683 +#: js/share.js:734 msgid "Sending ..." msgstr "Küldés ..." -#: js/share.js:694 +#: js/share.js:745 msgid "Email sent" msgstr "Az emailt elküldtük" +#: js/share.js:769 +msgid "Warning" +msgstr "Figyelmeztetés" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Az objektum típusa nincs megadva." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Új beírása" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Törlés" + +#: js/tags.js:31 +msgid "Add" +msgstr "Hozzáadás" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Címkék szerkesztése" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Hiba a párbeszédpanel-sablon betöltésekor: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Nincs törlésre kijelölt címke." + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "Kérlek tölts be újra az oldalt" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Emailben fog kapni egy linket, amivel új jelszót tud majd beállítani magának.
    Ha a levél nem jött meg, holott úgy érzi, hogy már meg kellett volna érkeznie, akkor ellenőrizze a spam/levélszemét mappáját.
    Ha ott sincsen, akkor érdeklődjön a rendszergazdánál." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "A kérést nem sikerült teljesíteni!
    Biztos, hogy jó emailcímet/felhasználónevet adott meg?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Egy emailben fog értesítést kapni a jelszóbeállítás módjáról." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Felhasználónév" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -505,13 +496,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Az Ön állományai titkosítva vannak. Ha nem engedélyezte korábban az adatok visszanyeréséhez szükséges kulcs használatát, akkor a jelszó megváltoztatását követően nem fog hozzáférni az adataihoz. Ha nem biztos abban, hogy mit kellene tennie, akkor kérdezze meg a rendszergazdát, mielőtt továbbmenne. Biztos, hogy folytatni kívánja?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Igen, tényleg meg akarom változtatni a jelszavam" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Visszaállítás igénylése" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Visszaállítás" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -537,7 +528,7 @@ msgstr "Személyes" msgid "Users" msgstr "Felhasználók" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Alkalmazások" @@ -549,6 +540,34 @@ msgstr "Adminsztráció" msgid "Help" msgstr "Súgó" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "Hiba a címkék betöltésekor" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "A címke már létezik" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "Hiba a címkék törlésekor" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "Hiba a címkézéskor" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "Hiba a címkék eltávolításakor" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "Hiba a kedvencekhez adáskor" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "Hiba a kedvencekből törléskor" + #: templates/403.php:12 msgid "Access forbidden" msgstr "A hozzáférés nem engedélyezett" @@ -565,108 +584,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Üdv!\n\nÚj hír: %s megosztotta Önnel ezt: %s.\nItt nézhető meg: %s\n\nMinden jót!" +msgstr "Szia!\\n\n\\n\nÉrtesítünk, hogy %s megosztotta veled a következőt: %s.\\n\nItt tudod megnézni: %s\\n\n\\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Kategóriák szerkesztése" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "A megosztás lejár ekkor %s" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Hozzáadás" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Üdv." -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Biztonsági figyelmeztetés" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Az Ön PHP verziója sebezhető a NULL bájtos támadással szemben (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Kérjük frissítse a telepített PHP csomagjait, hogy biztonságos legyen az %s szolgáltatása." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Nem érhető el megfelelő véletlenszám-generátor, telepíteni kellene a PHP OpenSSL kiegészítését." -#: templates/installation.php:33 +#: 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 "Megfelelő véletlenszám-generátor hiányában egy támadó szándékú idegen képes lehet megjósolni a jelszóvisszaállító tokent, és Ön helyett belépni." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Az adatkönyvtár és a benne levő állományok valószínűleg közvetlenül is elérhetők az internetről, mert a .htaccess állomány nem érvényesül." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "A kiszolgáló megfelelő beállításához kérjük olvassa el a dokumentációt." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Rendszergazdai belépés létrehozása" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Haladó" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Adatkönyvtár" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Adatbázis konfigurálása" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "adatbázist fogunk használni" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Adatbázis felhasználónév" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Adatbázis jelszó" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Az adatbázis neve" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Az adatbázis táblázattér (tablespace)" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Adatbázis szerver" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "A beállítások befejezése" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Befejezés ..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "Az alkalmazás megfelelő működéséhez szükség van JavaScript-re. Engedélyezd a JavaScript-et és töltsd újra az interfészt." + +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s rendelkezésre áll. További információ a frissítéshez." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Kilépés" @@ -684,19 +714,27 @@ msgstr "Ha mostanában nem módosította a jelszavát, akkor lehetséges, hogy i msgid "Please change your password to secure your account again." msgstr "A biztonsága érdekében változtassa meg a jelszavát!" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "A szerveroldali hitelesítés sikertelen!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Kérjük, lépjen kapcsolatba a rendszergazdával." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Elfelejtette a jelszavát?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "emlékezzen" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Bejelentkezés" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Alternatív bejelentkezés" @@ -704,10 +742,37 @@ msgstr "Alternatív bejelentkezés" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Üdv!

    Új hír: %s megosztotta Önnel ezt: »%s«.
    Itt nézhető meg!

    Minden jót!" +"href=\"%s\">View it!

    " +msgstr "Szia!

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

    " + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "Az Owncloud frissítés elezdődött egy felhasználós módban." + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "Ez azt jelenti, hogy csak az adminisztrátor használhatja ezt a példányt" -#: templates/update.php:3 +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "Ha ezt az üzenetet már többször látod akkor keresd meg a rendszer adminját." + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "Köszönjük a türelmét." + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "Owncloud frissítés a %s verzióra folyamatban. Kis türelmet." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "Az Owncloud frissítés elezdődött, eltarthat egy ideig." + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "Frissitsd az oldalt ha \"Please reload this page after a short time to continue using ownCloud. \"" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index e61d77e5cb26ed4d9a525256523df645ff4652f9..cec4785ed746afdad31406e7ff36a9f9a03fd502 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ebela , 2013 # Laszlo Tornoci , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-27 00:01-0400\n" -"PO-Revision-Date: 2013-09-24 18:40+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-27 01:55-0500\n" +"PO-Revision-Date: 2013-12-26 11:10+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -28,62 +29,107 @@ msgstr "%s áthelyezése nem sikerült - már létezik másik fájl ezzel a név msgid "Could not move %s" msgstr "Nem sikerült %s áthelyezése" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "A fájlnév nem lehet semmi." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "Az állomány neve nem tartalmazhatja a \"/\" karaktert. Kérem válasszon másik nevet!" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "A %s név már létezik a %s mappában. Kérem válasszon másik nevet!" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "A kiinduló állomány érvénytelen" + +#: ajax/newfile.php:86 +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:103 +#, 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:140 +msgid "Error when creating the file" +msgstr "Hiba történt az állomány létrehozásakor" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "A mappa neve nem maradhat kitöltetlenül" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "A mappa neve nem tartalmazhatja a \"/\" karaktert. Kérem válasszon másik nevet!" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Hiba történt a mappa létrehozásakor" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Nem található a mappa, ahova feltölteni szeretne." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Hibás mappacím" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Nem történt feltöltés. Ismeretlen hiba" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "A fájlt sikerült feltölteni" -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Az eredeti fájlt csak részben sikerült feltölteni." -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Nem töltődött fel állomány" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Hiányzik egy ideiglenes mappa" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Nem sikerült a lemezre történő írás" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Nincs elég szabad hely." -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 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:136 +#: ajax/upload.php:144 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:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Érvénytelen mappa." @@ -91,157 +137,178 @@ msgstr "Érvénytelen mappa." msgid "Files" msgstr "Fájlok" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "A(z) {filename} állomány nem tölthető fel, mert ez vagy egy mappa, vagy pedig 0 bájtból áll." -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Nincs elég szabad hely" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "A feltöltést megszakítottuk." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "A kiszolgálótól nem kapható meg az eredmény." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "Az URL nem lehet semmi." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "Az URL-cím nem maradhat kitöltetlenül" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Érvénytelen mappanév. A 'Shared' az ownCloud számára fenntartott elnevezés" +#: js/file-upload.js:527 js/filelist.js:377 +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:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Hiba" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} már létezik" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Az állomány nem hozható létre" -#: js/fileactions.js:119 +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "A mappa nem hozható létre" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "A megadott URL-ről nem sikerül adatokat kapni" + +#: js/fileactions.js:125 msgid "Share" msgstr "Megosztás" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Végleges törlés" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Átnevezés" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Folyamatban" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} már létezik" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "írjuk fölül" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "legyen más neve" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Az állomány nem nevezhető át" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "mégse" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} fájlt kicseréltük ezzel: {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "visszavonás" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Hiba a file törlése közben." + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappa" msgstr[1] "%n mappa" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n állomány" msgstr[1] "%n állomány" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} és {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n állomány feltöltése" msgstr[1] "%n állomány feltöltése" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' fájlnév érvénytelen." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "A fájlnév nem lehet semmi." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "A tároló tele van, a fájlok nem frissíthetőek vagy szinkronizálhatóak a jövőben." -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "A tároló majdnem tele van ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "Az állományok titkosítása engedélyezve van, de az Ön titkos kulcsai nincsenek beállítva. Ezért kérjük, hogy jelentkezzen ki, és lépjen be újra!" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "Az állományok titkosításához használt titkos kulcsa érvénytelen. Kérjük frissítse a titkos kulcs jelszót a személyes beállításokban, hogy ismét hozzáférjen a titkosított állományaihoz!" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "A titkosítási funkciót kikapcsolták, de az Ön állományai még mindig titkosított állapotban vannak. A személyes beállításoknál tudja a titkosítást feloldani." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Készül a letöltendő állomány. Ez eltarthat egy ideig, ha nagyok a fájlok." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "Az állomány áthelyezése nem sikerült." -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Hiba" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Név" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Méret" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Módosítva" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Érvénytelen mappanév. A 'Shared' a rendszer számára fenntartott elnevezés." + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s átnevezése nem sikerült" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Feltöltés" @@ -277,65 +344,69 @@ msgstr "ZIP-fájlok maximális kiindulási mérete" msgid "Save" msgstr "Mentés" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Új" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "Új szöveges file" + +#: templates/index.php:8 msgid "Text file" msgstr "Szövegfájl" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Új mappa" + +#: templates/index.php:10 msgid "Folder" msgstr "Mappa" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Feltöltés linkről" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Törölt fájlok" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "A feltöltés megszakítása" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Itt nincs írásjoga." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "Önnek nincs jogosultsága ahhoz, hogy ide állományokat töltsön föl, vagy itt újakat hozzon létre" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Itt nincs semmi. Töltsön fel valamit!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Letöltés" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "A megosztás visszavonása" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Törlés" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "A feltöltés túl nagy" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "A fájllista ellenőrzése zajlik, kis türelmet!" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Ellenőrzés alatt" diff --git a/l10n/hu_HU/files_encryption.po b/l10n/hu_HU/files_encryption.po index b21350959cba30be1af2cb0fdd85c24cf113c7ea..ee719e9280a7557d541dfce744812f75da11bd75 100644 --- a/l10n/hu_HU/files_encryption.po +++ b/l10n/hu_HU/files_encryption.po @@ -4,13 +4,15 @@ # # Translators: # blackc0de , 2013 +# ebela , 2013 +# Laszlo Tornoci , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-03 07:42-0400\n" -"PO-Revision-Date: 2013-09-01 19:30+0000\n" -"Last-Translator: blackc0de \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-27 01:55-0500\n" +"PO-Revision-Date: 2013-12-26 13:50+0000\n" +"Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,158 +22,183 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "" +msgstr "A helyreállítási kulcs sikeresen bekapcsolva" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "A helyreállítási kulcsot nem lehetett engedélyezni. Ellenőrizze a helyreállítási kulcsa jelszavát!" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "Visszaállítási kulcs sikeresen kikapcsolva" +msgstr "A helyreállítási kulcs sikeresen kikapcsolva" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "A helyreállítási kulcsot nem lehetett kikapcsolni. Ellenőrizze a helyreállítási kulcsa jelszavát!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "Jelszó sikeresen megváltoztatva." +msgstr "A jelszót sikeresen megváltoztattuk." #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." msgstr "A jelszót nem lehet megváltoztatni! Lehet, hogy hibás volt a régi jelszó." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "" +msgstr "A személyes kulcsának jelszava frissítésre került." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "A személyes kulcsa jelszavát nem lehetett frissíteni. Lehet, hogy hibás volt a régi jelszó." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "" +"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 "A titkosítási modul nincs elindítva! Talán a munkafolyamat közben került engedélyezésre. Kérjük jelentkezzen ki majd ismét jelentkezzen be, hogy a titkosítási modul megfelelően elinduljon!" + +#: 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 "Az állományok titkosításához használt titkos kulcsa érvénytelen. Valószínűleg a %s rendszeren kívül változtatta meg a jelszavát (pl. a munkahelyi címtárban). A személyes beállításoknál frissítheti a titkos kulcsát, hogy ismét elérhesse a titkosított állományait." + +#: 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 "Az állományt nem sikerült dekódolni, valószínűleg ez egy megosztott fájl. Kérje meg az állomány tulajdonosát, hogy újra ossza meg Önnel ezt az állományt!" + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Ismeretlen hiba. Ellenőrizze a rendszer beállításait vagy forduljon a rendszergazdához!" -#: hooks/hooks.php:51 +#: hooks/hooks.php:62 msgid "Missing requirements." -msgstr "" +msgstr "Hiányzó követelmények." -#: hooks/hooks.php:52 +#: hooks/hooks.php:63 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 "Kérlek győződj meg arról, hogy PHP 5.3.3 vagy annál frissebb van telepítve, valamint a PHP-hez tartozó OpenSSL bővítmény be van-e kapcsolva és az helyesen van-e konfigurálva! Ki lett kapcsolva ideiglenesen a titkosító alkalmazás." +msgstr "Kérem gondoskodjon arról, hogy PHP 5.3.3 vagy annál frissebb legyen telepítve, továbbá az OpenSSL a megfelelő PHP-bővítménnyel együtt rendelkezésre álljon és helyesen legyen konfigurálva! A titkosító modul egyelőre kikapcsolásra került." -#: hooks/hooks.php:250 +#: hooks/hooks.php:281 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "A következő felhasználók nem állították be a titkosítást:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "A titkosítási folyamat megkezdődött... Ez hosszabb ideig is eltarthat. Kérem várjon." + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Mentés..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Ugrás ide:" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "személyes beállítások" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Titkosítás" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "A helyreállítási kulcs beállítása (lehetővé teszi a felhasználók állományainak visszaállítását, ha elfelejtik a jelszavukat):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" -msgstr "" +msgstr "A helyreállítási kulcs jelszava" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Ismételje meg a helyreállítási kulcs jelszavát" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Bekapcsolva" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Kikapcsolva" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "A helyreállítási kulcs jelszavának módosítása:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" -msgstr "" +msgstr "Régi Helyreállítási Kulcs Jelszava" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" -msgstr "" +msgstr "Új Helyreállítási kulcs jelszava" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "Ismételje meg az új helyreállítási kulcs jelszavát" + +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Jelszó megváltoztatása" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "A személyes kulcs jelszava mostantól nem azonos a belépési jelszavával:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Állítsuk be a személyes kulcs jelszavát a jelenlegi bejelentkezési jelszavunkra." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Ha nem emlékszik a régi jelszavára akkor megkérheti a rendszergazdát, hogy állítsa vissza az állományait." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Régi bejelentkezési jelszó" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Jelenlegi bejelentkezési jelszó" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" -msgstr "Privát kulcs jelszó frissítése" +msgstr "A személyest kulcs jelszó frissítése" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Jelszó-visszaállítás bekapcsolása" -#: templates/settings-personal.php:47 +#: 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 "" +msgstr "Ez az opció lehetővé teszi, hogy a titkosított állományok tartalmát visszanyerjük abban az esetben, ha elfelejti a jelszavát" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" -msgstr "" +msgstr "A fájlhelyreállítási beállítások frissültek" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" -msgstr "" +msgstr "A fájlhelyreállítás nem frissíthető" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 9a1567b54e25da82031faeabb9b2851c0be1179d..84343fbce57f5321b72ae81df9a267699a0e4cc3 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Érvényes hozzáférés" @@ -26,7 +26,7 @@ msgstr "Érvényes hozzáférés" msgid "Error configuring Dropbox storage" msgstr "A Dropbox tárolót nem sikerült beállítani" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Megadom a hozzáférést" @@ -34,24 +34,24 @@ msgstr "Megadom a hozzáférést" msgid "Please provide a valid Dropbox app key and secret." msgstr "Adjon meg egy érvényes Dropbox app key-t és secretet!" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "A Google Drive tárolót nem sikerült beállítani" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Figyelem: az \"smbclient\" nincs telepítve a kiszolgálón. Emiatt nem lehet CIFS/SMB megosztásokat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Figyelem: a PHP FTP támogatása vagy nincs telepítve, vagy nincs engedélyezve a kiszolgálón. Emiatt nem lehetséges FTP-tárolókat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index ae03dc98f23c6b6958875aef42c3e228564c9618..eb24f8de4b2c1c9fd0c9c38b48f33b12e2337e7e 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Ez egy jelszóval védett megosztás" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "A megadott jelszó nem megfelelő. Próbálja újra!" -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Jelszó" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Elküld" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Sajnos úgy tűnik, ez a link már nem működik." @@ -54,28 +54,32 @@ msgstr "letiltásra került a megosztás" msgid "For more info, please ask the person who sent this link." msgstr "További információért forduljon ahhoz, aki ezt a linket küldte Önnek!" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s megosztotta Önnel ezt a mappát: %s" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s megosztotta Önnel ezt az állományt: %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Letöltés" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Feltöltés" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "A feltöltés megszakítása" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Nem áll rendelkezésre előnézet ehhez: " + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Közvetlen link" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index d0d6f3bc51a10c4df5cfadd6569727931a25965e..218eeecb95c84f4df22ed666bdda7fcf77654661 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-27 00:01-0400\n" -"PO-Revision-Date: 2013-09-24 18:40+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -28,55 +28,31 @@ msgstr "Nem sikerült %s végleges törlése" msgid "Couldn't restore %s" msgstr "Nem sikerült %s visszaállítása" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "a visszaállítás végrehajtása" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Hiba" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "az állomány végleges törlése" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Végleges törlés" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "Név" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "Törölve" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n mappa" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "%n állomány" - -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "visszaállítva" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Itt nincs semmi. Az Ön szemetes mappája üres!" -#: templates/index.php:24 templates/index.php:26 +#: templates/index.php:22 +msgid "Name" +msgstr "Név" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Visszaállítás" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Törölve" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Törlés" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 57212087ee511580e5b71ff55212490c08bd491f..1132f401cbda0908069014989dee05d5c3cdbefe 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# sherlock79 , 2013 # ebela , 2013 # Laszlo Tornoci , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-30 00:50+0000\n" -"Last-Translator: ebela \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,318 +20,317 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:237 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." -msgstr "" +msgstr "A(z) \"%s\" alkalmazást nem lehet telepíteni, mert nem kompatibilis az ownCloud telepített verziójával." -#: app.php:248 +#: private/app.php:255 msgid "No app name specified" msgstr "Nincs az alkalmazás név megadva." -#: app.php:352 +#: private/app.php:360 msgid "Help" msgstr "Súgó" -#: app.php:365 +#: private/app.php:373 msgid "Personal" msgstr "Személyes" -#: app.php:376 +#: private/app.php:384 msgid "Settings" msgstr "Beállítások" -#: app.php:388 +#: private/app.php:396 msgid "Users" msgstr "Felhasználók" -#: app.php:401 +#: private/app.php:409 msgid "Admin" msgstr "Adminsztráció" -#: app.php:832 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Sikertelen Frissítés \"%s\"." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Ismeretlen file tipús" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Hibás kép" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "webszolgáltatások saját kézben" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "nem sikerült megnyitni \"%s\"" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "A ZIP-letöltés nincs engedélyezve." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "A fájlokat egyenként kell letölteni." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Vissza a Fájlokhoz" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "A kiválasztott fájlok túl nagyok a zip tömörítéshez." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Tölts le a fileokat kisebb chunkokban, kölün vagy kérj segitséget a rendszergazdádtól." +msgstr "A file-t kisebb részekben töltsd le vagy beszélj az adminisztrátorral a megoldás érdekében." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" -msgstr "" +msgstr "Az alkalmazás telepítéséhez nincs forrás megadva" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" -msgstr "" +msgstr "Az alkalmazás http-n keresztül történő telepítéséhez nincs href hivetkozás megadva" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" -msgstr "" +msgstr "Az alkalmazás helyi telepítéséhez nincs útvonal (mappa) megadva" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" -msgstr "" +msgstr "A(z) %s típusú tömörített állomány nem támogatott" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" -msgstr "" +msgstr "Nem sikerült megnyitni a tömörített állományt a telepítés során" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "Az alkalmazás nem szolgáltatott info.xml file-t" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" -msgstr "" +msgstr "Az alkalmazást nem lehet telepíteni, mert abban nem engedélyezett programkód szerepel" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Az alalmazás nem telepíthető, mert nem kompatibilis az ownClod ezzel a verziójával." -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" -msgstr "" +msgstr "Az alkalmazást nem lehet telepíteni, mert tartalmazza a \n\ntrue\n\ncímkét, ami a nem szállított alkalmazások esetén nem engedélyezett" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "" +msgstr "Az alkalmazást nem lehet telepíteni, mert az info.xml/version-ben megadott verzió nem egyezik az alkalmazás-áruházban feltüntetett verzióval." -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Az alkalmazás mappája már létezik" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Nem lehetett létrehozni az alkalmzás mappáját. Kérlek ellenőrizd a jogosultásgokat. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Az alkalmazás nincs engedélyezve" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Azonosítási hiba" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "A token lejárt. Frissítse az oldalt." -#: search/provider/file.php:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Fájlok" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Szöveg" -#: search/provider/file.php:30 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Képek" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s adja meg az adatbázist elérő felhasználó login nevét." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s adja meg az adatbázis nevét." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s az adatbázis neve nem tartalmazhat pontot" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Az MS SQL felhasználónév és/vagy jelszó érvénytelen: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Vagy egy létező felhasználó vagy az adminisztrátor bejelentkezési nevét kell megadnia" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "A MySQL felhasználói név és/vagy jelszó érvénytelen" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "Adatbázis hiba: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "A hibát ez a parancs okozta: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "A '%s'@'localhost' MySQL felhasználó már létezik." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Törölje ezt a felhasználót a MySQL-ből" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "A '%s'@'%%' MySQL felhasználó már létezik" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Törölje ezt a felhasználót a MySQL-ből." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Az Oracle kapcsolat nem hozható létre" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Az Oracle felhasználói név és/vagy jelszó érvénytelen" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "A hibát okozó parancs ez volt: \"%s\", login név: %s, jelszó: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "A PostgreSQL felhasználói név és/vagy jelszó érvénytelen" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Állítson be egy felhasználói nevet az adminisztrációhoz." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Állítson be egy jelszót az adminisztrációhoz." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Az Ön webkiszolgálója nincs megfelelően beállítva az állományok szinkronizálásához, mert a WebDAV-elérés úgy tűnik, nem működik." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót." -#: tags.php:194 +#: private/tags.php:194 #, php-format msgid "Could not find category \"%s\"" msgstr "Ez a kategória nem található: \"%s\"" -#: template/functions.php:96 +#: private/template/functions.php:130 msgid "seconds ago" msgstr "pár másodperce" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n perccel ezelőtt" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n órával ezelőtt" +msgstr[1] "%n órával ezelőtt" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "ma" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "tegnap" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n nappal ezelőtt" +msgstr[1] "%n nappal ezelőtt" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "múlt hónapban" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n hónappal ezelőtt" +msgstr[1] "%n hónappal ezelőtt" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "tavaly" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "több éve" - -#: template.php:297 -msgid "Caused by:" -msgstr "Okozta:" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index f1bb5c03cfe5311e98077ca85ca553401eecca5f..39d04cb9e3eb1959f152229af9ea8693fe17f688 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -4,14 +4,15 @@ # # Translators: # Adam Toth , 2013 +# sherlock79 , 2013 # ebela , 2013 # Laszlo Tornoci , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:17-0400\n" -"PO-Revision-Date: 2013-09-30 00:21+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-15 16:40+0000\n" "Last-Translator: ebela \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -30,12 +31,12 @@ msgid "Authentication error" msgstr "Azonosítási hiba" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Az Ön megjelenítési neve megváltozott." +msgid "Your full name has been changed." +msgstr "Az Ön teljes nevét módosítottuk." #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Nem sikerült megváltoztatni a megjelenítési nevet" +msgid "Unable to change full name" +msgstr "Nem sikerült megváltoztatni a teljes nevét" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -160,7 +161,7 @@ msgstr "Frissítés" msgid "Updated" msgstr "Frissítve" -#: js/personal.js:221 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Válassz profil képet" @@ -168,7 +169,7 @@ msgstr "Válassz profil képet" 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 ..." -#: js/personal.js:288 +#: js/personal.js:287 msgid "Saving..." msgstr "Mentés..." @@ -184,44 +185,75 @@ msgstr "visszavonás" msgid "Unable to remove user" msgstr "A felhasználót nem sikerült eltávolítáni" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Csoportok" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Csoportadminisztrátor" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Törlés" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "csoport hozzáadása" -#: js/users.js:436 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Érvényes felhasználónevet kell megadnia" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "A felhasználó nem hozható létre" -#: js/users.js:442 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Érvényes jelszót kell megadnia" +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Figyelmeztetés: A felhasználó \"{user}\" kezdő könyvtára már létezett" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "Minden (végzetes hibák, hibák, figyelmeztetések, információk, hibakeresési üzenetek)" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "Információk, figyelmeztetések, hibák és végzetes hibák" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "Figyelmeztetések, hibák és végzetes hibák" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "Hibák és végzetes hibák" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "Csak a végzetes hibák" + +#: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" msgstr "Biztonsági figyelmeztetés" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -230,48 +262,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:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "A beállítással kapcsolatos figyelmeztetés" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "A 'fileinfo' modul hiányzik" -#: templates/admin.php:47 +#: templates/admin.php:68 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:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "A PHP verzió túl régi" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "A nyelvi lokalizáció nem működik" -#: templates/admin.php:63 +#: templates/admin.php:98 +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:102 +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:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "Ezen az ownCloud kiszolgálón nem használható a %s nyelvi beállítás. Ez azt jelenti, hogy a fájlnevekben gond lehet bizonyos karakterekkel. Nyomatékosan ajánlott, hogy telepítse a szükséges csomagokat annak érdekében, hogy a rendszer támogassa a %s beállítást." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "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:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Az internet kapcsolat nem működik" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -280,110 +332,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "A kiszolgálónak nincs müködő internet kapcsolata. Ez azt jelenti, hogy néhány képességét a kiszolgálónak mint például becsatolni egy külső tárolót, értesítések külső gyártók programjának frissítéséről nem fog müködni. A távolról való elérése a fileoknak és email értesítések küldése szintén nem fog müködni. Ha használni szeretnéd mindezeket a képességeit a szervernek, ahoz javasoljuk, hogy engedélyezzed az internet elérését a szervernek." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Ütemezett feladatok" -#: templates/admin.php:99 +#: templates/admin.php:142 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:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "A cron.php webcron szolgáltatásként van regisztrálva. Hívja meg a cron.php állományt http-n keresztül percenként egyszer." +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "A rendszer cron szolgáltatásának használata. Hívja meg a cron.php állományt percenként egyszer a rendszer cron szolgáltatásának segítségével." +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Megosztás" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "A megosztás API-jának engedélyezése" -#: templates/admin.php:127 +#: templates/admin.php:170 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:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Linkek engedélyezése" -#: templates/admin.php:135 +#: templates/admin.php:178 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:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Feltöltést engedélyezése mindenki számára" -#: templates/admin.php:144 +#: templates/admin.php:187 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:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "A továbbosztás engedélyezése" -#: templates/admin.php:153 +#: templates/admin.php:196 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:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "A felhasználók bárkivel megoszthatják állományaikat" -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "E-mail értesítések engedélyezése" + +#: templates/admin.php:214 +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:221 msgid "Security" msgstr "Biztonság" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Kötelező HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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:191 +#: templates/admin.php:242 #, 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:203 +#: templates/admin.php:254 msgid "Log" msgstr "Naplózás" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Naplózási szint" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Több" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Kevesebb" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Verzió" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Ezt a címet használja, ha WebDAV-on keresztül szeretné elérni az állományait" +"Use this address to access your Files via " +"WebDAV" +msgstr "Ezt a címet használd, hogy hozzáférj a fileokhoz WebDAV-on keresztül" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Titkosítás" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "A titkosító alkalmzás a továbbiakban nincs engedélyezve, kititkosítja az összes fileodat" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "A titkosító alkalmazás továbbiakban nem lesz engedélyezve, szüntesd meg a titkosítását a file-jaidnak." -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Bejelentkezési jelszó" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Kititkosítja az összes file-t" @@ -575,6 +639,10 @@ msgstr "Adja meg az adatok visszanyeréséhez szükséges jelszót arra az esetr msgid "Default Storage" msgstr "Alapértelmezett tárhely" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "Kérjük adja meg a tárolási kvótát (pl. \"512 MB\" vagy \"12 GB\")" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Korlátlan" @@ -592,8 +660,8 @@ msgid "Storage" msgstr "Tárhely" #: templates/users.php:108 -msgid "change display name" -msgstr "a megjelenített név módosítása" +msgid "change full name" +msgstr "a teljes név megváltoztatása" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index b1d5e5391c8ec1b7fa202118ceeeb8fd36fee781..5afefda925e32874d59852590340cb568167e7d4 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-30 00:22+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: ebela \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -27,314 +27,425 @@ msgstr "Nem sikerült törölni a hozzárendeléseket." msgid "Failed to delete the server configuration" msgstr "Nem sikerült törölni a kiszolgáló konfigurációját" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "A konfiguráció érvényes, és a kapcsolat létrehozható!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "A konfiguráció érvényes, de a kapcsolat nem hozható létre. Kérem ellenőrizze a kiszolgáló beállításait, és az elérési adatokat." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "Érvénytelen konfiguráció. További információkért nézze meg az ownCloud naplófájlját." +msgstr "Érvénytelen konfiguráció. További információkért nézze meg a naplófájlokat!" + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "Nincs megadva parancs" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "Nincs megadva konfiguráció" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "Nincs adat megadva" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "A(z) %s konfiguráció nem állítható be" -#: js/settings.js:66 +#: js/settings.js:67 msgid "Deletion failed" msgstr "A törlés nem sikerült" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Vegyük át a beállításokat az előző konfigurációból?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Tartsuk meg a beállításokat?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Az új kiszolgáló konfigurációja nem hozható létre" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "Töröltük a hozzárendeléseket" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Sikeres végrehajtás" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Hiba" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "Konfiguráció OK" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "Konfiguráió hibás" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "Konfiguráció nincs befejezve" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Csoportok kiválasztása" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "Objektumosztályok kiválasztása" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "Attribútumok kiválasztása" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "A kapcsolatellenőrzés eredménye: sikerült" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "A kapcsolatellenőrzés eredménye: nem sikerült" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Tényleg törölni szeretné a kiszolgáló beállításait?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "A törlés megerősítése" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "Figyelem: a user_ldap és user_webdavauth alkalmazások nem kompatibilisek. Együttes használatuk váratlan eredményekhez vezethet. Kérje meg a rendszergazdát, hogy a kettő közül kapcsolja ki az egyiket." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "%s csoport van" +msgstr[1] "%s csoport van" -#: templates/settings.php:12 +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "%s felhasználó van" +msgstr[1] "%s felhasználó van" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "Érvénytelen gépnév" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "A kívánt funkció nem található" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Mentés" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "A beállítások tesztelése" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Súgó" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "Korlátozzuk %s elérését a következő feltételeknek megfelelő csoportokra:" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "csak ezek az objektumosztályok:" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "csak ezek a csoportok:" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "Inkább közvetlenül megadom a szűrési kifejezést:" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "Az LDAP szűrőkifejezés" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Figyelmeztetés: Az LDAP PHP modul nincs telepítve, ezért ez az alrendszer nem fog működni. Kérje meg a rendszergazdát, hogy telepítse!" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "A szűrő meghatározza, hogy mely LDAP csoportok lesznek jogosultak %s elérésére." -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "A kiszolgálók beállításai" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "csoport van" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "Melyik attribútumot használjuk login névként:" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "LDAP felhasználónév:" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "LDAP e-mail cím:" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "Más attribútumok:" + +#: 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 "Ez a szűrő érvényes a bejelentkezés megkísérlésekor. Ekkor az %%uid változó helyére a bejelentkezési név kerül. Például: \"uid=%%uid\"" + +#: templates/part.wizard-server.php:18 msgid "Add Server Configuration" msgstr "Új kiszolgáló beállításának hozzáadása" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Kiszolgáló" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "A protokoll előtag elhagyható, kivéve, ha SSL-t kíván használni. Ebben az esetben kezdje így: ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "DN-gyökér" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Soronként egy DN-gyökér" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "A Haladó fülre kattintva külön DN-gyökér állítható be a felhasználók és a csoportok számára" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Port" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "A kapcsolódó felhasználó DN-je" -#: templates/settings.php:46 +#: 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 "Annak a felhasználónak a DN-je, akinek a nevében bejelentkezve kapcsolódunk a kiszolgálóhoz, pl. uid=agent,dc=example,dc=com. Bejelentkezés nélküli eléréshez ne töltse ki a DN és Jelszó mezőket!" -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Jelszó" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Bejelentkezés nélküli eléréshez ne töltse ki a DN és Jelszó mezőket!" -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Szűrő a bejelentkezéshez" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Soronként egy DN-gyökér" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "A Haladó fülre kattintva külön DN-gyökér állítható be a felhasználók és a csoportok számára" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "Korlátozzuk %s elérését a következő feltételeknek megfelelő felhasználókra:" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "Ez a szűrő érvényes a bejelentkezés megkísérlésekor. Ekkor az %%uid változó helyére a bejelentkezési név kerül. Például: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "A szűrő meghatározza, hogy mely LDAP felhasználók lesznek jogosultak %s elérésére." -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "A felhasználók szűrője" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "felhasználó van" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "Ez a szűrő érvényes a felhasználók listázásakor (nincs helyettesíthető változó). Például: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Vissza" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "A csoportok szűrője" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Folytatás" -#: templates/settings.php:62 +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "Ez a szűrő érvényes a csoportok listázásakor (nincs helyettesíthető változó). Például: \"objectClass=posixGroup\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "Figyelem: a user_ldap és user_webdavauth alkalmazások nem kompatibilisek. Együttes használatuk váratlan eredményekhez vezethet. Kérje meg a rendszergazdát, hogy a kettő közül kapcsolja ki az egyiket." -#: templates/settings.php:66 +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Figyelmeztetés: Az LDAP PHP modul nincs telepítve, ezért ez az alrendszer nem fog működni. Kérje meg a rendszergazdát, hogy telepítse!" + +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Kapcsolati beállítások" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "A beállítás aktív" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Ha nincs kipipálva, ez a beállítás kihagyódik." -#: templates/settings.php:69 -msgid "Port" -msgstr "Port" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Másodkiszolgáló (replika)" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Adjon meg egy opcionális másodkiszolgálót. Ez a fő LDAP/AD kiszolgáló szinkron másolata (replikája) kell legyen." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "A másodkiszolgáló (replika) portszáma" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "A fő szerver kihagyása" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "Csak a másodlagos (másolati) kiszolgálóhoz kapcsolódjunk." -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Használjunk TLS-t" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "LDAPS kapcsolatok esetén ne kapcsoljuk be, mert nem fog működni." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Az LDAP-kiszolgáló nem tesz különbséget a kis- és nagybetűk között (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Ne ellenőrizzük az SSL-tanúsítvány érvényességét" -#: templates/settings.php:75 +#: 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 "Használata nem javasolt (kivéve tesztelési céllal). Ha a kapcsolat csak ezzel a beállítással működik, akkor importálja az LDAP-kiszolgáló SSL tanúsítványát a(z) %s kiszolgálóra!" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "A gyorsítótár tárolási időtartama" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "másodpercben. A változtatás törli a cache tartalmát." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Címtár beállítások" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "A felhasználónév mezője" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "Ebből az LDAP attribútumból képződik a felhasználó megjelenítendő neve." -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "A felhasználói fa gyökere" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "Soronként egy felhasználói fa gyökerét adhatjuk meg" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "A felhasználók lekérdezett attribútumai" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Nem kötelező megadni, soronként egy attribútum" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "A csoport nevének mezője" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "Ebből az LDAP attribútumból képződik a csoport megjelenítendő neve." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "A csoportfa gyökere" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "Soronként egy csoportfa gyökerét adhatjuk meg" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "A csoportok lekérdezett attribútumai" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "A csoporttagság attribútuma" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Különleges attribútumok" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Kvóta mező" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Alapértelmezett kvóta" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "bájtban" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "Email mező" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "A home könyvtár elérési útvonala" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Hagyja üresen, ha a felhasználónevet kívánja használni. Ellenkező esetben adjon meg egy LDAP/AD attribútumot!" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "Belső felhasználónév" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -350,15 +461,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Alapértelmezetten a belső felhasználónév az UUID tulajdonságból jön létre. Ez biztosítja a felhasználónév egyediségét és hogy a nem kell konvertálni a karaktereket benne. A belső felhasználónévnél a megkötés az, hogy csak a következő karakterek engdélyezettek benne: [ a-zA-Z0-9_.@- ]. Ezeken a karaktereken kivül minden karakter le lesz cserélve az adott karakter ASCII kódtáblában használható párjára vagy ha ilyen nincs akkor egyszerűen ki lesz hagyva. Ha így mégis ütköznének a nevek akkor hozzá lesz füzve egy folyamatosan növekvő számláló rész. A belső felhasználónevet lehet használni a felhasználó azonosítására a programon belül. Illetve ez lesz az alapáértelmezett neve a felhasználó kezdő könyvtárának az ownCloud-ban. Illetve..............................." -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "A belső felhasználónév attribútuma:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "Az UUID-felismerés felülbírálása" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,17 +478,21 @@ msgid "" "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 "" +msgstr "Az UUID attribútum alapértelmezetten felismerésre kerül. Az UUID attribútum segítségével az LDAP felhasználók és csoportok egyértelműen azonosíthatók. A belső felhasználónév is azonos lesz az UUID-vel, ha fentebb nincs másként definiálva. Ezt a beállítást felülbírálhatja és bármely attribútummal helyettesítheti. Ekkor azonban gondoskodnia kell arról, hogy a kiválasztott attribútum minden felhasználó és csoport esetén lekérdezhető és egyedi értékkel bír. Ha a mezőt üresen hagyja, akkor az alapértelmezett attribútum lesz érvényes. Egy esetleges módosítás csak az újonnan hozzárendelt (ill. létrehozott) felhasználókra és csoportokra lesz érvényes." + +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "A felhasználók UUID attribútuma:" -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID attribútum:" +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "A csoportok UUID attribútuma:" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "Felhasználó - LDAP felhasználó hozzárendelés" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,20 +504,12 @@ msgid "" " 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 "" +msgstr "A felhasználónevek segítségével történik a (meta)adatok tárolása és hozzárendelése. A felhasználók pontos azonosítása céljából minden LDAP felhasználóhoz egy belső felhasználónevet rendelünk. Ezt a felhasználónevet az LDAP felhasználó UUID attribútumához rendeljük hozzá. Ezen túlmenően a DN is tárolásra kerül a gyorsítótárban, hogy csökkentsük az LDAP lekérdezések számát, de a DN-t nem használjuk azonosításra. Ha a DN megváltozik, akkor a rendszer ezt észleli. A belső felhasználóneveket a rendszer igen sok helyen használja, ezért a hozzárendelések törlése sok érvénytelen adatrekordot eredményez az adatbázisban. A hozzárendelések törlése nem függ a konfigurációtól, minden LDAP konfigurációt érint! Ténylegesen működő szolgáltatás esetén sose törölje a hozzárendeléseket, csak tesztelési vagy kísérleti célú szerveren!" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "A felhasználó - LDAP felhasználó hozzárendelés törlése" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "A csoport - LDAP csoport hozzárendelés törlése" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "A beállítások tesztelése" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Súgó" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index cfc83cf7733755bdedb9aa2ad3999a7a1be76521..f4c4980038071612921455be09797936a58a6d68 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-08 03:26+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,13 +17,14 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -190,55 +152,55 @@ msgstr "Դեկտեմբեր" msgid "Settings" msgstr "" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "" @@ -306,155 +268,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" +#: js/share.js:213 +msgid "Share with user or group …" msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -503,12 +493,12 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" msgstr "" #: lostpassword/templates/resetpassword.php:4 @@ -535,7 +525,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "" @@ -547,6 +537,34 @@ msgstr "" 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 "" @@ -563,108 +581,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -682,19 +711,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -702,10 +739,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " msgstr "" -#: templates/update.php:3 +#: 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/hy/files.po b/l10n/hy/files.po index 46e6544393b83d0ec2dfe86de6dca8e93e67d674..7449a234803b289724f9643bcf9fe11bcb62689c 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -27,220 +27,286 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" msgstr "" -#: js/fileactions.js:119 -msgid "Share" +#: js/file-upload.js:595 +msgid "Could not create file" msgstr "" -#: js/fileactions.js:131 -msgid "Delete permanently" +#: js/file-upload.js:611 +msgid "Could not create folder" msgstr "" -#: js/fileactions.js:197 -msgid "Rename" +#: js/file-upload.js:661 +msgid "Error fetching URL" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 -msgid "Pending" +#: js/fileactions.js:125 +msgid "Share" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/fileactions.js:137 +msgid "Delete permanently" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" +#: js/fileactions.js:194 +msgid "Rename" msgstr "" -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "" @@ -276,65 +342,69 @@ msgstr "" msgid "Save" msgstr "Պահպանել" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Բեռնել" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Ջնջել" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/hy/files_encryption.po b/l10n/hy/files_encryption.po index e9b9f2afbe858d683cddd076784dbdb7306f2387..ccf3ebcc24955a3fd8e1fff08d990a2f3a6a8223 100644 --- a/l10n/hy/files_encryption.po +++ b/l10n/hy/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:44 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 -msgid "Saving..." +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." +#: js/settings-admin.js:13 +msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index ac97dda5449ba513cd9ec171b7416541405a6056..6b9791aa98d7c025d62946438ef07704c602cc13 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" @@ -17,7 +17,7 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index bdb47a3fbc9b4c95639c0af54770e2067d4f8ddb..0852fdce9b223009613c6614c318c2eb48a19f76 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 18:23+0000\n" +"POT-Creation-Date: 2013-10-21 13:01-0400\n" +"PO-Revision-Date: 2013-10-21 17:02+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" @@ -18,16 +18,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Հաստատել" +#: templates/authenticate.php:10 +msgid "Password" +msgstr "" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "Բեռնել" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" + +#: templates/public.php:98 +msgid "Direct link" +msgstr "" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index b1c3d308429ecf7a8f6366c1052348046bb84f42..499cc4c2caa92865da595ed4e6da67398b8c4f92 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:815 lib/trashbin.php:817 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:8 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:22 msgid "Name" msgstr "" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:25 templates/index.php:27 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:33 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Ջնջել" diff --git a/l10n/hy/lib.po b/l10n/hy/lib.po index d1e8def17c4dd41a922e9edd5adff3fe0b34c49b..a54f97275bdae48021cfa5b928cb7ac0376e8a62 100644 --- a/l10n/hy/lib.po +++ b/l10n/hy/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,317 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index ecc4b3e278875ee2ac6d68f145bbe51cf9eca0f5..d3c43e0c909e5a845ac62c03988af62e6b3ad8c9 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+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" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,31 +129,31 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Ջնջել" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/hy/user_ldap.po b/l10n/hy/user_ldap.po index 8b2b904fe7f6c7bd3d2a2cd204b41d7969263a1a..74da815526bec759dbfcaba6a0ee52c15336433e 100644 --- a/l10n/hy/user_ldap.po +++ b/l10n/hy/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:778 lib/wizard.php:790 +msgid "Invalid Host" msgstr "" -#: templates/settings.php:12 +#: lib/wizard.php:951 +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 "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 194b8863fffe30d8918b1cbd48e23c4e7f1fcb59..881393b8fcee60012e000888fd200646ca7dfeec 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,13 +17,14 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -186,59 +148,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Configurationes" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "" @@ -306,155 +268,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Error" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Compartir" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Error" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" +#: js/share.js:213 +msgid "Share with user or group …" msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Contrasigno" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Invia" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "gruppo" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" +msgstr "Leva compartir" + +#: js/share.js:405 +msgid "notify by email" msgstr "" -#: js/share.js:352 +#: js/share.js:408 msgid "can edit" -msgstr "" +msgstr "pote modificar" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 "Deler" + +#: js/tags.js:31 +msgid "Add" +msgstr "Adder" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Nomine de usator" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -503,13 +493,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Requestar reinitialisation" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -535,7 +525,7 @@ msgstr "Personal" msgid "Users" msgstr "Usatores" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Applicationes" @@ -547,6 +537,34 @@ msgstr "Administration" msgid "Help" msgstr "Adjuta" +#: 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 "Accesso prohibite" @@ -563,108 +581,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Modificar categorias" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Adder" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Crear un conto de administration" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Avantiate" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Dossier de datos" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Configurar le base de datos" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "essera usate" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Usator de base de datos" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Contrasigno de base de datos" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Nomine de base de datos" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Hospite de base de datos" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Clauder le session" @@ -682,19 +711,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Tu perdeva le contrasigno?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "memora" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Aperir session" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -702,10 +739,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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.php:3 +#: 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/ia/files.po b/l10n/ia/files.po index 5244ffda6257a0aa717fd147d6df0b44792c80e6..6c4344ca4bb6b8e8d5c159771d754a393ceefc56 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -27,220 +27,286 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Le file incargate solmente esseva incargate partialmente" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Nulle file esseva incargate." -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Manca un dossier temporari" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Files" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Error" - -#: js/fileactions.js:119 -msgid "Share" -msgstr "Compartir" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" -#: js/fileactions.js:131 -msgid "Delete permanently" +#: js/file-upload.js:595 +msgid "Could not create file" msgstr "" -#: js/fileactions.js:197 -msgid "Rename" +#: js/file-upload.js:611 +msgid "Could not create folder" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 -msgid "Pending" +#: js/file-upload.js:661 +msgid "Error fetching URL" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/fileactions.js:125 +msgid "Share" +msgstr "Compartir" + +#: js/fileactions.js:137 +msgid "Delete permanently" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" +#: js/fileactions.js:194 +msgid "Rename" msgstr "" -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Error" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Nomine" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Dimension" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Modificate" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Incargar" @@ -276,65 +342,69 @@ msgstr "" msgid "Save" msgstr "Salveguardar" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nove" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "File de texto" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "Dossier" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Nihil hic. Incarga alcun cosa!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Discargar" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Deler" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Incargamento troppo longe" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/ia/files_encryption.po b/l10n/ia/files_encryption.po index 04eb7d8960c2d62f902e4c80562b55e8a7b0031d..ad8dfdbd933989e794caade8a5dc82dce2a92c98 100644 --- a/l10n/ia/files_encryption.po +++ b/l10n/ia/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:44 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 -msgid "Saving..." +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." +#: js/settings-admin.js:13 +msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index 37018f946045a2a28f3537687204775c630dcaae..9b9f183f6f521a50999dd99cfbe4da97ae0514d4 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 83dfe3acf59faeff12865047ce6c5a6847b6a655..82ad5f791cc9a3e4e940ffb6e103fd389b7dd158 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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 "Contrasigno" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Submitter" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Discargar" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Incargar" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 0ac362ef502a3ab5825d941d3d861bf98f0471f4..c373b8961e3cb8649b3d52bdf4b2ca044276a2b7 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Error" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:815 lib/trashbin.php:817 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:8 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:22 msgid "Name" msgstr "Nomine" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:25 templates/index.php:27 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:33 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Deler" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 3f1800a5b6a5b8b5c1cf280767c539dddedce4b1..f0bcf02cf0ecec20c9459000468f69a3b794d4b6 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,318 +17,317 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Adjuta" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Personal" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Configurationes" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Usatores" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Administration" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "servicios web sub tu controlo" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Files" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Texto" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 3097b240fc68c3fc3191691282dd88c8c574684d..5c48ba4fac24f01c99a9314d0d6ae1388949ea17 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,31 +129,31 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Error" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Actualisar" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Gruppos" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Deler" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Interlingua" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "Registro" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Plus" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index d67d3ec71b9409291f393db32f578e39377c97b1..617c5c580f53f39237466a3881042efe79d660aa 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 -msgid "Deletion failed" +#: ajax/wizard.php:32 +msgid "No action specified" msgstr "" -#: js/settings.js:82 -msgid "Take over settings from recent server configuration?" +#: 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 "Il falleva deler" + #: js/settings.js:83 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Error" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Salveguardar" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Adjuta" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Contrasigno" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Retro" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Adjuta" diff --git a/l10n/id/core.po b/l10n/id/core.po index 2a8ac8b61c464e483d51f1cb3c5597ab4e44b5e6..b38649060527f61eebcb62868e663ff0a13de703 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-08 01:55-0500\n" +"PO-Revision-Date: 2014-01-07 07:10+0000\n" +"Last-Translator: arifpedia \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,98 +17,60 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s membagikan »%s« dengan anda" -#: ajax/share.php:227 -msgid "group" -msgstr "grup" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Tidak dapat mengirim Email ke pengguna berikut: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" -msgstr "" +msgstr "Hidupkan mode perawatan" #: ajax/update.php:14 msgid "Turned off maintenance mode" -msgstr "" +msgstr "Matikan mode perawatan" #: ajax/update.php:17 msgid "Updated database" -msgstr "" +msgstr "Basis data terbaru" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "" +msgstr "Memperbarui filecache, mungkin memerlukan waktu sangat lama..." #: ajax/update.php:23 msgid "Updated filecache" -msgstr "" +msgstr "Filecache terbaru" #: ajax/update.php:26 #, php-format msgid "... %d%% done ..." -msgstr "" - -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Tipe kategori tidak diberikan." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Tidak ada kategori yang akan ditambahkan?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Kategori ini sudah ada: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Tipe objek tidak diberikan." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "ID %s tidak diberikan." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Galat ketika menambah %s ke favorit" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Tidak ada kategori terpilih untuk dihapus." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Galat ketika menghapus %s dari favorit" +msgstr "... %d%% selesai ..." #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "Tidak ada gambar atau file yang disediakan" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Tipe berkas tak dikenal" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Gambar tidak sah" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "Tidak ada gambar profil sementara yang tersedia, coba lagi" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "Tidak ada data krop tersedia" #: js/config.php:32 msgid "Sunday" @@ -186,55 +148,55 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" -msgstr "Setelan" +msgstr "Pengaturan" -#: js/js.js:866 +#: js/js.js:872 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:867 +#: js/js.js:873 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" +msgstr[0] "%n menit yang lalu" -#: js/js.js:868 +#: js/js.js:874 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" +msgstr[0] "%n jam yang lalu" -#: js/js.js:869 +#: js/js.js:875 msgid "today" msgstr "hari ini" -#: js/js.js:870 +#: js/js.js:876 msgid "yesterday" msgstr "kemarin" -#: js/js.js:871 +#: js/js.js:877 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" +msgstr[0] "%n hari yang lalu" -#: js/js.js:872 +#: js/js.js:878 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:873 +#: js/js.js:879 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" +msgstr[0] "%n bulan yang lalu" -#: js/js.js:874 +#: js/js.js:880 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:875 +#: js/js.js:881 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:876 +#: js/js.js:882 msgid "years ago" msgstr "beberapa tahun lalu" @@ -244,7 +206,7 @@ msgstr "Pilih" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Galat memuat templat berkas pemilih: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -260,26 +222,26 @@ msgstr "Oke" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Galat memuat templat pesan: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" +msgstr[0] "{count} berkas konflik" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Satu berkas konflik" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Berkas mana yang ingin anda pertahankan?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Jika anda memilih kedua versi, berkas yang disalin akan memiliki nomor yang ditambahkan sesuai namanya." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -287,169 +249,197 @@ msgstr "Batal" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Lanjutkan" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(semua terpilih)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} terpilih)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" - -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Tipe objek tidak ditentukan." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Galat" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Nama aplikasi tidak ditentukan." +msgstr "Galat memuat templat berkas yang sudah ada" -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Berkas {file} yang dibutuhkan tidak terpasang!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Dibagikan" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Bagikan" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Galat" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Galat ketika membagikan" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Galat ketika membatalkan pembagian" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Galat ketika mengubah izin" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" -msgstr "Dibagikan dengan Anda dan grup {group} oleh {owner}" +msgstr "Dibagikan dengan anda dan grup {group} oleh {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" -msgstr "Dibagikan dengan Anda oleh {owner}" +msgstr "Dibagikan dengan anda oleh {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Bagikan dengan" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Bagikan dengan pengguna atau grup ..." -#: js/share.js:188 -msgid "Share with link" -msgstr "Bagikan lewat tautan" +#: js/share.js:219 +msgid "Share link" +msgstr "Bagikan tautan" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Lindungi dengan sandi" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Sandi" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" -msgstr "" +msgstr "Izinkan Unggahan Publik" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Emailkan tautan ini ke orang" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Kirim" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" -msgstr "Setel tanggal kedaluwarsa" +msgstr "Atur tanggal kedaluwarsa" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Tanggal kedaluwarsa" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Bagian lewat email:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Tidak ada orang ditemukan" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "grup" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Berbagi ulang tidak diizinkan" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Dibagikan dalam {item} dengan {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Batalkan berbagi" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "notifikasi via email" + +#: js/share.js:408 msgid "can edit" -msgstr "dapat mengedit" +msgstr "dapat sunting" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "kontrol akses" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "buat" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "perbarui" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "hapus" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "bagikan" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" -msgstr "Dilindungi sandi" +msgstr "Sandi dilindungi" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Galat ketika menghapus tanggal kedaluwarsa" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" -msgstr "Galat ketika menyetel tanggal kedaluwarsa" +msgstr "Galat ketika mengatur tanggal kedaluwarsa" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Mengirim ..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "Email terkirim" +#: js/share.js:769 +msgid "Warning" +msgstr "Peringatan" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Tipe objek tidak ditentukan." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Masukkan baru" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Hapus" + +#: js/tags.js:31 +msgid "Add" +msgstr "Tambah" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Sunting tag" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Galat memuat templat dialog: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Tidak ada tag yang terpilih untuk dihapus." + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "Silakan muat ulang halaman." + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." -msgstr "" +msgstr "Tautan untuk mengatur ulang sandi anda telah dikirimkan ke email Anda.
    Jika anda tidak menerimanya selama waktu yang wajar, periksa folder spam/sampah Anda.
    Jika tidak ada juga, coba tanyakanlah kepada administrator lokal anda." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" -msgstr "" +msgstr "Permintaan gagal!
    Apakah anda yakin email/nama pengguna anda benar?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Anda akan menerima tautan penyetelan ulang sandi lewat Email." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Nama pengguna" -#: lostpassword/templates/lostpassword.php:22 +#: 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 "" +msgstr "Berkas anda terenkripsi. Jika sebelumnya anda belum mengaktifkan kunci pemulihan, tidak akan ada cara lagi untuk mendapatkan data anda kembali setelah sandi anda diatur ulang. Jika anda tidak yakin dengan apa yang harus dilakukan, silakan hubungi administrator anda sebelum melanjutkan. Apakah anda benar-benar ingin melanjutkan?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Ya, Saya sungguh ingin mengatur ulang sandi saya sekarang" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Ajukan penyetelan ulang" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Atur Ulang" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Sandi Anda telah disetel ulang" +msgstr "Sandi Anda telah diatur ulang" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" @@ -520,7 +510,7 @@ msgstr "Sandi baru" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Setel ulang sandi" +msgstr "Atur ulang sandi" #: strings.php:5 msgid "Personal" @@ -530,7 +520,7 @@ msgstr "Pribadi" msgid "Users" msgstr "Pengguna" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Aplikasi" @@ -542,6 +532,34 @@ msgstr "Admin" msgid "Help" msgstr "Bantuan" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "Galat saat memuat tag" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "Tag sudah ada" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "Galat saat menghapus tag" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "Galat saat memberikan tag" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "Galat saat menghapus tag" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "Galat saat memberikan sebagai favorit" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "Galat saat menghapus sebagai favorit" + #: templates/403.php:12 msgid "Access forbidden" msgstr "Akses ditolak" @@ -558,108 +576,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "" +msgstr "Hai,\n\nhanya supaya anda tahu bahwa %s membagikan %s dengan anda.\nLihat: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Edit kategori" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "Pembagian akan berakhir pada %s." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Tambah" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Horee!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Peringatan Keamanan" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Versi PHP Anda rentan terhadap serangan NULL Byte (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Silakan perbarui instalasi PHP anda untuk menggunakan %s dengan aman." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Generator acak yang aman tidak tersedia, silakan aktifkan ekstensi OpenSSL pada PHP." -#: templates/installation.php:33 +#: 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 "Tanpa generator acak, penyerang mungkin dapat menebak token penyetelan sandi dan mengambil alih akun Anda." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Kemungkinan direktori data dan berkas Anda dapat diakses dari internet karena berkas .htaccess tidak berfungsi." +msgstr "Kemungkinan direktori data dan berkas anda dapat diakses dari internet karena berkas .htaccess tidak berfungsi." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." -msgstr "" +msgstr "Untuk informasi cara mengkonfigurasi server anda dengan benar, silakan lihat dokumentasi." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Buat sebuah akun admin" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Lanjutan" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Folder data" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Konfigurasikan basis data" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "akan digunakan" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Pengguna basis data" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Sandi basis data" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Nama basis data" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Tablespace basis data" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Host basis data" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Selesaikan instalasi" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Menyelesaikan ..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "Aplikasi ini memerlukan JavaScript yang diaktifkan untuk beroperasi dengan benar. Silahkan aktifkan JavaScript and re-load this interface." + +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s tersedia. Dapatkan informasi lebih lanjut tentang cara memperbarui." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Keluar" @@ -671,25 +700,33 @@ msgstr "Masuk otomatis ditolak!" msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Jika tidak pernah mengubah sandi Anda baru-baru ini, akun Anda mungkin dalam bahaya!" +msgstr "Jika anda tidak pernah mengubah sandi baru-baru ini, akun anda mungkin dalam bahaya!" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Mohon ubah sandi Anda untuk mengamankan kembali akun Anda." +msgstr "Silakan ubah sandi anda untuk mengamankan kembali akun anda." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "Otentikasi dari sisi server gagal!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Silahkan hubungi administrator anda." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Lupa sandi?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "selalu masuk" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Masuk" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Cara Alternatif untuk Masuk" @@ -697,10 +734,37 @@ msgstr "Cara Alternatif untuk Masuk" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "" +"href=\"%s\">View it!

    " +msgstr "Hai,

    hanya supaya anda tahu bahwa %s membagikan »%s« dengan anda.
    Lihat!

    " + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "ownCloud ini sedang dalam mode pengguna tunggal." -#: templates/update.php:3 +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "Ini berarti hanya administrator yang dapat menggunakan ownCloud." + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "Hubungi administrator sistem anda jika pesan ini terus muncul atau muncul tiba-tiba." + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "Terima kasih atas kesabaran anda." + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "Memperbarui ownCloud ke versi %s, prosesnya akan berlangsung beberapa saat." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "ownCloud ini sedang diperbarui, yang mungkin memakan waktu cukup lama." + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "Muat ulang halaman ini setelah beberapa saat untuk tetap menggunakan ownCloud." diff --git a/l10n/id/files.po b/l10n/id/files.po index dc0c2272b6b574babb87bb9825d3e479b93ba6a7..b2151252828ce14f7ace2815991fd020c221ffb3 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# arifpedia , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-08 01:55-0500\n" +"PO-Revision-Date: 2014-01-07 08:10+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,217 +28,283 @@ msgstr "Tidak dapat memindahkan %s - Berkas dengan nama ini sudah ada" msgid "Could not move %s" msgstr "Tidak dapat memindahkan %s" -#: ajax/upload.php:16 ajax/upload.php:45 -msgid "Unable to set upload directory." +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Nama berkas tidak boleh kosong." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "Nama berkas tidak boleh mengandung \"/\". Silakan pilih nama yang berbeda." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "Nama %s sudah digunakan dalam folder %s. Silakan pilih nama yang berbeda." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "Sumber tidak sah" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/upload.php:22 +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Galat saat mengunduh %s ke %s" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Galat saat membuat berkas" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "Nama folder tidak bolh kosong." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "Nama folder tidak boleh mengandung \"/\". Silakan pilih nama yang berbeda." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Galat saat membuat folder" + +#: ajax/upload.php:18 ajax/upload.php:50 +msgid "Unable to set upload directory." +msgstr "Tidak dapat mengatur folder unggah" + +#: ajax/upload.php:27 msgid "Invalid Token" -msgstr "" +msgstr "Token tidak sah" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Tidak ada berkas yang diunggah. Galat tidak dikenal." -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Tidak ada galat, berkas sukses diunggah" -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Berkas hanya diunggah sebagian" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Tidak ada berkas yang diunggah" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Folder sementara tidak ada" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Gagal menulis ke disk" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Ruang penyimpanan tidak mencukupi" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Unggah gagal. Tidak mendapatkan informasi berkas." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Unggah gagal. Tidak menemukan berkas yang akan diunggah" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Direktori tidak valid." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Berkas" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "Tidak dapat mengunggah {filename} karena ini sebuah direktori atau memiliki ukuran 0 byte" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Ruang penyimpanan tidak mencukupi" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Pengunggahan dibatalkan." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "" +msgstr "Tidak mendapatkan hasil dari server." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "URL tidak boleh kosong" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "" +#: js/file-upload.js:527 js/filelist.js:377 +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:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Galat" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} sudah ada" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Tidak dapat membuat berkas" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Tidak dapat membuat folder" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" -#: js/fileactions.js:119 +#: js/fileactions.js:125 msgid "Share" msgstr "Bagikan" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Hapus secara permanen" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Ubah nama" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Menunggu" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} sudah ada" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "ganti" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Tidak dapat mengubah nama berkas" -#: js/filelist.js:416 -msgid "suggest name" -msgstr "sarankan nama" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "batalkan" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "mengganti {new_name} dengan {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "urungkan" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Galat saat menghapus berkas." + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" -msgstr[0] "" +msgstr[0] "%n folder" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" -msgstr[0] "" +msgstr[0] "%n berkas" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" -msgstr "" +msgstr "{dirs} dan {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" -msgstr[0] "" +msgstr[0] "Mengunggah %n berkas" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' bukan nama berkas yang valid." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Nama berkas tidak boleh kosong." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nama tidak valid, karakter '\\', '/', '<', '>', ':', '\"', '|', '?' dan '*' tidak diizinkan." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ruang penyimpanan Anda penuh, berkas tidak dapat diperbarui atau disinkronkan lagi!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ruang penyimpanan hampir penuh ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "Aplikasi Enskripsi telah diaktifkan tetapi kunci tidak diinisialisasi, silakan log-out dan log-in lagi" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "Kunci privat tidak sah untuk Aplikasi Enskripsi. Silakan perbarui sandi kunci privat anda pada pengaturan pribadi untuk memulihkan akses ke berkas anda yang dienskripsi." + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." -msgstr "" +msgstr "Enskripi telah dinonaktifkan tetapi berkas anda tetap dienskripsi. Silakan menuju ke pengaturan pribadi untuk deskrip berkas anda." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Unduhan Anda sedang disiapkan. Prosesnya dapat berlangsung agak lama jika ukuran berkasnya besar." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" -msgstr "" +msgstr "Galat saat memindahkan berkas" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Galat" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Nama" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Ukuran" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Dimodifikasi" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Nama folder tidak sah. Menggunakan 'Shared' sudah digunakan." + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s tidak dapat diubah nama" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Unggah" @@ -273,65 +340,69 @@ msgstr "Ukuran masukan maksimum untuk berkas ZIP" msgid "Save" msgstr "Simpan" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Baru" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "Berkas teks baru" + +#: templates/index.php:8 msgid "Text file" msgstr "Berkas teks" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Map baru" + +#: templates/index.php:10 msgid "Folder" msgstr "Folder" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Dari tautan" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Berkas yang dihapus" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Batal pengunggahan" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Anda tidak memiliki izin menulis di sini." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "Anda tidak memiliki akses untuk mengunggah atau membuat berkas disini" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Tidak ada apa-apa di sini. Unggah sesuatu!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Unduh" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Batalkan berbagi" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Hapus" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Yang diunggah terlalu besar" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Berkas yang dicoba untuk diunggah melebihi ukuran maksimum pengunggahan berkas di server ini." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Berkas sedang dipindai, silakan tunggu." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Yang sedang dipindai" diff --git a/l10n/id/files_encryption.po b/l10n/id/files_encryption.po index a6c250dbb0070d0d2e460c22cbadb0b5633b80bd..7bc9584010d5e33d956bdfce535399909f886920 100644 --- a/l10n/id/files_encryption.po +++ b/l10n/id/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# arifpedia , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-08 01:55-0500\n" +"PO-Revision-Date: 2014-01-07 07:40+0000\n" +"Last-Translator: arifpedia \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,158 +20,183 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "" +msgstr "Kunci pemulihan berhasil diaktifkan" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "Tidak dapat mengaktifkan kunci pemulihan. Silakan periksa sandi kunci pemulihan Anda!" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "" +msgstr "Kunci pemulihan berhasil dinonaktifkan" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "Tidak dapat menonaktifkan kunci pemulihan. Silakan periksa sandi kunci pemulihan Anda!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "" +msgstr "Sandi berhasil diubah" #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "" +msgstr "Tidak dapat mengubah sandi. Kemungkinan sandi lama yang dimasukkan salah." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "" +msgstr "Sandi kunci privat berhasil diperbarui." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." +msgstr "Tidak dapat memperbarui sandi kunci privat. Kemungkinan sandi lama yang Anda masukkan salah." + +#: 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:7 +#: files/error.php:16 +#, php-format msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:41 +#: 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 "Tidak dapat mendekripsi berkas ini, mungkin ini adalah berkas bersama. Silakan meminta pemilik berkas ini untuk membagikan kembali dengan Anda." + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Kesalahan tak dikenal, silakan periksa pengaturan sistem Anda atau hubungi admin." + +#: hooks/hooks.php:62 msgid "Missing requirements." -msgstr "" +msgstr "Persyaratan yang hilang." -#: hooks/hooks.php:42 +#: hooks/hooks.php:63 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:249 +#: hooks/hooks.php:281 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Pengguna berikut belum diatur untuk enkripsi:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "Inisial enskripsi dijalankan... Ini dapat memakan waktu. Silakan tunggu." + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Menyimpan..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Langsung ke anda" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "" - -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" -msgstr "" +msgstr "pengaturan pribadi" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Enkripsi" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Aktifkan kunci pemulihan (memungkinkan pengguna untuk memulihkan berkas dalam kasus kehilangan sandi):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" -msgstr "" +msgstr "Sandi kunci pemulihan" + +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Ulangi sandi kunci Pemulihan" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" -msgstr "" +msgstr "Diaktifkan" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" -msgstr "" +msgstr "Dinonaktifkan" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Ubah sandi kunci pemulihan:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" -msgstr "" +msgstr "Sandi kunci Pemulihan Lama" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" -msgstr "" +msgstr "Sandi kunci Pemulihan Baru" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "Ulangi sandi kunci Pemulihan baru" + +#: templates/settings-admin.php:58 msgid "Change Password" -msgstr "" +msgstr "Ubah sandi" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Sandi kunci privat Anda tidak lagi cocok dengan sandi masuk:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Atur sandi kunci privat lama Anda sebagai sandi masuk Anda saat ini." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Jika Anda tidak ingat sandi lama, Anda dapat meminta administrator Anda untuk memulihkan berkas." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" -msgstr "" +msgstr "Sandi masuk yang lama" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" -msgstr "" +msgstr "Sandi masuk saat ini" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" -msgstr "" +msgstr "Perbarui Sandi Kunci Privat" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" -msgstr "" +msgstr "Aktifkan sandi pemulihan:" -#: templates/settings-personal.php:47 +#: 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 "" +msgstr "Mengaktifkan opsi ini memungkinkan Anda untuk mendapatkan kembali akses ke berkas terenkripsi Anda dalam kasus kehilangan sandi" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" -msgstr "" +msgstr "Pengaturan pemulihan berkas diperbarui" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" -msgstr "" +msgstr "Tidak dapat memperbarui pemulihan berkas" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index fc20f2c014066834d6c596cee7474e4f39cd9314..2ec650a9173f12b34e8f54758c99fcace95e8b99 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Akses diberikan" @@ -25,7 +25,7 @@ msgstr "Akses diberikan" msgid "Error configuring Dropbox storage" msgstr "Kesalahan dalam mengonfigurasi penyimpanan Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Berikan hak akses" @@ -33,24 +33,24 @@ msgstr "Berikan hak akses" msgid "Please provide a valid Dropbox app key and secret." msgstr "Masukkan kunci dan sandi aplikasi Dropbox yang benar." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Kesalahan dalam mengkonfigurasi penyimpanan Google Drive" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Peringatan: \"smbclient\" tidak terpasang. Mount direktori CIFS/SMB tidak dapat dilakukan. Silakan minta administrator sistem untuk memasangnya." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Peringatan: Dukungan FTP di PHP tidak aktif atau tidak terpasang. Mount direktori FTP tidak dapat dilakukan. Silakan minta administrator sistem untuk memasangnya." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 4c5ff880016877c7dfbfb786bf0f63320bdeb6e8..c5659df948b1bb19051d943b32bed8b90429d074 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# arifpedia , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-08 01:55-0500\n" +"PO-Revision-Date: 2014-01-07 08:00+0000\n" +"Last-Translator: arifpedia \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,63 +19,67 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." -msgstr "" +msgid "This share is password-protected" +msgstr "Berbagi ini dilindungi sandi" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "Sandi salah. Coba lagi" + +#: templates/authenticate.php:10 msgid "Password" msgstr "Sandi" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Kirim" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Maaf, tautan ini tampaknya tidak berfungsi lagi." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Alasan mungkin:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "item telah dihapus" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "tautan telah kadaluarsa" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "berbagi dinonaktifkan" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Untuk info lebih lanjut, silakan tanyakan orang yang mengirim tautan ini." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s membagikan folder %s dengan Anda" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" -msgstr "%s membagikan file %s dengan Anda" +msgstr "%s membagikan berkas %s dengan Anda" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Unduh" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Unggah" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" -msgstr "Batal pengunggahan" +msgstr "Batal unggah" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" -msgstr "Tidak ada pratinjau tersedia untuk" +msgstr "Tidak ada pratinjau yang tersedia untuk" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Tautan langsung" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 5f5941b22adf3abf286c9d75c67ce0b49cf55914..5f3ad858bd319208d2aa9ad2679429bf2e60f82d 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-08 01:55-0500\n" +"PO-Revision-Date: 2014-01-07 07:10+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,66 +17,44 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:63 #, php-format msgid "Couldn't delete %s permanently" msgstr "Tidak dapat menghapus permanen %s" -#: ajax/undelete.php:42 +#: ajax/undelete.php:43 #, php-format msgid "Couldn't restore %s" msgstr "Tidak dapat memulihkan %s" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "jalankan operasi pemulihan" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 msgid "Error" msgstr "Galat" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "hapus berkas secara permanen" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Hapus secara permanen" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Nama" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "Dihapus" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:905 lib/trashbin.php:907 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Tempat sampah anda kosong!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:20 +msgid "Name" +msgstr "Nama" + +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Pulihkan" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:31 +msgid "Deleted" +msgstr "Dihapus" + +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Hapus" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Berkas yang Dihapus" diff --git a/l10n/id/files_versions.po b/l10n/id/files_versions.po index 7cc75c5495f3ddae570291dd4f373da3183f4c9f..5cde8bc5e418fd726017e494285482dcf052b9cd 100644 --- a/l10n/id/files_versions.po +++ b/l10n/id/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# arifpedia , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"PO-Revision-Date: 2013-12-13 07:40+0000\n" +"Last-Translator: arifpedia \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,22 +23,22 @@ msgstr "" msgid "Could not revert: %s" msgstr "Tidak dapat mengembalikan: %s" -#: js/versions.js:7 +#: js/versions.js:14 msgid "Versions" msgstr "Versi" -#: js/versions.js:53 +#: js/versions.js:60 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "Gagal mengembalikan {file} ke revisi {timestamp}." -#: js/versions.js:79 +#: js/versions.js:86 msgid "More versions..." -msgstr "" +msgstr "Versi lebih..." -#: js/versions.js:116 +#: js/versions.js:123 msgid "No other versions available" -msgstr "" +msgstr "Tidak ada versi lain yang tersedia" -#: js/versions.js:149 +#: js/versions.js:154 msgid "Restore" msgstr "Pulihkan" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 8aa1ab9b7cee1072c233cf947e6b4c5b409b7f0f..c2c84a614cbd4eb441cb797d045e7623d9682412 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-31 01:55-0500\n" +"PO-Revision-Date: 2013-12-31 03:40+0000\n" +"Last-Translator: arifpedia \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,314 +17,313 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:245 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." -msgstr "" +msgstr "Apl \"%s\" tidak dapat diinstal karena tidak kompatibel dengan versi ownCloud." -#: app.php:250 +#: private/app.php:257 msgid "No app name specified" -msgstr "" +msgstr "Tidak ada nama apl yang ditentukan" -#: app.php:361 +#: private/app.php:362 msgid "Help" msgstr "Bantuan" -#: app.php:374 +#: private/app.php:375 msgid "Personal" msgstr "Pribadi" -#: app.php:385 +#: private/app.php:386 msgid "Settings" -msgstr "Setelan" +msgstr "Pengaturan" -#: app.php:397 +#: private/app.php:398 msgid "Users" msgstr "Pengguna" -#: app.php:410 +#: private/app.php:411 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." -msgstr "" - -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" +msgstr "Gagal memperbarui \"%s\"." -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Tipe berkas tak dikenal" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Gambar tidak sah" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" -msgstr "layanan web dalam kontrol Anda" +msgstr "layanan web dalam kendali anda" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "tidak dapat membuka \"%s\"" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Pengunduhan ZIP dimatikan." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Berkas harus diunduh satu persatu." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" -msgstr "Kembali ke Daftar Berkas" +msgstr "Kembali ke Berkas" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Berkas yang dipilih terlalu besar untuk dibuat berkas zip-nya." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "Silahkan unduh berkas secara terpisah dalam bentuk potongan kecil atau meminta ke administrator anda." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" -msgstr "" +msgstr "Tidak ada sumber yang ditentukan saat menginstal apl" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" -msgstr "" +msgstr "Href tidak ditentukan saat menginstal apl dari http" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" -msgstr "" +msgstr "Lokasi tidak ditentukan saat menginstal apl dari berkas lokal" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" -msgstr "" +msgstr "Arsip dengan tipe %s tidak didukung" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" -msgstr "" +msgstr "Gagal membuka arsip saat menginstal apl" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" -msgstr "" +msgstr "Apl tidak menyediakan berkas info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" -msgstr "" +msgstr "Apl tidak dapat diinstal karena terdapat kode yang tidak diizinkan didalam Apl" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" -msgstr "" +msgstr "Apl tidak dapat diinstal karena tidak kompatibel dengan versi ownCloud" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" -msgstr "" +msgstr "Apl tidak dapat diinstal karena mengandung tag true yang tidak diizinkan untuk apl yang bukan bawaan." -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "" +msgstr "Apl tidak dapat diinstal karena versi di info.xml/versi tidak sama dengan versi yang dilansir dari toko apl" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" -msgstr "" +msgstr "Direktori Apl sudah ada" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "" +msgstr "Tidak dapat membuat folder apl. Silakan perbaiki perizinan. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Aplikasi tidak diaktifkan" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" -msgstr "Galat saat autentikasi" +msgstr "Galat saat otentikasi" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." -msgstr "Token kedaluwarsa. Silakan muat ulang halaman." +msgstr "Token sudah kedaluwarsa. Silakan muat ulang halaman." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Berkas" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Teks" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Gambar" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s masukkan nama pengguna basis data." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s masukkan nama basis data." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%sAnda tidak boleh menggunakan karakter titik pada nama basis data" +msgstr "%s anda tidak boleh menggunakan karakter titik pada nama basis data" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Nama pengguna dan/atau sandi MySQL tidak valid: %s" +msgstr "Nama pengguna dan/atau sandi MySQL tidak sah: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Anda harus memasukkan akun yang sudah ada atau administrator." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" -msgstr "Nama pengguna dan/atau sandi MySQL tidak valid" - -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +msgstr "Nama pengguna dan/atau sandi MySQL tidak sah" + +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "Galat Basis Data: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Perintah yang bermasalah: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Pengguna MySQL '%s'@'localhost' sudah ada." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Hapus pengguna ini dari MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Pengguna MySQL '%s'@'%%' sudah ada." -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Hapus pengguna ini dari MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" -msgstr "" +msgstr "Koneksi Oracle tidak dapat dibuat" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" -msgstr "Nama pengguna dan/atau sandi Oracle tidak valid" +msgstr "Nama pengguna dan/atau sandi Oracle tidak sah" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Perintah yang bermasalah: \"%s\", nama pengguna: %s, sandi: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "Nama pengguna dan/atau sandi PostgreSQL tidak valid" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." -msgstr "Setel nama pengguna admin." +msgstr "Atur nama pengguna admin." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." -msgstr "Setel sandi admin." +msgstr "Atur sandi admin." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Silakan periksa ulang panduan instalasi." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Tidak menemukan kategori \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" +msgstr[0] "%n menit yang lalu" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" +msgstr[0] "%n jam yang lalu" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "hari ini" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "kemarin" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" -msgstr[0] "" +msgstr[0] "%n hari yang lalu" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "bulan kemarin" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" +msgstr[0] "%n bulan yang lalu" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "tahun kemarin" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "beberapa tahun lalu" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Tidak dapat menemukan kategori \"%s\"" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 7f2ef31f5527d87ea05365834fdc28196657da0d..0b8a55abc7fc6b957b6fe36496661929806f671d 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-08 01:55-0500\n" +"PO-Revision-Date: 2014-01-07 08:10+0000\n" +"Last-Translator: arifpedia \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,12 +27,12 @@ msgid "Authentication error" msgstr "Galat saat autentikasi" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "" +msgid "Your full name has been changed." +msgstr "Nama lengkap Anda telah diubah" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Tidak dapat mengubah nama tampilan" +msgid "Unable to change full name" +msgstr "Tidak dapat mengubah nama lengkap" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -86,11 +86,11 @@ msgstr "Tidak dapat memperbarui aplikasi." #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "Sandi salah" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "Tidak ada pengguna yang diberikan" #: changepassword/controller.php:74 msgid "" @@ -101,69 +101,69 @@ msgstr "" #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "Sandi pemulihan admin salah. Periksa sandi dan ulangi kembali." #: changepassword/controller.php:87 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "Back-end tidak mendukung perubahan password, tetapi kunci enkripsi pengguna berhasil diperbarui." #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" -msgstr "" +msgstr "Tidak dapat mengubah sandi" #: js/apps.js:43 msgid "Update to {appversion}" msgstr "Perbarui ke {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Nonaktifkan" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" -msgstr "aktifkan" +msgstr "Aktifkan" #: js/apps.js:71 msgid "Please wait...." msgstr "Mohon tunggu...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" -msgstr "" +msgstr "Galat saat menonaktifkan aplikasi" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" -msgstr "" +msgstr "Galat saat mengakifkan aplikasi" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Memperbarui...." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Gagal ketika memperbarui aplikasi" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Galat" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Perbarui" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Diperbarui" #: js/personal.js:220 msgid "Select a profile picture" -msgstr "" +msgstr "Pilih foto profil" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." -msgstr "" +msgstr "Mendeskripsi berkas... Modon tunggu, ini memerlukan beberapa saat." #: js/personal.js:287 msgid "Saving..." @@ -181,94 +181,145 @@ msgstr "urungkan" msgid "Unable to remove user" msgstr "Tidak dapat menghapus pengguna" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grup" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Admin Grup" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Hapus" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "tambah grup" -#: js/users.js:436 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Tuliskan nama pengguna yang valid" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Gagal membuat pengguna" -#: js/users.js:442 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Tuliskan sandi yang valid" +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Peringatan: Direktori home untuk pengguna \"{user}\" sudah ada" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "Semuanya (Masalah fatal, galat, peringatan, info, debug)" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "Info, peringatan, galat dan masalah fatal" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "Peringatan, galat dan masalah fatal" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "Galat dan masalah fatal" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "Hanya masalah fatal" + +#: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" msgstr "Peringatan Keamanan" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 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 "" +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:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Peringatan Persiapan" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Silakan periksa kembali petunjuk instalasi." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' tidak ada" -#: templates/admin.php:47 +#: templates/admin.php:68 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:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "Versi PHP telah usang" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "Kode pelokalan tidak berfungsi" -#: templates/admin.php:63 +#: templates/admin.php:98 +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:102 +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:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "" +"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:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Koneksi internet tidak berfungsi" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Jalankan tugas setiap kali halaman dimuat" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "" +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "" +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Berbagi" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Aktifkan API Pembagian" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Izinkan aplikasi untuk menggunakan API Pembagian" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Izinkan tautan" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Izinkan pengguna untuk berbagi item kepada publik lewat tautan" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" -msgstr "" +msgstr "Izinkan unggahan publik" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "Izinkan pengguna memungkinkan orang lain untuk mengunggah kedalam folder berbagi publik mereka" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Izinkan pembagian ulang" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Izinkan pengguna untuk berbagi kembali item yang dibagikan kepada mereka." -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Izinkan pengguna untuk berbagi kepada siapa saja" -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Izinkan pemberitahuan email" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "Izinkan pengguna mengirim pemberitahuan email pada berkas yang dibagikan" + +#: templates/admin.php:221 msgid "Security" msgstr "Keamanan" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Selalu Gunakan HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "Memaksa klien untuk menghubungkan ke %s menggunakan sambungan yang dienskripsi." -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." -msgstr "" +msgstr "Mohon sambungkan ke %s menggunakan HTTPS untuk mengaktifkannya atau menonaktifkan penegakan SSL." -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "Catat" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Level pencatatan" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Lainnya" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Ciutkan" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versi" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "" +"Use this address to access your Files via " +"WebDAV" +msgstr "Gunakan alamat ini untuk mengakses Berkas via WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Enkripsi" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "Aplikasi enkripsi tidak lagi diaktifkan, silahkan mendekripsi semua file Anda" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" -msgstr "" +msgstr "Sandi masuk" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" -msgstr "" +msgstr "Deskripsi semua Berkas" #: templates/users.php:21 msgid "Login Name" @@ -560,18 +623,22 @@ msgstr "Buat" #: templates/users.php:36 msgid "Admin Recovery Password" -msgstr "" +msgstr "Sandi pemulihan Admin" #: templates/users.php:37 templates/users.php:38 msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Masukkan sandi pemulihan untuk memulihkan berkas pengguna saat penggantian sandi" #: templates/users.php:42 msgid "Default Storage" msgstr "Penyimpanan Baku" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "Silakan masukkan jumlah penyimpanan (contoh: \"512 MB\" atau \"12 GB\")" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Tak terbatas" @@ -589,8 +656,8 @@ msgid "Storage" msgstr "Penyimpanan" #: templates/users.php:108 -msgid "change display name" -msgstr "ubah nama tampilan" +msgid "change full name" +msgstr "ubah nama lengkap" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index bb775d8df95e66822118619aa445aadea6fa96c2..e90f580e2a02281cf55562cdc3811133320555a1 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-08 01:55-0500\n" +"PO-Revision-Date: 2014-01-07 07:10+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,314 +25,423 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "Gagal menghapus konfigurasi server" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Konfigurasi valid dan koneksi dapat dilakukan!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Konfigurasi valid, tetapi Bind gagal. Silakan cek pengaturan server dan keamanan." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "Konfigurasi salah. Silakan lihat log ownCloud untuk lengkapnya." +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 "" -#: js/settings.js:66 +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 msgid "Deletion failed" msgstr "Penghapusan gagal" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Ambil alih pengaturan dari konfigurasi server saat ini?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Biarkan pengaturan?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Gagal menambah konfigurasi server" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Sukses" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Galat" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Pilih grup" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Tes koneksi sukses" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Tes koneksi gagal" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Anda ingin menghapus Konfigurasi Server saat ini?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Konfirmasi Penghapusan" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Simpan" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Uji Konfigurasi" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Bantuan" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Peringatan: Modul LDAP PHP tidak terpasang, perangkat tidak akan bekerja. Silakan minta administrator sistem untuk memasangnya." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Konfigurasi server" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +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 "Tambah Konfigurasi Server" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Host" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Protokol dapat tidak ditulis, kecuali anda menggunakan SSL. Lalu jalankan dengan ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Base DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Satu Base DN per baris" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Anda dapat menetapkan Base DN untuk pengguna dan grup dalam tab Lanjutan" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "port" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "User DN" -#: templates/settings.php:46 +#: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "DN dari klien pengguna yang dengannya tautan akan diterapkan, mis. uid=agen,dc=contoh,dc=com. Untuk akses anonim, biarkan DN dan kata sandi kosong." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Sandi" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Untuk akses anonim, biarkan DN dan Kata sandi kosong." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "gunakan saringan login" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Satu Base DN per baris" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Anda dapat menetapkan Base DN untuk pengguna dan grup dalam tab Lanjutan" + +#: templates/part.wizard-userfilter.php:4 #, php-format -msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +msgid "Limit the access to %s to users meeting this criteria:" msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Daftar Filter Pengguna" - -#: templates/settings.php:58 +#: templates/part.wizard-userfilter.php:31 +#, php-format msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "saringan grup" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" -#: templates/settings.php:62 +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Kembali" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Lanjutkan" + +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Peringatan: Modul LDAP PHP tidak terpasang, perangkat tidak akan bekerja. Silakan minta administrator sistem untuk memasangnya." + +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Pengaturan Koneksi" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Konfigurasi Aktif" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Jika tidak dicentang, konfigurasi ini dilewati." -#: templates/settings.php:69 -msgid "Port" -msgstr "port" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Host Cadangan (Replika)" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Berikan pilihan host cadangan. Harus merupakan replika dari server LDAP/AD utama." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Port Cadangan (Replika)" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Nonaktifkan Server Utama" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "gunakan TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Jangan gunakan utamanya untuk koneksi LDAPS, koneksi akan gagal." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Server LDAP dengan kapitalisasi tidak sensitif (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "matikan validasi sertivikat SSL" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Gunakan Tembolok untuk Time-To-Live" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "dalam detik. perubahan mengosongkan cache" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Pengaturan Direktori" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Bidang Tampilan Nama Pengguna" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Pohon Pengguna Dasar" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "Satu Pengguna Base DN per baris" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "Atribut Pencarian Pengguna" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Pilihan; satu atribut per baris" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Bidang Tampilan Nama Grup" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Pohon Grup Dasar" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "Satu Grup Base DN per baris" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Atribut Pencarian Grup" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "asosiasi Anggota-Grup" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Atribut Khusus" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Bidang Kuota" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Kuota Baku" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "dalam bytes" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "Bidang Email" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "Aturan Penamaan Folder Home Pengguna" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Biarkan nama pengguna kosong (default). Atau tetapkan atribut LDAP/AD." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +457,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +476,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +502,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Uji Konfigurasi" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Bantuan" diff --git a/l10n/is/core.po b/l10n/is/core.po index f2fe78f0c1cc2c0218102237326277f77c24e026..24e272a5edfc92609d5436f5b13d4616c6ea9962 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:22+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" @@ -18,13 +18,14 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -52,45 +53,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Flokkur ekki gefin" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Enginn flokkur til að bæta við?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Tegund ekki í boði." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID ekki í boði." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Villa við að bæta %s við eftirlæti." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Enginn flokkur valinn til eyðingar." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Villa við að fjarlægja %s úr eftirlæti." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -187,59 +149,59 @@ msgstr "Nóvember" msgid "December" msgstr "Desember" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Stillingar" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "sek." -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "í dag" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "í gær" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "mánuðir síðan" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "síðasta ári" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "einhverjum árum" @@ -307,155 +269,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Tegund ekki tilgreind" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Villa" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Nafn forrits ekki tilgreint" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Umbeðina skráin {file} ekki tiltæk!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Deilt" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Deila" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Villa" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Villa við deilingu" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Villa við að hætta deilingu" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Villa við að breyta aðgangsheimildum" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Deilt með þér og hópnum {group} af {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Deilt með þér af {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Deila með" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "Deila með veftengli" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Verja með lykilorði" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Lykilorð" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Senda vefhlekk í tölvupóstu til notenda" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Senda" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Setja gildistíma" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Gildir til" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Deila með tölvupósti:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Engir notendur fundust" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Endurdeiling er ekki leyfð" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Deilt með {item} ásamt {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Hætta deilingu" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "getur breytt" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "aðgangsstýring" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "mynda" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "uppfæra" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "eyða" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "deila" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Verja með lykilorði" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Villa við að aftengja gildistíma" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Villa við að setja gildistíma" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Sendi ..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "Tölvupóstur sendur" +#: js/share.js:769 +msgid "Warning" +msgstr "Aðvörun" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Tegund ekki tilgreind" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Eyða" + +#: js/tags.js:31 +msgid "Add" +msgstr "Bæta við" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Þú munt fá veftengil í tölvupósti til að endursetja lykilorðið." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Notendanafn" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -504,13 +494,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Endursetja lykilorð" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -536,7 +526,7 @@ msgstr "Um mig" msgid "Users" msgstr "Notendur" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Forrit" @@ -548,6 +538,34 @@ msgstr "Stjórnun" msgid "Help" msgstr "Hjálp" +#: 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 "Aðgangur bannaður" @@ -564,108 +582,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Breyta flokkum" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Bæta við" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Öryggis aðvörun" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Enginn traustur slembitölugjafi í boði, vinsamlegast virkjaðu PHP OpenSSL viðbótina." -#: templates/installation.php:33 +#: 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 "Án öruggs slembitölugjafa er mögulegt að sjá fyrir öryggis auðkenni til að endursetja lykilorð og komast inn á aðganginn þinn." -#: templates/installation.php:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Útbúa vefstjóra aðgang" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Ítarlegt" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Gagnamappa" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Stilla gagnagrunn" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "verður notað" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Gagnagrunns notandi" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Gagnagrunns lykilorð" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Nafn gagnagrunns" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Töflusvæði gagnagrunns" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Netþjónn gagnagrunns" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Virkja uppsetningu" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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 "%s er til boða. Fáðu meiri upplýsingar um hvernig þú uppfærir." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Útskrá" @@ -683,19 +712,27 @@ msgstr "Ef þú breyttir ekki lykilorðinu þínu fyrir skömmu, er mögulegt a msgid "Please change your password to secure your account again." msgstr "Vinsamlegast breyttu lykilorðinu þínu til að tryggja öryggi þitt." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Týndir þú lykilorðinu?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "muna eftir mér" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Skrá inn" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -703,10 +740,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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 "Uppfæri ownCloud í útgáfu %s, það gæti tekið smá stund." + +#: 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/is/files.po b/l10n/is/files.po index e53fa55a725da9f8186457b4410acd69b3b652d9..ba1a0cc0144195fa47db56abccafb44e16cef260 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -27,220 +27,286 @@ msgstr "Gat ekki fært %s - Skrá með þessu nafni er þegar til" msgid "Could not move %s" msgstr "Gat ekki fært %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Nafn skráar má ekki vera tómt" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Engin skrá var send inn. Óþekkt villa." -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Engin villa, innsending heppnaðist" -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Einungis hluti af innsendri skrá skilaði sér" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Engin skrá skilaði sér" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Vantar bráðabirgðamöppu" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Tókst ekki að skrifa á disk" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Ógild mappa." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Skrár" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Ekki nægt pláss tiltækt" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Hætt við innsendingu." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "Vefslóð má ekki vera tóm." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Villa" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} er þegar til" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "Deila" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Endurskýra" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Bíður" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} er þegar til" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "yfirskrifa" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "stinga upp á nafni" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "hætta við" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "yfirskrifaði {new_name} með {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "afturkalla" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' er ekki leyfilegt nafn." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Nafn skráar má ekki vera tómt" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Villa" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Nafn" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Stærð" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Breytt" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Senda inn" @@ -276,65 +342,69 @@ msgstr "Hámarks inntaksstærð fyrir ZIP skrár" msgid "Save" msgstr "Vista" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nýtt" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "Texta skrá" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "Mappa" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Af tengli" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Hætta við innsendingu" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Ekkert hér. Settu eitthvað inn!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Niðurhal" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Hætta deilingu" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Eyða" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Innsend skrá er of stór" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Skrárnar sem þú ert að senda inn eru stærri en hámarks innsendingarstærð á þessum netþjóni." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Verið er að skima skrár, vinsamlegast hinkraðu." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Er að skima" diff --git a/l10n/is/files_encryption.po b/l10n/is/files_encryption.po index db4f65b88d8a1b8e00a28d25f6aaf898f1f82383..d8f5c06d8c130e1fc81cc26166bc4e85d3853bb4 100644 --- a/l10n/is/files_encryption.po +++ b/l10n/is/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:41 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Er að vista ..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Dulkóðun" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 2d436f7d7ef7f04701e50bebbbf0b5f1042202e9..aa54645b9cdb11984196ecea99a9e4598dd528c8 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Aðgengi veitt" @@ -25,7 +25,7 @@ msgstr "Aðgengi veitt" msgid "Error configuring Dropbox storage" msgstr "Villa við að setja upp Dropbox gagnasvæði" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Veita aðgengi" @@ -33,24 +33,24 @@ msgstr "Veita aðgengi" msgid "Please provide a valid Dropbox app key and secret." msgstr "Gefðu upp virkan Dropbox lykil og leynikóða" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Villa kom upp við að setja upp Google Drive gagnasvæði" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Aðvörun: \"smbclient\" er ekki uppsettur. Uppsetning á CIFS/SMB gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Aðvörun: FTP stuðningur í PHP er ekki virkur. Uppsetning á FTP gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index bfd1462e0561c1a47870de6038994ffafffa28e7..cda2b8abd937d31477a3483a7d48b1591285de8d 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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 "Lykilorð" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Senda" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s deildi möppunni %s með þér" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s deildi skránni %s með þér" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Niðurhal" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Senda inn" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Hætta við innsendingu" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Yfirlit ekki í boði fyrir" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index c28f1236b660d0816eec1803ed866b70fec35c79..228fce21ec77f1c96217837f175ba87460a4e298 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Villa" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:815 lib/trashbin.php:817 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:8 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:22 msgid "Name" msgstr "Nafn" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:25 templates/index.php:27 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:33 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Eyða" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index c814613bdc2fe0a12dc156cb9ce0ce88f9c8a6b7..8bda5c5c8cfef860ccc7211beb7fa5b1a4e87961 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,318 +17,317 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Hjálp" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Um mig" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Stillingar" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Notendur" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Stjórnun" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "vefþjónusta undir þinni stjórn" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Slökkt á ZIP niðurhali." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Skrárnar verður að sækja eina og eina" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Aftur í skrár" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Valdar skrár eru of stórar til að búa til ZIP skrá." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Forrit ekki virkt" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Villa við auðkenningu" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Auðkenning útrunnin. Vinsamlegast skráðu þig aftur inn." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Skrár" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Texti" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Myndir" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Fann ekki flokkinn \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "sek." -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "í dag" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "í gær" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "síðasta mánuði" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "síðasta ári" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "einhverjum árum" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Fann ekki flokkinn \"%s\"" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 928b1480018805102dd75bf61f66b4d7b65cd425..2ea8e49f9eede327862fb20a1f802cfb0c26d774 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+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" @@ -28,11 +28,11 @@ msgid "Authentication error" msgstr "Villa við auðkenningu" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -118,11 +118,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Gera óvirkt" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Virkja" @@ -130,31 +130,31 @@ msgstr "Virkja" msgid "Please wait...." msgstr "Andartak...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Uppfæri..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Villa" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Uppfæra" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Uppfært" @@ -162,7 +162,7 @@ msgstr "Uppfært" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -182,44 +182,75 @@ msgstr "afturkalla" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Hópar" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Hópstjóri" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Eyða" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "__nafn_tungumáls__" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "Öryggis aðvörun" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -228,48 +259,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -278,110 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Meira" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Minna" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Útgáfa" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Dulkóðun" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -573,6 +636,10 @@ msgstr "" msgid "Default Storage" msgstr "Sjálfgefin gagnageymsla" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Ótakmarkað" @@ -590,7 +657,7 @@ msgid "Storage" msgstr "gagnapláss" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 5f4609f359bbae18b85765961add4cd3df3debd6..346a6ab1bd1fc6927f0bbd602e596a7613cf4bea 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -26,314 +26,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Geyma stillingar ?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Villa" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:778 lib/wizard.php:790 +msgid "Invalid Host" msgstr "" -#: templates/settings.php:12 +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Vista" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Prúfa uppsetningu" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Hjálp" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" -msgstr "Netþjónn" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" +msgstr "Netþjónn" + +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:36 +msgid "Port" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Lykilorð" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -349,15 +460,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -368,15 +479,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -390,18 +505,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Prúfa uppsetningu" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Hjálp" diff --git a/l10n/it/core.po b/l10n/it/core.po index a5586707e43675c73575defaada6de1811419f55..4e82d964475962126010d83e4c6f344d7df0a6be 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-29 00:02-0400\n" -"PO-Revision-Date: 2013-09-27 18:30+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -21,14 +21,15 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s ha condiviso «%s» con te" -#: ajax/share.php:227 -msgid "group" -msgstr "gruppo" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Impossibile inviare email ai seguenti utenti: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -55,45 +56,6 @@ msgstr "Cache dei file aggiornata" msgid "... %d%% done ..." msgstr "... %d%% completato ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Tipo di categoria non fornito." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Nessuna categoria da aggiungere?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Questa categoria esiste già: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Tipo di oggetto non fornito." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "ID %s non fornito." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Errore durante l'aggiunta di %s ai preferiti." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Nessuna categoria selezionata per l'eliminazione." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Errore durante la rimozione di %s dai preferiti." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Non è stata fornita alcun immagine o file" @@ -190,59 +152,59 @@ msgstr "Novembre" msgid "December" msgstr "Dicembre" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto fa" msgstr[1] "%n minuti fa" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ora fa" msgstr[1] "%n ore fa" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "oggi" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "ieri" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n giorno fa" msgstr[1] "%n giorni fa" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "mese scorso" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mese fa" msgstr[1] "%n mesi fa" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "mesi fa" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "anno scorso" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "anni fa" @@ -310,155 +272,183 @@ msgstr "({count} selezionati)" msgid "Error loading file exists template" msgstr "Errore durante il caricamento del modello del file esistente" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Il tipo di oggetto non è specificato." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 -msgid "Error" -msgstr "Errore" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Il nome dell'applicazione non è specificato." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Il file richiesto {file} non è installato!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Condivisi" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Condividi" -#: js/share.js:131 js/share.js:696 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Errore" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Errore durante la condivisione" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Errore durante la rimozione della condivisione" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Errore durante la modifica dei permessi" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Condiviso con te e con il gruppo {group} da {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Condiviso con te da {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Condividi con" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Condividi con utente o gruppo ..." -#: js/share.js:188 -msgid "Share with link" -msgstr "Condividi con collegamento" +#: js/share.js:219 +msgid "Share link" +msgstr "Condividi collegamento" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Proteggi con password" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Password" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Consenti caricamento pubblico" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Invia collegamento via email" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Invia" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Imposta data di scadenza" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Data di scadenza" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Condividi tramite email:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Non sono state trovate altre persone" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "gruppo" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "La ri-condivisione non è consentita" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Condiviso in {item} con {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Rimuovi condivisione" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "notifica tramite email" + +#: js/share.js:408 msgid "can edit" msgstr "può modificare" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "controllo d'accesso" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "creare" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "aggiornare" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "elimina" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "condividi" -#: js/share.js:400 js/share.js:643 +#: js/share.js:694 msgid "Password protected" msgstr "Protetta da password" -#: js/share.js:656 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Errore durante la rimozione della data di scadenza" -#: js/share.js:668 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Errore durante l'impostazione della data di scadenza" -#: js/share.js:683 +#: js/share.js:734 msgid "Sending ..." msgstr "Invio in corso..." -#: js/share.js:694 +#: js/share.js:745 msgid "Email sent" msgstr "Messaggio inviato" +#: js/share.js:769 +msgid "Warning" +msgstr "Avviso" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Il tipo di oggetto non è specificato." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Inserisci nuovo" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Elimina" + +#: js/tags.js:31 +msgid "Add" +msgstr "Aggiungi" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Modifica etichette" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Errore durante il caricamento del modello di finestra: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Nessuna etichetta selezionata per l'eliminazione." + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "Ricarica la pagina." + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Il collegamento per ripristinare la password è stato inviato al tuo indirizzo di posta.
    Se non lo ricevi in tempi ragionevoli, controlla le cartelle della posta indesiderata.
    Se non dovesse essere nemmeno lì, contatta il tuo amministratore locale." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Richiesta non riuscita!
    Sei sicuro che l'indirizzo di posta/nome utente fosse corretto?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Riceverai un collegamento per ripristinare la tua password via email" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Nome utente" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -507,13 +497,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "I file sono cifrati. Se non hai precedentemente abilitato la chiave di recupero, non sarà più possibile ritrovare i tuoi dati una volta che la password sarà ripristinata. Se non sei sicuro, per favore contatta l'amministratore prima di proseguire. Vuoi davvero continuare?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Sì, voglio davvero ripristinare la mia password adesso" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Richiesta di ripristino" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Ripristina" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -539,7 +529,7 @@ msgstr "Personale" msgid "Users" msgstr "Utenti" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Applicazioni" @@ -551,6 +541,34 @@ msgstr "Admin" msgid "Help" msgstr "Aiuto" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "Errore di caricamento delle etichette" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "L'etichetta esiste già" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "Errore di eliminazione delle etichette" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "Errore di assegnazione delle etichette" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "Errore di rimozione delle etichette" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "Errore di creazione dei preferiti" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "Errore di rimozione dai preferiti" + #: templates/403.php:12 msgid "Access forbidden" msgstr "Accesso negato" @@ -567,108 +585,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Ehilà,\n\nvolevo solamente farti sapere che %s ha condiviso %s con te.\nGuarda: %s\n\nSaluti!" +msgstr "Ciao,\n\nvolevo informarti che %s ha condiviso %s con te.\nVedi: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Modifica categorie" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "La condivisione scadrà il %s." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Aggiungi" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Saluti!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Avviso di sicurezza" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "La tua versione di PHP è vulnerabile all'attacco NULL Byte (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Aggiorna la tua installazione di PHP per utilizzare %s in sicurezza." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Non è disponibile alcun generatore di numeri casuali sicuro. Abilita l'estensione OpenSSL di PHP" -#: templates/installation.php:33 +#: 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 "Senza un generatore di numeri casuali sicuro, un malintenzionato potrebbe riuscire a individuare i token di ripristino delle password e impossessarsi del tuo account." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "La cartella dei dati e i file sono probabilmente accessibili da Internet poiché il file .htaccess non funziona." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "Per informazioni su come configurare correttamente il tuo server, vedi la documentazione." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Crea un account amministratore" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Avanzat" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Cartella dati" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Configura il database" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "sarà utilizzato" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Utente del database" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Password del database" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Nome del database" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Spazio delle tabelle del database" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Host del database" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Termina la configurazione" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Completamento..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "L'applicazione richiede che JavaScript sia abilitato per un corretto funzionamento. Abilita JavaScript e ricarica questa interfaccia." + +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s è disponibile. Ottieni ulteriori informazioni sull'aggiornamento." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Esci" @@ -686,19 +715,27 @@ msgstr "Se non hai cambiato la password recentemente, il tuo account potrebbe es msgid "Please change your password to secure your account again." msgstr "Cambia la password per rendere nuovamente sicuro il tuo account." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "Autenticazione lato server non riuscita!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Contatta il tuo amministratore di sistema." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Hai perso la password?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "ricorda" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Accedi" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Accessi alternativi" @@ -706,10 +743,37 @@ msgstr "Accessi alternativi" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Ehilà,

    volevo solamente farti sapere che %s ha condiviso «%s» con te.
    Guarda!

    Saluti!" +"href=\"%s\">View it!

    " +msgstr "Ciao,

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

    " + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "Questa istanza di ownCloud è in modalità utente singolo." + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "Ciò significa che solo gli amministratori possono utilizzare l'istanza." -#: templates/update.php:3 +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "Contatta il tuo amministratore di sistema se questo messaggio persiste o appare inaspettatamente." + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "Grazie per la pazienza." + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "Aggiornamento di ownCloud alla versione %s in corso, ciò potrebbe richiedere del tempo." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "Questa istanza di ownCloud è in fase di aggiornamento, potrebbe richiedere del tempo." + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "Ricarica questa pagina per poter continuare ad usare ownCloud." diff --git a/l10n/it/files.po b/l10n/it/files.po index 3b8b0f65394b9c77b6b4902b41bedb771dbbbbeb..888244240e0602b4f2131f85f17f8a81ca28951c 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:14-0400\n" -"PO-Revision-Date: 2013-09-30 12:15+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 22:30+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -29,62 +29,107 @@ msgstr "Impossibile spostare %s - un file con questo nome esiste già" msgid "Could not move %s" msgstr "Impossibile spostare %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Il nome del file non può essere vuoto." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "Il nome del file non può contenere il carattere \"/\". Scegli un nome diverso." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "Il nome %s è attualmente in uso nella cartella %s. Scegli un nome diverso." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "Non è una sorgente valida" + +#: ajax/newfile.php:86 +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:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Errore durante lo scaricamento di %s su %s" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Errore durante la creazione del file" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "Il nome della cartella non può essere vuoto." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "Il nome della cartella non può contenere il carattere \"/\". Scegli un nome diverso." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Errore durante la creazione della cartella" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Impossibile impostare una cartella di caricamento." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Token non valido" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Nessun file è stato inviato. Errore sconosciuto" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Non ci sono errori, il file è stato caricato correttamente" -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Il file è stato caricato solo parzialmente" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Nessun file è stato caricato" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Manca una cartella temporanea" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Scrittura su disco non riuscita" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Spazio di archiviazione insufficiente" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "Caricamento non riuscito. Impossibile ottenere informazioni sul file." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "Caricamento non riuscito. Impossibile trovare il file caricato." -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Cartella non valida." @@ -92,157 +137,178 @@ msgstr "Cartella non valida." msgid "Files" msgstr "File" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Impossibile caricare {filename} poiché è una cartella oppure ha una dimensione di 0 byte." -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Spazio disponibile insufficiente" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Invio annullato" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "Impossibile ottenere il risultato dal server." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "L'URL non può essere vuoto." -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Nome della cartella non valido. L'uso di 'Shared' è riservato a ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "Nella cartella home 'Shared' è un nome riservato" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Errore" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} esiste già" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Impossibile creare il file" -#: js/fileactions.js:119 +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Impossibile creare la cartella" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Errore durante il recupero dello URL" + +#: js/fileactions.js:125 msgid "Share" msgstr "Condividi" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Elimina definitivamente" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Rinomina" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "In corso" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} esiste già" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Impossibile rinominare il file" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "sostituisci" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "suggerisci nome" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "annulla" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "sostituito {new_name} con {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "annulla" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Errore durante l'eliminazione del file." + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartella" msgstr[1] "%n cartelle" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" msgstr[1] "%n file" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Caricamento di %n file in corso" msgstr[1] "Caricamento di %n file in corso" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' non è un nome file valido." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Il nome del file non può essere vuoto." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Lo spazio di archiviazione è pieno, i file non possono essere più aggiornati o sincronizzati!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Lo spazio di archiviazione è quasi pieno ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "L'applicazione di cifratura è abilitata, ma le chiavi non sono state inizializzate, disconnettiti ed effettua nuovamente l'accesso" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "Chiave privata non valida per l'applicazione di cifratura. Aggiorna la password della chiave privata nelle impostazioni personali per ripristinare l'accesso ai tuoi file cifrati." + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "La cifratura è stata disabilitata ma i tuoi file sono ancora cifrati. Vai nelle impostazioni personali per decifrare i file." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Il tuo scaricamento è in fase di preparazione. Ciò potrebbe richiedere del tempo se i file sono grandi." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "Errore durante lo spostamento del file" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Errore" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Nome" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Dimensione" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Modificato" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Nome della cartella non valido. L'uso di 'Shared' è riservato." + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s non può essere rinominato" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Carica" @@ -278,65 +344,69 @@ msgstr "Dimensione massima per i file ZIP" msgid "Save" msgstr "Salva" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nuovo" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "Nuovo file di testo" + +#: templates/index.php:8 msgid "Text file" msgstr "File di testo" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Nuova cartella" + +#: templates/index.php:10 msgid "Folder" msgstr "Cartella" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Da collegamento" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "File eliminati" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Annulla invio" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Qui non hai i permessi di scrittura." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "Qui non hai i permessi di caricare o creare file" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Non c'è niente qui. Carica qualcosa!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Scarica" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Rimuovi condivisione" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Elimina" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Caricamento troppo grande" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "I file che stai provando a caricare superano la dimensione massima consentita su questo server." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Scansione dei file in corso, attendi" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Scansione corrente" diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index eac60e403baddd9a6a035236de4003ffb3522416..c77b29e41ab4a1f6d5b192b2930e08921b90f42e 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-03 06:40+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -46,75 +46,96 @@ msgstr "Password modificata correttamente." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Impossibile cambiare la password. Forse la vecchia password non era corretta." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Password della chiave privata aggiornata correttamente." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Impossibile aggiornare la password della chiave privata. Forse la vecchia password non era corretta." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "La chiave privata non è valida! Forse la password è stata cambiata esternamente al sistema di ownCloud (ad es. la directory aziendale). Puoi aggiornare la password della chiave privata nelle impostazioni personali per ottenere nuovamente l'accesso ai file." +"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 "Applicazione di cifratura non inizializzata. Forse l'applicazione è stata riabilitata durante la tua sessione. Prova a disconnetterti e ad effettuare nuovamente l'accesso per inizializzarla." -#: hooks/hooks.php:41 +#: 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 "La tua chiave privata non è valida! Forse la password è stata cambiata al di fuori di %s (ad es. la directory aziendale). Puoi aggiornare la password della chiave privata nelle impostazioni personali per ottenere nuovamente l'accesso ai file cifrati." + +#: 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 "Impossibile decifrare questo file, probabilmente è un file condiviso. Chiedi al proprietario del file di condividere nuovamente il file con te." + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Errore sconosciuto, controlla le impostazioni di sistema o contatta il tuo amministratore" + +#: hooks/hooks.php:59 msgid "Missing requirements." msgstr "Requisiti mancanti." -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'estensione OpenSSL di PHP sia abilitata e configurata correttamente. Per ora, l'applicazione di cifratura è disabilitata." -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "I seguenti utenti non sono configurati per la cifratura:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "Cifratura iniziale avviata... Potrebbe richiedere del tempo. Attendi." + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Salvataggio in corso..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "La tua chiave privata non è valida! Forse è stata modifica dall'esterno." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Passa direttamente a" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Puoi sbloccare la chiave privata nelle tue" - -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "impostazioni personali" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Cifratura" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Abilita la chiave di recupero (permette di recuperare i file utenti in caso di perdita della password):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Password della chiave di recupero" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Ripeti la password della chiave di recupero" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Abilitata" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Disabilitata" @@ -122,58 +143,62 @@ msgstr "Disabilitata" msgid "Change recovery key password:" msgstr "Cambia la password della chiave di recupero:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Vecchia password della chiave di recupero" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Nuova password della chiave di recupero" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "Ripeti la nuova password della chiave di recupero" + +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Modifica password" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "La password della chiave privata non corrisponde più alla password di accesso:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Imposta la vecchia password della chiave privata sull'attuale password di accesso." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Se non ricordi la vecchia password puoi chiedere al tuo amministratore di recuperare i file." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Vecchia password di accesso" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Password di accesso attuale" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Aggiorna la password della chiave privata" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Abilita il ripristino della password:" -#: templates/settings-personal.php:47 +#: 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 "L'abilitazione di questa opzione ti consentirà di accedere nuovamente ai file cifrati in caso di perdita della password" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Impostazioni di ripristino dei file aggiornate" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Impossibile aggiornare il ripristino dei file" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 0e408fb028c05391a41ee583a1bdf77ef06c7845..4704f0c3cdb8b1d2bde7fe86d2eefdbffd2362e3 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Accesso consentito" @@ -25,7 +25,7 @@ msgstr "Accesso consentito" msgid "Error configuring Dropbox storage" msgstr "Errore durante la configurazione dell'archivio Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Concedi l'accesso" @@ -33,24 +33,24 @@ msgstr "Concedi l'accesso" msgid "Please provide a valid Dropbox app key and secret." msgstr "Fornisci chiave di applicazione e segreto di Dropbox validi." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Errore durante la configurazione dell'archivio Google Drive" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Avviso: \"smbclient\" non è installato. Impossibile montare condivisioni CIFS/SMB. Chiedi all'amministratore di sistema di installarlo." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Avviso: il supporto FTP di PHP non è abilitato o non è installato. Impossibile montare condivisioni FTP. Chiedi all'amministratore di sistema di installarlo." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 01ae61c6aea21327bf43d549c37f2b8a83457695..bba679726f31621c2311a54ca242591497f331b9 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -20,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Questa condivione è protetta da password" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "La password è errata. Prova ancora." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Password" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Invia" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Spiacenti, questo collegamento sembra non essere più attivo." @@ -55,28 +55,32 @@ msgstr "la condivisione è disabilitata" msgid "For more info, please ask the person who sent this link." msgstr "Per ulteriori informazioni, chiedi alla persona che ti ha inviato il collegamento." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ha condiviso la cartella %s con te" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s ha condiviso il file %s con te" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Scarica" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Carica" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Annulla il caricamento" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Nessuna anteprima disponibile per" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Collegamento diretto" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 323adf9021f2661a882cfbc240f178b7641eee3d..05958ee8c9731fe51847db9d278da8852f99e834 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-25 19:18-0400\n" -"PO-Revision-Date: 2013-08-25 06:50+0000\n" -"Last-Translator: Vincenzo Reale \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "Impossibile eliminare %s definitivamente" msgid "Couldn't restore %s" msgstr "Impossibile ripristinare %s" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "esegui operazione di ripristino" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Errore" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "elimina il file definitivamente" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Elimina definitivamente" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Nome" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "Eliminati" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n cartella" -msgstr[1] "%n cartelle" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n file" -msgstr[1] "%n file" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "ripristinati" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Qui non c'è niente. Il tuo cestino è vuoto." -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Nome" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Ripristina" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Eliminati" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Elimina" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 27b7c76e85e1ba49620f6c453fc9b39281adc9f3..6fba55653fe6b14af06be158474609050547a5bd 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-19 05:50+0000\n" -"Last-Translator: Vincenzo Reale \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,318 +20,317 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "L'applicazione \"%s\" non può essere installata poiché non è compatibile con questa versione di ownCloud." -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "Il nome dell'applicazione non è specificato" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Aiuto" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Personale" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Impostazioni" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Utenti" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Aggiornamento non riuscito \"%s\"." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Le immagini personalizzate del profilo non funzionano ancora con la cifratura" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Tipo di file sconosciuto" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Immagine non valida" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "servizi web nelle tue mani" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "impossibile aprire \"%s\"" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Lo scaricamento in formato ZIP è stato disabilitato." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "I file devono essere scaricati uno alla volta." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Torna ai file" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "I file selezionati sono troppo grandi per generare un file zip." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Scarica i file in blocchi più piccoli, separatamente o chiedi al tuo amministratore." +msgstr "Scarica i file separatamente in blocchi più piccoli o chiedi al tuo amministratore." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Nessuna fonte specificata durante l'installazione dell'applicazione" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Nessun href specificato durante l'installazione dell'applicazione da http" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Nessun percorso specificato durante l'installazione dell'applicazione da file locale" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Gli archivi di tipo %s non sono supportati" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Apertura archivio non riuscita durante l'installazione dell'applicazione" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "L'applicazione non fornisce un file info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "L'applicazione non può essere installata a causa di codice non consentito al suo interno" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "L'applicazione non può essere installata poiché non è compatibile con questa versione di ownCloud" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "L'applicazione non può essere installata poiché contiene il tag true che non è permesso alle applicazioni non shipped" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "L'applicazione non può essere installata poiché la versione in info.xml/version non è la stessa riportata dall'app store" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "La cartella dell'applicazione esiste già" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Impossibile creare la cartella dell'applicazione. Correggi i permessi. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "L'applicazione non è abilitata" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Errore di autenticazione" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token scaduto. Ricarica la pagina." -#: search/provider/file.php:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "File" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Testo" -#: search/provider/file.php:30 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Immagini" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s digita il nome utente del database." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s digita il nome del database." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s non dovresti utilizzare punti nel nome del database" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nome utente e/o password MS SQL non validi: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "È necessario inserire un account esistente o l'amministratore." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Nome utente e/o password di MySQL non validi" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "Errore DB: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Il comando non consentito era: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "L'utente MySQL '%s'@'localhost' esiste già." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Elimina questo utente da MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "L'utente MySQL '%s'@'%%' esiste già" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Elimina questo utente da MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "La connessione a Oracle non può essere stabilita" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Nome utente e/o password di Oracle non validi" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Il comando non consentito era: \"%s\", nome: %s, password: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "Nome utente e/o password di PostgreSQL non validi" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Imposta un nome utente di amministrazione." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Imposta una password di amministrazione." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Leggi attentamente le guide d'installazione." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Impossibile trovare la categoria \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "secondi fa" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto fa" msgstr[1] "%n minuti fa" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ora fa" msgstr[1] "%n ore fa" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "oggi" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "ieri" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n giorno fa" msgstr[1] "%n giorni fa" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "mese scorso" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mese fa" msgstr[1] "%n mesi fa" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "anno scorso" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "anni fa" - -#: template.php:297 -msgid "Caused by:" -msgstr "Causato da:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Impossibile trovare la categoria \"%s\"" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 8248b45ef2445294ca1bcbb0d1c6773952ac36d8..b972a97ad19c925942b73df08677e5ef1b2614db 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:17-0400\n" -"PO-Revision-Date: 2013-09-30 12:15+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 22:30+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -31,12 +31,12 @@ msgid "Authentication error" msgstr "Errore di autenticazione" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Il tuo nome visualizzato è stato cambiato." +msgid "Your full name has been changed." +msgstr "Il tuo nome completo è stato cambiato." #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Impossibile cambiare il nome visualizzato" +msgid "Unable to change full name" +msgstr "Impossibile cambiare il nome completo" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -161,7 +161,7 @@ msgstr "Aggiorna" msgid "Updated" msgstr "Aggiornato" -#: js/personal.js:221 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Seleziona un'immagine del profilo" @@ -169,7 +169,7 @@ msgstr "Seleziona un'immagine del profilo" msgid "Decrypting files... Please wait, this can take some time." msgstr "Decifratura dei file in corso... Attendi, potrebbe richiedere del tempo." -#: js/personal.js:288 +#: js/personal.js:287 msgid "Saving..." msgstr "Salvataggio in corso..." @@ -185,44 +185,75 @@ msgstr "annulla" msgid "Unable to remove user" msgstr "Impossibile rimuovere l'utente" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Gruppi" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Gruppi amministrati" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Elimina" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "aggiungi gruppo" -#: js/users.js:436 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Deve essere fornito un nome utente valido" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Errore durante la creazione dell'utente" -#: js/users.js:442 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Deve essere fornita una password valida" +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Avviso: la cartella home dell'utente \"{user}\" esiste già" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Italiano" -#: templates/admin.php:15 +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "Tutto (problemi gravi, errori, avvisi, informazioni, debug)" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "Informazioni, avvisi, errori e problemi gravi" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "Avvisi, errori e problemi gravi" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "Errori e problemi gravi" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "Solo problemi gravi" + +#: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" msgstr "Avviso di sicurezza" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "Sei connesso a %s tramite HTTP. Ti suggeriamo vivamente di configurare il tuo server per richiedere l'utilizzo del protocollo HTTPS al posto di HTTP." + +#: templates/admin.php:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -231,48 +262,68 @@ msgid "" "root." msgstr "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o spostare la cartella fuori dalla radice del server web." -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Avviso di configurazione" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata." -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Leggi attentamente le guide d'installazione." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Modulo 'fileinfo' mancante" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Il modulo PHP 'fileinfo' non è presente. Consigliamo vivamente di abilitare questo modulo per ottenere risultati migliori con il rilevamento dei tipi MIME." -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "La tua versione di PHP è obsoleta" + +#: templates/admin.php:82 +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 "La tua versione di PHP è obsoleta. Ti consigliamo vivamente di aggiornare alla versione 5.3.8 o successiva poiché è sono noti problemi con le vecchie versioni. L'installazione attuale potrebbe non funzionare correttamente." + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Locale non funzionante" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "La localizzazione di sistema non può essere impostata a una che supporta UTF-8." + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "Ciò significa che potrebbero esserci problemi con alcuni caratteri nei nomi dei file." + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "La localizzazione di sistema è impostata a %s. Ciò significa che potrebbero verificarsi dei problemi con alcuni caratteri nei nomi dei file. Consigliamo vivamente di installare i pacchetti necessari a supportare %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "Consigliamo vivamente di installare i pacchetti richiesti sul tuo sistema per supportare una delle\nlocalizzazioni seguenti: %s." -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Concessione Internet non funzionante" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -281,110 +332,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Questo server ownCloud non ha una connessione a Internet funzionante. Ciò significa che alcune delle funzionalità come il montaggio di archivi esterni, le notifiche degli aggiornamenti o l'installazione di applicazioni di terze parti non funzioneranno. L'accesso remoto ai file e l'invio di email di notifica potrebbero non funzionare. Ti suggeriamo di abilitare la connessione a Internet del server se desideri disporre di tutte le funzionalità." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Esegui un'operazione con ogni pagina caricata" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php è registrato su un servizio webcron per invocare la pagina cron.php ogni minuto su http." +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Usa il servizio cron di sistema per invocare il file cron.php ogni minuto." +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Condivisione" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Abilita API di condivisione" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Consenti alle applicazioni di utilizzare le API di condivisione" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Consenti collegamenti" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Consenti agli utenti di condividere pubblicamente elementi tramite collegamenti" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Consenti caricamenti pubblici" -#: templates/admin.php:144 +#: templates/admin.php:187 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:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Consenti la ri-condivisione" -#: templates/admin.php:153 +#: templates/admin.php:196 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:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Consenti agli utenti di condividere con chiunque" -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Consenti le notifiche tramite posta elettronica" + +#: templates/admin.php:214 +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:221 msgid "Security" msgstr "Protezione" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Forza HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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:191 +#: templates/admin.php:242 #, 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:203 +#: templates/admin.php:254 msgid "Log" msgstr "Log" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Livello di log" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Altro" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Meno" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versione" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Utilizza questo indirizzo per accedere ai tuoi file via WebDAV" +"Use this address to access your Files via " +"WebDAV" +msgstr "Utilizza questo indirizzo per accedere ai tuoi file con WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Cifratura" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "L'applicazione di cifratura non è più abilitata, decifra tutti i tuoi file" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Password di accesso" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Decifra tutti i file" @@ -576,6 +639,10 @@ msgstr "Digita la password di ripristino per recuperare i file degli utenti dura msgid "Default Storage" msgstr "Archiviazione predefinita" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "Digita la quota di archiviazione (ad es.: \"512 MB\" or \"12 GB\")" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Illimitata" @@ -593,8 +660,8 @@ msgid "Storage" msgstr "Archiviazione" #: templates/users.php:108 -msgid "change display name" -msgstr "cambia il nome visualizzato" +msgid "change full name" +msgstr "modica nome completo" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 5e50a6b6e6532abfd1a2a81e5c9b4db34c08dda7..dbe65895ef6ec7c07c002e064ad1379514ec7372 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# polxmod , 2013 # Vincenzo Reale , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" -"Last-Translator: Vincenzo Reale \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,314 +27,425 @@ msgstr "Cancellazione delle associazioni non riuscita." msgid "Failed to delete the server configuration" msgstr "Eliminazione della configurazione del server non riuscita" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "La configurazione è valida e la connessione può essere stabilita." -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "La configurazione è valida, ma il Bind non è riuscito. Controlla le impostazioni del server e le credenziali." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "La configurazione non è valida. Controlla il log di ownCloud per ulteriori dettagli." +msgstr "La configurazione non è valida. Controlla i log per ulteriori dettagli." + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "Nessuna azione specificata" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "Nessuna configurazione specificata" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "Nessun dato specificato" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "Impossibile impostare la configurazione %s" -#: js/settings.js:66 +#: js/settings.js:67 msgid "Deletion failed" msgstr "Eliminazione non riuscita" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Vuoi recuperare le impostazioni dalla configurazione recente del server?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Vuoi mantenere le impostazioni?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Impossibile aggiungere la configurazione del server" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "associazioni cancellate" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Riuscito" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Errore" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "Configurazione corretta" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "Configurazione non corretta" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "Configurazione incompleta" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Seleziona i gruppi" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "Seleziona le classi di oggetti" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "Seleziona gli attributi" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Prova di connessione riuscita" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Prova di connessione non riuscita" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Vuoi davvero eliminare la configurazione attuale del server?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Conferma l'eliminazione" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "Avviso: le applicazioni user_ldap e user_webdavauth sono incompatibili. Potresti riscontrare un comportamento inatteso. Chiedi al tuo amministratore di sistema di disabilitarne una." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "%s gruppo trovato" +msgstr[1] "%s gruppi trovati" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "%s utente trovato" +msgstr[1] "%s utenti trovati" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "Host non valido" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "Impossibile trovare la funzionalità desiderata" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Salva" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Prova configurazione" -#: templates/settings.php:12 +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Aiuto" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "Limita l'accesso a %s ai gruppi che verificano questi criteri:" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "solo queste classi di oggetti:" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "solo da questi gruppi:" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "Modifica invece il filtro grezzo" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "Filtro LDAP grezzo" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Avviso: il modulo PHP LDAP non è installato, il motore non funzionerà. Chiedi al tuo amministratore di sistema di installarlo." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "Il filtro specifica quali gruppi LDAP devono avere accesso all'istanza %s." -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Configurazione del server" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "gruppi trovati" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "Quale attributo deve essere usato come nome di accesso:" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "Nome utente LDAP:" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "Indirizzo email LDAP:" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "Altri attributi:" + +#: 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 "Specifica quale filtro utilizzare quando si tenta l'accesso. %%uid sostituisce il nome utente all'atto dell'accesso. Esempio: \"uid=%%uid\"" + +#: templates/part.wizard-server.php:18 msgid "Add Server Configuration" msgstr "Aggiungi configurazione del server" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Host" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "È possibile omettere il protocollo, ad eccezione se è necessario SSL. Quindi inizia con ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "DN base" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Un DN base per riga" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Puoi specificare una DN base per gli utenti ed i gruppi nella scheda Avanzate" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Porta" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "DN utente" -#: templates/settings.php:46 +#: 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 "Il DN per il client dell'utente con cui deve essere associato, ad esempio uid=agent,dc=example,dc=com. Per l'accesso anonimo, lasciare vuoti i campi DN e Password" -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Password" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Per l'accesso anonimo, lasciare vuoti i campi DN e Password" -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Filtro per l'accesso utente" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Un DN base per riga" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Puoi specificare una DN base per gli utenti ed i gruppi nella scheda Avanzate" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "Limita l'accesso a %s ai gruppi che verificano questi criteri:" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "Specifica quale filtro utilizzare quando si tenta l'accesso. %%uid sostituisce il nome utente all'atto dell'accesso. Esempio: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "Il filtro specifica quali utenti LDAP devono avere accesso all'istanza %s." -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Filtro per l'elenco utenti" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "utenti trovati" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "Specifica quale filtro utilizzare durante il recupero degli utenti (nessun segnaposto). Esempio: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Indietro" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Filtro per il gruppo" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Continua" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "Avviso: le applicazioni user_ldap e user_webdavauth sono incompatibili. Potresti riscontrare un comportamento inatteso. Chiedi al tuo amministratore di sistema di disabilitarne una." -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "Specifica quale filtro utilizzare durante il recupero dei gruppi (nessun segnaposto). Esempio: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Avviso: il modulo PHP LDAP non è installato, il motore non funzionerà. Chiedi al tuo amministratore di sistema di installarlo." -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Impostazioni di connessione" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Configurazione attiva" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Se deselezionata, questa configurazione sarà saltata." -#: templates/settings.php:69 -msgid "Port" -msgstr "Porta" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Host di backup (Replica)" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Fornisci un host di backup opzionale. Deve essere una replica del server AD/LDAP principale." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Porta di backup (Replica)" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Disabilita server principale" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "Collegati solo al server di replica." -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Usa TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Da non utilizzare per le connessioni LDAPS, non funzionerà." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Case insensitve LDAP server (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Disattiva il controllo del certificato SSL." -#: templates/settings.php:75 +#: 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 "Non consigliata, da utilizzare solo per test! Se la connessione funziona solo con questa opzione, importa il certificate SSL del server LDAP sul tuo server %s." -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Tempo di vita della cache" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "in secondi. Il cambio svuota la cache." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Impostazioni delle cartelle" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Campo per la visualizzazione del nome utente" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "L'attributo LDAP da usare per generare il nome visualizzato dell'utente." -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Struttura base dell'utente" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "Un DN base utente per riga" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "Attributi di ricerca utente" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Opzionale; un attributo per riga" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Campo per la visualizzazione del nome del gruppo" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "L'attributo LDAP da usare per generare il nome visualizzato del gruppo." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Struttura base del gruppo" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "Un DN base gruppo per riga" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Attributi di ricerca gruppo" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Associazione gruppo-utente " -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Attributi speciali" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Campo Quota" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Quota predefinita" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "in byte" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "Campo Email" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "Regola di assegnazione del nome della cartella utente" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Lascia vuoto per il nome utente (predefinito). Altrimenti, specifica un attributo LDAP/AD." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "Nome utente interno" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -349,15 +461,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "In modo predefinito, il nome utente interno sarà creato dall'attributo UUID. Ciò assicura che il nome utente sia univoco e che non sia necessario convertire i caratteri. Il nome utente interno consente l'uso di determinati caratteri: [ a-zA-Z0-9_.@- ]. Altri caratteri sono sostituiti con il corrispondente ASCII o sono semplicemente omessi. In caso di conflitto, sarà aggiunto/incrementato un numero. Il nome utente interno è utilizzato per identificare un utente internamente. Rappresenta, inoltre, il nome predefinito per la cartella home dell'utente in ownCloud. Costituisce anche una parte di URL remoti, ad esempio per tutti i servizi *DAV. Con questa impostazione, il comportamento predefinito può essere scavalcato. Per ottenere un comportamento simile alle versioni precedenti ownCloud 5, inserisci l'attributo del nome visualizzato dell'utente nel campo seguente. Lascialo vuoto per il comportamento predefinito. Le modifiche avranno effetto solo sui nuovo utenti LDAP associati (aggiunti)." -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "Attributo nome utente interno:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "Ignora rilevamento UUID" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -368,15 +480,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "In modo predefinito, l'attributo UUID viene rilevato automaticamente. L'attributo UUID è utilizzato per identificare senza alcun dubbio gli utenti e i gruppi LDAP. Inoltre, il nome utente interno sarà creato sulla base dell'UUID, se non è specificato in precedenza. Puoi ignorare l'impostazione e fornire un attributo di tua scelta. Assicurati che l'attributo scelto possa essere ottenuto sia per gli utenti che per i gruppi e che sia univoco. Lascialo vuoto per ottenere il comportamento predefinito. Le modifiche avranno effetto solo sui nuovi utenti e gruppi LDAP associati (aggiunti)." -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Attributo UUID:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "Attributo UUID per gli utenti:" -#: templates/settings.php:104 +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "Attributo UUID per i gruppi:" + +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "Associazione Nome utente-Utente LDAP" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -390,18 +506,10 @@ msgid "" "experimental stage." msgstr "I nomi utente sono utilizzati per archiviare e assegnare i (meta) dati. Per identificare con precisione e riconoscere gli utenti, ogni utente LDAP avrà un nome utente interno. Ciò richiede un'associazione tra il nome utente e l'utente LDAP. In aggiunta, il DN viene mantenuto in cache per ridurre l'interazione con LDAP, ma non è utilizzato per l'identificazione. Se il DN cambia, le modifiche saranno rilevate. Il nome utente interno è utilizzato dappertutto. La cancellazione delle associazioni lascerà tracce residue ovunque e interesserà esclusivamente la configurazione LDAP. Non cancellare mai le associazioni in un ambiente di produzione, ma solo in una fase sperimentale o di test." -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "Cancella associazione Nome utente-Utente LDAP" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Cancella associazione Nome gruppo-Gruppo LDAP" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Prova configurazione" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Aiuto" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 73ad535aee2d066a2cb0b53b8bd97bee70ee36df..63923cbb96017387b9aa9242e5b128ec3dbe133f 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -5,15 +5,16 @@ # Translators: # Daisuke Deguchi , 2013 # plazmism , 2013 +# iLikeIT , 2013 # Koichi MATSUMOTO , 2013 # tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-30 06:25+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-25 01:55-0500\n" +"PO-Revision-Date: 2013-12-24 08:10+0000\n" +"Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,14 +22,15 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%sが あなたと »%s«を共有しました" -#: ajax/share.php:227 -msgid "group" -msgstr "グループ" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "次のユーザにメールを送信できませんでした: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -55,45 +57,6 @@ msgstr "ファイルキャッシュ更新完了" msgid "... %d%% done ..." msgstr "... %d%% 完了 ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "カテゴリタイプは提供されていません。" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "追加するカテゴリはありませんか?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "このカテゴリはすでに存在します: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "オブジェクトタイプは提供されていません。" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID は提供されていません。" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "お気に入りに %s を追加エラー" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "削除するカテゴリが選択されていません。" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "お気に入りから %s の削除エラー" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "画像もしくはファイルが提供されていません" @@ -190,57 +153,57 @@ msgstr "11月" msgid "December" msgstr "12月" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "設定" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "数秒前" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分前" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "%n 時間後" +msgstr[0] "%n 時間前" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "今日" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "昨日" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "%n 日後" +msgstr[0] "%n 日前" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "一月前" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "%n カ月後" +msgstr[0] "%n ヶ月前" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" -msgstr "月前" +msgstr "数ヶ月前" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "一年前" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" -msgstr "年前" +msgstr "数年前" #: js/oc-dialogs.js:123 msgid "Choose" @@ -305,155 +268,183 @@ msgstr "({count} 選択)" msgid "Error loading file exists template" msgstr "既存ファイルのテンプレートの読み込みエラー" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "オブジェクタイプが指定されていません。" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 -msgid "Error" -msgstr "エラー" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "アプリ名がしていされていません。" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "必要なファイル {file} がインストールされていません!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "共有中" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "共有" -#: js/share.js:131 js/share.js:696 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "エラー" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "共有でエラー発生" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "共有解除でエラー発生" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "権限変更でエラー発生" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "あなたと {owner} のグループ {group} で共有中" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "{owner} と共有中" -#: js/share.js:183 -msgid "Share with" -msgstr "共有者" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "ユーザもしくはグループと共有 ..." -#: js/share.js:188 -msgid "Share with link" -msgstr "URLリンクで共有" +#: js/share.js:219 +msgid "Share link" +msgstr "URLで共有" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "パスワード保護" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "パスワード" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "アップロードを許可" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "メールリンク" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "送信" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "有効期限を設定" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "有効期限" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "メール経由で共有:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "ユーザーが見つかりません" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "グループ" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "再共有は許可されていません" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "{item} 内で {user} と共有中" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "共有解除" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "メールで通知" + +#: js/share.js:408 msgid "can edit" -msgstr "編集可能" +msgstr "編集を許可" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "アクセス権限" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "作成" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "更新" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "削除" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "共有" -#: js/share.js:400 js/share.js:643 +#: js/share.js:694 msgid "Password protected" msgstr "パスワード保護" -#: js/share.js:656 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "有効期限の未設定エラー" -#: js/share.js:668 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "有効期限の設定でエラー発生" -#: js/share.js:683 +#: js/share.js:734 msgid "Sending ..." msgstr "送信中..." -#: js/share.js:694 +#: js/share.js:745 msgid "Email sent" msgstr "メールを送信しました" +#: js/share.js:769 +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 "メッセージテンプレートの読み込みエラー: {error}" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "パスワードリセットのリンクをあなたのメールアドレスに送信しました。
    しばらくたっても受信出来ない場合は、スパム/迷惑メールフォルダを確認して下さい。
    もしそこにもない場合は、管理者に問い合わせてください。" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "リクエストに失敗しました!
    あなたのメール/ユーザ名が正しいことを確認しましたか?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "メールでパスワードをリセットするリンクが届きます。" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "ユーザー名" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -502,13 +493,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "ファイルが暗号化されています。復旧キーを有効にしていなかった場合、パスワードをリセットしてからデータを復旧する方法はありません。何をすべきかよくわからないなら、続ける前にまず管理者に連絡しましょう。本当に続けますか?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "はい、今すぐパスワードをリセットします。" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "リセットを要求します。" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "リセット" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -534,7 +525,7 @@ msgstr "個人" msgid "Users" msgstr "ユーザ" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "アプリ" @@ -546,6 +537,34 @@ msgstr "管理" 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 "アクセスが禁止されています" @@ -562,108 +581,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "こんにちは、\n\n%s があなたと %s を共有したことをお知らせします。\nそれを表示: %s\n\nそれでは。" +msgstr "こんにちは、\n\n%s があなたと %s を共有したことをお知らせします。\nそれを表示: %s\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "カテゴリを編集" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "共有は %s で有効期限が切れます。" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "追加" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "それでは!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "セキュリティ警告" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "あなたのPHPのバージョンには、Null Byte攻撃(CVE-2006-7243)という脆弱性が含まれています。" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "%s を安全に利用する為に インストールされているPHPをアップデートしてください。" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "セキュアな乱数生成器が利用可能ではありません。PHPのOpenSSL拡張を有効にして下さい。" -#: templates/installation.php:33 +#: 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:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr ".htaccess ファイルが動作していないため、おそらくあなたのデータディレクトリもしくはファイルはインターネットからアクセス可能です。" -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "サーバーを適正に設定する情報は、こちらのドキュメントを参照してください。" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "管理者アカウントを作成してください" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "詳細設定" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "データフォルダ" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "データベースを設定してください" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "が使用されます" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "データベースのユーザ名" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "データベースのパスワード" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "データベース名" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "データベースの表領域" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "データベースのホスト名" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "セットアップを完了します" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "終了しています ..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "このアプリケーションは使用する為、JavaScriptが必要です。\nJavaScriptを有効にし、インターフェースを更新してください。 " + +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s が利用可能です。更新方法に関してさらに情報を取得して下さい。" -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "ログアウト" @@ -681,19 +711,27 @@ msgstr "最近パスワードを変更していない場合、あなたのアカ msgid "Please change your password to secure your account again." msgstr "アカウント保護の為、パスワードを再度の変更をお願いいたします。" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "サーバサイドの認証に失敗しました!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "管理者に問い合わせてください。" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "パスワードを忘れましたか?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" -msgstr "パスワードを記憶する" +msgstr "自動ログインする" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "ログイン" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "代替ログイン" @@ -701,10 +739,37 @@ msgstr "代替ログイン" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "こんにちは、

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

    それでは。" +"href=\"%s\">View it!

    " +msgstr "こんにちは、

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

    " + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "この ownCloud インスタンスは、現在シングルユーザモードです。" + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "これは、管理者のみがインスタンスを利用できることを意味しています。" -#: templates/update.php:3 +#: 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 "ownCloud をバージョン %s に更新しています、しばらくお待ち下さい。" + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "この ownCloud インスタンスは現在更新中であり、しばらく時間がかかります。" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "ownCloud を続けて利用するには、しばらくした後でページをリロードしてください。" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 23062b05965b6fe278adb748fd258b90a53271ad..e8b99a951c8e0254a4d5d70f854e64b33b0a5704 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -5,16 +5,17 @@ # Translators: # Daisuke Deguchi , 2013 # plazmism , 2013 +# iLikeIT , 2013 # Koichi MATSUMOTO , 2013 # pabook , 2013 -# tt yn , 2013 +# tt yn , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:14-0400\n" -"PO-Revision-Date: 2013-09-30 06:27+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"PO-Revision-Date: 2014-01-03 14:10+0000\n" +"Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,62 +33,107 @@ msgstr "%s を移動できませんでした ― この名前のファイルは msgid "Could not move %s" msgstr "%s を移動できませんでした" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "ファイル名を空にすることはできません。" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "ファイル名には \"/\" を含めることはできません。別の名前を選択してください。" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "%s はフォルダ %s ないですでに使われています。別の名前を選択してください。" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "有効なソースではありません" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "サーバーは、URLを開くことは許されません。サーバーの設定をチェックしてください。" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "%s から %s へのダウンロードエラー" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "ファイルの生成エラー" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "フォルダ名は空にできません" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "フォルダ名には \"/\" を含めることはできません。別の名前を選択してください。" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "フォルダの生成エラー" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "アップロードディレクトリを設定出来ません。" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "無効なトークン" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "ファイルは何もアップロードされていません。不明なエラー" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "エラーはありません。ファイルのアップロードは成功しました" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:" -#: ajax/upload.php:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "アップロードファイルは一部分だけアップロードされました" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "ファイルはアップロードされませんでした" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "一時保存フォルダが見つかりません" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "ディスクへの書き込みに失敗しました" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "ストレージに十分な空き容量がありません" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "アップロードに失敗。ファイル情報を取得できませんでした。" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "アップロードに失敗。アップロード済みのファイルを見つけることができませんでした。" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "無効なディレクトリです。" @@ -95,154 +141,175 @@ msgstr "無効なディレクトリです。" msgid "Files" msgstr "ファイル" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "ディレクトリもしくは0バイトのため {filename} をアップロードできません" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "利用可能なスペースが十分にありません" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "アップロードはキャンセルされました。" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "サーバから結果を取得できませんでした。" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" -#: js/file-upload.js:520 -msgid "URL cannot be empty." -msgstr "URLは空にできません。" +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "URL は空にできません" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "無効なフォルダ名です。'Shared' の利用はownCloudで予約済みです" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "ホームフォルダでは、'Shared' はシステムが使用する予約済みのファイル名です" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "エラー" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} はすでに存在しています" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "ファイルを作成できませんでした" -#: js/fileactions.js:119 +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "フォルダを作成できませんでした" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "URL取得エラー" + +#: js/fileactions.js:125 msgid "Share" msgstr "共有" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "完全に削除する" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "名前の変更" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "中断" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} はすでに存在しています" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "置き換え" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "推奨名称" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "ファイルの名前変更ができませんでした" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "キャンセル" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} を {new_name} に置換" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "元に戻す" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "ファイルの削除エラー。" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" -msgstr[0] "%n個のフォルダ" +msgstr[0] "%n 個のフォルダ" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" -msgstr[0] "%n個のファイル" +msgstr[0] "%n 個のファイル" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} と {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n 個のファイルをアップロード中" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' は無効なファイル名です。" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "ファイル名を空にすることはできません。" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "あなたのストレージは一杯です。ファイルの更新と同期はもうできません!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "あなたのストレージはほぼ一杯です({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "暗号化アプリは有効ですが、あなたの暗号化キーは初期化されていません。ログアウトした後に、再度ログインしてください" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "暗号化アプリの無効なプライベートキーです。あなたの暗号化されたファイルへアクセスするために、個人設定からプライベートキーのパスワードを更新してください。" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "暗号化の機能は無効化されましたが、ファイルはすでに暗号化されています。個人設定からファイルを複合を行ってください。" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "ダウンロードの準備中です。ファイルサイズが大きい場合は少し時間がかかるかもしれません。" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "ファイルの移動エラー" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "エラー" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "名前" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "サイズ" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" -msgstr "変更" +msgstr "更新日時" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "無効なフォルダ名。「Shared」の利用は予約されています。" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%sの名前を変更できませんでした" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "アップロード" @@ -278,65 +345,69 @@ msgstr "ZIPファイルへの最大入力サイズ" msgid "Save" msgstr "保存" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "新規作成" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "新規のテキストファイル作成" + +#: templates/index.php:8 msgid "Text file" msgstr "テキストファイル" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "新しいフォルダ" + +#: templates/index.php:10 msgid "Folder" msgstr "フォルダ" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "リンク" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" -msgstr "削除ファイル" +msgstr "ゴミ箱" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "アップロードをキャンセル" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "あなたには書き込み権限がありません。" +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "ここにファイルをアップロードもしくは作成する権限がありません" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "ここには何もありません。何かアップロードしてください。" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "ダウンロード" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "共有解除" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "削除" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "アップロードには大きすぎます。" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "アップロードしようとしているファイルは、サーバで規定された最大サイズを超えています。" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "ファイルをスキャンしています、しばらくお待ちください。" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "スキャン中" diff --git a/l10n/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po index ba39e536210288eb06f2e4682d38710e48e46aac..9089a6f117171fafdb778d4e89939f6ca186dcda 100644 --- a/l10n/ja_JP/files_encryption.po +++ b/l10n/ja_JP/files_encryption.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: tt yn \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 03:50+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,75 +46,96 @@ msgstr "パスワードを変更できました。" msgid "Could not change the password. Maybe the old password was not correct." msgstr "パスワードを変更できませんでした。古いパスワードが間違っているかもしれません。" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "秘密鍵のパスワードが正常に更新されました。" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "秘密鍵のパスワードを更新できませんでした。古いパスワードが正確でない場合があります。" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "秘密鍵が有効ではありません。パスワードがownCloudシステムの外部(例えば、企業ディレクトリ)から変更された恐れがあります。個人設定で秘密鍵のパスワードを更新して、暗号化されたファイルを回復出来ます。" +"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 "暗号化アプリが初期化されていません。暗号化アプリが接続中に再度有効かされた可能性があります。暗号化アプリを初期化する為に、1回ログアウトしてログインしなおしてください。" -#: hooks/hooks.php:41 +#: 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 "プライベートキーが有効ではありません!パスワードが%sの外部で変更された(例: 共同ディレクトリ)と思われます。個人設定でプライベートキーのパスワードを更新して、暗号化ファイルへのアクセスを回復することができます。" + +#: 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:59 msgid "Missing requirements." msgstr "必要要件が満たされていません。" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "必ず、PHP 5.3.3もしくはそれ以上をインストールし、同時にOpenSSLのPHP拡張を有効にした上でOpenSSLも同様にインストール、適切に設定してください。現時点では暗号化アプリは無効になっています。" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "以下のユーザーは、暗号化設定がされていません:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "暗号化の初期化作業を開始しました... この処理にはしばらく時間がかかります。今しばらくお待ちください。" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "保存中..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "秘密鍵が有効ではありません。パスワードが外部から変更された恐れがあります。" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "あなたのディレクトリへ" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "個人設定で" - -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "秘密鍵をアンロックできます" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "暗号化" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "復旧キーを有効化 (万一パスワードを亡くした場合もユーザーのファイルを回復できる):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "復旧キーのパスワード" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "無効" @@ -122,58 +143,62 @@ msgstr "無効" msgid "Change recovery key password:" msgstr "復旧キーのパスワードを変更:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "古い復旧キーのパスワード" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "もはや秘密鍵はログインパスワードと一致しません:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "古い秘密鍵のパスワードを現在のログインパスワードに設定する。" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "古いログインパスワード" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "現在のログインパスワード" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "秘密鍵のパスワードを更新" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "パスワード復旧を有効化:" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "ファイル復旧設定が更新されました" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "ファイル復旧を更新できませんでした" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index 63c2ad22a060940de71dc6d1534f6f600347038f..ffff86e20f450038efbb2eae9ca77cea1cb355d5 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "アクセスは許可されました" @@ -25,7 +25,7 @@ msgstr "アクセスは許可されました" msgid "Error configuring Dropbox storage" msgstr "Dropboxストレージの設定エラー" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "アクセスを許可" @@ -33,24 +33,24 @@ msgstr "アクセスを許可" msgid "Please provide a valid Dropbox app key and secret." msgstr "有効なDropboxアプリのキーとパスワードを入力して下さい。" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Googleドライブストレージの設定エラー" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "警告: \"smbclient\" はインストールされていません。CIFS/SMB 共有のマウントはできません。システム管理者にインストールをお願いして下さい。" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "警告: PHPのFTPサポートは無効もしくはインストールされていません。FTP共有のマウントはできません。システム管理者にインストールをお願いして下さい。" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index 71e37cb9fda29e8c730c9fccb786b5e317e00749..248c946c073fb9448ea61da3eaebf1ec7bf5a492 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Daisuke Deguchi , 2013 # tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: tt yn \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: 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:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "パスワード" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "送信" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "申し訳ございません。このリンクはもう利用できません。" @@ -54,28 +55,32 @@ msgstr "共有が無効になっています" msgid "For more info, please ask the person who sent this link." msgstr "不明な点は、こちらのリンクの提供者に確認をお願いします。" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s はフォルダー %s をあなたと共有中です" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s はファイル %s をあなたと共有中です" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "ダウンロード" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "アップロード" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "アップロードをキャンセル" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "プレビューはありません" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "リンク" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index a52a506736960d16d988984d898ba8e312cc3a40..634208ae93e569235395321cae0c6302c8d89366 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Daisuke Deguchi , 2013 # plazmism , 2013 # tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-16 01:29-0400\n" -"PO-Revision-Date: 2013-08-15 09:50+0000\n" -"Last-Translator: plazmism \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,56 +30,34 @@ msgstr "%s を完全に削除出来ませんでした" msgid "Couldn't restore %s" msgstr "%s を復元出来ませんでした" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "復元操作を実行する" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "エラー" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "ファイルを完全に削除する" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "完全に削除する" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "名前" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "削除済み" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n個のフォルダ" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n個のファイル" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "復元済" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "ここには何もありません。ゴミ箱は空です!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "名前" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "復元" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "削除済み" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "削除" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "削除されたファイル" +msgstr "ゴミ箱" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 6b0484f521d94f4656e0dc090bf73e87a1641d02..addc53d2f7fdd991a9ecb49e1302e2164d6d7bd4 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:56-0400\n" -"PO-Revision-Date: 2013-09-21 13:50+0000\n" -"Last-Translator: tt yn \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-25 01:55-0500\n" +"PO-Revision-Date: 2013-12-24 08:00+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,314 +21,313 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:245 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr " \"%s\" アプリは、このバージョンのownCloudと互換性がない為、インストールできません。" -#: app.php:250 +#: private/app.php:257 msgid "No app name specified" msgstr "アプリ名が未指定" -#: app.php:361 +#: private/app.php:362 msgid "Help" msgstr "ヘルプ" -#: app.php:374 +#: private/app.php:375 msgid "Personal" msgstr "個人" -#: app.php:385 +#: private/app.php:386 msgid "Settings" msgstr "設定" -#: app.php:397 +#: private/app.php:398 msgid "Users" msgstr "ユーザ" -#: app.php:410 +#: private/app.php:411 msgid "Admin" msgstr "管理" -#: app.php:839 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "\"%s\" へのアップグレードに失敗しました。" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "暗号無しでは利用不可なカスタムプロフィール画像" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "不明なファイルタイプ" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "無効な画像" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "管理下のウェブサービス" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "\"%s\" が開けません" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIPダウンロードは無効です。" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "ファイルは1つずつダウンロードする必要があります。" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "ファイルに戻る" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "選択したファイルはZIPファイルの生成には大きすぎます。" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "ファイルは、小さいファイルに分割されてダウンロードされます。もしくは、管理者にお尋ねください。" +msgstr "少しずつに分けてファイルをダウンロードするか、管理者に問い合わせてください。" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "アプリインストール時のソースが未指定" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "アプリインストール時のhttpの URL が未指定" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "アプリインストール時のローカルファイルのパスが未指定" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "\"%s\"タイプのアーカイブ形式は未サポート" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "アプリをインストール中にアーカイブファイルを開けませんでした。" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "アプリにinfo.xmlファイルが入っていません" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "アプリで許可されないコードが入っているのが原因でアプリがインストールできません" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "アプリは、このバージョンのownCloudと互換性がない為、インストールできません。" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "非shippedアプリには許可されないtrueタグが含まれているためにアプリをインストール出来ません。" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "info.xml/versionのバージョンがアプリストアのバージョンと合っていない為、アプリはインストールされません" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "アプリディレクトリは既に存在します" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "アプリフォルダを作成出来ませんでした。%s のパーミッションを修正してください。" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "アプリケーションは無効です" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "認証エラー" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "トークンが無効になりました。ページを再読込してください。" -#: search/provider/file.php:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "ファイル" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "TTY TDD" -#: search/provider/file.php:30 +#: private/search/provider/file.php:30 msgid "Images" msgstr "画像" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s のデータベースのユーザ名を入力してください。" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s のデータベース名を入力してください。" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s ではデータベース名にドットを利用できないかもしれません。" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL サーバーのユーザー名/パスワードが正しくありません: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "既存のアカウントもしくは管理者のどちらかを入力する必要があります。" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQLのユーザ名もしくはパスワードは有効ではありません" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "DBエラー: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "違反コマンド: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQLのユーザ '%s'@'localhost' はすでに存在します。" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "MySQLからこのユーザを削除" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQLのユーザ '%s'@'%%' はすでに存在します。" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "MySQLからこのユーザを削除する。" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Oracleへの接続が確立できませんでした。" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Oracleのユーザ名もしくはパスワードは有効ではありません" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "違反コマンド: \"%s\"、名前: %s、パスワード: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQLのユーザ名もしくはパスワードは有効ではありません" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "管理者のユーザ名を設定。" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "管理者のパスワードを設定。" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "インストールガイドをよく確認してください。" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "カテゴリ \"%s\" が見つかりませんでした" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "数秒前" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分前" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "%n 時間後" +msgstr[0] "%n 時間前" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "今日" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "昨日" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" -msgstr[0] "%n 日後" +msgstr[0] "%n 日前" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "一月前" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "%n カ月後" +msgstr[0] "%n ヶ月前" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "一年前" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "年前" - -#: template.php:297 -msgid "Caused by:" -msgstr "原因は以下:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "カテゴリ \"%s\" が見つかりませんでした" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 9414aa1720c0e7f67532967b9a00b2b71e2682f4..a5ec0d605f523ee3077d994c1c46016448b1c68a 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -5,14 +5,15 @@ # Translators: # Daisuke Deguchi , 2013 # plazmism , 2013 +# iLikeIT , 2013 # tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:17-0400\n" -"PO-Revision-Date: 2013-09-30 06:33+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-11 13:31-0500\n" +"PO-Revision-Date: 2013-12-11 02:00+0000\n" +"Last-Translator: iLikeIT \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" @@ -30,12 +31,12 @@ msgid "Authentication error" msgstr "認証エラー" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "表示名を変更しました。" +msgid "Your full name has been changed." +msgstr "姓名が変更されました" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "表示名を変更できません" +msgid "Unable to change full name" +msgstr "姓名を変更できません" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -160,7 +161,7 @@ msgstr "更新" msgid "Updated" msgstr "更新済み" -#: js/personal.js:221 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "プロファイル画像を選択" @@ -168,7 +169,7 @@ msgstr "プロファイル画像を選択" msgid "Decrypting files... Please wait, this can take some time." msgstr "ファイルを複合中... しばらくお待ちください、この処理には少し時間がかかるかもしれません。" -#: js/personal.js:288 +#: js/personal.js:287 msgid "Saving..." msgstr "保存中..." @@ -184,44 +185,75 @@ msgstr "元に戻す" msgid "Unable to remove user" msgstr "ユーザを削除出来ません" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "グループ" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "グループ管理者" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "削除" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "グループを追加" -#: js/users.js:436 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "有効なユーザ名を指定する必要があります" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "ユーザ作成エラー" -#: js/users.js:442 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "有効なパスワードを指定する必要があります" +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "警告: ユーザ \"{user}\" のホームディレクトリはすでに存在します" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Japanese (日本語)" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "セキュリティ警告" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "HTTP 経由で %s にアクセスしています。HTTPS を使用するようにサーバの設定を行うことを強くおすすめします。" + +#: templates/admin.php:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -230,48 +262,68 @@ msgid "" "root." msgstr "データディレクトリとファイルがインターネットからアクセス可能になっている可能性があります。.htaccessファイルが機能していません。データディレクトリがアクセスされないようにウェブサーバーを設定するか、ウェブサーバーのドキュメントルートからデータディレクトリを移動するように強くお勧めします。" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "セットアップ警告" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "installation guidesをもう一度チェックするようにお願いいたします。" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "モジュール 'fileinfo' が見つかりません" -#: templates/admin.php:47 +#: templates/admin.php:68 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:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "PHPバーションが古くなっております。" + +#: templates/admin.php:82 +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バーションが古くなっております。このプログラムが不正な行為を発生する可能性はある為、PHPバーション5.3.8以降にアップグレードをください。" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "ロケールが動作していません" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "システムロケールを UTF-8 をサポートするロケールに設定できません。" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "これは、ファイル名の特定の文字に問題があることを意味しています。" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "システムロケールが %s に設定出来ません。この場合、ファイル名にそのロケールの文字が入っていたときに問題になる可能性があります。必要なパッケージをシステムにインストールして、%s をサポートすることを強くお勧めします。" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "次のロケールをサポートするために、システムに必要なパッケージをインストールすることを強くおすすめします: %s。" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "インターネット接続が動作していません" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -280,110 +332,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "このサーバーはインターネットに接続していません。この場合、外部ストレージのマウント、更新の通知やサードパーティアプリといったいくつかの機能が使えません。また、リモート接続でのファイルアクセス、通知メールの送信と言った機能も利用できないかもしれません。全ての機能を利用したいのであれば、このサーバーからインターネットに接続できるようにすることをお勧めします。" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "各ページの読み込み時にタスクを実行する" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "http経由で1分間に1回cron.phpを呼び出すように cron.phpがwebcron サービスに登録されています。" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "HTTPを通して15分間隔で cron.php を実行するように、cron.php は webcron サービスに登録されています。" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "cron.phpファイルを1分間に1回実行する為にサーバーのcronサービスを利用する。" +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "15分間隔で cron.php ファイルを実行するためにシステムの cron サービスを利用する" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "共有" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "共有APIを有効にする" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "アプリからの共有APIの利用を許可する" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "リンクを許可する" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "リンクによりアイテムを公開することを許可する" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "パブリックなアップロードを許可" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "公開している共有フォルダへのアップロードを共有しているメンバーにも許可" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "再共有を許可する" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "ユーザが共有しているアイテムの再共有を許可する" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "ユーザが誰とでも共有することを許可する" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "ユーザにグループ内のユーザとのみ共有を許可する" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "メール通知を許可" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "共有ファイルに関するメール通知の送信をユーザに許可する" + +#: templates/admin.php:221 msgid "Security" msgstr "セキュリティ" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "常にHTTPSを使用する" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "クライアントから %sへの接続を常に暗号化する。" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "強制的なSSL接続を有効/無効にするために、HTTPS経由で %s へ接続してください。" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "ログ" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "ログレベル" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "もっと見る" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "閉じる" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "バージョン" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "WebDAV経由でファイルにアクセスするにはこのアドレスを利用してください" +"Use this address to access your Files via " +"WebDAV" +msgstr "WebDAV 経由でファイルにアクセス するにはこのアドレスを利用してください" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "暗号化" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "暗号化アプリはもはや有効ではありません、すべてのファイルを複合してください" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "ログインパスワード" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "すべてのファイルを複合する" @@ -575,6 +639,10 @@ msgstr "パスワード変更の間のユーザーのファイルを回復する msgid "Default Storage" msgstr "デフォルトストレージ" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "ストレージの割り当てを入力してください (例: \"512MB\" や \"12 GB\")" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "無制限" @@ -592,8 +660,8 @@ msgid "Storage" msgstr "ストレージ" #: templates/users.php:108 -msgid "change display name" -msgstr "表示名を変更" +msgid "change full name" +msgstr "姓名を変更" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 9b1f34b05cf7f9b9a7a8fb3fa2075e842d51f47f..1061b8d35c83ba528ffbd40410b068a6b4d05d69 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -4,13 +4,14 @@ # # Translators: # Daisuke Deguchi , 2013 +# plazmism , 2013 # tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -27,314 +28,423 @@ msgstr "マッピングのクリアに失敗しました。" msgid "Failed to delete the server configuration" msgstr "サーバ設定の削除に失敗しました" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "設定は有効であり、接続を確立しました!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "設定は有効ですが、接続に失敗しました。サーバ設定と資格情報を確認して下さい。" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "設定は無効です。詳細は ownCloud のログを見て下さい。" +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 "構成 %s を設定できませんでした" -#: js/settings.js:66 +#: js/settings.js:67 msgid "Deletion failed" msgstr "削除に失敗しました" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "最近のサーバ設定から設定を引き継ぎますか?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "設定を保持しますか?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "サーバ設定を追加できません" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "マッピングをクリアしました" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "成功" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "エラー" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "設定OK" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "設定に誤りがあります" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "設定が不完全です" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "グループを選択" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "オブジェクトクラスを選択" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "属性を選択" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "接続テストに成功しました" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "接続テストに失敗しました" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "現在のサーバ設定を本当に削除してもよろしいですか?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "削除の確認" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "警告: user_ldap と user_webdavauth のアプリには互換性がありません。予期せぬ動作をする可能性があります。システム管理者にどちらかを無効にするよう問い合わせてください。" +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "%s グループが見つかりました" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "%s ユーザが見つかりました" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "無効なホスト" + +#: lib/wizard.php:951 +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/settings.php:12 +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "ヘルプ" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "この基準に合致するグループに %s へのアクセスを制限:" + +#: 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 "LDAP フィルタ" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "警告: PHP LDAP モジュールがインストールされていません。バックエンドが正しく動作しません。システム管理者にインストールするよう問い合わせてください。" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "フィルタは、どの LDAP グループが %s にアクセスするかを指定します。" -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "サーバ設定" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "グループが見つかりました" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "ログイン名として利用する属性:" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "LDAP ユーザ名:" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "LDAP メールアドレス:" + +#: 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 "ログイン実行時に適用するフィルタを定義します。%%uid にはログイン操作におけるユーザ名が入ります。例: \"uid=%%uid\"" + +#: templates/part.wizard-server.php:18 msgid "Add Server Configuration" msgstr "サーバ設定を追加" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "ホスト" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "SSL通信しない場合には、プロトコル名を省略することができます。そうでない場合には、ldaps:// から始めてください。" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "ベースDN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "1行に1つのベースDN" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "拡張タブでユーザとグループのベースDNを指定することができます。" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "ポート" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "ユーザDN" -#: templates/settings.php:46 +#: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "クライアントユーザーのDNは、特定のものに結びつけることはしません。 例えば uid=agent,dc=example,dc=com. だと匿名アクセスの場合、DNとパスワードは空のままです。" -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "パスワード" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "匿名アクセスの場合は、DNとパスワードを空にしてください。" -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "ユーザログインフィルタ" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "1行に1つのベースDN" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "拡張タブでユーザとグループのベースDNを指定することができます。" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "この基準に合致するユーザに %s へのアクセスを制限:" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "ログイン実行時に適用するフィルタを定義します。%%uid にはログイン操作におけるユーザ名が入ります。例: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "フィルタは、どの LDAP ユーザが %s にアクセスするかを指定します。" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "ユーザリストフィルタ" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "ユーザが見つかりました" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "ユーザ取得時に適用するフィルタを定義します(プレースホルダ無し)。例: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "戻る" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "グループフィルタ" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "続ける" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "警告: user_ldap と user_webdavauth のアプリには互換性がありません。予期せぬ動作をする可能性があります。システム管理者にどちらかを無効にするよう問い合わせてください。" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "グループ取得時に適用するフィルタを定義します(プレースホルダ無し)。例: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "警告: PHP LDAP モジュールがインストールされていません。バックエンドが正しく動作しません。システム管理者にインストールするよう問い合わせてください。" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "接続設定" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "設定はアクティブです" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "チェックを外すと、この設定はスキップされます。" -#: templates/settings.php:69 -msgid "Port" -msgstr "ポート" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "バックアップ(レプリカ)ホスト" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "バックアップホストをオプションで指定することができます。メインのLDAP/ADサーバのレプリカである必要があります。" -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "バックアップ(レプリカ)ポート" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "メインサーバを無効にする" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "レプリカサーバーにのみ接続します。" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "TLSを利用" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "LDAPS接続のために追加でそれを利用しないで下さい。失敗します。" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "大文字/小文字を区別しないLDAPサーバ(Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "SSL証明書の確認を無効にする。" -#: templates/settings.php:75 +#: 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 "推奨されません、テストにおいてのみ使用してください!このオプションでのみ接続が動作する場合は、LDAP サーバのSSL証明書を %s サーバにインポートしてください。" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "キャッシュのTTL" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "秒。変更後にキャッシュがクリアされます。" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "ディレクトリ設定" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "ユーザ表示名のフィールド" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "ユーザの表示名の生成に利用するLDAP属性" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "ベースユーザツリー" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "1行に1つのユーザベースDN" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "ユーザ検索属性" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "オプション:1行に1属性" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "グループ表示名のフィールド" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "ユーザのグループ表示名の生成に利用するLDAP属性" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "ベースグループツリー" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "1行に1つのグループベースDN" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "グループ検索属性" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "グループとメンバーの関連付け" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "特殊属性" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "クォータフィールド" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "クォータのデフォルト" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "バイト" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "メールフィールド" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "ユーザのホームフォルダ命名規則" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "ユーザ名を空のままにしてください(デフォルト)。そうでない場合は、LDAPもしくはADの属性を指定してください。" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "内部ユーザ名" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -350,15 +460,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "デフォルトでは、内部ユーザ名はUUID属性から作成されます。これにより、ユーザ名がユニークであり、かつ文字の変換が不要であることを保証します。内部ユーザ名には、[ a-zA-Z0-9_.@- ] の文字のみが有効であるという制限があり、その他の文字は対応する ASCII コードに変換されるか単に無視されます。そのため、他のユーザ名との衝突の回数が増加するでしょう。内部ユーザ名は、内部的にユーザを識別するために用いられ、また、ownCloudにおけるデフォルトのホームフォルダ名としても用いられます。例えば*DAVサービスのように、リモートURLの一部でもあります。この設定により、デフォルトの振る舞いを再定義します。ownCloud 5 以前と同じような振る舞いにするためには、以下のフィールドにユーザ表示名の属性を入力します。空にするとデフォルトの振る舞いとなります。変更は新しくマッピング(追加)されたLDAPユーザにおいてのみ有効となります。" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "内部ユーザ名属性:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "UUID検出を再定義する" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -369,15 +479,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "デフォルトでは、UUID 属性は自動的に検出されます。UUID属性は、LDAPユーザとLDAPグループを間違いなく識別するために利用されます。また、もしこれを指定しない場合は、内部ユーザ名はUUIDに基づいて作成されます。この設定は再定義することができ、あなたの選択した属性を用いることができます。選択した属性がユーザとグループの両方に対して適用でき、かつユニークであることを確認してください。空であればデフォルトの振る舞いとなります。変更は、新しくマッピング(追加)されたLDAPユーザとLDAPグループに対してのみ有効となります。" -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID属性:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "ユーザの UUID 属性:" -#: templates/settings.php:104 +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "グループの UUID 属性:" + +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "ユーザ名とLDAPユーザのマッピング" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -391,18 +505,10 @@ msgid "" "experimental stage." msgstr "ユーザ名は(メタ)データの保存と割り当てに使用されます。ユーザを正確に識別して認識するために、個々のLDAPユーザは内部ユーザ名を持っています。これは、ユーザ名からLDAPユーザへのマッピングが必要であることを意味しています。この生成されたユーザ名は、LDAPユーザのUUIDにマッピングされます。加えて、DNがLDAPとのインタラクションを削減するためにキャッシュされますが、識別には利用されません。DNが変わった場合は、変更が検出されます。内部ユーザ名は全体に亘って利用されます。マッピングをクリアすると、いたるところに使われないままの物が残るでしょう。マッピングのクリアは設定に敏感ではありませんが、全てのLDAPの設定に影響を与えます!本番の環境では決してマッピングをクリアしないでください。テストもしくは実験の段階でのみマッピングのクリアを行なってください。" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "ユーザ名とLDAPユーザのマッピングをクリアする" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "グループ名とLDAPグループのマッピングをクリアする" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "設定をテスト" - -#: templates/settings.php:108 -msgid "Help" -msgstr "ヘルプ" diff --git a/l10n/ka/core.po b/l10n/ka/core.po index e6a62126ccca6d15123b24a2be3797f35cbc1af0..af6cba740dc67235dceaa5156b9d3dc5b4151fb2 100644 --- a/l10n/ka/core.po +++ b/l10n/ka/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-08 03:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,14 @@ msgstr "" "Language: ka\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -190,51 +152,51 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "დღეს" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "" @@ -301,155 +263,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" +#: js/share.js:213 +msgid "Share with user or group …" msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "პაროლი" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -498,12 +488,12 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" msgstr "" #: lostpassword/templates/resetpassword.php:4 @@ -530,7 +520,7 @@ msgstr "პერსონა" msgid "Users" msgstr "მომხმარებლები" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "" @@ -542,6 +532,34 @@ msgstr "ადმინისტრატორი" 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 "" @@ -558,108 +576,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -677,19 +706,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -697,10 +734,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " msgstr "" -#: templates/update.php:3 +#: 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/ka/files.po b/l10n/ka/files.po index 84143c9cd2adf7a506c212df82eb35f8b2efdc53..37ff89fc2b76a3d1e7cf1c7c8675ef3dca435612 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -27,217 +27,283 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "ფაილები" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" msgstr "" -#: js/fileactions.js:119 -msgid "Share" +#: js/file-upload.js:595 +msgid "Could not create file" msgstr "" -#: js/fileactions.js:131 -msgid "Delete permanently" +#: js/file-upload.js:611 +msgid "Could not create folder" msgstr "" -#: js/fileactions.js:197 -msgid "Rename" +#: js/file-upload.js:661 +msgid "Error fetching URL" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 -msgid "Pending" +#: js/fileactions.js:125 +msgid "Share" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/fileactions.js:137 +msgid "Delete permanently" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" +#: js/fileactions.js:194 +msgid "Rename" msgstr "" -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "" @@ -273,65 +339,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "გადმოწერა" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/ka/files_encryption.po b/l10n/ka/files_encryption.po index 581f6b03001215e57a8a4b00d14e7ad1b1a59857..0f0a6396ddff61279d7063b638239c26fbd93757 100644 --- a/l10n/ka/files_encryption.po +++ b/l10n/ka/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:44 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 -msgid "Saving..." +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." +#: js/settings-admin.js:13 +msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index efd2890682d94b122f50e50d47f728273511c2ed..0fa5fee7b07c2baa7939ddaa58a3c80e5a4895e8 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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/authenticate.php:9 -msgid "Submit" -msgstr "" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "გადმოწერა" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/ka/files_trashbin.po b/l10n/ka/files_trashbin.po index 36d83d1478b5c917f08b8a02700f76f2a31983a2..fd709c4c6140baa5bbd78dada3c593651aadb4ff 100644 --- a/l10n/ka/files_trashbin.po +++ b/l10n/ka/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -27,53 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:814 lib/trashbin.php:816 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:23 msgid "Name" msgstr "" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:26 templates/index.php:28 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:34 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/ka/lib.po b/l10n/ka/lib.po index 13336d9871dffe56d954bbe3d7000c89ea243afd..c23f452e6dfee7d45f888fdd2dfa0d0c675691db 100644 --- a/l10n/ka/lib.po +++ b/l10n/ka/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -17,314 +17,313 @@ msgstr "" "Language: ka\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "შველა" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "პერსონა" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "მომხმარებლები" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "ადმინისტრატორი" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP გადმოწერა გამორთულია" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "ფაილები" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "წამის წინ" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "დღეს" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "გუშინ" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/ka/settings.po b/l10n/ka/settings.po index 86e902ed4f42d08dc2bcd38e8b9da2471cc28e75..3409c5079144a0ac4d36cca3eeec4c21f02436d8 100644 --- a/l10n/ka/settings.po +++ b/l10n/ka/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,31 +129,31 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/ka/user_ldap.po b/l10n/ka/user_ldap.po index 69f4675a9c6b605cbba8bf73cc9c4ec96b147aac..13fdae4015a75edd1fb5c8dff84a06e66675732d 100644 --- a/l10n/ka/user_ldap.po +++ b/l10n/ka/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-27 17:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -25,314 +25,423 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "" -#: js/settings.js:141 +#: js/settings.js:777 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:786 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:795 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:812 js/settings.js:821 +msgid "Select groups" +msgstr "" + +#: js/settings.js:815 js/settings.js:824 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:818 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:845 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:852 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:861 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:862 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" + +#: lib/wizard.php:779 lib/wizard.php:791 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:952 +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 "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "პაროლი" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +457,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +476,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +502,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "შველა" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 5c70d01e3e1043dc0a33e6ab307ee5595c5d1ac7..624e0a15d527d6b929fa0a0833c9d6b043123f59 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,14 +17,15 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" -msgstr "ჯგუფი" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "კატეგორიის ტიპი არ არის განხილული." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "არ არის კატეგორია დასამატებლად?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "კატეგორია უკვე არსებობს: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "ობიექტის ტიპი არ არის განხილული." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID არ არის განხილული" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "შეცდომა %s–ის ფევორიტებში დამატების დროს." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "სარედაქტირებელი კატეგორია არ არის არჩეული " - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "შეცდომა %s–ის ფევორიტებიდან წაშლის დროს." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -186,55 +148,55 @@ msgstr "ნოემბერი" msgid "December" msgstr "დეკემბერი" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "დღეს" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "თვის წინ" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "წლის წინ" @@ -301,155 +263,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "ობიექტის ტიპი არ არის მითითებული." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "შეცდომა" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "აპლიკაციის სახელი არ არის მითითებული." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "მოთხოვნილი ფაილი {file} არ არის დაინსტალირებული." - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "გაზიარებული" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "გაზიარება" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "შეცდომა" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "შეცდომა გაზიარების დროს" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "შეცდომა გაზიარების გაუქმების დროს" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "შეცდომა დაშვების ცვლილების დროს" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "გაზიარდა თქვენთვის და ჯგუფისთვის {group}, {owner}–ის მიერ" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "გაზიარდა თქვენთვის {owner}–ის მიერ" -#: js/share.js:183 -msgid "Share with" -msgstr "გააზიარე შემდეგით:" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "გაუზიარე ლინკით" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "პაროლით დაცვა" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "პაროლი" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "ლინკის პიროვნების იმეილზე გაგზავნა" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "გაგზავნა" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "მიუთითე ვადის გასვლის დრო" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "ვადის გასვლის დრო" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "გააზიარე მეილზე" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "მომხმარებელი არ არის ნაპოვნი" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "ჯგუფი" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "მეორეჯერ გაზიარება არ არის დაშვებული" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "გაზიარდა {item}–ში {user}–ის მიერ" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "გაუზიარებადი" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "შეგიძლია შეცვლა" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "დაშვების კონტროლი" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "შექმნა" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "განახლება" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "წაშლა" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "გაზიარება" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "პაროლით დაცული" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "შეცდომა ვადის გასვლის მოხსნის დროს" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "შეცდომა ვადის გასვლის მითითების დროს" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "გაგზავნა ...." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "იმეილი გაიგზავნა" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "თქვენ მოგივათ პაროლის შესაცვლელი ლინკი მეილზე" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "მომხმარებლის სახელი" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -498,13 +488,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "პაროლის შეცვლის მოთხოვნა" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -530,7 +520,7 @@ msgstr "პირადი" msgid "Users" msgstr "მომხმარებელი" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "აპლიკაციები" @@ -542,6 +532,34 @@ msgstr "ადმინისტრატორი" 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 "წვდომა აკრძალულია" @@ -558,108 +576,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "კატეგორიების რედაქტირება" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "დამატება" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "უსაფრთხოების გაფრთხილება" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "თქვენი PHP ვერსია შეიცავს საფრთხეს NULL Byte შეტევებისთვის (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "შემთხვევითი სიმბოლოების გენერატორი არ არსებობს, გთხოვთ ჩართოთ PHP OpenSSL გაფართოება." -#: templates/installation.php:33 +#: 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:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "თქვენი data დირექტორია და ფაილები დაშვებადია ინტერნეტში რადგან .htaccess ფაილი არ მუშაობს." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "შექმენი ადმინ ექაუნტი" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "დამატებითი ფუნქციები" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "მონაცემთა საქაღალდე" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "მონაცემთა ბაზის კონფიგურირება" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "გამოყენებული იქნება" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "მონაცემთა ბაზის მომხმარებელი" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "მონაცემთა ბაზის პაროლი" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "მონაცემთა ბაზის სახელი" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "ბაზის ცხრილის ზომა" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "მონაცემთა ბაზის ჰოსტი" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "კონფიგურაციის დასრულება" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "გამოსვლა" @@ -677,19 +706,27 @@ msgstr "თუ თქვენ არ შეცვლით პაროლს, msgid "Please change your password to secure your account again." msgstr "გთხოვთ შეცვალოთ თქვენი პაროლი, თქვენი ანგარიშის დასაცავად." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "დაგავიწყდათ პაროლი?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "დამახსოვრება" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "შესვლა" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "ალტერნატიული Login–ი" @@ -697,10 +734,37 @@ msgstr "ალტერნატიული Login–ი" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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 "ownCloud–ის განახლება %s–ვერსიამდე. ეს მოითხოვს გარკვეულ დროს." + +#: 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/ka_GE/files.po b/l10n/ka_GE/files.po index a9e38b7176add9122264d158b809b07c3355aa0b..519f12885eb7c8ba9ef9ec3b80cadff9f6358172 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -27,217 +27,283 @@ msgstr "%s –ის გადატანა ვერ მოხერხდა msgid "Could not move %s" msgstr "%s –ის გადატანა ვერ მოხერხდა" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "ფაილის სახელი არ შეიძლება იყოს ცარიელი." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "ფაილი არ აიტვირთა. უცნობი შეცდომა" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "ჭოცდომა არ დაფიქსირდა, ფაილი წარმატებით აიტვირთა" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ატვირთული ფაილი აჭარბებს upload_max_filesize დირექტივას php.ini ფაილში" -#: ajax/upload.php:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "ატვირთული ფაილი მხოლოდ ნაწილობრივ აიტვირთა" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "ფაილი არ აიტვირთა" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "დროებითი საქაღალდე არ არსებობს" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "შეცდომა დისკზე ჩაწერისას" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "საცავში საკმარისი ადგილი არ არის" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "დაუშვებელი დირექტორია." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "ფაილები" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "საკმარისი ადგილი არ არის" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "ატვირთვა შეჩერებულ იქნა." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას" -#: js/file-upload.js:520 -msgid "URL cannot be empty." -msgstr "URL არ შეიძლება იყოს ცარიელი." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "შეცდომა" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} უკვე არსებობს" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "გაზიარება" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "სრულად წაშლა" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "გადარქმევა" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "მოცდის რეჟიმში" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} უკვე არსებობს" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "შეცვლა" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "სახელის შემოთავაზება" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "უარყოფა" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} შეცვლილია {old_name}–ით" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "დაბრუნება" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' არის დაუშვებელი ფაილის სახელი." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "ფაილის სახელი არ შეიძლება იყოს ცარიელი." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "არადაშვებადი სახელი, '\\', '/', '<', '>', ':', '\"', '|', '?' და '*' არ არის დაიშვებული." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "თქვენი საცავი გადაივსო. ფაილების განახლება და სინქრონიზირება ვერ მოხერხდება!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "თქვენი საცავი თითქმის გადაივსო ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "გადმოწერის მოთხოვნა მუშავდება. ის მოითხოვს გარკვეულ დროს რაგდან ფაილები არის დიდი ზომის." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "შეცდომა" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "სახელი" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "ზომა" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "შეცვლილია" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "ატვირთვა" @@ -273,65 +339,69 @@ msgstr "ZIP ფაილების მაქსიმუმ დასაშვ msgid "Save" msgstr "შენახვა" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "ახალი" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "ტექსტური ფაილი" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "ახალი ფოლდერი" + +#: templates/index.php:10 msgid "Folder" msgstr "საქაღალდე" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "მისამართიდან" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "წაშლილი ფაილები" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "ატვირთვის გაუქმება" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "თქვენ არ გაქვთ ჩაწერის უფლება აქ." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "აქ არაფერი არ არის. ატვირთე რამე!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "გაუზიარებადი" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "წაშლა" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "ასატვირთი ფაილი ძალიან დიდია" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ფაილის ზომა რომლის ატვირთვასაც თქვენ აპირებთ, აჭარბებს სერვერზე დაშვებულ მაქსიმუმს." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "მიმდინარეობს ფაილების სკანირება, გთხოვთ დაელოდოთ." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "მიმდინარე სკანირება" diff --git a/l10n/ka_GE/files_encryption.po b/l10n/ka_GE/files_encryption.po index 7fde56cdb738f6000bee179eacb9858b1cb098d1..bdd6332a2a6d12c2b2c964be8fb157de46448dec 100644 --- a/l10n/ka_GE/files_encryption.po +++ b/l10n/ka_GE/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:09+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:41 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "შენახვა..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "ენკრიპცია" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index e5d0ff158b9bc84e4fcc1cdfb34e36d78097be6c..655c7a004265f01782a0c3ff68189bbc54116336 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "დაშვება მინიჭებულია" @@ -25,7 +25,7 @@ msgstr "დაშვება მინიჭებულია" msgid "Error configuring Dropbox storage" msgstr "შეცდომა Dropbox საცავის კონფიგურირების დროს" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "დაშვების მინიჭება" @@ -33,24 +33,24 @@ msgstr "დაშვების მინიჭება" msgid "Please provide a valid Dropbox app key and secret." msgstr "გთხოვთ მიუთითოთ Dropbox აპლიკაციის გასაღები და კოდი." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "შეცდომა Google Drive საცავის კონფიგურირების დროს" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "გაფრთხილება: \"smbclient\" არ არის ინსტალირებული. CIFS/SMB ზიარების მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "გაფრთხილება: FTP მხარდაჭერა არ არის აქტიური ან დაინსტალირებული. FTP ზიარის მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index c53f2326209db86a7e68939452a97fa8afe61b27..f27a19411d85b5146d04f4a822324ae0d0b94bbc 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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/authenticate.php:9 -msgid "Submit" -msgstr "გაგზავნა" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s–მა გაგიზიარათ ფოლდერი %s" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s–მა გაგიზიარათ ფაილი %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "ატვირთვა" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "ატვირთვის გაუქმება" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "წინასწარი დათვალიერება შეუძლებელია" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index b41813f0a6def834101fb993ae95d3dd5d2b48fd..590410f0572c1ef6db9ad3d8652c555e26d5140c 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -27,53 +27,31 @@ msgstr "ფაილი %s–ის სრულად წაშლა ვერ msgid "Couldn't restore %s" msgstr "%s–ის აღდგენა ვერ მოხერხდა" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "მიმდინარეობს აღდგენის ოპერაცია" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "შეცდომა" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "ფაილის სრულად წაშლა" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "სრულად წაშლა" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "სახელი" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "წაშლილი" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "აქ არაფერი არ არის. სანაგვე ყუთი ცარიელია!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "სახელი" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "აღდგენა" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "წაშლილი" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "წაშლა" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index b2793d66c77a06184ae15707a4a9f152c2205537..26ee4dc2e87255c96e4f56df8029fb86776e898a 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,314 +17,313 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "დახმარება" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "პირადი" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "პარამეტრები" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "მომხმარებელი" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "ადმინისტრატორი" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "web services under your control" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP download–ი გათიშულია" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "ფაილები უნდა გადმოიტვირთოს სათითაოდ." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "უკან ფაილებში" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "არჩეული ფაილები ძალიან დიდია zip ფაილის გენერაციისთვის." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "აპლიკაცია არ არის აქტიური" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "ავთენტიფიკაციის შეცდომა" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token–ს ვადა გაუვიდა. გთხოვთ განაახლოთ გვერდი." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "ფაილები" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "ტექსტი" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "სურათები" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s შეიყვანეთ ბაზის იუზერნეიმი." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s შეიყვანეთ ბაზის სახელი." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s არ მიუთითოთ წერტილი ბაზის სახელში" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL მომხმარებელი და/ან პაროლი არ არის მართებული: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "თქვენ უნდა შეიყვანოთ არსებული მომხმარებელის სახელი ან ადმინისტრატორი." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL იუზერნეიმი და/ან პაროლი არ არის სწორი" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "DB შეცდომა: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Offending ბრძანება იყო: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL მომხმარებელი '%s'@'localhost' უკვე არსებობს." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "წაშალე ეს მომხამრებელი MySQL–იდან" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL მომხმარებელი '%s'@'%%' უკვე არსებობს" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "წაშალე ეს მომხამრებელი MySQL–იდან" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Oracle იუზერნეიმი და/ან პაროლი არ არის სწორი" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Offending ბრძანება იყო: \"%s\", სახელი: %s, პაროლი: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL იუზერნეიმი და/ან პაროლი არ არის სწორი" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "დააყენეთ ადმინისტრატორის სახელი." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "დააყენეთ ადმინისტრატორის პაროლი." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "გთხოვთ გადაათვალიეროთ ინსტალაციის გზამკვლევი." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "\"%s\" კატეგორიის მოძებნა ვერ მოხერხდა" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "წამის წინ" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "დღეს" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "გუშინ" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "გასულ თვეში" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "ბოლო წელს" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "წლის წინ" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "\"%s\" კატეგორიის მოძებნა ვერ მოხერხდა" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index fc613d4b9ee9f764c235b677c5e641b2660a3831..6cdd5a52ef7232ccca08d0a1d0f73317b31176b4 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+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" @@ -28,12 +28,12 @@ msgid "Authentication error" msgstr "ავთენტიფიკაციის შეცდომა" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "თქვენი დისფლეის სახელი უკვე შეიცვალა" +msgid "Your full name has been changed." +msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "დისფლეის სახელის შეცვლა ვერ მოხერხდა" +msgid "Unable to change full name" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -118,11 +118,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "განაახლე {appversion}–მდე" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "გამორთვა" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "ჩართვა" @@ -130,31 +130,31 @@ msgstr "ჩართვა" msgid "Please wait...." msgstr "დაიცადეთ...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "მიმდინარეობს განახლება...." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "შეცდომა აპლიკაციის განახლების დროს" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "შეცდომა" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "განახლება" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "განახლებულია" @@ -162,7 +162,7 @@ msgstr "განახლებულია" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -182,44 +182,75 @@ msgstr "დაბრუნება" msgid "Unable to remove user" msgstr "მომხმარებლის წაშლა ვერ მოხერხდა" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "ჯგუფები" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "ჯგუფის ადმინისტრატორი" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "წაშლა" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "ჯგუფის დამატება" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "უნდა მიუთითოთ არსებული მომხმარებლის სახელი" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "შეცდომა მომხმარებლის შექმნისას" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "უნდა მიუთითოთ არსებული პაროლი" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "უსაფრთხოების გაფრთხილება" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -228,48 +259,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "გაფრთხილება დაყენებისას" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "მოდული 'fileinfo' არ არსებობს" -#: templates/admin.php:47 +#: templates/admin.php:68 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:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "ლოკალიზაცია არ მუშაობს" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "ინტერნეტ კავშირი არ მუშაობს" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -278,110 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron–ი" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "გაუშვი თითო მოქმედება ყველა ჩატვირთულ გვერდზე" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "გაზიარება" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Share API–ის ჩართვა" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "დაუშვი აპლიკაციების უფლება Share API –ზე" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "ლინკების დაშვება" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "მიეცი მომხმარებლებს უფლება რომ გააზიაროს ელემენტები საჯაროდ ლინკებით" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "გადაზიარების დაშვება" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "მიეცით მომხმარებლებს უფლება რომ გააზიაროს მისთვის გაზიარებული" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "მიეცით უფლება მომხმარებლებს გააზიაროს ყველასთვის" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "მიეცით უფლება მომხმარებლებს რომ გააზიაროს მხოლოდ თავიანთი ჯგუფისთვის" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "უსაფრთხოება" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "HTTPS–ის ჩართვა" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "ლოგი" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "ლოგირების დონე" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "უფრო მეტი" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "უფრო ნაკლები" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "ვერსია" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "ენკრიპცია" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -573,6 +636,10 @@ msgstr "" msgid "Default Storage" msgstr "საწყისი საცავი" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "ულიმიტო" @@ -590,8 +657,8 @@ msgid "Storage" msgstr "საცავი" #: templates/users.php:108 -msgid "change display name" -msgstr "შეცვალე დისფლეის სახელი" +msgid "change full name" +msgstr "" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 36128b4046d2916266f7bad6e99e3c27bbeec13d..e4540bd24e8002cc1c328810d51c68ac53e94154 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,423 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "შეცდომა სერვერის კონფიგურაციის წაშლისას" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "კონფიგურაცია მართებულია და კავშირი დამყარდება!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "კონფიგურაცია მართებულია, მაგრამ მიერთება ვერ მოხერხდა. გთხოვთ შეამოწმოთ სერვერის პარამეტრები და აუთენთიკაციის პარამეტრები." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "კონფიგურაცია არ არის მართებული. გთხოვთ ჩაიხედოთ დეტალური ინფორმაციისთვის ownCloud –ის ლოგში." +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 "" -#: js/settings.js:66 +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 msgid "Deletion failed" msgstr "წაშლა ვერ განხორციელდა" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "დაბრუნდებით სერვერის წინა კონფიგურაციაში?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "დავტოვოთ პარამეტრები?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "სერვერის პარამეტრების დამატება ვერ მოხერხდა" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "დასრულდა" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "შეცდომა" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "ჯგუფების არჩევა" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "კავშირის ტესტირება მოხერხდა" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "კავშირის ტესტირება ვერ მოხერხდა" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "ნამდვილად გინდათ წაშალოთ სერვერის მიმდინარე პარამეტრები?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "წაშლის დადასტურება" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +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 "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "გაფრთხილება: PHP LDAP მოდული არ არის ინსტალირებული, ბექენდი არ იმუშავებს. თხოვეთ თქვენს ადმინისტრატორს დააინსტალიროს ის." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "სერვერის პარამეტრები" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +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/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "ჰოსტი" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "თქვენ შეგიძლიათ გამოტოვოთ პროტოკოლი. გარდა ამისა გჭირდებათ SSL. შემდეგ დაიწყეთ ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "საწყისი DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "ერთი საწყისი DN ერთ ხაზზე" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "თქვენ შეგიძლიათ მიუთითოთ საწყისი DN მომხმარებლებისთვის და ჯგუფებისთვის Advanced ტაბში" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "პორტი" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "მომხმარებლის DN" -#: templates/settings.php:46 +#: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "მომხმარებლის DN რომელთანაც უნდა მოხდეს დაკავშირება მოხდება შემდეგნაირად მაგ: uid=agent,dc=example,dc=com. ხოლო ანონიმური დაშვებისთვის, დატოვეთ DN–ის და პაროლის ველები ცარიელი." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "პაროლი" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "ანონიმური დაშვებისთვის, დატოვეთ DN–ის და პაროლის ველები ცარიელი." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "მომხმარებლის ფილტრი" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "ერთი საწყისი DN ერთ ხაზზე" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "თქვენ შეგიძლიათ მიუთითოთ საწყისი DN მომხმარებლებისთვის და ჯგუფებისთვის Advanced ტაბში" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "მომხმარებლებიის სიის ფილტრი" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "ჯგუფის ფილტრი" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "გაფრთხილება: PHP LDAP მოდული არ არის ინსტალირებული, ბექენდი არ იმუშავებს. თხოვეთ თქვენს ადმინისტრატორს დააინსტალიროს ის." + +#: templates/settings.php:20 msgid "Connection Settings" msgstr "კავშირის პარამეტრები" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "კონფიგურაცია აქტიურია" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "როცა გადანიშნულია, ეს კონფიგურაცია გამოტოვებული იქნება." -#: templates/settings.php:69 -msgid "Port" -msgstr "პორტი" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "ბექაფ (რეპლიკა) ჰოსტი" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "მიუთითეთ რაიმე ბექაფ ჰოსტი. ის უნდა იყოს ძირითადი LDAP/AD სერვერის რეპლიკა." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "ბექაფ (რეპლიკა) პორტი" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "გამორთეთ ძირითადი სერვერი" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "გამოიყენეთ TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "არ გამოიყენოთ დამატებით LDAPS კავშირი. ის წარუმატებლად დასრულდება." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "LDAP server (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "გამორთეთ SSL სერთიფიკატის ვალიდაცია." -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "ქეშის სიცოცხლის ხანგრძლივობა" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "წამებში. ცვლილება ასუფთავებს ქეშს." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "დირექტორიის პარამეტრები" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "მომხმარებლის დისფლეის სახელის ფილდი" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "ძირითად მომხმარებელთა სია" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "ერთი მომხმარებლის საწყისი DN ერთ ხაზზე" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "მომხმარებლის ძებნის ატრიბუტი" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "ოფციონალური; თითო ატრიბუტი თითო ხაზზე" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "ჯგუფის დისფლეის სახელის ფილდი" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "ძირითად ჯგუფთა სია" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "ერთი ჯგუფის საწყისი DN ერთ ხაზზე" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "ჯგუფური ძებნის ატრიბუტი" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "ჯგუფის წევრობის ასოციაცია" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "სპეციალური ატრიბუტები" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "ქვოტას ველი" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "საწყისი ქვოტა" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "ბაიტებში" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "იმეილის ველი" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "მომხმარებლის Home დირექტორიის სახელების დარქმევის წესი" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "დატოვეთ ცარიელი მომხმარებლის სახელი (default). სხვა დანარჩენში მიუთითეთ LDAP/AD ატრიბუტი." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +457,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +476,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +502,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "კავშირის ტესტირება" - -#: templates/settings.php:108 -msgid "Help" -msgstr "დახმარება" diff --git a/l10n/km/core.po b/l10n/km/core.po index 437612ba9d98ffaa5a8eb89a6e4b447780093b07..bb74bdede475b2202006b7c7874cec69f80356c4 100644 --- a/l10n/km/core.po +++ b/l10n/km/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-08 03:26+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,13 +17,14 @@ msgstr "" "Language: km\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -190,51 +152,51 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "" @@ -301,155 +263,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" +#: js/share.js:213 +msgid "Share with user or group …" msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -498,12 +488,12 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" msgstr "" #: lostpassword/templates/resetpassword.php:4 @@ -530,7 +520,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "" @@ -542,6 +532,34 @@ msgstr "" 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 "" @@ -558,108 +576,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -677,19 +706,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -697,10 +734,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " msgstr "" -#: templates/update.php:3 +#: 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/km/files.po b/l10n/km/files.po index a6b9b1775e166ec41166f8ee0099913f15b3e974..d5b5468f5649838881dcdf57701eb81209fc2db1 100644 --- a/l10n/km/files.po +++ b/l10n/km/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06: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" @@ -27,217 +27,283 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" msgstr "" -#: js/fileactions.js:119 -msgid "Share" +#: js/file-upload.js:595 +msgid "Could not create file" msgstr "" -#: js/fileactions.js:131 -msgid "Delete permanently" +#: js/file-upload.js:611 +msgid "Could not create folder" msgstr "" -#: js/fileactions.js:197 -msgid "Rename" +#: js/file-upload.js:661 +msgid "Error fetching URL" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 -msgid "Pending" +#: js/fileactions.js:125 +msgid "Share" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/fileactions.js:137 +msgid "Delete permanently" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" +#: js/fileactions.js:194 +msgid "Rename" msgstr "" -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "" @@ -273,65 +339,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" -msgstr "" +msgstr "លុប" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/km/files_encryption.po b/l10n/km/files_encryption.po index 95e07fb95576817618172620d4fda6a46ccbe30f..17b2fcd5cbbdae30134fc9f1f18e097ac5bf5b93 100644 --- a/l10n/km/files_encryption.po +++ b/l10n/km/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-12 11:11+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:51 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:52 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:250 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 -msgid "Saving..." +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." +#: js/settings-admin.js:13 +msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/km/files_external.po b/l10n/km/files_external.po index bca243c45970e35f39facedd0bf362f48049bc52..38f8a6f5ba7303474a24d51a3144691623534f14 100644 --- a/l10n/km/files_external.po +++ b/l10n/km/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-12 11:11+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -37,20 +37,20 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:457 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -104,7 +104,7 @@ msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "" +msgstr "លុប" #: templates/settings.php:129 msgid "Enable User External Storage" diff --git a/l10n/km/files_sharing.po b/l10n/km/files_sharing.po index f12cf3ccbe1ffc8151eacc0383c524cac7bdc864..e603aaaa6437b18ce93684ef2ed11517b9dd2fdb 100644 --- a/l10n/km/files_sharing.po +++ b/l10n/km/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-12 11:11+0000\n" +"POT-Creation-Date: 2013-10-21 13:01-0400\n" +"PO-Revision-Date: 2013-10-21 17:02+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" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" + +#: templates/public.php:98 +msgid "Direct link" +msgstr "" diff --git a/l10n/km/files_trashbin.po b/l10n/km/files_trashbin.po index f3aa613a53e7d3d7de878e140d61b581ba378fb5..dbe47b2f7be7d5117e65a99013c1898edab2159f 100644 --- a/l10n/km/files_trashbin.po +++ b/l10n/km/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-12 11:11+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,33 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:37 -msgid "delete file permanently" +#: lib/trashbin.php:815 lib/trashbin.php:817 +msgid "restored" msgstr "" -#: js/trash.js:129 -msgid "Delete permanently" +#: templates/index.php:8 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:184 templates/index.php:17 +#: templates/index.php:22 msgid "Name" msgstr "" -#: js/trash.js:185 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:193 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:199 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - -#: lib/trash.php:814 lib/trash.php:816 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:25 templates/index.php:27 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:33 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" -msgstr "" +msgstr "លុប" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/km/lib.po b/l10n/km/lib.po index 9937427d825a38eb06bea2d4477c6e921b11a32f..87bcd1528a03d82a0564dcb84874dd1cfe8afdb2 100644 --- a/l10n/km/lib.po +++ b/l10n/km/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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,314 +17,313 @@ msgstr "" "Language: km\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/km/settings.po b/l10n/km/settings.po index c46c22d8be39e2f83cb671efd65beb52ae139717..1da76a89a6f94712e6babb8252bb7fd7056aa8f0 100644 --- a/l10n/km/settings.po +++ b/l10n/km/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,31 +129,31 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" -msgstr "" +msgstr "លុប" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/km/user_ldap.po b/l10n/km/user_ldap.po index c6be8c9e68f30d4685f755b0b60accba727dccd7..8c1ac7598b7e06be0473fa71918e47ff26b45bce 100644 --- a/l10n/km/user_ldap.po +++ b/l10n/km/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:47-0400\n" -"PO-Revision-Date: 2013-09-12 11:11+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-27 17:09+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" @@ -25,314 +25,423 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "" -#: js/settings.js:141 +#: js/settings.js:777 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:786 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:795 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:812 js/settings.js:821 +msgid "Select groups" +msgstr "" + +#: js/settings.js:815 js/settings.js:824 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:818 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:845 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:852 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:861 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:862 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" + +#: lib/wizard.php:779 lib/wizard.php:791 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:952 +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 "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +457,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +476,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +502,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index c5dd4fc62ea7ddf9812df2f0413f313515592a87..135a0829e59a7603104b68024e5455d8d64df8af 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-08 03:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,14 @@ msgstr "" "Language: kn\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -190,51 +152,51 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "" @@ -301,155 +263,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" +#: js/share.js:213 +msgid "Share with user or group …" msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -498,12 +488,12 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" msgstr "" #: lostpassword/templates/resetpassword.php:4 @@ -530,7 +520,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "" @@ -542,6 +532,34 @@ msgstr "" 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 "" @@ -558,108 +576,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -677,19 +706,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -697,10 +734,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " msgstr "" -#: templates/update.php:3 +#: 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/kn/files.po b/l10n/kn/files.po index 3297285e0e53e026d5b4d1684f9695d4b20a9e19..31a4b49208d623f73ffa092458f7d83cabaf45d0 100644 --- a/l10n/kn/files.po +++ b/l10n/kn/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06: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" @@ -27,217 +27,283 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" msgstr "" -#: js/fileactions.js:119 -msgid "Share" +#: js/file-upload.js:595 +msgid "Could not create file" msgstr "" -#: js/fileactions.js:131 -msgid "Delete permanently" +#: js/file-upload.js:611 +msgid "Could not create folder" msgstr "" -#: js/fileactions.js:197 -msgid "Rename" +#: js/file-upload.js:661 +msgid "Error fetching URL" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 -msgid "Pending" +#: js/fileactions.js:125 +msgid "Share" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/fileactions.js:137 +msgid "Delete permanently" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" +#: js/fileactions.js:194 +msgid "Rename" msgstr "" -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "" @@ -273,65 +339,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/kn/files_encryption.po b/l10n/kn/files_encryption.po index be1a9ea38cd55dfd2ff3bf4160103ed635ce7522..bf8a4cc0e4a58ebda3840d1fe94d53c0389ef5cb 100644 --- a/l10n/kn/files_encryption.po +++ b/l10n/kn/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:44 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 -msgid "Saving..." +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." +#: js/settings-admin.js:13 +msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/kn/files_sharing.po b/l10n/kn/files_sharing.po index b4ca53433143dd6e89165aab87c585009c5777e3..56abd76ecae81d559db3ce924c2f24d64839e7df 100644 --- a/l10n/kn/files_sharing.po +++ b/l10n/kn/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-10-21 13:01-0400\n" +"PO-Revision-Date: 2013-10-21 17:02+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" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" + +#: templates/public.php:98 +msgid "Direct link" +msgstr "" diff --git a/l10n/kn/files_trashbin.po b/l10n/kn/files_trashbin.po index 4a8a4c3ae7630c84283190b2b60bd19ca2b9be1d..15941b3799dbeea4da920907e364217f1f989eaf 100644 --- a/l10n/kn/files_trashbin.po +++ b/l10n/kn/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -27,53 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:814 lib/trashbin.php:816 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:23 msgid "Name" msgstr "" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:26 templates/index.php:28 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:34 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index c760138d383eb5118b4f011716ce24dcfb99586b..93d65f06c4fa64d2a9f67f72e823ec7cbe900d13 100644 --- a/l10n/kn/lib.po +++ b/l10n/kn/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -17,314 +17,313 @@ msgstr "" "Language: kn\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/kn/settings.po b/l10n/kn/settings.po index 21659f91a5b79ac8dbfcf25156cb4f3ad8037951..a61d69bc14426fcc859fe99d676198a1aac421e3 100644 --- a/l10n/kn/settings.po +++ b/l10n/kn/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,31 +129,31 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/kn/user_ldap.po b/l10n/kn/user_ldap.po index 24c7a343258fedd7f3536894d8cc1c89b08b0d4c..dc913170ac8a84717b12abe116460a7a6baeb0f7 100644 --- a/l10n/kn/user_ldap.po +++ b/l10n/kn/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-27 17:09+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" @@ -25,314 +25,423 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "" -#: js/settings.js:141 +#: js/settings.js:777 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:786 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:795 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:812 js/settings.js:821 +msgid "Select groups" +msgstr "" + +#: js/settings.js:815 js/settings.js:824 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:818 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:845 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:852 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:861 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:862 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" + +#: lib/wizard.php:779 lib/wizard.php:791 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:952 +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 "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +457,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +476,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +502,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index ee7f0753f7e616eaebc183e0206b0bfcaa3bef07..212e85bb4ad84eb60c1394a7708a83e3f0aa391c 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -3,15 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# 책읽는달팽 , 2013 +# madeng , 2013 +# madeng , 2013 +# Park Shinjo , 2013 # Shinjo Park , 2013 -# smallsnail , 2013 +# 책읽는달팽 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-29 01:55-0500\n" +"PO-Revision-Date: 2013-12-28 13:54+0000\n" +"Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,98 +23,60 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s 님이 %s을(를) 공유하였습니다" -#: ajax/share.php:227 -msgid "group" -msgstr "그룹" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "%s 님에게 메일을 보낼 수 없습니다." #: ajax/update.php:11 msgid "Turned on maintenance mode" -msgstr "" +msgstr "유지 보수 모드 켜짐" #: ajax/update.php:14 msgid "Turned off maintenance mode" -msgstr "" +msgstr "유지 보수 모드 꺼짐" #: ajax/update.php:17 msgid "Updated database" -msgstr "" +msgstr "데이터베이스 업데이트 됨" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "" +msgstr "파일 캐시 업데이트 중, 시간이 약간 걸릴 수 있습니다..." #: ajax/update.php:23 msgid "Updated filecache" -msgstr "" +msgstr "파일 캐시 업데이트 됨" #: ajax/update.php:26 #, php-format msgid "... %d%% done ..." -msgstr "" - -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "분류 형식이 제공되지 않았습니다." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "추가할 분류가 없습니까?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "분류가 이미 존재합니다: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "객체 형식이 제공되지 않았습니다." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID가 제공되지 않았습니다." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "책갈피에 %s을(를) 추가할 수 없었습니다." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "삭제할 분류를 선택하지 않았습니다. " - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "책갈피에서 %s을(를) 삭제할 수 없었습니다." +msgstr "... %d%% 완료됨 ..." #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +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" -msgstr "" +msgstr "사용 가능한 프로필 사진이 없습니다. 다시 시도하십시오." #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "선택된 데이터가 없습니다." #: js/config.php:32 msgid "Sunday" @@ -188,55 +154,55 @@ msgstr "11월" msgid "December" msgstr "12월" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "설정" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "초 전" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n분 전 " -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n시간 전 " -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "오늘" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "어제" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n일 전 " -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "지난 달" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n달 전 " -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "개월 전" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "작년" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "년 전" @@ -246,7 +212,7 @@ msgstr "선택" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "파일 선택 템플릿을 불러오는 중 오류 발생: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -258,30 +224,30 @@ msgstr "아니요" #: js/oc-dialogs.js:199 msgid "Ok" -msgstr "승락" +msgstr "확인" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "메시지 템플릿을 불러오는 중 오류 발생: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" +msgstr[0] "파일 {count}개 충돌" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "파일 1개 충돌" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "어느 파일을 유지하시겠습니까?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "두 버전을 모두 선택하면, 파일 이름에 번호가 추가될 것입니다." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -289,169 +255,197 @@ msgstr "취소" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "계속" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(모두 선택됨)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count}개 선택됨)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" - -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "객체 유형이 지정되지 않았습니다." +msgstr "파일 존재함 템플릿을 불러오는 중 오류 발생" -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "오류" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "앱 이름이 지정되지 않았습니다." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "필요한 파일 {file}이(가) 설치되지 않았습니다!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "공유됨" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "공유" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "오류" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "공유하는 중 오류 발생" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "공유 해제하는 중 오류 발생" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "권한 변경하는 중 오류 발생" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} 님이 여러분 및 그룹 {group}와(과) 공유 중" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "{owner} 님이 공유 중" -#: js/share.js:183 -msgid "Share with" -msgstr "다음으로 공유" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "사용자 및 그룹과 공유..." -#: js/share.js:188 -msgid "Share with link" -msgstr "URL 링크로 공유" +#: js/share.js:219 +msgid "Share link" +msgstr "링크 공유" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "암호 보호" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "암호" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" -msgstr "퍼블릭 업로드 허용" +msgstr "공개 업로드 허용" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "이메일 주소" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "전송" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "만료 날짜 설정" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "만료 날짜" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "이메일로 공유:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "발견된 사람 없음" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "그룹" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "다시 공유할 수 없습니다" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "{user} 님과 {item}에서 공유 중" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "공유 해제" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "이메일로 알림" + +#: js/share.js:408 msgid "can edit" msgstr "편집 가능" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "접근 제어" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "생성" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "업데이트" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "삭제" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "공유" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "암호로 보호됨" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "만료 날짜 해제 오류" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "만료 날짜 설정 오류" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "전송 중..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "이메일 발송됨" +#: js/share.js:769 +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 "대화 상자 템플릿을 불러오는 중 오류 발생: {error}" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." -msgstr "" +msgstr "암호를 초기화 하기 위한 링크가 이메일로 발송되었습니다.
    만약 수 분 이내에 메일이 도착하지 않은 경우, 스팸 메일함을 확인하십시오.
    스팸 메일함에도 없다면, 메일 관리자에게 문의하십시오." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" -msgstr "요청이 실패했습니다!
    email 주소와 사용자 명을 정확하게 넣으셨나요?" +msgstr "요청이 실패했습니다!
    이메일 주소와 사용자 이름을 정확하게 입력하셨습니까?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "이메일로 암호 재설정 링크를 보냈습니다." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "사용자 이름" -#: lostpassword/templates/lostpassword.php:22 +#: 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 "" +msgstr "저장된 파일은 암호화되어 있습니다. 복구 키를 활성화하지 않았다면 암호를 초기화한 후 데이터를 복구할 수 없습니다. 무엇을 해야 할 지 모르겠으면 진행하기 전에 시스템 관리자에게 연락하십시오. 계속 진행하시겠습니까?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" -msgstr "네, 전 제 비밀번호를 리셋하길 원합니다" +msgstr "예, 지금 내 암호를 재설정합니다" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "요청 초기화" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "재설정" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -532,7 +526,7 @@ msgstr "개인" msgid "Users" msgstr "사용자" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "앱" @@ -544,6 +538,34 @@ msgstr "관리자" 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 "접근 금지됨" @@ -560,108 +582,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "" +msgstr "안녕하세요,\n\n%s 님이 %s을(를) 공유하였음을 알려 드립니다.\n보기 링크: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "분류 수정" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "이 공유는 %s 까지 유지됩니다." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "추가" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "감사합니다!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "보안 경고" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "사용 중인 PHP 버전이 NULL 바이트 공격에 취약합니다 (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "%s의 보안을 위하여 PHP 버전을 업데이트하십시오." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "안전한 난수 생성기를 사용할 수 없습니다. PHP의 OpenSSL 확장을 활성화해 주십시오." -#: templates/installation.php:33 +#: 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:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr ".htaccess 파일이 처리되지 않아서 데이터 디렉터리와 파일을 인터넷에서 접근할 수 없을 수도 있습니다." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." -msgstr "" +msgstr "올바른 서버 설정을 위한 정보는 문서를 참조하십시오." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "관리자 계정 만들기" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "고급" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "데이터 폴더" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "데이터베이스 설정" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "사용될 예정" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "데이터베이스 사용자" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "데이터베이스 암호" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "데이터베이스 이름" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "데이터베이스 테이블 공간" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "데이터베이스 호스트" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "설치 완료" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "완료 중 ..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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 "" +msgstr "%s을(를) 사용할 수 있습니다. 업데이트하는 방법에 대해서 자세한 정보를 얻으십시오." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "로그아웃" @@ -679,30 +712,65 @@ msgstr "최근에 암호를 변경하지 않았다면 계정이 탈취되었을 msgid "Please change your password to secure your account again." msgstr "계정의 안전을 위하여 암호를 변경하십시오." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "서버 인증 실패!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "관리자에게 문의하십시오." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "암호를 잊으셨습니까?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "기억하기" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "로그인" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" -msgstr "대체 " +msgstr "대체 로그인" #: templates/mail.php:15 #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "" +"href=\"%s\">View it!

    " +msgstr "안녕하세요,

    %s 님이 %s을(를) 공유하였음을 알려 드립니다.
    지금 보기!

    " + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "ownCloud 인스턴스가 현재 단일 사용자 모드로 동작 중입니다." -#: templates/update.php:3 +#: 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 "ownCloud를 버전 %s(으)로 업데이트합니다. 잠시 기다려 주십시오." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "ownCloud 인스턴스가 현재 업데이트 중입니다. 잠시만 기다려 주십시오." + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "잠시 후 페이지를 다시 불러온 다음 ownCloud를 사용해 주십시오." diff --git a/l10n/ko/files.po b/l10n/ko/files.po index d3f72518cc7ec8a6917fb91b37c826c348353391..7ae321b6aba194ab540d48fe126a88b8aef4e2d3 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -3,16 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# 책읽는달팽 , 2013 +# Park Shinjo , 2013 # ujuc Gang , 2013 # ujuc Gang , 2013 -# smallsnail , 2013 +# ujuc Gang , 2013 +# 책읽는달팽 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:14-0400\n" -"PO-Revision-Date: 2013-09-29 10:06+0000\n" -"Last-Translator: smallsnail \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-29 01:55-0500\n" +"PO-Revision-Date: 2013-12-28 22:06+0000\n" +"Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,69 +26,114 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "%s 항목을 이동시키지 못하였음 - 파일 이름이 이미 존재함" +msgstr "항목 %s을(를) 이동시킬 수 없음 - 같은 이름의 파일이 이미 존재함" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "%s 항목을 이딩시키지 못하였음" +msgstr "항목 %s을(를) 이동시킬 수 없음" + +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "파일 이름이 비어 있을 수 없습니다." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "파일 이름에는 \"/\"가 들어갈 수 없습니다. 다른 이름을 사용하십시오." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "이름 %s이(가) 폴더 %s에서 이미 사용 중입니다. 다른 이름을 사용하십시오." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "올바르지 않은 원본" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "서버에서 URL을 열 수 없습니다. 서버 설정을 확인하십시오" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "%s을(를) %s(으)로 다운로드하는 중 오류 발생" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "파일 생성 중 오류 발생" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "폴더 이름이 비어있을 수 없습니다." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "폴더 이름에는 \"/\"가 들어갈 수 없습니다. 다른 이름을 사용하십시오." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "폴더 생성 중 오류 발생" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." -msgstr "업로드 디렉터리를 정할수 없습니다" +msgstr "업로드 디렉터리를 설정할 수 없습니다." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "잘못된 토큰" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" -msgstr "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다" +msgstr "파일이 업로드 되지 않았습니다. 알 수 없는 오류입니다" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "파일 업로드에 성공하였습니다." -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:" -#: ajax/upload.php:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "파일의 일부분만 업로드됨" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "파일이 업로드되지 않았음" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "임시 폴더가 없음" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "디스크에 쓰지 못했습니다" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "저장소가 용량이 충분하지 않습니다." -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "업로드에 실패했습니다. 파일 정보를 가져올수 없습니다." +msgstr "업로드에 실패했습니다. 파일 정보를 가져올 수 없습니다." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "업로드에 실패했습니다. 업로드할 파일을 찾을수 없습니다" +msgstr "업로드에 실패했습니다. 업로드할 파일을 찾을 수 없습니다" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "올바르지 않은 디렉터리입니다." @@ -93,154 +141,175 @@ msgstr "올바르지 않은 디렉터리입니다." msgid "Files" msgstr "파일" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "{filename}을 업로드 할수 없습니다. 폴더이거나 0 바이트 파일입니다." +msgstr "{filename}을(를) 업로드할 수 없습니다. 폴더이거나 0 바이트 파일입니다." -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "여유 공간이 부족합니다" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "업로드가 취소되었습니다." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "서버에서 결과를 가져올수 없습니다." +msgstr "서버에서 결과를 가져올 수 없습니다." -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다." -#: js/file-upload.js:520 -msgid "URL cannot be empty." -msgstr "URL을 입력해야 합니다." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "URL이 비어있을 수 없음" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "유효하지 않은 폴더명입니다. \"Shared\" 이름의 사용은 OwnCloud 가 이미 예약하고 있습니다." +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "'공유됨'은 홈 폴더의 예약된 파일 이름임" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "오류" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name}이(가) 이미 존재함" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "파일을 만들 수 없음" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "폴더를 만들 수 없음" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "URL을 가져올 수 없음" + +#: js/fileactions.js:125 msgid "Share" msgstr "공유" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" -msgstr "영원히 삭제" +msgstr "영구히 삭제" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "이름 바꾸기" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "대기 중" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name}이(가) 이미 존재함" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "바꾸기" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "이름 제안" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "이름을 변경할 수 없음" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "취소" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "{old_name}이(가) {new_name}(으)로 대체됨" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" -msgstr "되돌리기" +msgstr "실행 취소" + +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "파일 삭제 오류." -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" -msgstr[0] "폴더 %n" +msgstr[0] "폴더 %n개" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" -msgstr[0] "파일 %n 개" +msgstr[0] "파일 %n개" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} 그리고 {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" -msgstr[0] "%n 개의 파일을 업로드중" +msgstr[0] "파일 %n개 업로드 중" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." -msgstr "'.' 는 올바르지 않은 파일 이름 입니다." - -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "파일 이름이 비어 있을 수 없습니다." +msgstr "'.' 는 올바르지 않은 파일 이름입니다." -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "저장 공간이 가득 찼습니다. 파일을 업데이트하거나 동기화할 수 없습니다!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "저장 공간이 거의 가득 찼습니다 ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "암호화 앱이 활성화되어 있지만 키가 초기화되지 않았습니다. 로그아웃한 후 다시 로그인하십시오" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "암호화 앱의 개인 키가 잘못되었습니다. 암호화된 파일에 다시 접근하려면 개인 설정에서 개인 키 암호를 업데이트해야 합니다." + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." -msgstr "암호화는 해제되어 있지만, 파일은 아직 암호화 되어 있습니다. 개인 설저에 가셔서 암호를 해제하십시오" +msgstr "암호화는 해제되어 있지만, 파일은 아직 암호화되어 있습니다. 개인 설정에서 파일을 복호화하십시오." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "다운로드가 준비 중입니다. 파일 크기가 크다면 시간이 오래 걸릴 수도 있습니다." +msgstr "다운로드 준비 중입니다. 파일 크기가 크면 시간이 오래 걸릴 수도 있습니다." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "파일 이동 오류" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "오류" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "이름" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "크기" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "수정됨" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "폴더 이름이 잘못되었습니다. '공유됨'은 예약된 폴더 이름입니다." + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" -msgstr "%s 의 이름을 변경할수 없습니다" +msgstr "%s의 이름을 변경할 수 없습니다" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "업로드" @@ -276,65 +345,69 @@ msgstr "ZIP 파일 최대 크기" msgid "Save" msgstr "저장" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "새로 만들기" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "새 텍스트 파일" + +#: templates/index.php:8 msgid "Text file" msgstr "텍스트 파일" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "새 폴더" + +#: templates/index.php:10 msgid "Folder" msgstr "폴더" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "링크에서" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" -msgstr "파일 삭제됨" +msgstr "삭제된 파일" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "업로드 취소" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "당신은 여기에 쓰기를 할 수 있는 권한이 없습니다." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "여기에 파일을 업로드하거나 만들 권한이 없습니다" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "내용이 없습니다. 업로드할 수 있습니다!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "다운로드" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "공유 해제" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "삭제" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "업로드한 파일이 너무 큼" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "이 파일이 서버에서 허용하는 최대 업로드 가능 용량보다 큽니다." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "파일을 검색하고 있습니다. 기다려 주십시오." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "현재 검색" diff --git a/l10n/ko/files_encryption.po b/l10n/ko/files_encryption.po index 96c4ba62311f6898c47041e5ed1eb417c092fbb8..87e1438ba0dc93014af3484082f7e9810d45b8a1 100644 --- a/l10n/ko/files_encryption.po +++ b/l10n/ko/files_encryption.po @@ -3,14 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# smallsnail , 2013 +# 책읽는달팽 , 2013 +# Park Shinjo , 2013 +# Shinjo Park , 2013 +# 책읽는달팽 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-29 01:55-0500\n" +"PO-Revision-Date: 2013-12-28 13:54+0000\n" +"Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,21 +23,21 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "" +msgstr "복구 키가 성공적으로 활성화되었습니다" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "복구 키를 활성화 할 수 없습니다. 복구 키의 암호를 확인해 주세요!" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "" +msgstr "복구 키가 성공적으로 비활성화 되었습니다" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "복구 키를 비활성화 할 수 없습니다. 복구 키의 암호를 확인해주세요!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." @@ -42,136 +45,161 @@ msgstr "암호가 성공적으로 변경되었습니다" #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "암호를 변경할수 없습니다. 아마도 예전 암호가 정확하지 않은것 같습니다." +msgstr "암호를 변경할 수 없습니다. 예전 암호가 정확하지 않은 것 같습니다." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "개인키 암호가 성공적으로 업데이트 됨." +msgstr "개인 키 암호가 성공적으로 업데이트 됨." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "개인 키 암호를 업데이트할 수 없습니다. 이전 암호가 올바르지 않은 것 같습니다." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "" +"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 "개인 키가 올바르지 않습니다! 암호가 %s(예: 회사 디렉터리) 외부에서 변경된 것 같습니다. 암호화된 파일에 다시 접근하려면 개인 설정에서 개인 키 암호를 수정하십시오." -#: hooks/hooks.php:41 +#: 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:62 msgid "Missing requirements." -msgstr "" +msgstr "요구 사항이 부족합니다." -#: hooks/hooks.php:42 +#: hooks/hooks.php:63 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "PHP 5.3.3 이상 설치 여부, PHP의 OpenSSL 확장 기능 활성화 및 설정 여부를 확인하십시오. 암호화 앱이 비활성화 되었습니다." -#: hooks/hooks.php:249 +#: hooks/hooks.php:281 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "다음 사용자는 암호화를 사용할 수 없습니다:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "초기 암호화가 시작되었습니다... 시간이 걸릴 수도 있으니 기다려 주십시오." + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "저장 중..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "다음으로 바로 가기: " -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "개인 설정" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "암호화" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "복구 키 사용 (암호를 잊었을 때 파일을 복구할 수 있도록 함):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" -msgstr "키 비밀번호 복구" +msgstr "복구 키 암호" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "복구 키 암호 재입력" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" -msgstr "" +msgstr "활성화" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" -msgstr "" +msgstr "비활성화" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "복구 키 비밀번호 변경" +msgstr "복구 키 암호 변경:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" -msgstr "예전 복구 키 비밀번호" +msgstr "이전 복구 키 암호" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" -msgstr "새 복구 키 비밀번호" +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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "개인 키 암호와 로그인 암호가 일치하지 않습니다:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "이전 개인 키 암호를 현재 로그인 암호로 설정하십시오." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr " 이전 암호가 기억나지 않으면 시스템 관리자에게 파일 복구를 요청하십시오." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" -msgstr "예전 로그인 암호" +msgstr "이전 로그인 암호" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "현재 로그인 암호" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "개인 키 암호 업데이트" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" -msgstr "" +msgstr "암호 복구 사용:" -#: templates/settings-personal.php:47 +#: 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 "" +msgstr "이 옵션을 사용하면 암호를 잊었을 때 암호화된 파일에 다시 접근할 수 있습니다" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "파일 복구 설정 업데이트됨" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" -msgstr "파일 복구를 업데이트 할수 없습니다" +msgstr "파일 복구를 업데이트할 수 없습니다" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index 54e54ee8daf4664f3c91b3f437d6bee46325f5f5..34002f8c632ddc86c23fac6d53f5e875a4b72c88 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "접근 허가됨" @@ -26,7 +26,7 @@ msgstr "접근 허가됨" msgid "Error configuring Dropbox storage" msgstr "Dropbox 저장소 설정 오류" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "접근 권한 부여" @@ -34,24 +34,24 @@ msgstr "접근 권한 부여" msgid "Please provide a valid Dropbox app key and secret." msgstr "올바른 Dropbox 앱 키와 암호를 입력하십시오." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Google 드라이브 저장소 설정 오류" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "경고: \"smbclient\"가 설치되지 않았습니다. CIFS/SMB 공유 자원에 연결할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "경고: PHP FTP 지원이 비활성화되어 있거나 설치되지 않았습니다. FTP 공유를 마운트할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index da94ad321107391e1cd8d25755d00d873171900e..7d21cd8d9d36d31c0fb03a0d86e9264c3fa53d61 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -3,14 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# smallsnail , 2013 +# 책읽는달팽 , 2013 +# Park Shinjo , 2013 +# 책읽는달팽 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-29 10:14+0000\n" -"Last-Translator: smallsnail \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 14:24+0000\n" +"Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,20 +21,20 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." -msgstr "비밀번호가 틀립니다. 다시 입력해주세요." +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/authenticate.php:9 -msgid "Submit" -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:" @@ -40,42 +42,46 @@ 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:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 님이 폴더 %s을(를) 공유하였습니다" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s 님이 파일 %s을(를) 공유하였습니다" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "다운로드" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "업로드" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "업로드 취소" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "다음 항목을 미리 볼 수 없음:" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "직접 링크" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 4d39e2d9acdad8ebd099d633e836d9188057c233..3b26bd329b5f804ebbcce9d34e930472cf07948f 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -3,14 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# smallsnail , 2013 +# 책읽는달팽 , 2013 +# Park Shinjo , 2013 +# 책읽는달팽 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-29 07:38+0000\n" -"Last-Translator: smallsnail \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-29 01:55-0500\n" +"PO-Revision-Date: 2013-12-28 13:54+0000\n" +"Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,66 +20,44 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:63 #, php-format msgid "Couldn't delete %s permanently" -msgstr "%s를 영구적으로 삭제할수 없습니다" +msgstr "%s을(를_ 영구적으로 삭제할 수 없습니다" -#: ajax/undelete.php:42 +#: ajax/undelete.php:43 #, php-format msgid "Couldn't restore %s" -msgstr "%s를 복원할수 없습니다" +msgstr "%s을(를) 복원할 수 없습니다" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "복원 작업중" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 msgid "Error" msgstr "오류" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "영구적으로 파일 삭제하기" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "영원히 삭제" - -#: js/trash.js:190 templates/index.php:21 -msgid "Name" -msgstr "이름" - -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "삭제됨" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "폴더 %n개" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "파일 %n개 " - -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:905 lib/trashbin.php:907 msgid "restored" msgstr "복원됨" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" -msgstr "현재 휴지통은 비어있습니다!" +msgstr "휴지통이 비어 있습니다!" + +#: templates/index.php:20 +msgid "Name" +msgstr "이름" -#: templates/index.php:24 templates/index.php:26 +#: 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:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" -msgstr "삭제된 파일들" +msgstr "삭제된 파일" diff --git a/l10n/ko/files_versions.po b/l10n/ko/files_versions.po index 1a9375ae40014933b127b5c1be3d1f6f144a0fb5..a7ee1176d0d0b60dfee982de479ef3c8c78a9f48 100644 --- a/l10n/ko/files_versions.po +++ b/l10n/ko/files_versions.po @@ -3,15 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# 책읽는달팽 , 2013 +# Park Shinjo , 2013 # Shinjo Park , 2013 -# smallsnail , 2013 +# 책읽는달팽 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-29 10:18+0000\n" -"Last-Translator: smallsnail \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-29 01:55-0500\n" +"PO-Revision-Date: 2013-12-28 13:54+0000\n" +"Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,22 +26,22 @@ msgstr "" msgid "Could not revert: %s" msgstr "되돌릴 수 없습니다: %s" -#: js/versions.js:7 +#: js/versions.js:14 msgid "Versions" msgstr "버전" -#: js/versions.js:53 +#: js/versions.js:60 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "{timestamp} 판의 {file}로 돌리는데 실패했습니다." +msgstr "{file}을(를) 리비전 {timestamp}으(로) 되돌리는 데 실패하였습니다." -#: js/versions.js:79 +#: js/versions.js:86 msgid "More versions..." -msgstr "더 많은 버전들..." +msgstr "더 많은 버전..." -#: js/versions.js:116 +#: js/versions.js:123 msgid "No other versions available" -msgstr "다른 버전을 사용할수 없습니다" +msgstr "다른 버전을 사용할 수 없습니다" -#: js/versions.js:145 +#: js/versions.js:154 msgid "Restore" msgstr "복원" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index ca05c5e13306f6aa14c116bf10e30dd63541f72d..b1fbf718762b2c0c9f6b410cb90d6256066b1512 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -3,15 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# 책읽는달팽 , 2013 # chohy , 2013 -# smallsnail , 2013 +# chohy , 2013 +# Park Shinjo , 2013 +# 책읽는달팽 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-29 07:46+0000\n" -"Last-Translator: smallsnail \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 14:20+0000\n" +"Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,314 +22,313 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:237 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "현재 ownCloud 버전과 호환되지 않기 때문에 \"%s\" 앱을 설치할 수 없습니다." -#: app.php:248 +#: private/app.php:255 msgid "No app name specified" msgstr "앱 이름이 지정되지 않았습니다." -#: app.php:352 +#: private/app.php:360 msgid "Help" msgstr "도움말" -#: app.php:365 +#: private/app.php:373 msgid "Personal" msgstr "개인" -#: app.php:376 +#: private/app.php:384 msgid "Settings" msgstr "설정" -#: app.php:388 +#: private/app.php:396 msgid "Users" msgstr "사용자" -#: app.php:401 +#: private/app.php:409 msgid "Admin" msgstr "관리자" -#: app.php:832 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "\"%s\" 업그레이드에 실패했습니다." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "개개인의 프로필 사진은 아직은 암호화 되지 않습니다" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" -msgstr "알수없는 파일형식" +msgstr "알 수 없는 파일 형식" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "잘못된 그림" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "내가 관리하는 웹 서비스" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "\"%s\"을(를) 열 수 없습니다." -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." -msgstr "ZIP 다운로드가 비활성화되었습니다." +msgstr "ZIP 다운로드가 비활성화 되었습니다." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "파일을 개별적으로 다운로드해야 합니다." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "파일로 돌아가기" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "선택한 파일들은 ZIP 파일을 생성하기에 너무 큽니다." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "작은 조각들 안에 들어있는 파일들을 받고자 하신다면, 나누어서 받으시거나 혹은 시스템 관리자에게 정중하게 물어보십시오" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "앱을 설치할 때 소스가 지정되지 않았습니다." -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" -msgstr "http에서 앱을 설치할 대 href가 지정되지 않았습니다." +msgstr "http에서 앱을 설치할 때 href가 지정되지 않았습니다." -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "로컬 파일에서 앱을 설치할 때 경로가 지정되지 않았습니다." -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "%s 타입 아카이브는 지원되지 않습니다." -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "앱을 설치할 때 아카이브를 열지 못했습니다." -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "앱에서 info.xml 파일이 제공되지 않았습니다." -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" -msgstr "앱에 허용되지 않는 코드가 있어서 앱을 설치할 수 없습니다. " +msgstr "앱에 허용되지 않는 코드가 있어서 앱을 설치할 수 없습니다." -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "현재 ownCloud 버전과 호환되지 않기 때문에 앱을 설치할 수 없습니다." -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" -msgstr "출하되지 않은 앱에 허용되지 않는 true 태그를 포함하고 있기 때문에 앱을 설치할 수 없습니다." +msgstr "출시되지 않은 앱에 허용되지 않는 true 태그를 포함하고 있기 때문에 앱을 설치할 수 없습니다." -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "info.xml/version에 포함된 버전과 앱 스토어에 보고된 버전이 같지 않아서 앱을 설치할 수 없습니다. " +msgstr "info.xml/version에 포함된 버전과 앱 스토어에 보고된 버전이 같지 않아서 앱을 설치할 수 없습니다." -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" -msgstr "앱 디렉토리가 이미 존재합니다. " +msgstr "앱 디렉터리가 이미 존재합니다." -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "앱 폴더를 만들 수 없습니다. 권한을 수정하십시오. %s " +msgstr "앱 폴더를 만들 수 없습니다. 권한을 수정하십시오. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "앱이 활성화되지 않았습니다" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "인증 오류" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "토큰이 만료되었습니다. 페이지를 새로 고치십시오." -#: search/provider/file.php:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "파일" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "텍스트" -#: search/provider/file.php:30 +#: private/search/provider/file.php:30 msgid "Images" msgstr "그림" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." -msgstr "데이터베이스 사용자 명을 %s 에 입력해주십시오" +msgstr "%s 데이터베이스 사용자 이름을 입력해 주십시오." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." -msgstr "데이터베이스 명을 %s 에 입력해주십시오" +msgstr "%s 데이터베이스 이름을 입력하십시오." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s 에 적으신 데이터베이스 이름에는 점을 사용할수 없습니다" +msgstr "%s 데이터베이스 이름에는 마침표를 사용할 수 없습니다" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL 사용자 이름이나 암호가 잘못되었습니다: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "기존 계정이나 administrator(관리자)를 입력해야 합니다." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL 사용자 이름이나 암호가 잘못되었습니다." -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "DB 오류: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "잘못된 명령: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL 사용자 '%s'@'localhost'이(가) 이미 존재합니다." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" -msgstr "이 사용자를 MySQL에서 뺍니다." +msgstr "이 사용자를 MySQL에서 삭제하십시오" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL 사용자 '%s'@'%%'이(가) 이미 존재합니다. " +msgstr "MySQL 사용자 '%s'@'%%'이(가) 이미 존재합니다." -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." -msgstr "이 사용자를 MySQL에서 뺍니다." +msgstr "이 사용자를 MySQL에서 삭제하십시오." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Oracle 연결을 수립할 수 없습니다." -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Oracle 사용자 이름이나 암호가 잘못되었습니다." -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "잘못된 명령: \"%s\", 이름: %s, 암호: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" -msgstr "PostgreSQL의 사용자 명 혹은 비밀번호가 잘못되었습니다" +msgstr "PostgreSQL의 사용자 이름 또는 암호가 잘못되었습니다" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." -msgstr "관리자 이름 설정" +msgstr "관리자의 사용자 이름을 설정합니다." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." -msgstr "관리자 비밀번호 설정" +msgstr "관리자의 암호를 설정합니다." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "설치 가이드를 다시 한 번 확인하십시오." -#: tags.php:194 +#: private/tags.php:194 #, php-format msgid "Could not find category \"%s\"" msgstr "분류 \"%s\"을(를) 찾을 수 없습니다." -#: template/functions.php:96 +#: private/template/functions.php:130 msgid "seconds ago" msgstr "초 전" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n분 전 " -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n시간 전 " -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "오늘" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "어제" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n일 전 " -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "지난 달" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n달 전 " -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "작년" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "년 전" - -#: template.php:297 -msgid "Caused by:" -msgstr "원인: " diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 8b3678ceec6f42160980b927a2b1d4b1180df5fe..cb273b0aacf7492f7f23bc91e83b0c631dc91655 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -3,14 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# 책읽는달팽 , 2013 +# Park Shinjo , 2013 # Shinjo Park , 2013 +# 책읽는달팽 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-30 01:55-0500\n" +"PO-Revision-Date: 2013-12-29 14:50+0000\n" +"Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,12 +31,12 @@ msgid "Authentication error" msgstr "인증 오류" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "표시 이름이 변경되었습니다." +msgid "Your full name has been changed." +msgstr "전체 이름이 변경되었습니다." #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "표시 이름을 변경할 수 없음" +msgid "Unable to change full name" +msgstr "전체 이름을 변경할 수 없음" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -87,42 +90,42 @@ msgstr "앱을 업데이트할 수 없습니다." #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "잘못된 암호" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "사용자가 지정되지 않음" #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "관리자 복구 암호를 입력하지 않으면 모든 사용자 데이터가 삭제됩니다" #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "관리자 복구 암호가 잘못되었습니다. 암호를 다시 확인하십시오." #: changepassword/controller.php:87 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "백엔드에서 암호 변경을 지원하지 않지만, 사용자의 암호화 키는 갱신되었습니다." #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" -msgstr "" +msgstr "암호를 변경할 수 없음" #: js/apps.js:43 msgid "Update to {appversion}" msgstr "버전 {appversion}(으)로 업데이트" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" -msgstr "비활성화" +msgstr "사용 안함" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "사용함" @@ -130,41 +133,41 @@ msgstr "사용함" msgid "Please wait...." msgstr "기다려 주십시오...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" -msgstr "" +msgstr "앱을 비활성화하는 중 오류 발생" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" -msgstr "" +msgstr "앱을 활성화하는 중 오류 발생" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "업데이트 중...." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "앱을 업데이트하는 중 오류 발생" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "오류" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "업데이트" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "업데이트됨" #: js/personal.js:220 msgid "Select a profile picture" -msgstr "" +msgstr "프로필 사진 선택" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." -msgstr "" +msgstr "파일 복호화 중... 시간이 걸릴 수도 있으니 기다려 주십시오." #: js/personal.js:287 msgid "Saving..." @@ -182,206 +185,265 @@ msgstr "실행 취소" msgid "Unable to remove user" msgstr "사용자를 삭제할 수 없음" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "그룹" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "그룹 관리자" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "삭제" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "그룹 추가" -#: js/users.js:436 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "올바른 사용자 이름을 입력해야 함" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "사용자 생성 오류" -#: js/users.js:442 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "올바른 암호를 입력해야 함" +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "경고: 사용자 \"{user}\"의 홈 디렉터리가 이미 존재합니다" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "한국어" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "보안 경고" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 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 "" +msgstr "데이터 디렉터리와 파일을 인터넷에서 접근할 수도 있습니다. .htaccess 파일이 작동하지 않습니다. 웹 서버 설정을 변경하여 데이터 디렉터리에 접근할 수 없도록 하거나, 웹 서버 문서 경로 외부로 데이터 디렉터리를 옮기십시오." -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "설정 경고" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "설치 가이드를 다시 한 번 확인하십시오." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "모듈 'fileinfo'가 없음" -#: templates/admin.php:47 +#: templates/admin.php:68 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:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "PHP 버전이 오래됨" + +#: templates/admin.php:82 +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 버전이 오래되었습니다. 오래된 버전은 작동하지 않을 수도 있기 때문에 PHP 5.3.8 이상을 사용하는 것을 추천합니다." + +#: templates/admin.php:93 msgid "Locale not working" msgstr "로캘이 작동하지 않음" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "UTF-8을 지원하는 시스템 로캘을 사용할 수 없습니다." + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "파일 이름의 일부 문자에 문제가 생길 수도 있습니다." + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "다음 로캘을 지원하도록 시스템 설정을 변경하는 것을 추천합니다: %s" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "인터넷에 연결할 수 없음" -#: templates/admin.php:78 +#: templates/admin.php:121 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 "" +msgstr "서버에서 인터넷에 연결할 수 없습니다. 외부 저장소 마운트, 업데이트 알림, 제 3자 앱 설치 등 일부 기능을 사용할 수 없습니다. 외부에서 파일에 접근하거나 알림 이메일을 보내지 못할 수도 있습니다. 모든 기능을 사용하려면 인터넷에 연결하는 것을 추천합니다." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "크론" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "개별 페이지를 불러올 때마다 실행" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "" +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "" +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "시스템의 cron 서비스를 통하여 15분마다 cron.php 파일에 접근합니다." -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "공유" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "공유 API 사용하기" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "앱에서 공유 API를 사용할 수 있도록 허용" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "링크 허용" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "사용자가 개별 항목의 링크를 공유할 수 있도록 허용" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" -msgstr "" +msgstr "공개 업로드 허용" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "다른 사용자들이 공개된 공유 폴더에 파일 업로드 허용" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "재공유 허용" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "사용자에게 공유된 항목을 다시 공유할 수 있도록 허용" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "누구나와 공유할 수 있도록 허용" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" -msgstr "사용자가 속해 있는 그룹의 사용자와만 공유할 수 있도록 허용" +msgstr "사용자가 속해 있는 그룹의 사용자에게만 공유할 수 있도록 허용" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "메일 알림 허용" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "사용자에게 공유 파일에 대한 메일 알림을 허용합니다" + +#: templates/admin.php:221 msgid "Security" msgstr "보안" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "HTTPS 강제 사용" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "클라이언트가 %s에 연결할 때 암호화 연결을 강제로 사용합니다." -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." -msgstr "" +msgstr "SSL 강제 설정을 변경하려면 %s에 HTTPS로 연결해야 합니다." -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "로그" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "로그 단계" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "더 중요함" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "덜 중요함" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "버전" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "" +"Use this address to access your Files via " +"WebDAV" +msgstr "WebDAV로 파일에 접근하려면 이 주소를 사용하십시오" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "암호화" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "암호화 앱이 비활성화되었습니다. 모든 파일을 복호화해야 합니다." -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" -msgstr "" +msgstr "로그인 암호" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" -msgstr "" +msgstr "모든 파일 복호화" #: templates/users.php:21 msgid "Login Name" @@ -573,6 +639,10 @@ msgstr "암호 변경 시 변경된 사용자 파일을 복구하려면 복구 msgid "Default Storage" msgstr "기본 저장소" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "저장소 할당량을 입력하십시오 (예: \"512 MB\", \"12 GB\")" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "무제한" @@ -590,8 +660,8 @@ msgid "Storage" msgstr "저장소" #: templates/users.php:108 -msgid "change display name" -msgstr "표시 이름 변경" +msgid "change full name" +msgstr "전체 이름 변경" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index 1766fef5754c9f90bb3ffc7f69c7cc2fa1d71a4c..9fd54b6889730d6dbbef2f95bee276ddf24d54c2 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -3,13 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# madeng , 2013 +# madeng , 2013 +# Park Shinjo , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-29 01:55-0500\n" +"PO-Revision-Date: 2013-12-28 13:55+0000\n" +"Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,320 +22,429 @@ msgstr "" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." -msgstr "" +msgstr "매핑을 비울 수 없습니다." #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "서버 설정을 삭제할 수 없습니다." -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "설정 정보가 올바르고 연결할 수 있습니다!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "" +msgstr "설정 정보가 올바르지만 바인딩이 실패하였습니다. 서버 설정과 인증 정보를 확인하십시오." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "" +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 "데이터가 지정되지 않음" -#: js/settings.js:66 +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr " 설정 %s을(를) 지정할 수 없음" + +#: js/settings.js:67 msgid "Deletion failed" msgstr "삭제 실패" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "최근 서버 설정을 다시 불러오시겠습니까?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" -msgstr "설정을 유지합니까?" +msgstr "설정을 유지하겠습니까?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" -msgstr "" +msgstr "서버 설정을 추가할 수 없음" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" -msgstr "" +msgstr "매핑 삭제됨" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" -msgstr "" +msgstr "성공" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "오류" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "설정 올바름" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "설정 올바르지 않음" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "설정 불완전함" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "그룹 선택" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "객체 클래스 선택" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "속성 선택" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "연결 시험 성공" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "연결 시험 실패" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "현재 서버 설정을 지우시겠습니까?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" -msgstr "" +msgstr "삭제 확인" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "" +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "그룹 %s개 찾음" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "사용자 %s명 찾음" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "잘못된 호스트" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "필요한 기능을 찾을 수 없음" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "저장" -#: templates/settings.php:12 +#: 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 "Limit the access to %s to groups meeting this criteria:" +msgstr "다음 조건을 만족하는 그룹만 %s 접근 허용:" + +#: 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 "LDAP 필터" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "경고: PHP LDAP 모듈이 비활성화되어 있거나 설치되어 있지 않습니다. 백엔드를 사용할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "이 필터는 %s에 접근할 수 있는 LDAP 그룹을 설정합니다." -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "그룹 찾음" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "로그인 이름으로 사용할 속성:" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "LDAP 사용자 이름:" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "LDAP 이메일 주소:" + +#: 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 "로그인을 시도할 때 적용할 필터를 입력하십시오. %%uid는 로그인 동작의 사용자 이름으로 대체됩니다. 예: \"uid=%%uid\"" + +#: templates/part.wizard-server.php:18 msgid "Add Server Configuration" -msgstr "" +msgstr "서버 설정 추가" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "호스트" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "SSL을 사용하는 경우가 아니라면 프로토콜을 입력하지 않아도 됩니다. SSL을 사용하려면 ldaps://를 입력하십시오." - -#: templates/settings.php:40 -msgid "Base DN" -msgstr "기본 DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "기본 DN을 한 줄에 하나씩 입력하십시오" +msgstr "SSL을 사용하지 않으면 프로토콜을 입력하지 않아도 됩니다. SSL을 사용하려면 ldaps://를 입력하십시오." -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "고급 탭에서 사용자 및 그룹에 대한 기본 DN을 지정할 수 있습니다." +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "포트" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "사용자 DN" -#: templates/settings.php:46 +#: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "바인딩 작업을 수행할 클라이언트 사용자 DN입니다. 예를 들어서 uid=agent,dc=example,dc=com입니다. 익명 접근을 허용하려면 DN과 암호를 비워 두십시오." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "암호" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "익명 접근을 허용하려면 DN과 암호를 비워 두십시오." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "사용자 로그인 필터" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "기본 DN을 한 줄에 하나씩 입력하십시오" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "고급 탭에서 사용자 및 그룹에 대한 기본 DN을 지정할 수 있습니다." + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "다음 조건을 만족하는 사용자만 %s 접근 허용:" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "이 필터는 %s에 접근할 수 있는 LDAP 사용자를 설정합니다." -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "사용자 목록 필터" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "사용자 찾음" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "뒤로" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "그룹 필터" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "계속" -#: templates/settings.php:62 +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "경고: user_ldap, user_webdavauth 앱은 서로 호환되지 않습니다. 예상하지 못한 행동을 할 수도 있습니다. 시스템 관리자에게 연락하여 둘 중 하나의 앱의 사용을 중단하십시오." -#: templates/settings.php:66 +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "경고: PHP LDAP 모듈이 비활성화되어 있거나 설치되어 있지 않습니다. 백엔드를 사용할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오." + +#: templates/settings.php:20 msgid "Connection Settings" msgstr "연결 설정" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" -msgstr "구성 활성화" +msgstr "구성 활성" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." -msgstr "" - -#: templates/settings.php:69 -msgid "Port" -msgstr "포트" +msgstr "선택하지 않으면 이 설정을 무시합니다." -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" -msgstr "백업 (복제) 포트" +msgstr "백업 (복제) 호스트" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "추가적인 백업 호스트를 지정합니다. 기본 LDAP/AD 서버의 복사본이어야 합니다." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "백업 (복제) 포트" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "주 서버 비활성화" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." -msgstr "" - -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "TLS 사용" +msgstr "복제 서버에만 연결합니다." -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "서버에서 대소문자를 구분하지 않음 (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "SSL 인증서 유효성 검사를 해제합니다." -#: templates/settings.php:75 +#: 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 "" +msgstr "테스트 목적으로만 사용하십시오! 이 옵션을 사용해야만 연결할 수 있으면 %s 서버에 LDAP 서버의 SSL 인증서를 설치하십시오." -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" -msgstr "" +msgstr "캐시 유지 시간" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." -msgstr "초. 항목 변경 시 캐시가 갱신됩니다." +msgstr "초 단위입니다. 항목 변경 시 캐시가 갱신됩니다." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" -msgstr "디렉토리 설정" +msgstr "디렉터리 설정" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "사용자의 표시 이름 필드" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "사용자 표시 이름을 생성할 때 사용할 LDAP 속성입니다." -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "기본 사용자 트리" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "사용자 DN을 한 줄에 하나씩 입력하십시오" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "사용자 검색 속성" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" -msgstr "" +msgstr "추가적, 한 줄에 하나의 속성을 입력하십시오" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "그룹의 표시 이름 필드" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "그룹 표시 이름을 생성할 때 사용할 LDAP 속성입니다." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "기본 그룹 트리" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "그룹 기본 DN을 한 줄에 하나씩 입력하십시오" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "그룹 검색 속성" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "그룹-회원 연결" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" -msgstr "" +msgstr "특수 속성" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" -msgstr "" +msgstr "할당량 필드" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" -msgstr "" +msgstr "기본 할당량" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" -msgstr "바이트" +msgstr "바이트 단위" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" -msgstr "" +msgstr "이메일 필드" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "사용자 홈 폴더 이름 규칙" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "사용자 이름을 사용하려면 비워 두십시오(기본값). 기타 경우 LDAP/AD 속성을 지정하십시오." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" -msgstr "" +msgstr "내부 사용자 이름" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -346,17 +458,17 @@ msgid "" "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 "" +msgstr "기본적으로 내부 사용자 이름은 UUID 속성에서 생성됩니다. 사용자 이름이 중복되지 않고 문자열을 변환할 필요가 없도록 합니다. 내부 사용자 이름에는 다음과 같은 문자열만 사용할 수 있습니다: [a-zA-Z0-9_.@-] 다른 문자열은 ASCII에 해당하는 문자열로 변경되거나 없는 글자로 취급됩니다. 충돌하는 경우 숫자가 붙거나 증가합니다. 내부 사용자 이름은 내부적으로 사용자를 식별하는 데 사용되며, 사용자 홈 폴더의 기본 이름입니다. 또한 *DAV와 같은 외부 URL의 일부로 사용됩니다. 이 설정을 사용하면 기본 설정을 재정의할 수 있습니다. ownCloud 5 이전의 행동을 사용하려면 아래 필드에 사용자의 표시 이름 속성을 입력하십시오. 비워 두면 기본 설정을 사용합니다. 새로 추가되거나 매핑된 LDAP 사용자에게만 적용됩니다." -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" -msgstr "" +msgstr "내부 사용자 이름 속성:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" -msgstr "" +msgstr "UUID 확인 재정의" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -365,17 +477,21 @@ msgid "" "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 "" +msgstr "기본적으로 UUID 속성은 자동적으로 감지됩니다. UUID 속성은 LDAP 사용자와 그룹을 정확히 식별하는 데 사용됩니다. 지정하지 않은 경우 내부 사용자 이름은 UUID를 기반으로 생성됩니다. 이 설정을 다시 정의하고 임의의 속성을 지정할 수 있습니다. 사용자와 그룹 모두에게 속성을 적용할 수 있고 중복된 값이 없는지 확인하십시오. 비워 두면 기본 설정을 사용합니다. 새로 추가되거나 매핑된 LDAP 사용자와 그룹에만 적용됩니다." -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "사용자 UUID 속성:" -#: templates/settings.php:104 +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "그룹 UUID 속성:" + +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" -msgstr "" +msgstr "사용자 이름-LDAP 사용자 매핑" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -387,20 +503,12 @@ msgid "" " 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 "" +msgstr "사용자 이름은 (메타) 데이터를 저장하고 할당하는 데 사용됩니다. 사용자를 정확하게 식별하기 위하여 각각 LDAP 사용자는 내부 사용자 이름을 갖습니다. 이는 사용자 이름과 LDAP 사용자 간의 매핑이 필요합니다. 생성된 사용자 이름은 LDAP 사용자의 UUID로 매핑됩니다. 추가적으로 LDAP 통신을 줄이기 위해서 DN이 캐시에 저장되지만 식별에 사용되지는 않습니다. DN이 변경되면 변경 사항이 기록됩니다. 내부 사용자 이름은 계속 사용됩니다. 매핑을 비우면 흔적이 남아 있게 됩니다. 매핑을 비우는 작업은 모든 LDAP 설정에 영향을 줍니다! 테스트 및 실험 단계에만 사용하고, 사용 중인 서버에서는 시도하지 마십시오." -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" -msgstr "" +msgstr "사용자 이름-LDAP 사용자 매핑 비우기" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" -msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "도움말" +msgstr "그룹 이름-LDAP 그룹 매핑 비우기" diff --git a/l10n/ko/user_webdavauth.po b/l10n/ko/user_webdavauth.po index fbf66dad31d079094ec96d2920ccd2fe071fcaab..e63287131e5861c0d14ce0efb1ebf2fb803e0b7f 100644 --- a/l10n/ko/user_webdavauth.po +++ b/l10n/ko/user_webdavauth.po @@ -5,17 +5,19 @@ # Translators: # aoiob4305 , 2013 # aoiob4305 , 2013 +# 책읽는달팽 , 2013 # 남자사람 , 2012 # 남자사람 , 2012 # Shinjo Park , 2013 # Shinjo Park , 2013 +# 책읽는달팽 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 14:18+0000\n" +"Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,11 +31,11 @@ msgstr "WebDAV 인증" #: templates/settings.php:4 msgid "Address: " -msgstr "" +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 "" +msgstr "ownCloud에서 이 URL로 사용자 인증 정보를 보냅니다. 이 플러그인은 응답을 확인하여 HTTP 상태 코드 401이나 403이 돌아온 경우에 잘못된 인증 정보로 간주합니다. 다른 모든 상태 코드는 올바른 인증 정보로 간주합니다." diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index e29ae2d8757022d66f031e9d2adcef524dc44e79..e1f373f400ec21dfc15acab97f6e411dde06bade 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,13 +17,14 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -186,59 +148,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "ده‌ستكاری" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "" @@ -306,155 +268,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "هه‌ڵه" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "هاوبەشی کردن" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "هه‌ڵه" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" +#: js/share.js:213 +msgid "Share with user or group …" msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "وشەی تێپەربو" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "ناوی به‌کارهێنه‌ر" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -503,12 +493,12 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" msgstr "" #: lostpassword/templates/resetpassword.php:4 @@ -535,7 +525,7 @@ msgstr "" msgid "Users" msgstr "به‌كارهێنه‌ر" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "به‌رنامه‌كان" @@ -547,6 +537,34 @@ msgstr "به‌ڕێوه‌به‌ری سه‌ره‌كی" 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 "" @@ -563,108 +581,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "زیادکردن" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "هه‌ڵبژاردنی پیشكه‌وتوو" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "زانیاری فۆڵده‌ر" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "به‌كارهێنه‌ری داتابه‌یس" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "وشه‌ی نهێنی داتا به‌یس" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "ناوی داتابه‌یس" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "هۆستی داتابه‌یس" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "كۆتایی هات ده‌ستكاریه‌كان" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "چوونەدەرەوە" @@ -682,19 +711,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -702,10 +739,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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.php:3 +#: 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/ku_IQ/files.po b/l10n/ku_IQ/files.po index 9bb3b4faa5f38f65560bad6628b6e1cf3e674527..d373fd5e63281e1510276ee015f336bcc190a1b5 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -27,220 +27,286 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." -msgstr "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت." - -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "هه‌ڵه" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" -#: js/fileactions.js:119 -msgid "Share" -msgstr "هاوبەشی کردن" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" -#: js/fileactions.js:131 -msgid "Delete permanently" +#: js/file-upload.js:595 +msgid "Could not create file" msgstr "" -#: js/fileactions.js:197 -msgid "Rename" +#: js/file-upload.js:611 +msgid "Could not create folder" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 -msgid "Pending" +#: js/file-upload.js:661 +msgid "Error fetching URL" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/fileactions.js:125 +msgid "Share" +msgstr "هاوبەشی کردن" + +#: js/fileactions.js:137 +msgid "Delete permanently" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" +#: js/fileactions.js:194 +msgid "Rename" msgstr "" -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "هه‌ڵه" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "ناو" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "بارکردن" @@ -276,65 +342,69 @@ msgstr "" msgid "Save" msgstr "پاشکه‌وتکردن" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "بوخچه" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "داگرتن" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/ku_IQ/files_encryption.po b/l10n/ku_IQ/files_encryption.po index 4df94a238d9e3c1fd05f2ddb6fecf7a8fcbef4e8..bf253a766a044dff5089cd82f22412fa2eeb95a6 100644 --- a/l10n/ku_IQ/files_encryption.po +++ b/l10n/ku_IQ/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:09+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:41 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "پاشکه‌وتده‌کات..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "نهێنیکردن" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index d1abf7c6c827036a9720f1f75089a31cfe0e0a7e..f77cf5baba874917f67da2782c12dc4f37f39891 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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/authenticate.php:9 -msgid "Submit" -msgstr "ناردن" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s دابه‌شی کردووه‌ بوخچه‌ی %s له‌گه‌ڵ تۆ" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s دابه‌شی کردووه‌ په‌ڕگه‌یی %s له‌گه‌ڵ تۆ" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "داگرتن" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "بارکردن" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "هیچ پێشبینیه‌ك ئاماده‌ نیه بۆ" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index 1addb81ba48201655f96d36e0e3f9c62fedfe70f..85e8f58d3717643751d3f57c03a4e09686642d05 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "هه‌ڵه" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:814 lib/trashbin.php:816 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:23 msgid "Name" msgstr "ناو" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:26 templates/index.php:28 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:34 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 448dd823748fccc416069916bea3c6933d103969..9c805fbc4c79f10ff45b864179f4035d2f6ee78a 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,318 +17,317 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "یارمەتی" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "ده‌ستكاری" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "به‌كارهێنه‌ر" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "به‌ڕێوه‌به‌ری سه‌ره‌كی" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 6ea9fd128b04ecd597b402a7db25e6182ca0cdb7..cc492115e2cd57ff2eb64f7bdc6dd6fa7c97125b 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "چالاککردن" @@ -129,31 +129,31 @@ msgstr "چالاککردن" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "هه‌ڵه" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "نوێکردنه‌وه" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "نهێنیکردن" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 724271784b6a2b65a4180ae91ca5e67d12c4e56d..1158ecfddd252dcc6a81ec1e7f56352dbd91c2fe 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "سه‌رکه‌وتن" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "هه‌ڵه" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:778 lib/wizard.php:790 +msgid "Invalid Host" msgstr "" -#: templates/settings.php:12 +#: lib/wizard.php:951 +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 "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "وشەی تێپەربو" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "یارمەتی" diff --git a/l10n/l10n.pl b/l10n/l10n.pl index 851be8f7ccf1fcddcc8c46602135c833294afa4d..1b25722aa4e76708da08bdd501af8e5f8eb22bb1 100644 --- a/l10n/l10n.pl +++ b/l10n/l10n.pl @@ -120,7 +120,7 @@ if( $task eq 'read' ){ my $language = ( $file =~ /\.js$/ ? 'Python' : 'PHP'); my $joinexisting = ( -e $output ? '--join-existing' : ''); print " Reading $file\n"; - `xgettext --output="$output" $joinexisting $keywords --language=$language "$file" --from-code=UTF-8 --package-version="5.0.0" --package-name="ownCloud Core" --msgid-bugs-address="translations\@owncloud.org"`; + `xgettext --output="$output" $joinexisting $keywords --language=$language "$file" --add-comments=TRANSLATORS --from-code=UTF-8 --package-version="6.0.0" --package-name="ownCloud Core" --msgid-bugs-address="translations\@owncloud.org"`; } chdir( $whereami ); } diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 0ee9039e60367c500380ab9ed734f989b55f7789..b4188cede150e80a6b30665c309719e1c36224ab 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -4,12 +4,13 @@ # # Translators: # Michel Weimerskirch , 2013 +# sim0n , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-28 01:55-0500\n" +"PO-Revision-Date: 2013-12-27 13:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -18,90 +19,52 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "Den/D' %s huet »%s« mat dir gedeelt" -#: ajax/share.php:227 -msgid "group" -msgstr "Grupp" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" #: ajax/update.php:11 msgid "Turned on maintenance mode" -msgstr "" +msgstr "Maintenance Modus ass un" #: ajax/update.php:14 msgid "Turned off maintenance mode" -msgstr "" +msgstr "Maintenance Modus ass aus" #: ajax/update.php:17 msgid "Updated database" -msgstr "" +msgstr "Datebank ass geupdate ginn" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "" +msgstr "De Fichier Cache gëtt geupdate, des ka laang daueren..." #: ajax/update.php:23 msgid "Updated filecache" -msgstr "" +msgstr "De Fichier Cache ass geupdate ginn" #: ajax/update.php:26 #, php-format msgid "... %d%% done ..." -msgstr "" - -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Typ vun der Kategorie net uginn." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Keng Kategorie fir bäizesetzen?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Dës Kategorie existéiert schon: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Typ vum Objet net uginn." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID net uginn." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Feeler beim dobäisetze vun %s bei d'Favoritten." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Keng Kategorien ausgewielt fir ze läschen." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Feeler beim läsche vun %s aus de Favoritten." +msgstr "... %d%% fäerdeg ..." #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "Kee Bild oder Fichier uginn" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Onbekannten Fichier Typ" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Ongülteg d'Bild" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" @@ -187,59 +150,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Astellungen" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "Sekonnen hir" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n Minutt hir" +msgstr[1] "%n Minutten hir" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "haut" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "gëschter" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "leschte Mount" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "Méint hir" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "Lescht Joer" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "Joren hir" @@ -279,7 +242,7 @@ msgstr "" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Weieng Fichieren wëlls de gär behalen?" #: js/oc-dialogs.js:368 msgid "" @@ -293,169 +256,197 @@ msgstr "Ofbriechen" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Weider" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(all ausgewielt)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} ausgewielt)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Den Typ vum Object ass net uginn." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Feeler" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Den Numm vun der App ass net uginn." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "De benéidegte Fichier {file} ass net installéiert!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Gedeelt" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Deelen" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Feeler" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Feeler beim Deelen" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Feeler beim Annuléiere vum Deelen" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Feeler beim Ännere vun de Rechter" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Gedeelt mat dir an der Grupp {group} vum {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Gedeelt mat dir vum {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Deele mat" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "Mat Link deelen" +#: js/share.js:219 +msgid "Share link" +msgstr "Link deelen" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Passwuertgeschützt" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Passwuert" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Ëffentlechen Upload erlaaben" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Link enger Persoun mailen" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Schécken" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Verfallsdatum setzen" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Verfallsdatum" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Via E-Mail deelen:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Keng Persoune fonnt" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "Grupp" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Weiderdeelen ass net erlaabt" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Gedeelt an {item} mat {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Net méi deelen" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "via e-mail Bescheed ginn" + +#: js/share.js:408 msgid "can edit" msgstr "kann änneren" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "Zougrëffskontroll" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "erstellen" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "aktualiséieren" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "läschen" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "deelen" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Passwuertgeschützt" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Feeler beim Läsche vum Verfallsdatum" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Feeler beim Setze vum Verfallsdatum" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Gëtt geschéckt..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "Email geschéckt" +#: js/share.js:769 +msgid "Warning" +msgstr "Warnung" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Den Typ vum Object ass net uginn." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Gëff nei an" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Läschen" + +#: js/tags.js:31 +msgid "Add" +msgstr "Dobäisetzen" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Tags editéieren" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "De Link fir d'Passwuert zréckzesetzen gouf un deng E-Mail-Adress geschéckt.
    Falls du d'Mail net an den nächste Minutte kriss, kuck w.e.gl. an dengem Spam-Dossier.
    Wann do och keng Mail ass, fro w.e.gl. däin Adminstrateur." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Ufro feelfeschloen!
    Hues du séchergestallt dass deng Email respektiv däi Benotzernumm korrekt sinn?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Du kriss e Link fir däi Passwuert zréckzesetze via Email geschéckt." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Benotzernumm" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -504,13 +495,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Deng Fichiere si verschlësselt. Falls du de Recuperatiouns-Schlëssel net aktivéiert hues, gëtt et keng Méiglechkeet nees un deng Daten ze komme wann däi Passwuert muss zréckgesat ginn. Falls du net sécher bass wat s de maache soll, kontaktéier w.e.gl däin Administrateur bevir s de weidermëss. Wëlls de wierklech weidermaachen?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Jo, ech wëll mäi Passwuert elo zrécksetzen" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Zrécksetzung ufroen" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Zeréck setzen" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -536,7 +527,7 @@ msgstr "Perséinlech" msgid "Users" msgstr "Benotzer" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Applikatiounen" @@ -548,6 +539,34 @@ msgstr "Admin" msgid "Help" msgstr "Hëllef" +#: 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 "Fehler beim Taggen" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "Fehler beim Tag läschen" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "" + #: templates/403.php:12 msgid "Access forbidden" msgstr "Zougrëff net erlaabt" @@ -564,108 +583,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hallo,\n\nech wëll just Bescheed soen dass den/d' %s, »%s« mat dir gedeelt huet.\nKucken: %s\n\nE schéine Bonjour!" +msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Kategorien editéieren" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Dobäisetzen" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Prost!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Sécherheets-Warnung" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Deng PHP-Versioun ass verwonnbar duerch d'NULL-Byte-Attack (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Aktualiséier w.e.gl deng PHP-Installatioun fir %s sécher kennen ze benotzen." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Et ass kee sécheren Zoufallsgenerator verfügbar. Aktivéier w.e.gl d'OpenSSL-Erweiderung vu PHP." -#: templates/installation.php:33 +#: 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 "Ouni e sécheren Zoufallsgenerator kann en Ugräifer d'Passwuert-Zrécksetzungs-Schlësselen viraussoen an en Account iwwerhuelen." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Däin Daten-Dossier an deng Fichieren si wahrscheinlech iwwert den Internet accessibel well den .htaccess-Fichier net funktionnéiert." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "En Admin-Account uleeën" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Avancéiert" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Daten-Dossier" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "D'Datebank konfiguréieren" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "wärt benotzt ginn" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Datebank-Benotzer" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Datebank-Passwuert" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Datebank Numm" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Tabelle-Plaz vun der Datebank" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Datebank-Server" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Installatioun ofschléissen" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Schléissen of ..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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 "%s ass verfügbar. Kréi méi Informatiounen doriwwer wéi d'Aktualiséierung ofleeft." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Ofmellen" @@ -683,19 +713,27 @@ msgstr "Falls du däi Passwuert net viru kuerzem geännert hues, kéint däin Ac msgid "Please change your password to secure your account again." msgstr "Änner w.e.gl däi Passwuert fir däin Account nees ofzesécheren." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Passwuert vergiess?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "verhalen" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Umellen" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Alternativ Umeldungen" @@ -703,10 +741,37 @@ msgstr "Alternativ Umeldungen" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Hallo,

    ech wëll just Bescheed soen dass den/d' %s, »%s« mat dir gedeelt huet.
    Kucken!

    E schéine Bonjour!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "Merci fir deng Gedold." + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "ownCloud gëtt op d'Versioun %s aktualiséiert, dat kéint e Moment daueren." + +#: 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/lb/files.po b/l10n/lb/files.po index 40727c4472ddddcf7a924d35ddafe3611742d0e9..0b0406f93340bfeb586abcbd15f8e2dc57cc6e20 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -27,220 +27,286 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Keen Feeler, Datei ass komplett ropgelueden ginn" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Déi ropgelueden Datei ass nëmmen hallef ropgelueden ginn" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Et ass kee Fichier ropgeluede ginn" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Et feelt en temporären Dossier" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Konnt net op den Disk schreiwen" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Dateien" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Upload ofgebrach." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Fehler" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" -#: js/fileactions.js:119 +#: js/fileactions.js:125 msgid "Share" msgstr "Deelen" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" -msgstr "" +msgstr "Ëm-benennen" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "ersetzen" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "ofbriechen" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "réckgängeg man" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Fehler" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Numm" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Gréisst" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Geännert" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Eroplueden" @@ -276,65 +342,69 @@ msgstr "Maximal Gréisst fir ZIP Fichieren" msgid "Save" msgstr "Späicheren" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nei" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "Text Fichier" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "Dossier" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Upload ofbriechen" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Hei ass näischt. Lued eppes rop!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Download" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Net méi deelen" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Läschen" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Upload ze grouss" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Déi Dateien déi Dir probéiert erop ze lueden sinn méi grouss wei déi Maximal Gréisst déi op dësem Server erlaabt ass." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Fichieren gi gescannt, war weg." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Momentane Scan" diff --git a/l10n/lb/files_encryption.po b/l10n/lb/files_encryption.po index 15dacc9dc199ed9e350d03f763e86fed32301740..62f74975459c20174edd038587058fa6e46b70be 100644 --- a/l10n/lb/files_encryption.po +++ b/l10n/lb/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:44 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Speicheren..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index faf8429b4ef007855a84e99c523d06179d5f04fe..dfe41bc2b95d288988125758c71896600ab2a19b 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index 3fba12cda24d0874476dbd6fc9d3064c9081beac..b31690b8d6dd0549ea0c17900093664b32e328cf 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Den Passwuert ass incorrect. Probeier ed nach eng keier." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Passwuert" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Fortschécken" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -54,28 +54,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s huet den Dossier %s mad der gedeelt" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s deelt den Fichier %s mad dir" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Download" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Eroplueden" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Upload ofbriechen" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Keeng Preview do fir" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 6e89845dc20912b6c68a794691faee837b143544..dfbe45800e40f45402327e7d90a6e97696d98c9e 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Fehler" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:815 lib/trashbin.php:817 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:8 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:22 msgid "Name" msgstr "Numm" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:25 templates/index.php:27 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:33 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Läschen" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index bd8ee7af792695e0393d0cb5e424e9c43658ca9f..022fc34107ecf97d723e631762478a533272ad9e 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -18,318 +18,317 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Hëllef" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Perséinlech" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Astellungen" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Benotzer" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Onbekannten Fichier Typ" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Ongülteg d'Bild" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Web-Servicer ënnert denger Kontroll" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Authentifikatioun's Fehler" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Dateien" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "SMS" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "Sekonnen hir" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n Minutten hir" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "haut" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "gëschter" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "Läschte Mount" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "Läscht Joer" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "Joren hier" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index d09ca81058c7135d3826710275cb38a369760037..e6c9568f239373901a084ea6f0013fabe7eda38e 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-28 01:55-0500\n" +"PO-Revision-Date: 2013-12-27 13:21+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" @@ -28,12 +28,12 @@ msgid "Authentication error" msgstr "Authentifikatioun's Fehler" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Aren Nickname ass geännert ginn." +msgid "Your full name has been changed." +msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Unmeiglech den Nickname ze änneren." +msgid "Unable to change full name" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -118,11 +118,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Ofschalten" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Aschalten" @@ -130,31 +130,31 @@ msgstr "Aschalten" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Fehler" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" -msgstr "" +msgstr "Update" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -162,7 +162,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -182,44 +182,75 @@ msgstr "réckgängeg man" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Gruppen" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Gruppen Admin" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Läschen" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "" +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "Sécherheets Warnung" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -228,48 +259,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -278,110 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Share API aschalten" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Erlab Apps d'Share API ze benotzen" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Links erlaben" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Resharing erlaben" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Useren erlaben mat egal wiem ze sharen" -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "Log" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Méi" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" -msgstr "" +msgstr "Manner" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -573,6 +636,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -590,7 +657,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 5b73ccc321a130a4dfe2946f85b605d22d22383b..3f2a7d8244a45822cec882b970c66ab785a5c132 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-28 01:55-0500\n" +"PO-Revision-Date: 2013-12-27 13:40+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" @@ -25,314 +25,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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 "Konnt net läschen" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Fehler" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Späicheren" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Hëllef" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" +msgstr "Host" + +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:36 +msgid "Port" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Passwuert" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 -#, php-format -msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" msgstr "" -#: templates/settings.php:58 +#: templates/part.wizard-userfilter.php:31 +#, php-format msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Zeréck" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Weider" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Hëllef" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 4a22a7c94823bb76f855c3d3c006813ab6dc4624..f01c67df45a557c7a8957cdf340d07db48fa0835 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Dr. ROX , 2013 # Liudas Ališauskas , 2013 # mambuta , 2013 # Roman Deniobe , 2013 @@ -10,10 +11,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-29 07:58+0000\n" -"Last-Translator: Liudas Ališauskas \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,14 +22,15 @@ 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/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s pasidalino »%s« su tavimi" -#: ajax/share.php:227 -msgid "group" -msgstr "grupė" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Nepavyko nusiųsti el. pašto šiems naudotojams: %s " #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -55,45 +57,6 @@ msgstr "Atnaujinta failų talpykla" msgid "... %d%% done ..." msgstr "... %d%% atlikta ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Kategorija nenurodyta." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Nepridėsite jokios kategorijos?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Ši kategorija jau egzistuoja: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Objekto tipas nenurodytas." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID nenurodytas." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Klaida perkeliant %s į jūsų mėgstamiausius." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Trynimui nepasirinkta jokia kategorija." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Klaida ištrinant %s iš jūsų mėgstamiausius." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Nenurodytas paveikslėlis ar failas" @@ -190,63 +153,63 @@ msgstr "Lapkritis" msgid "December" msgstr "Gruodis" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] " prieš %n minutę" msgstr[1] " prieš %n minučių" msgstr[2] " prieš %n minučių" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "prieš %n valandą" msgstr[1] "prieš %n valandų" msgstr[2] "prieš %n valandų" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "šiandien" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "vakar" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "prieš %n dieną" msgstr[1] "prieš %n dienas" msgstr[2] "prieš %n dienų" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "prieš %n mėnesį" msgstr[1] "prieš %n mėnesius" msgstr[2] "prieš %n mėnesių" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "prieš mėnesį" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "praeitais metais" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "prieš metus" @@ -315,155 +278,183 @@ msgstr "({count} pažymėtų)" msgid "Error loading file exists template" msgstr "Klaida įkeliant esančių failų ruošinį" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Objekto tipas nenurodytas." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 -msgid "Error" -msgstr "Klaida" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Nenurodytas programos pavadinimas." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Reikalingas {file} failas nėra įrašytas!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Dalinamasi" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Dalintis" -#: js/share.js:131 js/share.js:696 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Klaida" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Klaida, dalijimosi metu" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Klaida, kai atšaukiamas dalijimasis" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Klaida, keičiant privilegijas" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Pasidalino su Jumis ir {group} grupe {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Pasidalino su Jumis {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Dalintis su" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Dalintis su vartotoju arba grupe..." -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "Dalintis nuoroda" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Apsaugotas slaptažodžiu" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Slaptažodis" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Leisti viešą įkėlimą" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Nusiųsti nuorodą paštu" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Siųsti" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Nustatykite galiojimo laiką" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Galiojimo laikas" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Dalintis per el. paštą:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Žmonių nerasta" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "grupė" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Dalijinasis išnaujo negalimas" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Pasidalino {item} su {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Nebesidalinti" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "pranešti el. paštu" + +#: js/share.js:408 msgid "can edit" msgstr "gali redaguoti" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "priėjimo kontrolė" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "sukurti" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "atnaujinti" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "ištrinti" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "dalintis" -#: js/share.js:400 js/share.js:643 +#: js/share.js:694 msgid "Password protected" msgstr "Apsaugota slaptažodžiu" -#: js/share.js:656 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Klaida nuimant galiojimo laiką" -#: js/share.js:668 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Klaida nustatant galiojimo laiką" -#: js/share.js:683 +#: js/share.js:734 msgid "Sending ..." msgstr "Siunčiama..." -#: js/share.js:694 +#: js/share.js:745 msgid "Email sent" msgstr "Laiškas išsiųstas" +#: js/share.js:769 +msgid "Warning" +msgstr "Įspėjimas" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Objekto tipas nenurodytas." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Įveskite naują" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Ištrinti" + +#: js/tags.js:31 +msgid "Add" +msgstr "Pridėti" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Redaguoti žymes" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Klaida įkeliant dialogo ruošinį: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Trynimui nepasirinkta jokia žymė." + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Nuorodą su jūsų slaptažodžio atkūrimu buvo nusiųsta jums į paštą.
    Jei jo negausite per atitinkamą laiką, pasižiūrėkite brukalo aplankale.
    Jei jo ir ten nėra, teiraukitės administratoriaus." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Klaida!
    Ar tikrai jūsų el paštas/vartotojo vardas buvo teisingi?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Elektroniniu paštu gausite nuorodą, su kuria galėsite iš naujo nustatyti slaptažodį." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Prisijungimo vardas" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -512,13 +503,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Jūsų failai yra užšifruoti. Jei neįjungėte atstatymo rakto, nebus galimybės atstatyti duomenų po slaptažodžio atstatymo. Jei nesate tikri ką daryti, prašome susisiekti su administratoriumi prie tęsiant. Ar tikrai tęsti?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Taip, aš tikrai noriu atnaujinti slaptažodį" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Prašyti nustatymo iš najo" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -544,7 +535,7 @@ msgstr "Asmeniniai" msgid "Users" msgstr "Vartotojai" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Programos" @@ -556,6 +547,34 @@ msgstr "Administravimas" msgid "Help" msgstr "Pagalba" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "Klaida įkeliant žymes" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "Žymė jau egzistuoja" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "Klaida trinant žymę(-es)" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "Klaida pridedant žymę" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "Klaida šalinant žymę" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "" + #: templates/403.php:12 msgid "Access forbidden" msgstr "Priėjimas draudžiamas" @@ -572,108 +591,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Labas,\n\nInformuojame, kad %s pasidalino su Jumis %s.\nPažiūrėkite: %s\n\nLinkėjimai!" +msgstr "Labas,\n\nInformuojame, kad %s pasidalino su Jumis %s.\nPažiūrėti tai: %s\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Redaguoti kategorijas" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Pridėti" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Sveikinimai!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Saugumo pranešimas" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Jūsų PHP versija yra pažeidžiama prieš NULL Byte ataką (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Prašome atnaujinti savo PHP, kad saugiai naudoti %s." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Saugaus atsitiktinių skaičių generatoriaus nėra, prašome įjungti PHP OpenSSL modulį." -#: templates/installation.php:33 +#: 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 "Be saugaus atsitiktinių skaičių generatoriaus, piktavaliai gali atspėti Jūsų slaptažodį ir pasisavinti paskyrą." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Jūsų failai yra tikriausiai prieinami per internetą nes .htaccess failas neveikia." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "Kad gauti informaciją apie tai kaip tinkamai sukonfigūruoti savo serverį, prašome skaityti dokumentaciją." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Sukurti administratoriaus paskyrą" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Išplėstiniai" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Duomenų katalogas" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Nustatyti duomenų bazę" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "bus naudojama" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Duomenų bazės vartotojas" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Duomenų bazės slaptažodis" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Duomenų bazės pavadinimas" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Duomenų bazės loginis saugojimas" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Duomenų bazės serveris" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Baigti diegimą" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Baigiama ..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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 "%s yra prieinama. Gaukite daugiau informacijos apie atnaujinimą." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Atsijungti" @@ -691,19 +721,27 @@ msgstr "Jei paskutinių metu nekeitėte savo slaptažodžio, Jūsų paskyra gali msgid "Please change your password to secure your account again." msgstr "Prašome pasikeisti slaptažodį dar kartą, dėl paskyros saugumo." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "Autentikacija serveryje nepavyko!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Kreipkitės į savo sistemos administratorių." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Pamiršote slaptažodį?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "prisiminti" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Prisijungti" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Alternatyvūs prisijungimai" @@ -711,10 +749,37 @@ msgstr "Alternatyvūs prisijungimai" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Labas,

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

    Linkėjimai!" +"href=\"%s\">View it!

    " +msgstr "Labas,

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

    " + +#: 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/update.php:3 +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "Susisiekite su savo sistemos administratoriumi jei šis pranešimas nedingsta arba jei jis pasirodė netikėtai." + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "Dėkojame už jūsų kantrumą." + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "Atnaujinama ownCloud į %s versiją. tai gali šiek tiek užtrukti." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "Šiuo metu vyksta ownCloud atnaujinamas, tai gali šiek tiek užtrukti." + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "Po trupučio laiko atnaujinkite šį puslapį kad galėtumėte toliau naudoti ownCloud." diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 829d61188a31a491a0179d017fce7f38ad3335cc..5c4b37ac0432f76313c6650d4311e444cccda3c0 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Dr. ROX , 2013 # Liudas Ališauskas , 2013 # fizikiukas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:14-0400\n" -"PO-Revision-Date: 2013-09-29 08:46+0000\n" -"Last-Translator: Liudas Ališauskas \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,62 +30,107 @@ msgstr "Nepavyko perkelti %s - failas su tokiu pavadinimu jau egzistuoja" msgid "Could not move %s" msgstr "Nepavyko perkelti %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Failo pavadinimas negali būti tuščias." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "Failo pavadinime negali būti simbolio \"/\". Prašome pasirinkti kitokį pavadinimą." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "Pavadinimas %s jau naudojamas aplanke %s. Prašome pasirinkti kitokį pavadinimą." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "Netinkamas šaltinis" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Klaida siunčiant %s į %s" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Klaida kuriant failą" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "Aplanko pavadinimas negali būti tuščias." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "Aplanko pavadinime negali būti simbolio \"/\". Prašome pasirinkti kitokį pavadinimą." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Klaida kuriant aplanką" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Nepavyksta nustatyti įkėlimų katalogo." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Netinkamas ženklas" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Failai nebuvo įkelti dėl nežinomos priežasties" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Failas įkeltas sėkmingai, be klaidų" -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Failas buvo įkeltas tik dalinai" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Nebuvo įkeltas joks failas" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Nėra laikinojo katalogo" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Nepavyko įrašyti į diską" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Nepakanka vietos serveryje" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "Įkėlimas nepavyko. Nepavyko gauti failo informacijos." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "Įkėlimas nepavyko. Nepavyko rasti įkelto failo" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Neteisingas aplankas" @@ -92,160 +138,181 @@ msgstr "Neteisingas aplankas" msgid "Files" msgstr "Failai" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Nepavyksta įkelti {filename}, nes tai katalogas arba yra 0 baitų dydžio" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Nepakanka vietos" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Įkėlimas atšauktas." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "Nepavyko gauti rezultato iš serverio." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "URL negali būti tuščias." -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Negalimas aplanko pavadinimas. 'Shared' pavadinimas yra rezervuotas ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Klaida" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} jau egzistuoja" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Neįmanoma sukurti failo" -#: js/fileactions.js:119 +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Neįmanoma sukurti aplanko" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "Dalintis" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Ištrinti negrįžtamai" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Pervadinti" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Laukiantis" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} jau egzistuoja" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "pakeisti" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "pasiūlyti pavadinimą" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Neįmanoma pervadinti failo" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "atšaukti" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "pakeiskite {new_name} į {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "anuliuoti" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Klaida trinant failą." + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n aplankas" msgstr[1] "%n aplankai" msgstr[2] "%n aplankų" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n failas" msgstr[1] "%n failai" msgstr[2] "%n failų" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} ir {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Įkeliamas %n failas" msgstr[1] "Įkeliami %n failai" msgstr[2] "Įkeliama %n failų" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' yra neleidžiamas failo pavadinime." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Failo pavadinimas negali būti tuščias." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Neleistinas pavadinimas, '\\', '/', '<', '>', ':', '\"', '|', '?' ir '*' yra neleidžiami." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Jūsų visa vieta serveryje užimta" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Jūsų vieta serveryje beveik visa užimta ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "Šifravimo programa įjungta, bet Jūsų raktai nėra pritaikyti. Prašome atsijungti ir vėl prisijungti" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "Netinkamas privatus raktas Šifravimo programai. Prašome atnaujinti savo privataus rakto slaptažodį asmeniniuose nustatymuose, kad atkurti prieigą prie šifruotų failų." + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Šifravimas buvo išjungtas, bet Jūsų failai vis dar užšifruoti. Prašome eiti į asmeninius nustatymus ir iššifruoti savo failus." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Jūsų atsisiuntimas yra paruošiamas. tai gali užtrukti jei atsisiunčiamas didelis failas." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "Klaida perkeliant failą" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Klaida" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Dydis" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Pakeista" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s negali būti pervadintas" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Įkelti" @@ -281,65 +348,69 @@ msgstr "Maksimalus ZIP archyvo failo dydis" msgid "Save" msgstr "Išsaugoti" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Naujas" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "Teksto failas" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Naujas aplankas" + +#: templates/index.php:10 msgid "Folder" msgstr "Katalogas" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Iš nuorodos" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Ištrinti failai" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Atšaukti siuntimą" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Jūs neturite rašymo leidimo." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "Jūs neturite leidimo čia įkelti arba kurti failus" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Čia tuščia. Įkelkite ką nors!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Atsisiųsti" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Nebesidalinti" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Ištrinti" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Įkėlimui failas per didelis" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Bandomų įkelti failų dydis viršija maksimalų, kuris leidžiamas šiame serveryje" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Skenuojami failai, prašome palaukti." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Šiuo metu skenuojama" diff --git a/l10n/lt_LT/files_encryption.po b/l10n/lt_LT/files_encryption.po index b37c78e711c2985e0fddd0e7980a75d02ac03bff..27ef1ae134f546fee908430b7adb46318392ea77 100644 --- a/l10n/lt_LT/files_encryption.po +++ b/l10n/lt_LT/files_encryption.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Dr. ROX , 2013 # Liudas Ališauskas , 2013 # fizikiukas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-13 08:20+0000\n" -"Last-Translator: Liudas Ališauskas \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:09+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,75 +46,96 @@ msgstr "Slaptažodis sėkmingai pakeistas" msgid "Could not change the password. Maybe the old password was not correct." msgstr "Slaptažodis nebuvo pakeistas. Gali būti, kad buvo neteisingai suvestas senasis." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Privataus rakto slaptažodis buvo sėkmingai atnaujintas." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Nepavyko atnaujinti privataus rakto slaptažodžio. Gali būti, kad buvo neteisingai suvestas senasis." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "Jūsų privatus raktas yra netinkamas! Panašu, kad Jūsų slaptažodis buvo pakeistas išorėje ownCloud sistemos (pvz. Jūsų organizacijos kataloge). Galite atnaujinti savo privataus rakto slaptažodį savo asmeniniuose nustatymuose, kad atkurti prieigą prie savo šifruotų failų." +"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 "Šifravimo programa nepaleista! Galbūt šifravimo programa buvo įjungta dar kartą Jūsų sesijos metu. Prašome atsijungti ir vėl prisijungti, kad paleisti šifravimo programą." -#: hooks/hooks.php:51 +#: 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 "Failo iššifruoti nepavyko, gali būti jog jis yra pasidalintas su jumis. Paprašykite failo savininko, kad jums iš naujo pateiktų šį failą." + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Neatpažinta klaida, patikrinkite sistemos nustatymus arba kreipkitės į savo sistemos aministratorių" + +#: hooks/hooks.php:59 msgid "Missing requirements." msgstr "Trūkstami laukai." -#: hooks/hooks.php:52 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Prašome įsitikinti, kad PHP 5.3.3 ar naujesnė yra įdiegta ir kad OpenSSL kartu su PHP plėtiniu yra šjungti ir teisingai sukonfigūruoti. Kol kas šifravimo programa bus išjungta." -#: hooks/hooks.php:250 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "Sekantys naudotojai nenustatyti šifravimui:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Saugoma..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Jūsų privatus raktas yra netinkamas! Galbūt Jūsų slaptažodis buvo pakeistas iš išorės?" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Galite atrakinti savo privatų raktą savo" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Eiti tiesiai į Jūsų" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "asmeniniai nustatymai" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Šifravimas" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Įjunkite atkūrimo raktą, (leisti atkurti naudotojų failus praradus slaptažodį):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Atkūrimo rakto slaptažodis" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Pakartokite atkūrimo rakto slaptažodį" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Įjungta" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Išjungta" @@ -121,58 +143,62 @@ msgstr "Išjungta" msgid "Change recovery key password:" msgstr "Pakeisti atkūrimo rakto slaptažodį:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Senas atkūrimo rakto slaptažodis" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Naujas atkūrimo rakto slaptažodis" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "Pakartokite naują atkūrimo rakto slaptažodį" + +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Pakeisti slaptažodį" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Privatus rakto slaptažodis daugiau neatitinka Jūsų prisijungimo slaptažodžio:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Nustatyti Jūsų privataus rakto slaptažodį į Jūsų dabartinį prisijungimo." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Jei nepamenate savo seno slaptažodžio, galite paprašyti administratoriaus atkurti Jūsų failus." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Senas prisijungimo slaptažodis" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Dabartinis prisijungimo slaptažodis" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Atnaujinti privataus rakto slaptažodį" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Įjungti slaptažodžio atkūrimą:" -#: templates/settings-personal.php:47 +#: 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 "Įjungus šią funkciją jums bus suteiktas pakartotinis priėjimas prie Jūsų šifruotų failų pamiršus slaptažodį." -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Failų atkūrimo nustatymai pakeisti" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Neišėjo atnaujinti failų atkūrimo" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 4347ca073df67332121eb3a3548b374b3bf1d9f4..1bd0e585114b8978690eaeba58d1be103431dc75 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Min2liz \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ 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" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Priėjimas suteiktas" @@ -26,7 +26,7 @@ msgstr "Priėjimas suteiktas" msgid "Error configuring Dropbox storage" msgstr "Klaida nustatinėjant Dropbox talpyklą" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Suteikti priėjimą" @@ -34,24 +34,24 @@ msgstr "Suteikti priėjimą" msgid "Please provide a valid Dropbox app key and secret." msgstr "Prašome įvesti teisingus Dropbox \"app key\" ir \"secret\"." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Klaida nustatinėjant Google Drive talpyklą" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Įspėjimas: \"smbclient\" nėra įdiegtas. CIFS/SMB dalinimasis nėra galimas. Prašome susisiekti su sistemos administratoriumi kad būtų įdiegtas \"smbclient\"" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Įspėjimas: FTP palaikymas PHP sistemoje nėra įjungtas arba nėra įdiegtas. FTP dalinimosi įjungimas nėra galimas. Prašome susisiekti su sistemos administratoriumi kad būtų įdiegtas FTP palaikymas. " -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index 1ce65e7a0668fa03fb58a8d4d13bd9bc07bd3e75..c3e0330b89dd245221a0978171b875357c7c27e2 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Dr. ROX , 2013 # Liudas Ališauskas , 2013 # fizikiukas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Liudas Ališauskas \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"Last-Translator: Dr. ROX \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,17 +21,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Turinys apsaugotas slaptažodžiu" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Netinka slaptažodis: Bandykite dar kartą." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Slaptažodis" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Išsaugoti" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Atleiskite, panašu, kad nuoroda yra neveiksni." @@ -55,28 +56,32 @@ msgstr "dalinimasis yra išjungtas" msgid "For more info, please ask the person who sent this link." msgstr "Dėl tikslesnės informacijos susisiekite su asmeniu atsiuntusiu nuorodą." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s pasidalino su jumis %s aplanku" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s pasidalino su jumis %s failu" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Atsisiųsti" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Įkelti" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Atšaukti siuntimą" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Peržiūra nėra galima" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Tiesioginė nuoroda" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 5e630911f656927be3a391b532f3e14c188d8081..f971c03d48112a7d70f415fc3d783929aea012c5 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-12 20:30+0000\n" -"Last-Translator: Liudas Ališauskas \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,57 +29,31 @@ msgstr "Nepavyko negrįžtamai ištrinti %s" msgid "Couldn't restore %s" msgstr "Nepavyko atkurti %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "atkurti" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Klaida" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "failą ištrinti negrįžtamai" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Ištrinti negrįžtamai" - -#: js/trash.js:184 templates/index.php:17 -msgid "Name" -msgstr "Pavadinimas" - -#: js/trash.js:185 templates/index.php:27 -msgid "Deleted" -msgstr "Ištrinti" - -#: js/trash.js:193 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n aplankų" - -#: js/trash.js:199 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n failų" - -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "atstatyta" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nieko nėra. Jūsų šiukšliadėžė tuščia!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Pavadinimas" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Atstatyti" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Ištrinti" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Ištrinti" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 811ca96268b83abd8adf7d0792ea00f1cc413574..612690234406800baa40cf764615e95082071e0f 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-18 14:50+0000\n" -"Last-Translator: Liudas Ališauskas \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,322 +21,321 @@ 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" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Programa „%s“ negali būti įdiegta, nes yra nesuderinama su šia ownCloud versija." -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "Nenurodytas programos pavadinimas" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Pagalba" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Asmeniniai" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Nustatymai" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Vartotojai" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Administravimas" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Nepavyko pakelti „%s“ versijos." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Saviti profilio paveiksliukai dar neveikia su šifravimu" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Nežinomas failo tipas" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Netinkamas paveikslėlis" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "jūsų valdomos web paslaugos" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "nepavyksta atverti „%s“" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP atsisiuntimo galimybė yra išjungta." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Failai turi būti parsiunčiami vienas po kito." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Atgal į Failus" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Pasirinkti failai per dideli archyvavimui į ZIP." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Atsisiųskite failus mažesnėmis dalimis atskirai, arba mandagiai prašykite savo administratoriaus." +msgstr "Prašome atsisiųsti failus mažesnėmis dalimis atskirai, arba mandagiai prašykite savo administratoriaus." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Nenurodytas šaltinis diegiant programą" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Nenurodytas href diegiant programą iš http" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Nenurodytas kelias diegiant programą iš vietinio failo" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "%s tipo archyvai nepalaikomi" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Nepavyko atverti archyvo diegiant programą" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "Programa nepateikia info.xml failo" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "Programa negali būti įdiegta, nes turi neleistiną kodą" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Programa negali būti įdiegta, nes yra nesuderinama su šia ownCloud versija" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Programa negali būti įdiegta, nes turi true žymę, kuri yra neleistina ne kartu platinamoms programoms" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Programa negali būti įdiegta, nes versija pateikta info.xml/version nesutampa su versija deklaruota programų saugykloje" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Programos aplankas jau egzistuoja" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Nepavyksta sukurti aplanko. Prašome pataisyti leidimus. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Programa neįjungta" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Autentikacijos klaida" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Sesija baigėsi. Prašome perkrauti puslapį." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Failai" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Žinučių" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Paveikslėliai" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s įrašykite duombazės naudotojo vardą." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s įrašykite duombazės pavadinimą." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s negalite naudoti taškų duombazės pavadinime" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL naudotojo vardas ir/arba slaptažodis netinka: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Turite prisijungti su egzistuojančia paskyra arba su administratoriumi." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Neteisingas MySQL naudotojo vardas ir/arba slaptažodis" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "DB klaida: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Vykdyta komanda buvo: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL naudotojas '%s'@'localhost' jau egzistuoja." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Pašalinti šį naudotoją iš MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL naudotojas '%s'@'%%' jau egzistuoja" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Pašalinti šį naudotoją iš MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Nepavyko sukurti Oracle ryšio" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Neteisingas Oracle naudotojo vardas ir/arba slaptažodis" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Vykdyta komanda buvo: \"%s\", name: %s, password: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "Neteisingas PostgreSQL naudotojo vardas ir/arba slaptažodis" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Nustatyti administratoriaus naudotojo vardą." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Nustatyti administratoriaus slaptažodį." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Jūsų serveris nėra tvarkingai nustatytas leisti failų sinchronizaciją, nes WebDAV sąsaja panašu, kad yra sugadinta." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Prašome pažiūrėkite dar kartą diegimo instrukcijas." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Nepavyko rasti kategorijos „%s“" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "prieš sekundę" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "prieš %n min." msgstr[1] "Prieš % minutes" msgstr[2] "Prieš %n minučių" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Prieš %n valandą" msgstr[1] "Prieš %n valandas" msgstr[2] "Prieš %n valandų" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "šiandien" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "vakar" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "Prieš %n dieną" msgstr[1] "Prieš %n dienas" msgstr[2] "Prieš %n dienų" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "praeitą mėnesį" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Prieš %n mėnesį" msgstr[1] "Prieš %n mėnesius" msgstr[2] "Prieš %n mėnesių" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "praeitais metais" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "prieš metus" - -#: template.php:297 -msgid "Caused by:" -msgstr "Iššaukė:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Nepavyko rasti kategorijos „%s“" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index ff719fb19fe07ea24b1bbfd894bc8a43fe686e3d..42738b286848a24d0df04e4f7b46fc57ac3d34d8 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Dr. ROX , 2013 # fizikiukas , 2013 # Liudas Ališauskas , 2013 # Liudas , 2013 @@ -10,10 +11,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:17-0400\n" -"PO-Revision-Date: 2013-09-29 08:49+0000\n" -"Last-Translator: Liudas Ališauskas \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,12 +32,12 @@ msgid "Authentication error" msgstr "Autentikacijos klaida" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Jūsų rodomas vardas buvo pakeistas." +msgid "Your full name has been changed." +msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Nepavyksta pakeisti rodomą vardą" +msgid "Unable to change full name" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -161,7 +162,7 @@ msgstr "Atnaujinti" msgid "Updated" msgstr "Atnaujinta" -#: js/personal.js:221 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Pažymėkite profilio paveikslėlį" @@ -169,7 +170,7 @@ msgstr "Pažymėkite profilio paveikslėlį" msgid "Decrypting files... Please wait, this can take some time." msgstr "Iššifruojami failai... Prašome palaukti, tai gali užtrukti." -#: js/personal.js:288 +#: js/personal.js:287 msgid "Saving..." msgstr "Saugoma..." @@ -185,44 +186,75 @@ msgstr "anuliuoti" msgid "Unable to remove user" msgstr "Nepavyko ištrinti vartotojo" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupės" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grupės administratorius" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Ištrinti" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "pridėti grupę" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "Vartotojo vardas turi būti tinkamas" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "Klaida kuriant vartotoją" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "Slaptažodis turi būti tinkamas" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Įspėjimas: Vartotojo \"{user}\" namų aplankas jau egzistuoja" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Kalba" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "Saugumo pranešimas" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -231,48 +263,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:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Nustatyti perspėjimą" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Prašome pažiūrėkite dar kartą diegimo instrukcijas." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Trūksta 'fileinfo' modulio" -#: templates/admin.php:47 +#: templates/admin.php:68 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:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "Lokalė neveikia" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "Negalima nustatyti sistemos lokalės į %s. Tai reiškia, kad gali būti problemų su tam tikrais simboliais failų pavadinimuose. Labai rekomenduojame įdiegti reikalingus paketus Jūsų sistemoje, kad palaikyti %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Nėra interneto ryšio" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -281,110 +333,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Šis serveris neturi veikiančio ryšio. Tai reiškia, kas kai kurios funkcijos kaip išorinės saugyklos prijungimas, perspėjimai apie atnaujinimus ar trečių šalių programų įdiegimas neveikia. Failų pasiekimas iš kitur ir pranešimų siuntimas el. paštu gali taip pat neveikti. Rekomenduojame įjungti interneto ryšį šiame serveryje, jei norite naudoti visas funkcijas." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Įvykdyti vieną užduotį su kiekvieno puslapio įkėlimu" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php yra registruotas tinklapio suplanuotų užduočių paslaugose, kad iškviesti cron.php kartą per minutę per http." +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Naudoti sistemos planuotų užduočių paslaugą, kad iškvieti cron.php kartą per minutę." +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Dalijimasis" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Įjungti Share API" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Leidžia programoms naudoti Share API" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Lesti nuorodas" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Leisti naudotojams viešai dalintis elementais su nuorodomis" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Leisti viešus įkėlimus" -#: templates/admin.php:144 +#: templates/admin.php:187 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:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Leisti dalintis" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Leisti naudotojams toliau dalintis elementais pasidalintais su jais" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Leisti naudotojams dalintis su bet kuo" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Leisti naudotojams dalintis tik su naudotojais savo grupėje" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Leisti el. pašto perspėjimą" + +#: templates/admin.php:214 +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:221 msgid "Security" msgstr "Saugumas" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Reikalauti HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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:191 +#: templates/admin.php:242 #, 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:203 +#: templates/admin.php:254 msgid "Log" msgstr "Žurnalas" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Žurnalo išsamumas" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Daugiau" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Mažiau" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versija" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Naudokite šį adresą, kad pasiekti savo failus per WebDAV" +"Use this address to access your Files via " +"WebDAV" +msgstr "Naudokite šį adresą, kad pasiektumėte savo failus per WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Šifravimas" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "Šifravimo programa nebėra įjungta, iššifruokite visus savo failus" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Prisijungimo slaptažodis" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Iššifruoti visus failus" @@ -576,6 +640,10 @@ msgstr "Įveskite atkūrimo slaptažodį, kad atkurti naudotojo failus keičiant msgid "Default Storage" msgstr "Numatytas saugojimas" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Neribota" @@ -593,8 +661,8 @@ msgid "Storage" msgstr "Saugojimas" #: templates/users.php:108 -msgid "change display name" -msgstr "keisti rodomą vardą" +msgid "change full name" +msgstr "" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 6649922b22b8c40e8ff8ee36dc6d7c71bd9f23a3..742bca400a099e5d44520fc5178828e267c3fed9 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Dr. ROX , 2013 # Liudas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:05+0000\n" -"Last-Translator: Liudas Ališauskas \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,314 +27,427 @@ msgstr "Nepavyko išvalyti sąsajų." msgid "Failed to delete the server configuration" msgstr "Nepavyko pašalinti serverio konfigūracijos" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "Konfigūracija yra tinkama bei prisijungta sėkmingai!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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 "Ištrinti nepavyko" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Išlaikyti nustatymus?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" -msgstr "" +msgstr "Negalima pridėti serverio konfigūracijos" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "susiejimai išvalyti" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Sėkmingai" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Klaida" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Pasirinkti grupes" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Ryšio patikrinimas pavyko" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Ryšio patikrinimas nepavyko" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Ar tikrai norite ištrinti dabartinę serverio konfigūraciją?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Patvirtinkite trynimą" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" msgstr "" -#: templates/settings.php:12 +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Išsaugoti" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Bandyti konfigūraciją" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Pagalba" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Serverio konfigūravimas" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +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 "Pridėti serverio konfigūraciją" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Mazgas" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Bazinis DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Vienas bazinis DN eilutėje" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Prievadas" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "Naudotojas DN" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Slaptažodis" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Anoniminiam prisijungimui, palikite DN ir Slaptažodis laukus tuščius." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Naudotojo prisijungimo filtras" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Vienas bazinis DN eilutėje" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Naudotojo sąrašo filtras" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" -#: templates/settings.php:58 +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Atgal" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Tęsti" + +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Grupės filtras" - -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Ryšio nustatymai" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Konfigūracija aktyvi" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Kai nepažymėta, ši konfigūracija bus praleista." -#: templates/settings.php:69 -msgid "Port" -msgstr "Prievadas" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Atsarginės kopijos (Replica) mazgas" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Atsarginės kopijos (Replica) prievadas" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Išjungti pagrindinį serverį" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "Tik prisijungti prie reprodukcinio (replica) serverio." -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Naudoti TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Išjungti SSL sertifikato tikrinimą." -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Katalogo nustatymai" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Bazinis naudotojo medis" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "Naudotojo paieškos atributai" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Bazinis grupės medis" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Grupės paieškos atributai" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Grupės-Nario sąsaja" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Specialūs atributai" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Kvotos laukas" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Numatyta kvota" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "baitais" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "El. pašto laukas" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "Naudotojo namų aplanko pavadinimo taisyklė" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "Vidinis naudotojo vardas" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -349,15 +463,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "Vidinis naudotojo vardo atributas:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "Perrašyti UUID aptikimą" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -368,15 +482,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID atributas:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "Naudotojo vardo - LDAP naudotojo sąsaja" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -390,18 +508,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "Išvalyti naudotojo vardo - LDAP naudotojo sąsają" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Išvalyti grupės pavadinimo - LDAP naudotojo sąsają" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Bandyti konfigūraciją" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Pagalba" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 813a5545833429e20835f2301e22861d92156303..5e89b7c6e5b704db6781a125bd259a76a03678a7 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,14 +18,15 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s kopīgots »%s« ar jums" -#: ajax/share.php:227 -msgid "group" -msgstr "grupa" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -52,45 +53,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Kategorijas tips nav norādīts." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Nav kategoriju, ko pievienot?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Šāda kategorija jau eksistē — %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Objekta tips nav norādīts." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID nav norādīts." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Kļūda, pievienojot %s izlasei." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Neviena kategorija nav izvēlēta dzēšanai." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Kļūda, izņemot %s no izlases." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -187,63 +149,63 @@ msgstr "Novembris" msgid "December" msgstr "Decembris" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Tagad, %n minūtes" msgstr[1] "Pirms %n minūtes" msgstr[2] "Pirms %n minūtēm" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Šodien, %n stundas" msgstr[1] "Pirms %n stundas" msgstr[2] "Pirms %n stundām" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "šodien" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "vakar" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Šodien, %n dienas" msgstr[1] "Pirms %n dienas" msgstr[2] "Pirms %n dienām" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "pagājušajā mēnesī" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Šomēnes, %n mēneši" msgstr[1] "Pirms %n mēneša" msgstr[2] "Pirms %n mēnešiem" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "mēnešus atpakaļ" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "gājušajā gadā" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "gadus atpakaļ" @@ -312,155 +274,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Nav norādīts objekta tips." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Kļūda" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Nav norādīts lietotnes nosaukums." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Pieprasītā datne {file} nav instalēta!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Kopīgs" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Dalīties" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Kļūda" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Kļūda, daloties" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Kļūda, beidzot dalīties" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Kļūda, mainot atļaujas" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} dalījās ar jums un grupu {group}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "{owner} dalījās ar jums" -#: js/share.js:183 -msgid "Share with" -msgstr "Dalīties ar" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "Dalīties ar saiti" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Aizsargāt ar paroli" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Parole" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Ļaut publisko augšupielādi." -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Sūtīt saiti personai pa e-pastu" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Sūtīt" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Iestaties termiņa datumu" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Termiņa datums" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Dalīties, izmantojot e-pastu:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Nav atrastu cilvēku" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "grupa" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Atkārtota dalīšanās nav atļauta" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Dalījās ar {item} ar {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Pārtraukt dalīšanos" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "var rediģēt" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "piekļuves vadība" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "izveidot" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "atjaunināt" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "dzēst" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "dalīties" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Aizsargāts ar paroli" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Kļūda, noņemot termiņa datumu" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Kļūda, iestatot termiņa datumu" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Sūta..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "Vēstule nosūtīta" +#: js/share.js:769 +msgid "Warning" +msgstr "Brīdinājums" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Nav norādīts objekta tips." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Dzēst" + +#: js/tags.js:31 +msgid "Add" +msgstr "Pievienot" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Saite uz paroles atjaunošanas vietu ir nosūtīta uz epastu.
    Ja vēstu nav atnākusi, pārbaudiet epasta mēstuļu mapi.
    Jā tās tur nav, jautājiet sistēmas administratoram." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Pieprasījums neizdevās!
    Vai Jūs pārliecinājāties ka epasts/lietotājvārds ir pareizi?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Jūs savā epastā saņemsiet interneta saiti, caur kuru varēsiet atjaunot paroli." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Lietotājvārds" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -509,13 +499,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Jūsu faili ir šifrēti. Ja nav iespējota atgūšanas kods, tad nebūs iespēja atjaunot jūsu failus pēc tam kad tiks mainīta parole. ja neesat pārliecināts kā rīkoties, jautājiet administratoram. Vai tiešam vēlaties turpināt?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Jā, Es tiešām vēlos mainīt savu paroli" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Pieprasīt paroles maiņu" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -541,7 +531,7 @@ msgstr "Personīgi" msgid "Users" msgstr "Lietotāji" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Lietotnes" @@ -553,6 +543,34 @@ msgstr "Administratori" msgid "Help" msgstr "Palīdzība" +#: 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 "Pieeja ir liegta" @@ -569,108 +587,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Sveiks,\nTikai daru tev zināmu ka %s dalās %s ar tevi.\nApskati to: %s\n\nJaukiņi Labiņi!" +msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Rediģēt kategoriju" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Pievienot" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Brīdinājums par drošību" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Jūsu PHP ir ievainojamība pret NULL Byte uzbrukumiem (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Lūdzu atjauniniet PHP instalāciju lai varētu droši izmantot %s." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Nav pieejams drošs nejaušu skaitļu ģenerators. Lūdzu, aktivējiet PHP OpenSSL paplašinājumu." -#: templates/installation.php:33 +#: 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 "Bez droša nejaušu skaitļu ģeneratora uzbrucējs var paredzēt paroļu atjaunošanas marķierus un pārņem jūsu kontu." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Visticamāk, jūsu datu direktorija un datnes ir pieejamas no interneta, jo .htaccess datne nedarbojas." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "Vairāk informācijai kā konfigurēt serveri, lūdzu skatiet dokumentāciju." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Izveidot administratora kontu" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Paplašināti" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Datu mape" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Konfigurēt datubāzi" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "tiks izmantots" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Datubāzes lietotājs" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Datubāzes parole" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Datubāzes nosaukums" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Datubāzes tabulas telpa" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Datubāzes serveris" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Pabeigt iestatīšanu" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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 "%s ir pieejams. Uzziniet vairāk kā atjaunināt." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Izrakstīties" @@ -688,19 +717,27 @@ msgstr "Ja neesat pēdējā laikā mainījis paroli, iespējams, ka jūsu konts msgid "Please change your password to secure your account again." msgstr "Lūdzu, nomainiet savu paroli, lai atkal nodrošinātu savu kontu." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Aizmirsāt paroli?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "atcerēties" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Ierakstīties" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Alternatīvās pieteikšanās" @@ -708,10 +745,37 @@ msgstr "Alternatīvās pieteikšanās" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Sveiks,

    Tikai daru tev zināmu ka %s dalās %s ar tevi.
    Apskati to!

    Jaukiņi Labiņi!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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 "Atjaunina ownCloud uz versiju %s. Tas var aizņemt kādu laiciņu." + +#: 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/lv/files.po b/l10n/lv/files.po index c2bec93c45863210fd56395c38a1c9ea8cb52627..65bec5be945ba40c2540b95278990b9102d29820 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -28,223 +28,289 @@ msgstr "Nevarēja pārvietot %s — jau eksistē datne ar tādu nosaukumu" msgid "Could not move %s" msgstr "Nevarēja pārvietot %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Datnes nosaukums nevar būt tukšs." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Nevar uzstādīt augšupielādes mapi." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Nepareiza pilnvara" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Netika augšupielādēta neviena datne. Nezināma kļūda" -#: ajax/upload.php:66 +#: ajax/upload.php:71 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:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 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:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Neviena datne netika augšupielādēta" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Trūkst pagaidu mapes" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Neizdevās saglabāt diskā" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Nav pietiekami daudz vietas" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Nederīga direktorija." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Datnes" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Nepietiek brīvas vietas" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Augšupielāde ir atcelta." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "URL nevar būt tukšs." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Kļūdains mapes nosaukums. 'Shared' lietošana ir rezervēta no ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Kļūda" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} jau eksistē" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "Dalīties" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Dzēst pavisam" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Pārsaukt" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Gaida savu kārtu" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} jau eksistē" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "aizvietot" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "ieteiktais nosaukums" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "atcelt" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "aizvietoja {new_name} ar {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "atsaukt" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapes" msgstr[1] "%n mape" msgstr[2] "%n mapes" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n faili" msgstr[1] "%n fails" msgstr[2] "%n faili" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n" msgstr[1] "Augšupielāde %n failu" msgstr[2] "Augšupielāde %n failus" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' ir nederīgs datnes nosaukums." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Datnes nosaukums nevar būt tukšs." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nederīgs nosaukums, nav atļauti '\\', '/', '<', '>', ':', '\"', '|', '?' un '*'." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Jūsu krātuve ir pilna, datnes vairs nevar augšupielādēt vai sinhronizēt!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Jūsu krātuve ir gandrīz pilna ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Šifrēšana tika atslēgta, tomēr jūsu faili joprojām ir šifrēti. Atšifrēt failus var Personiskajos uzstādījumos." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Tiek sagatavota lejupielāde. Tas var aizņemt kādu laiciņu, ja datnes ir lielas." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Kļūda" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Nosaukums" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Izmērs" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Mainīts" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s nevar tikt pārsaukts" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Augšupielādēt" @@ -280,65 +346,69 @@ msgstr "Maksimālais ievades izmērs ZIP datnēm" msgid "Save" msgstr "Saglabāt" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Jauna" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "Teksta datne" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Jauna mape" + +#: templates/index.php:10 msgid "Folder" msgstr "Mape" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "No saites" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Dzēstās datnes" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Atcelt augšupielādi" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Jums nav tiesību šeit rakstīt." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Te vēl nekas nav. Rīkojies, sāc augšupielādēt!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Lejupielādēt" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Pārtraukt dalīšanos" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Dzēst" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Datne ir par lielu, lai to augšupielādētu" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Augšupielādējamās datnes pārsniedz servera pieļaujamo datņu augšupielādes apjomu" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Datnes šobrīd tiek caurskatītas, lūdzu, uzgaidiet." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Šobrīd tiek caurskatīts" diff --git a/l10n/lv/files_encryption.po b/l10n/lv/files_encryption.po index 2f583edb1c2359ce66dc93486b75043b7d9ec533..cdb1639c569cba92096e0b01b2b8b928e3b05a56 100644 --- a/l10n/lv/files_encryption.po +++ b/l10n/lv/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:41 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Saglabā..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Šifrēšana" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index 87322e13a61f844ae3d05f3ea7c466a5e42abc3d..f3f1ea0a20938dc3179ef13606bb39653377acae 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-16 07:00+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: stendec \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -38,20 +38,20 @@ msgstr "Lūdzu, norādiet derīgu Dropbox lietotnes atslēgu un noslēpumu." msgid "Error configuring Google Drive storage" msgstr "Kļūda, konfigurējot Google Drive krātuvi" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Brīdinājums: nav uzinstalēts “smbclient”. Nevar montēt CIFS/SMB koplietojumus. Lūdzu, vaicājiet savam sistēmas administratoram, lai to uzinstalē." -#: lib/config.php:457 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Brīdinājums: uz PHP nav aktivēts vai instalēts FTP atbalsts. Nevar montēt FTP koplietojumus. Lūdzu, vaicājiet savam sistēmas administratoram, lai to uzinstalē." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 036cfaf96077f4a57cf0334080a952f15837c59e..0c023d14cb67ac6603ef78ef18f6b7218497d03d 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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 "Parole" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Iesniegt" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ar jums dalījās ar mapi %s" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s ar jums dalījās ar datni %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Lejupielādēt" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Augšupielādēt" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Atcelt augšupielādi" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Nav pieejams priekšskatījums priekš" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 06237b847d0b0d4eefc5f6eabf34f44cafa91fb0..7d9d3b0117d6412145afc73d7dcf09347e04474c 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-16 08:10+0000\n" -"Last-Translator: stendec \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,57 +28,31 @@ msgstr "Nevarēja pilnībā izdzēst %s" msgid "Couldn't restore %s" msgstr "Nevarēja atjaunot %s" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "veikt atjaunošanu" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Kļūda" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "dzēst datni pavisam" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Dzēst pavisam" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Nosaukums" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "Dzēsts" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "Nekas, %n mapes" -msgstr[1] "%n mape" -msgstr[2] "%n mapes" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "Neviens! %n faaili" -msgstr[1] "%n fails" -msgstr[2] "%n faili" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "atjaunots" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Šeit nekā nav. Jūsu miskaste ir tukša!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Nosaukums" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Atjaunot" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Dzēsts" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Dzēst" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 1c2c3f45c586d894490e8f31633837edc9894aca..7a1a5ed242a521118e0c3d9467aeb1c18c9c0757 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,322 +18,321 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Palīdzība" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Personīgi" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Iestatījumi" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Lietotāji" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Administratori" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Kļūda atjauninot \"%s\"" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "tīmekļa servisi tavā varā" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "Nevar atvērt \"%s\"" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP lejupielādēšana ir izslēgta." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Datnes var lejupielādēt tikai katru atsevišķi." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Atpakaļ pie datnēm" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Izvēlētās datnes ir pārāk lielas, lai izveidotu zip datni." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Lejupielādējiet savus failus mazākās daļās, atsevišķi vai palūdziet tos administratoram." +msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Lietotne nav aktivēta" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Autentifikācijas kļūda" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Pilnvarai ir beidzies termiņš. Lūdzu, pārlādējiet lapu." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Datnes" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Teksts" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Attēli" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s ievadiet datubāzes lietotājvārdu." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s ievadiet datubāzes nosaukumu." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s datubāžu nosaukumos nedrīkst izmantot punktus" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nav derīga MySQL parole un/vai lietotājvārds — %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Jums jāievada vai nu esošs vai administratora konts." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Nav derīga MySQL parole un/vai lietotājvārds" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "DB kļūda — “%s”" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Vainīgā komanda bija “%s”" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL lietotājs %s'@'localhost' jau eksistē." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Izmest šo lietotāju no MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL lietotājs '%s'@'%%' jau eksistē" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Izmest šo lietotāju no MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Nevar izveidot savienojumu ar Oracle" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Nav derīga Oracle parole un/vai lietotājvārds" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Vainīgā komanda bija \"%s\", vārds: %s, parole: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "Nav derīga PostgreSQL parole un/vai lietotājvārds" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Iestatiet administratora lietotājvārdu." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Iestatiet administratora paroli." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Jūsu serveris vēl nav pareizi iestatīts, lai ļautu sinhronizēt datnes, jo izskatās, ka WebDAV saskarne ir salauzta." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Lūdzu, vēlreiz pārbaudiet instalēšanas palīdzību." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Nevarēja atrast kategoriju “%s”" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Pirms %n minūtēm" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Pirms %n stundām" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "šodien" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "vakar" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Pirms %n dienām" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "pagājušajā mēnesī" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Pirms %n mēnešiem" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "gājušajā gadā" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "gadus atpakaļ" - -#: template.php:297 -msgid "Caused by:" -msgstr "Cēlonis:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Nevarēja atrast kategoriju “%s”" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 68f2e3c4db40446d33f155f7190c16cffc43ddfb..009d1d8e25a5d05a0de9bf834c2ccf2543036616 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+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" @@ -28,12 +28,12 @@ msgid "Authentication error" msgstr "Autentifikācijas kļūda" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Jūsu redzamais vārds ir mainīts." +msgid "Your full name has been changed." +msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Nevarēja mainīt redzamo vārdu" +msgid "Unable to change full name" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -118,11 +118,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "Atjaunināt uz {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Deaktivēt" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Aktivēt" @@ -130,31 +130,31 @@ msgstr "Aktivēt" msgid "Please wait...." msgstr "Lūdzu, uzgaidiet...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Atjaunina...." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Kļūda, atjauninot lietotni" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Kļūda" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Atjaunināt" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Atjaunināta" @@ -162,7 +162,7 @@ msgstr "Atjaunināta" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "Atšifrēju failus... Uzgaidiet tas var ilgt kādu laiku." @@ -182,44 +182,75 @@ msgstr "atsaukt" msgid "Unable to remove user" msgstr "Nevar izņemt lietotāju" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupas" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grupas administrators" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Dzēst" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "pievienot grupu" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "Jānorāda derīgs lietotājvārds" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "Kļūda, veidojot lietotāju" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "Jānorāda derīga parole" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "__valodas_nosaukums__" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "Brīdinājums par drošību" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -228,48 +259,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:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Iestatīšanas brīdinājums" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Lūdzu kārtīgi izlasiet uzstādīšanas norādījumus." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Trūkst modulis “fileinfo”" -#: templates/admin.php:47 +#: templates/admin.php:68 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:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "Lokāle nestrādā" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "Sistēmas lokalizāciju nevar nomainīt uz %s. Tas nozīmē ka var rasties sarežģījumi ar dažu burtu attēlošanu failu nosaukumos. Ir rekomendēts uzstādīt nepieciešamās pakotnes lai atbalstītu %s lokalizāciju." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Interneta savienojums nedarbojas" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -278,110 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Šim serverim nav savienojums ar internetu. Tas nozīmē ka nebūs tādas iespējas kā ārējo datu nesēju montēšana, paziņojumi par atjauninājumiem vai citu izstrādātāju programmu uzstādīšana. Attālināta failu piekļuve vai paziņojumu epastu sūtīšana iespējams arī nedarbosies. Ir rekomendēts iespējot interneta savienojumu lai gūtu iespēju izmantotu visus risinājumus." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Izpildīt vienu uzdevumu ar katru ielādēto lapu" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php ir reģistrēts webcron servisā lai izsauktu cron.php vienreiz minūtē caur http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Izmantojiet sistēmas cron servisu lai izsauktu cron.php reizi minūtē." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Dalīšanās" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Aktivēt koplietošanas API" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Ļauj lietotnēm izmantot koplietošanas API" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Atļaut saites" -#: templates/admin.php:135 +#: templates/admin.php:178 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:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Atļaut publisko augšupielādi" -#: templates/admin.php:144 +#: templates/admin.php:187 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:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Atļaut atkārtotu koplietošanu" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Ļaut lietotājiem dalīties ar vienumiem atkārtoti" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Ļaut lietotājiem dalīties ar visiem" -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "Drošība" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Uzspiest HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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:191 +#: templates/admin.php:242 #, 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:203 +#: templates/admin.php:254 msgid "Log" msgstr "Žurnāls" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Žurnāla līmenis" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Vairāk" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Mazāk" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versija" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Lietojiet šo adresi lai piekļūtu saviem failiem ar WebDAV" +"Use this address to access your Files via " +"WebDAV" +msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Šifrēšana" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "Šifrēšanas lietotne ir atslēgta, atšifrējiet visus jūsu failus" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Pieslēgšanās parole" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Atšifrēt visus failus" @@ -573,6 +636,10 @@ msgstr "Ievadiet atgūšanas paroli, lai varētu atgūt lietotāja failus parole msgid "Default Storage" msgstr "Noklusējuma krātuve" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Neierobežota" @@ -590,8 +657,8 @@ msgid "Storage" msgstr "Krātuve" #: templates/users.php:108 -msgid "change display name" -msgstr "mainīt redzamo vārdu" +msgid "change full name" +msgstr "" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index cd344fb96ce1897a2f729dfac40bc39a4ee5b75b..be178e2356ba99ace4f1f98119e3eacdcdb7cab5 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,427 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "Neizdevās izdzēst servera konfigurāciju" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Konfigurācija ir derīga un varēja izveidot savienojumu!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Konfigurācija ir derīga, bet sasaiste neizdevās. Lūdzu, pārbaudiet servera iestatījumus un akreditācijas datus." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "Konfigurācija ir nederīga. Lūdzu, apskatiet ownCloud žurnālu, lai uzzinātu vairāk." +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 "" -#: js/settings.js:66 +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 msgid "Deletion failed" msgstr "Neizdevās izdzēst" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Paņemt iestatījumus no nesenas servera konfigurācijas?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Paturēt iestatījumus?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Nevar pievienot servera konfigurāciju" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Kļūda" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Izvēlieties grupas" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Savienojuma tests ir veiksmīgs" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Savienojuma tests cieta neveiksmi" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Vai tiešām vēlaties dzēst pašreizējo servera konfigurāciju?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Apstiprināt dzēšanu" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" msgstr "" -#: templates/settings.php:12 +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Saglabāt" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Testa konfigurācija" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Palīdzība" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Brīdinājums: PHP LDAP modulis nav uzinstalēts, aizmugure nedarbosies. Lūdzu, prasiet savam sistēmas administratoram kādu no tām deaktivēt." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Servera konfigurācija" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +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 "Pievienot servera konfigurāciju" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Resursdators" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Var neiekļaut protokolu, izņemot, ja vajag SSL. Tad sākums ir ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Bāzes DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Viena bāzes DN rindā" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Lietotājiem un grupām bāzes DN var norādīt cilnē “Paplašināti”" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Ports" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "Lietotāja DN" -#: templates/settings.php:46 +#: 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 "Klienta lietotāja DN, ar ko veiks sasaisti, piemēram, uid=agent,dc=example,dc=com. Lai piekļūtu anonīmi, atstājiet DN un paroli tukšu." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Parole" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Lai piekļūtu anonīmi, atstājiet DN un paroli tukšu." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Lietotāja ierakstīšanās filtrs" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Viena bāzes DN rindā" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Lietotājiem un grupām bāzes DN var norādīt cilnē “Paplašināti”" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Lietotāju saraksta filtrs" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Grupu filtrs" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Brīdinājums: PHP LDAP modulis nav uzinstalēts, aizmugure nedarbosies. Lūdzu, prasiet savam sistēmas administratoram kādu no tām deaktivēt." + +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Savienojuma iestatījumi" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Konfigurācija ir aktīva" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Ja nav atzīmēts, šī konfigurācija tiks izlaista." -#: templates/settings.php:69 -msgid "Port" -msgstr "Ports" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Rezerves (kopija) serveris" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Norādi rezerves serveri (nav obligāti). Tam ir jābūt galvenā LDAP/AD servera kopijai." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Rezerves (kopijas) ports" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Deaktivēt galveno serveri" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Lietot TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Neizmanto papildu LDAPS savienojumus! Tas nestrādās." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Reģistrnejutīgs LDAP serveris (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Izslēgt SSL sertifikātu validēšanu." -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Kešatmiņas dzīvlaiks" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "sekundēs. Izmaiņas iztukšos kešatmiņu." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Direktorijas iestatījumi" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Lietotāja redzamā vārda lauks" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Bāzes lietotāju koks" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "Viena lietotāju bāzes DN rindā" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "Lietotāju meklēšanas atribūts" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Neobligāti; viens atribūts rindā" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Grupas redzamā nosaukuma lauks" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Bāzes grupu koks" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "Viena grupu bāzes DN rindā" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Grupu meklēšanas atribūts" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Grupu piederības asociācija" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Īpašie atribūti" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Kvotu lauks" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Kvotas noklusējums" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "baitos" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "E-pasta lauks" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "Lietotāja mājas mapes nosaukšanas kārtula" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Atstāt tukšu lietotāja vārdam (noklusējuma). Citādi, norādi LDAP/AD atribūtu." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +461,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +480,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +506,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Testa konfigurācija" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Palīdzība" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index c1f6fdbed94e2edb0a26854dc12b9827cbc4025f..25feb2f8a997045ab3b2fd8d1b6db49746c2245e 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miroj , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:22+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" @@ -17,26 +18,27 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" -msgstr "група" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" #: ajax/update.php:11 msgid "Turned on maintenance mode" -msgstr "" +msgstr "Вклучен е модот за одржување" #: ajax/update.php:14 msgid "Turned off maintenance mode" -msgstr "" +msgstr "Ислкучен е модот за одржување" #: ajax/update.php:17 msgid "Updated database" -msgstr "" +msgstr "Базата е надградена" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." @@ -44,63 +46,24 @@ msgstr "" #: ajax/update.php:23 msgid "Updated filecache" -msgstr "" +msgstr "Кешот е надграден" #: ajax/update.php:26 #, php-format msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Не беше доставен тип на категорија." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Нема категорија да се додаде?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Не беше доставен тип на објект." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID не беше доставено." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Грешка при додавање %s во омилени." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Не е одбрана категорија за бришење." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Грешка при бришење на %s од омилени." - #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +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" @@ -186,59 +149,59 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Подесувања" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "пред секунди" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "денеска" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "вчера" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "минатиот месец" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "пред месеци" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "минатата година" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "пред години" @@ -274,7 +237,7 @@ msgstr[1] "" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Конфликт со една датотека" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" @@ -292,210 +255,238 @@ msgstr "Откажи" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Продолжи" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(сите одбрани)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} одбраните)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" - -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Не е специфициран типот на објект." +msgstr "Грешка при вчитување на датотеката, шаблонот постои " -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Грешка" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Името на апликацијата не е специфицирано." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Задолжителната датотека {file} не е инсталирана!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" -msgstr "" +msgstr "Споделен" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Сподели" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Грешка" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Грешка при споделување" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Грешка при прекин на споделување" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Грешка при промена на привилегии" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Споделено со Вас и групата {group} од {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Споделено со Вас од {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Сподели со" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "Сподели со врска" +#: js/share.js:219 +msgid "Share link" +msgstr "Сподели ја врската" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Заштити со лозинка" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Лозинка" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" -msgstr "" +msgstr "Дозволи јавен аплоуд" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Прати врска по е-пошта на личност" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Прати" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Постави рок на траење" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Рок на траење" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Сподели по е-пошта:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Не се најдени луѓе" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "група" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Повторно споделување не е дозволено" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Споделено во {item} со {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Не споделувај" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "извести преку електронска пошта" + +#: js/share.js:408 msgid "can edit" msgstr "може да се измени" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "контрола на пристап" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "креирај" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "ажурирај" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "избриши" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "сподели" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Заштитено со лозинка" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Грешка при тргање на рокот на траење" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Грешка при поставување на рок на траење" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Праќање..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "Е-порака пратена" +#: js/share.js:769 +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 ownCloud " "community." -msgstr "" +msgstr "Надградбата беше неуспешна. Ве молиме пријавете го овој проблем на ownCloud community." #: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "Надградбата беше успешна. Веднаш ве префрлам на вашиот ownCloud." #: lostpassword/controller.php:62 #, php-format msgid "%s password reset" -msgstr "" +msgstr "%s ресетирање на лозинката" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Користете ја следната врска да ја ресетирате Вашата лозинка: {link}" -#: lostpassword/templates/lostpassword.php:4 +#: lostpassword/templates/lostpassword.php:7 msgid "" "The link to reset your password has been sent to your email.
    If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Ќе добиете врска по е-пошта за да може да ја ресетирате Вашата лозинка." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Корисничко име" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -503,13 +494,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Да, јас сега навистина сакам да ја поништам својата лозинка" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Побарајте ресетирање" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -535,7 +526,7 @@ msgstr "Лично" msgid "Users" msgstr "Корисници" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Аппликации" @@ -547,6 +538,34 @@ msgstr "Админ" 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 "Забранет пристап" @@ -563,108 +582,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "" +msgstr "Здраво,\n\nСамо да ве известам дека %s shared %s with you.\nView it: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Уреди категории" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Додади" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Поздрав!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Безбедносно предупредување" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Вашата верзија на PHP е ранлива на NULL Byte attack (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Не е достапен безбеден генератор на случајни броеви, Ве молам озвоможете го OpenSSL PHP додатокот." -#: templates/installation.php:33 +#: 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:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "Вашиот директориум со податоци и датотеки се веројатно достапни преку интенернт поради што .htaccess датотеката не функционира." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Направете администраторска сметка" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Напредно" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Фолдер со податоци" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Конфигурирај ја базата" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "ќе биде користено" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Корисник на база" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Лозинка на база" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Име на база" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Табела во базата на податоци" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Сервер со база" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Заврши го подесувањето" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Завршувам ..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Одјава" @@ -682,30 +712,65 @@ msgstr "Ако не сте ја промениле лозинката во ск msgid "Please change your password to secure your account again." msgstr "Ве молам сменете ја лозинката да ја обезбедите вашата сметка повторно." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "Автентификацијата на серверската страна е неуспешна!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Ве молиме контактирајте го вашиот администратор." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Ја заборавивте лозинката?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "запамти" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Најава" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" -msgstr "" +msgstr "Алтернативни најавувања" #: templates/mail.php:15 #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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 "" +msgstr "Надградбата на ownCloud на верзијата %s, може да потрае." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "Оваа инстанца на ownCloud во моментов се надградува, што може малку да потрае." + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "Повторно вчитајте ја оваа страница по кратко време за да продолжите да го користите ownCloud." diff --git a/l10n/mk/files.po b/l10n/mk/files.po index a075f4d8f849307eaa272816f95072e1caa9069f..07ce18526809165d579c64ce4cb06ca407c601d2 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miroj , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -20,227 +21,293 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "Не можам да го преместам %s - Датотека со такво име веќе постои" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" +msgstr "Не можам да ги префрлам %s" + +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Името на датотеката не може да биде празно." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 -msgid "Unable to set upload directory." +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." msgstr "" -#: ajax/upload.php:22 -msgid "Invalid Token" +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "Не е валиден извор" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/upload.php:59 +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Грешка додека преземам %s to %s" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Грешка при креирање на датотека" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "Името на папката не може да биде празно." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "Името на папката не смее да содржи \"/\". Одберете друго име." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Грешка при креирање на папка" + +#: ajax/upload.php:18 ajax/upload.php:50 +msgid "Unable to set upload directory." +msgstr "Не може да се постави папката за префрлање на податоци." + +#: ajax/upload.php:27 +msgid "Invalid Token" +msgstr "Грешен токен" + +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Ниту еден фајл не се вчита. Непозната грешка" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Датотеката беше успешно подигната." -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:" -#: ajax/upload.php:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Датотеката беше само делумно подигната." -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Не беше подигната датотека." -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Недостасува привремена папка" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Неуспеав да запишам на диск" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" -msgstr "" +msgstr "Нема доволно слободен сториџ" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Префрлањето е неуспешно. Не можам да го најдам префрлената датотека." -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." -msgstr "" +msgstr "Погрешна папка." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Датотеки" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" -msgstr "" +msgstr "Немате доволно дисков простор" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Преземањето е прекинато." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "" +msgstr "Не можам да добијам резултат од серверот." -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине." -#: js/file-upload.js:520 -msgid "URL cannot be empty." -msgstr "Адресата неможе да биде празна." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "URL-то не може да биде празно" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "Во домашната папка, 'Shared' е резервирано има на датотека/папка" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Грешка" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} веќе постои" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Не множам да креирам датотека" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Не можам да креирам папка" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" -#: js/fileactions.js:119 +#: js/fileactions.js:125 msgid "Share" msgstr "Сподели" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" -msgstr "" +msgstr "Трајно избришани" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Преименувај" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Чека" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} веќе постои" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "замени" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Не можам да ја преименувам датотеката" -#: js/filelist.js:416 -msgid "suggest name" -msgstr "предложи име" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "откажи" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "заменета {new_name} со {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "врати" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" -msgstr "" +msgstr "{dirs} и {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' е грешно име за датотека." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "Вашиот сториџ е полн, датотеките веќе не можат да се освежуваат или синхронизираат!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "Вашиот сториџ е скоро полн ({usedSpacePercent}%)" + +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" msgstr "" -#: js/files.js:67 +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "Вашето преземање се подготвува. Ова може да потрае до колку датотеките се големи." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" -msgstr "" +msgstr "Грешка при префрлање на датотека" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Грешка" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Име" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Големина" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Променето" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s не може да биде преименуван" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Подигни" @@ -276,68 +343,72 @@ msgstr "Максимална големина за внес на ZIP датот msgid "Save" msgstr "Сними" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Ново" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "Текстуална датотека" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "Папка" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Од врска" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" -msgstr "" +msgstr "Избришани датотеки" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Откажи прикачување" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Тука нема ништо. Снимете нешто!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Преземи" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Не споделувај" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Избриши" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Фајлот кој се вчитува е преголем" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Датотеките кои се обидувате да ги подигнете ја надминуваат максималната големина за подигнување датотеки на овој сервер." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Се скенираат датотеки, ве молам почекајте." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Моментално скенирам" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "Го надградувам кешот на фјал системот..." diff --git a/l10n/mk/files_encryption.po b/l10n/mk/files_encryption.po index 23d0a82d9332cdea37196603c47b262742b1eeae..d168c2f594a1583e297ab914442192e01ba6c417 100644 --- a/l10n/mk/files_encryption.po +++ b/l10n/mk/files_encryption.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miroj , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -37,140 +38,165 @@ msgstr "" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "" +msgstr "Лозинката е успешно променета." #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "" +msgstr "Лозинката не можеше да се промени. Можеби старата лозинка не беше исправна." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:41 -msgid "Missing requirements." +#: 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:42 +#: hooks/hooks.php:59 +msgid "Missing requirements." +msgstr "Барања кои недостасуваат." + +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Снимам..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Одете директно на вашиот" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" -msgstr "" +msgstr "лични подесувања" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Енкрипција" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Повтори ја лозинката за клучот на обновување" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" -msgstr "" +msgstr "Овозможен" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" -msgstr "" +msgstr "Оневозможен" #: templates/settings-admin.php:34 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" -msgstr "" +msgstr "Старата лозинка за клучот на обновување " -#: templates/settings-admin.php:48 +#: 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 "" +msgstr "Смени лозинка" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" -msgstr "" +msgstr "Старата лозинка за најавување" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" -msgstr "" +msgstr "Тековната лозинка за најавување" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" -msgstr "" +msgstr "Овозможи го обновувањето на лозинката:" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index fc33716519ea7eba26a5c8693750e18d4f17a254..988ed38ebee55dc9e192fc1a9be93d391beec129 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Пристапот е дозволен" @@ -25,7 +25,7 @@ msgstr "Пристапот е дозволен" msgid "Error configuring Dropbox storage" msgstr "Грешка при конфигурација на Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Дозволи пристап" @@ -33,24 +33,24 @@ msgstr "Дозволи пристап" msgid "Please provide a valid Dropbox app key and secret." msgstr "Ве молам доставите валиден Dropbox клуч и тајна лозинка." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Грешка при конфигурација на Google Drive" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Внимание: \"smbclient\" не е инсталиран. Не е можно монтирање на CIFS/SMB дискови. Замолете го Вашиот систем администратор да го инсталира." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Внимание: Не е овозможена или инсталирани FTP подршка во PHP. Не е можно монтирање на FTP дискови. Замолете го Вашиот систем администратор да го инсталира." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index 97b8547bc7789e10c89222e301cf07184b249cf9..a6836f883656f2cc080427922c0c5c63064d8def 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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/authenticate.php:9 -msgid "Submit" -msgstr "Прати" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ја сподели папката %s со Вас" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s ја сподели датотеката %s со Вас" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Преземи" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Подигни" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Откажи прикачување" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Нема достапно преглед за" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index b92b21c1c476d69b990b0aa2e72bbcd0608d8d58..61301f454c8ad3e8a75432d7f4ac5dee3687503c 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miroj , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: miroj \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,65 +21,41 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "Не можеше трајно да се избрише %s" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "" - -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" +msgstr "Не можеше да се поврати %s" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Грешка" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" +#: lib/trashbin.php:815 lib/trashbin.php:817 +msgid "restored" +msgstr "повратени" -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" +#: templates/index.php:8 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "Тука нема ништо. Вашата корпа за отпадоци е празна!" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:22 msgid "Name" msgstr "Име" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" -msgstr "" - -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" -msgstr "" +msgstr "Поврати" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Избришан" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Избриши" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "" +msgstr "Избришани датотеки" diff --git a/l10n/mk/files_versions.po b/l10n/mk/files_versions.po index 09756a73cd96d164fd896dd6a3a3ba969b14a8d3..a7e6f70ec3f86e7858fd4c91198a78775dd15fe7 100644 --- a/l10n/mk/files_versions.po +++ b/l10n/mk/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miroj , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-29 07:28-0400\n" +"PO-Revision-Date: 2013-10-27 19:30+0000\n" +"Last-Translator: miroj \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,24 +21,24 @@ msgstr "" #: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "Не можев да го вратам: %s" -#: js/versions.js:7 +#: js/versions.js:14 msgid "Versions" msgstr "Версии" -#: js/versions.js:53 +#: js/versions.js:60 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "Не успеав да го вратам {file} на ревизијата {timestamp}." -#: js/versions.js:79 +#: js/versions.js:86 msgid "More versions..." -msgstr "" +msgstr "Повеќе верзии..." -#: js/versions.js:116 +#: js/versions.js:123 msgid "No other versions available" -msgstr "" +msgstr "Не постојат други верзии" -#: js/versions.js:149 +#: js/versions.js:154 msgid "Restore" -msgstr "" +msgstr "Врати" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index f87e0ecc9071ea5fe12c9cadce5cbde2e11881da..45cc5c02cb5d85a84402b7ef26a1180493b295d4 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -17,318 +17,317 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Помош" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Лично" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Подесувања" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Корисници" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Админ" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Непознат тип на датотека" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Невалидна фотографија" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "веб сервиси под Ваша контрола" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Преземање во ZIP е исклучено" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Датотеките треба да се симнат една по една." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Назад кон датотеки" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Избраните датотеки се преголеми за да се генерира zip." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Апликацијата не е овозможена" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Грешка во автентикација" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Жетонот е истечен. Ве молам превчитајте ја страницата." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Датотеки" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Текст" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Слики" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Не можам да најдам категорија „%s“" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "пред секунди" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "денеска" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "вчера" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "минатиот месец" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "минатата година" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "пред години" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Не можам да најдам категорија „%s“" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index d8573ecf006253b2bdee41247c2553649225e441..e703aa4872b72cd65bb51a1903e77a9b1a352298 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miroj , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -27,11 +28,11 @@ msgid "Authentication error" msgstr "Грешка во автентикација" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -82,15 +83,15 @@ msgstr "Неможе да избришам корисник од група %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "Не можам да ја надградам апликацијата." #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "Погрешна лозинка" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "Нема корисничко име" #: changepassword/controller.php:74 msgid "" @@ -111,57 +112,57 @@ msgstr "" #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" -msgstr "" +msgstr "Вашата лозинка неможе да се смени" #: js/apps.js:43 msgid "Update to {appversion}" -msgstr "" +msgstr "Надгради на {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Оневозможи" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Овозможи" #: js/apps.js:71 msgid "Please wait...." -msgstr "" +msgstr "Ве молам почекајте ..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" -msgstr "" +msgstr "Грешка при исклучувањето на апликацијата" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" -msgstr "" +msgstr "Грешка при вклучувањето на апликацијата" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." -msgstr "" +msgstr "Надградувам ..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" -msgstr "" +msgstr "Грешка додека ја надградувам апликацијата" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Грешка" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Ажурирај" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" -msgstr "" +msgstr "Надграден" #: js/personal.js:220 msgid "Select a profile picture" -msgstr "" +msgstr "Одбери фотографија за профилот" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -171,7 +172,7 @@ msgstr "Снимам..." #: js/users.js:47 msgid "deleted" -msgstr "" +msgstr "избришан" #: js/users.js:47 msgid "undo" @@ -179,46 +180,77 @@ msgstr "врати" #: js/users.js:79 msgid "Unable to remove user" -msgstr "" +msgstr "Не можам да го одстранам корисникот" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Групи" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Администратор на група" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Избриши" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" -msgstr "" +msgstr "додади група" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" -msgstr "" +msgstr "Мора да се обезбеди валидно корисничко име " -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" -msgstr "" +msgstr "Грешка при креирање на корисникот" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" +msgstr "Мора да се обезбеди валидна лозинка" + +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "Безбедносно предупредување" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +259,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" -msgstr "" +msgstr "Предупредување при подесување" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" +msgstr "Локалето не функционира" + +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" -msgstr "" +msgstr "Споделување" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" -msgstr "" +msgstr "Овозможи го API-то за споделување" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Дозволете апликациите да го користат API-то за споделување" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" -msgstr "" +msgstr "Дозволи врски" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" -msgstr "" +msgstr "Дозволи јавен аплоуд" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" -msgstr "" +msgstr "Овозможи повторно споделување" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Овозможи корисниците да споделуваат со секого" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Овозможи корисниците да споделуваат со корисници од своите групи" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Овозможи известување по електронска пошта" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "Овозможи корисник да испраќа известување по електронска пошта за споделени датотеки" + +#: templates/admin.php:221 msgid "Security" -msgstr "" +msgstr "Безбедност" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" -msgstr "" +msgstr "Наметни HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "Записник" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Ниво на логирање" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Повеќе" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Помалку" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Верзија" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Енкрипција" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" -msgstr "" +msgstr "Лозинка за најавување" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" -msgstr "" +msgstr "Дешифрирај ги сите датотеки" #: templates/users.php:21 msgid "Login Name" -msgstr "" +msgstr "Име за најава" #: templates/users.php:30 msgid "Create" @@ -570,11 +634,15 @@ msgstr "" #: templates/users.php:42 msgid "Default Storage" +msgstr "Предефинирано складиште " + +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" -msgstr "" +msgstr "Неограничено" #: templates/users.php:66 templates/users.php:163 msgid "Other" @@ -586,16 +654,16 @@ msgstr "Корисничко име" #: templates/users.php:94 msgid "Storage" -msgstr "" +msgstr "Складиште" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 msgid "set new password" -msgstr "" +msgstr "постави нова лозинка" #: templates/users.php:143 msgid "Default" -msgstr "" +msgstr "Предефиниран" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index c1df01027fb0a3b75f8e56a27b94606b60906daa..f7687a00d8d1090db5daa2ad4efce56f217a52f2 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miroj , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +26,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" -msgstr "" +msgstr "Да ги сочувам нагодувањата?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" -msgstr "" +msgstr "Не можам да ја додадам конфигурацијата на серверот" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Грешка" -#: js/settings.js:141 -msgid "Connection test succeeded" +#: js/settings.js:837 +msgid "Configuration OK" msgstr "" -#: js/settings.js:146 -msgid "Connection test failed" +#: js/settings.js:846 +msgid "Configuration incorrect" msgstr "" -#: js/settings.js:156 +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 +msgid "Connection test succeeded" +msgstr "Тестот за поврзување е успешен" + +#: js/settings.js:912 +msgid "Connection test failed" +msgstr "Тестот за поврзување не е успешен" + +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 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:778 lib/wizard.php:790 +msgid "Invalid Host" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:951 +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 "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +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/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Домаќин" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Може да го скокнете протколот освен ако не ви треба SSL. Тогаш ставете ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Порта" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Лозинка" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 -#, php-format -msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" msgstr "" -#: templates/settings.php:58 +#: templates/part.wizard-userfilter.php:31 +#, php-format msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:62 +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Назад" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Продолжи" + +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +460,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +479,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +505,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Помош" diff --git a/l10n/mk/user_webdavauth.po b/l10n/mk/user_webdavauth.po index 0de649364a4420829a20ace85b89c4a627e4ff05..613044a3e8e155beb55b51b739fa1bd24eb2b586 100644 --- a/l10n/mk/user_webdavauth.po +++ b/l10n/mk/user_webdavauth.po @@ -4,13 +4,14 @@ # # Translators: # Georgi Stanojevski , 2012 +# miroj , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-08 07:20-0400\n" +"PO-Revision-Date: 2013-10-07 20:10+0000\n" +"Last-Translator: miroj \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,7 +25,7 @@ msgstr "" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Адреса:" #: templates/settings.php:7 msgid "" diff --git a/l10n/ml_IN/core.po b/l10n/ml_IN/core.po index 8e7523af26c2b0d7b3e65fb903ea17b3b6aaf8ac..8c7b03b498e498d95f6e9f5e866c65e6aec38925 100644 --- a/l10n/ml_IN/core.po +++ b/l10n/ml_IN/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-08 03:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,14 @@ msgstr "" "Language: ml_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -190,55 +152,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "" @@ -306,155 +268,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" +#: js/share.js:213 +msgid "Share with user or group …" msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -503,12 +493,12 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" msgstr "" #: lostpassword/templates/resetpassword.php:4 @@ -535,7 +525,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "" @@ -547,6 +537,34 @@ msgstr "" 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 "" @@ -563,108 +581,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -682,19 +711,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -702,10 +739,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " msgstr "" -#: templates/update.php:3 +#: 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/ml_IN/files.po b/l10n/ml_IN/files.po index 5a25ca39107bf7e61aaecd6c323451082cbd93ea..03a9d3ef97f9952f327a2175efe0d9dcd74108c1 100644 --- a/l10n/ml_IN/files.po +++ b/l10n/ml_IN/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06: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" @@ -27,220 +27,286 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" msgstr "" -#: js/fileactions.js:119 -msgid "Share" +#: js/file-upload.js:595 +msgid "Could not create file" msgstr "" -#: js/fileactions.js:131 -msgid "Delete permanently" +#: js/file-upload.js:611 +msgid "Could not create folder" msgstr "" -#: js/fileactions.js:197 -msgid "Rename" +#: js/file-upload.js:661 +msgid "Error fetching URL" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 -msgid "Pending" +#: js/fileactions.js:125 +msgid "Share" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/fileactions.js:137 +msgid "Delete permanently" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" +#: js/fileactions.js:194 +msgid "Rename" msgstr "" -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "" @@ -276,65 +342,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/ml_IN/files_encryption.po b/l10n/ml_IN/files_encryption.po index 763878763878f89849947f3d660a2fe76480134a..18aa121c05daf6d28146a82fd49d17d84c4e3a50 100644 --- a/l10n/ml_IN/files_encryption.po +++ b/l10n/ml_IN/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:44 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 -msgid "Saving..." +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." +#: js/settings-admin.js:13 +msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ml_IN/files_sharing.po b/l10n/ml_IN/files_sharing.po index 088c381190f8fd809ad0eb7de5c8692b2f28183d..e7d468e857e4bdc8311a52dda3e21f544221fe55 100644 --- a/l10n/ml_IN/files_sharing.po +++ b/l10n/ml_IN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-10-21 13:01-0400\n" +"PO-Revision-Date: 2013-10-21 17:02+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" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" + +#: templates/public.php:98 +msgid "Direct link" +msgstr "" diff --git a/l10n/ml_IN/files_trashbin.po b/l10n/ml_IN/files_trashbin.po index 42c24ca6423edb0e5e6c6f11a0880c5362ca2980..f75561f8522e7512a605e4559cf5616bacc766a4 100644 --- a/l10n/ml_IN/files_trashbin.po +++ b/l10n/ml_IN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:814 lib/trashbin.php:816 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:23 msgid "Name" msgstr "" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:26 templates/index.php:28 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:34 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/ml_IN/lib.po b/l10n/ml_IN/lib.po index 0068185b81e2ac331ee193593129c30cf970c26e..a510bace28a889ccfe8bc618f5cd377e6f9c52a5 100644 --- a/l10n/ml_IN/lib.po +++ b/l10n/ml_IN/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,317 @@ msgstr "" "Language: ml_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/ml_IN/settings.po b/l10n/ml_IN/settings.po index 127decca7902ec16f5d898185ac22c2951e1825b..1858d2db235a717cb966ac1d5a4a315cf67d37f5 100644 --- a/l10n/ml_IN/settings.po +++ b/l10n/ml_IN/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,31 +129,31 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/ml_IN/user_ldap.po b/l10n/ml_IN/user_ldap.po index a7b06da5286ece45832f786b9a7e094e754e4fe9..7710c7ff544b9b0d40d465ed3b0b7ee2628bd11d 100644 --- a/l10n/ml_IN/user_ldap.po +++ b/l10n/ml_IN/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-27 17:09+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" @@ -25,314 +25,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "" -#: js/settings.js:141 +#: js/settings.js:777 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:786 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:795 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:812 js/settings.js:821 +msgid "Select groups" +msgstr "" + +#: js/settings.js:815 js/settings.js:824 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:818 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:845 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:852 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:861 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:862 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:779 lib/wizard.php:791 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:952 +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 "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 3809aef14ed0680ceb0e98e14bf88c8eb90e66ce..4835578aba6f4c0530199fde35e51c3b7374f174 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,13 +17,14 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Tiada kategori untuk di tambah?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Tiada kategori dipilih untuk dibuang." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -186,55 +148,55 @@ msgstr "November" msgid "December" msgstr "Disember" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Tetapan" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "" @@ -301,155 +263,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Ralat" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Kongsi" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Ralat" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" +#: js/share.js:213 +msgid "Share with user or group …" msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Kata laluan" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +msgid "Warning" +msgstr "Amaran" + +#: 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 "Padam" + +#: js/tags.js:31 +msgid "Add" +msgstr "Tambah" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Anda akan menerima pautan untuk menetapkan semula kata laluan anda melalui emel" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Nama pengguna" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -498,13 +488,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Permintaan set semula" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -530,7 +520,7 @@ msgstr "Peribadi" msgid "Users" msgstr "Pengguna" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Aplikasi" @@ -542,6 +532,34 @@ msgstr "Admin" msgid "Help" msgstr "Bantuan" +#: 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 "Larangan akses" @@ -558,108 +576,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Ubah kategori" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Tambah" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Amaran keselamatan" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "buat akaun admin" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Maju" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Fail data" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Konfigurasi pangkalan data" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "akan digunakan" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Nama pengguna pangkalan data" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Kata laluan pangkalan data" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Nama pangkalan data" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Hos pangkalan data" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Setup selesai" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Log keluar" @@ -677,19 +706,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Hilang kata laluan?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "ingat" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Log masuk" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -697,10 +734,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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/ms_MY/files.po b/l10n/ms_MY/files.po index 05de8db4dcc332015c57d1b5769786908e421071..8186def0cad71fb192778ff1ec3eae6c06a7108c 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -27,217 +27,283 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Tiada fail dimuatnaik. Ralat tidak diketahui." -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Tiada ralat berlaku, fail berjaya dimuatnaik" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Fail yang dimuatnaik tidak lengkap" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Tiada fail dimuatnaik" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Direktori sementara hilang" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Gagal untuk disimpan" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Fail-fail" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Muatnaik dibatalkan." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Ralat" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" -#: js/fileactions.js:119 +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "Kongsi" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" -msgstr "" +msgstr "Namakan" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Dalam proses" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "ganti" - -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "Batal" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Ralat" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Nama" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Saiz" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Dimodifikasi" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Muat naik" @@ -273,65 +339,69 @@ msgstr "Saiz maksimum input untuk fail ZIP" msgid "Save" msgstr "Simpan" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Baru" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "Fail teks" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "Folder" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Batal muat naik" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Tiada apa-apa di sini. Muat naik sesuatu!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Muat turun" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Padam" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Muatnaik terlalu besar" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fail yang cuba dimuat naik melebihi saiz maksimum fail upload server" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Fail sedang diimbas, harap bersabar." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Imbasan semasa" diff --git a/l10n/ms_MY/files_encryption.po b/l10n/ms_MY/files_encryption.po index 8b66830466a8d3e096fcfc1096a6af1ba5130204..6ca187b4eb34753a5297548276cb89eb5231a624 100644 --- a/l10n/ms_MY/files_encryption.po +++ b/l10n/ms_MY/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:44 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Simpan..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index cf3fca34a5e4b7f1a1d0b9de66b576d57605f249..d6f983e74f0667d8478054ea2ba03a6d8549e190 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index 67cf9aabfb3743efa0add93d65eeb3fe58b557ff..6bf0ef741729319b423f35b53b1bb718cb91dedd 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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 "Kata laluan" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Hantar" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Muat turun" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Muat naik" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Batal muat naik" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index cb56fbd7745645e59af9cfbffce4b6a1d93683bf..3435deb1064526ee0353fc241d714fe0401f1de0 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Puretech , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: Puretech \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,63 +21,41 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "Tidak dapat menghapuskan %s secara kekal" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "" - -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" +msgstr "Tidak dapat memulihkan %s" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Ralat" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" +#: lib/trashbin.php:815 lib/trashbin.php:817 +msgid "restored" +msgstr "dipulihkan" -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" +#: templates/index.php:8 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "Tiada apa disini. Tong sampah anda kosong!" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:22 msgid "Name" msgstr "Nama" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" -msgstr "" - -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" -msgstr "" +msgstr "Pulihkan" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Dihapuskan" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Padam" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "" +msgstr "Fail Dihapus" diff --git a/l10n/ms_MY/files_versions.po b/l10n/ms_MY/files_versions.po index e18c5a6cab02cd5296f33eb7d7de9043e9ebfdb8..af02e6b68661285f1d90250ff4c1bdb9e3d73886 100644 --- a/l10n/ms_MY/files_versions.po +++ b/l10n/ms_MY/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Puretech , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-11 05:45-0500\n" +"PO-Revision-Date: 2013-11-09 13:30+0000\n" +"Last-Translator: Puretech \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,24 +21,24 @@ msgstr "" #: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "Tidak dapat kembalikan: %s" -#: js/versions.js:7 +#: js/versions.js:14 msgid "Versions" -msgstr "" +msgstr "Versi" -#: js/versions.js:53 +#: js/versions.js:60 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "Gagal kembalikan {file} ke semakan {timestamp}." -#: js/versions.js:79 +#: js/versions.js:86 msgid "More versions..." -msgstr "" +msgstr "Lagi versi..." -#: js/versions.js:116 +#: js/versions.js:123 msgid "No other versions available" -msgstr "" +msgstr "Tiada lagi versi lain" -#: js/versions.js:149 +#: js/versions.js:154 msgid "Restore" -msgstr "" +msgstr "Pulihkan" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 2d0d010262befec2b7ad3b17b447dca4240ace9d..73ab323519c295cfeaa6e65a57563d8538729365 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,314 +17,313 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Bantuan" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Peribadi" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Tetapan" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Pengguna" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Perkhidmatan web di bawah kawalan anda" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Ralat pengesahan" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Fail-fail" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Teks" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index c144cf2096c142534f47654b790cb2cfa740548e..cf43b411e4b8b873e0f5ca41f1c8c39ddee91c63 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "Ralat pengesahan" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Nyahaktif" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Aktif" @@ -129,31 +129,31 @@ msgstr "Aktif" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Ralat" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Kemaskini" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Kumpulan" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Padam" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "_nama_bahasa_" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "Amaran keselamatan" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "Log" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Tahap Log" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Lanjutan" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 403d5ac2ff3d13b628d0ea8a1fd898579716f1df..567a9d10bb608d34d7dcd6a0e4b10dd75932b877 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,423 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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 "Pemadaman gagal" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Ralat" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Simpan" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Bantuan" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Kata laluan" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Kembali" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +457,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +476,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +502,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Bantuan" diff --git a/l10n/ms_MY/user_webdavauth.po b/l10n/ms_MY/user_webdavauth.po index fb3965289328f903282910c82b41820209581b5d..da9cf299c67209b296dd51147b167a0dfa99bec8 100644 --- a/l10n/ms_MY/user_webdavauth.po +++ b/l10n/ms_MY/user_webdavauth.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Puretech , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-11 05:45-0500\n" +"PO-Revision-Date: 2013-11-09 14:10+0000\n" +"Last-Translator: Puretech \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +20,15 @@ msgstr "" #: templates/settings.php:3 msgid "WebDAV Authentication" -msgstr "" +msgstr "Pengesahan " #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Alamat:" #: 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 "" +msgstr "Butiran pengguna akan dihantar ke alamat ini. Plugin ini memeriksa maklum balas dan akan mentafsir kod status HTTP 401 dan 403 sebagai butiran tidak sah, dan semua maklum balas lain sebagai butiran yang sah." diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index f2f4b06658f0553a551d2790b3840cbe6d8e5d77..2b5a7020a443f4cca528fcdc346db6d04f04ade2 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,14 @@ msgstr "" "Language: my_MM\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "ထည့်ရန်ခေါင်းစဉ်မရှိဘူးလား" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "ဖျက်ရန်အတွက်ခေါင်းစဉ်မရွေးထားပါ" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -186,55 +148,55 @@ msgstr "နိုဝင်ဘာ" msgid "December" msgstr "ဒီဇင်ဘာ" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "ယနေ့" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "မနေ့က" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "မနှစ်က" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "နှစ် အရင်က" @@ -301,155 +263,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" +#: js/share.js:213 +msgid "Share with user or group …" msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "စကားဝှက်" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "သက်တမ်းကုန်ဆုံးမည့်ရက်သတ်မှတ်မည်" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "သက်တမ်းကုန်ဆုံးမည့်ရက်" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "အီးမေးလ်ဖြင့်ဝေမျှမည် -" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "ပြန်လည်ဝေမျှခြင်းခွင့်မပြုပါ" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "ပြင်ဆင်နိုင်" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "ဖန်တီးမည်" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "ဖျက်မည်" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "ဝေမျှမည်" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "စကားဝှက်ဖြင့်ကာကွယ်ထားသည်" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "အီးမေးလ်မှတစ်ဆင့် သင်၏စကားဝှက်ကို ပြန်ဖော်ရန်အတွက် Link တစ်ခုလက်ခံရရှိပါလိမ့်မယ်။" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "သုံးစွဲသူအမည်" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -498,12 +488,12 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" msgstr "" #: lostpassword/templates/resetpassword.php:4 @@ -530,7 +520,7 @@ msgstr "" msgid "Users" msgstr "သုံးစွဲသူ" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Apps" @@ -542,6 +532,34 @@ msgstr "အက်ဒမင်" 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 "" @@ -558,108 +576,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "ပေါင်းထည့်" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "လုံခြုံရေးသတိပေးချက်" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "အက်ဒမင်အကောင့်တစ်ခုဖန်တီးမည်" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "အဆင့်မြင့်" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "အချက်အလက်ဖိုလ်ဒါလ်" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Database သုံးစွဲသူ" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Database စကားဝှက်" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Database အမည်" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "တပ်ဆင်ခြင်းပြီးပါပြီ။" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -677,19 +706,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "သင်၏စကားဝှက်ပျောက်သွားပြီလား။" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "မှတ်မိစေသည်" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "ဝင်ရောက်ရန်" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -697,10 +734,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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/my_MM/files.po b/l10n/my_MM/files.po index a143e196594eac6d7cc8e3f63acdac8f5bac7dd2..09849cace993e8e38e93696fec2ab151c2cd8802 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06: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" @@ -27,217 +27,283 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "ဖိုင်များ" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" msgstr "" -#: js/fileactions.js:119 -msgid "Share" +#: js/file-upload.js:595 +msgid "Could not create file" msgstr "" -#: js/fileactions.js:131 -msgid "Delete permanently" +#: js/file-upload.js:611 +msgid "Could not create folder" msgstr "" -#: js/fileactions.js:197 -msgid "Rename" +#: js/file-upload.js:661 +msgid "Error fetching URL" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 -msgid "Pending" +#: js/fileactions.js:125 +msgid "Share" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/fileactions.js:137 +msgid "Delete permanently" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" +#: js/fileactions.js:194 +msgid "Rename" msgstr "" -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "" @@ -273,65 +339,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "ဒေါင်းလုတ်" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/my_MM/files_encryption.po b/l10n/my_MM/files_encryption.po index 9aedac17d427360d99923b66c7a329ed5ba0754c..5a9f5aa5ca4f12913155214212c80f4ea215ecb2 100644 --- a/l10n/my_MM/files_encryption.po +++ b/l10n/my_MM/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:44 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 -msgid "Saving..." +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." +#: js/settings-admin.js:13 +msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index 6b5c6c97692d1e1f957f0a504b975f4e0d986b4f..c4e553f89a6098b8776e7a29d1ae543498793100 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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/authenticate.php:9 -msgid "Submit" -msgstr "ထည့်သွင်းမည်" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "ဒေါင်းလုတ်" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/my_MM/files_trashbin.po b/l10n/my_MM/files_trashbin.po index 0611fe45b555f8ea10a8749fc34243defa93c792..dee62ffcf4ea02f6d3f1f5a4b04c5491e82388ad 100644 --- a/l10n/my_MM/files_trashbin.po +++ b/l10n/my_MM/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -27,53 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:814 lib/trashbin.php:816 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:23 msgid "Name" msgstr "" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:26 templates/index.php:28 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:34 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index a5faefbbddf071d487dead4ccb4c9a06e33a0f59..4f07303819e3f869bbe0b35b85f7333d4846a99b 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -17,314 +17,313 @@ msgstr "" "Language: my_MM\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "အကူအညီ" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "သုံးစွဲသူ" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "အက်ဒမင်" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP ဒေါင်းလုတ်ကိုပိတ်ထားသည်" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "ဖိုင်များသည် တစ်ခုပြီး တစ်ခုဒေါင်းလုတ်ချရန်လိုအပ်သည်" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "ဖိုင်သို့ပြန်သွားမည်" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "zip ဖိုင်အဖြစ်ပြုလုပ်ရန် ရွေးချယ်ထားသောဖိုင်များသည် အရမ်းကြီးလွန်းသည်" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "ခွင့်ပြုချက်မအောင်မြင်" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "ဖိုင်များ" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "စာသား" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "ပုံရိပ်များ" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "\"%s\"ခေါင်းစဉ်ကို ရှာမတွေ့ပါ" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "ယနေ့" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "မနေ့က" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "မနှစ်က" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "နှစ် အရင်က" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "\"%s\"ခေါင်းစဉ်ကို ရှာမတွေ့ပါ" diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index 144af1c4211039ac3784bdb4300be871c0b15ab9..7425d66c355fff862ae381411759e48866d80043 100644 --- a/l10n/my_MM/settings.po +++ b/l10n/my_MM/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "ခွင့်ပြုချက်မအောင်မြင်" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,31 +129,31 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "လုံခြုံရေးသတိပေးချက်" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/my_MM/user_ldap.po b/l10n/my_MM/user_ldap.po index cb30d0ff0f7fa010808b254c25917dc45478a7c9..b544104a5af4d8992829829f78a3840c9fd88593 100644 --- a/l10n/my_MM/user_ldap.po +++ b/l10n/my_MM/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-27 17:09+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" @@ -25,314 +25,423 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "" -#: js/settings.js:141 +#: js/settings.js:777 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:786 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:795 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:812 js/settings.js:821 +msgid "Select groups" +msgstr "" + +#: js/settings.js:815 js/settings.js:824 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:818 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:845 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:852 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:861 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:862 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" + +#: lib/wizard.php:779 lib/wizard.php:791 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:952 +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 "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "စကားဝှက်" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +457,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +476,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +502,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "အကူအညီ" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index b9a4a85d03bcbaf3e4729567c50d8529197be522..0260c4f4c8e3594c254f6fb73bc8a391bc9e1f47 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# onionhead , 2013 # Stein-Aksel Basma , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 07:10+0000\n" +"Last-Translator: onionhead \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,14 +19,15 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s delte »%s« med deg" -#: ajax/share.php:227 -msgid "group" -msgstr "gruppe" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -52,56 +54,17 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Ingen kategorier å legge til?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Denne kategorien finnes allerede: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Ingen kategorier merket for sletting." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Ukjent filtype" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Ugyldig bilde" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" @@ -187,59 +150,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n minutt siden" +msgstr[1] "%n minutter siden" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n time siden" +msgstr[1] "%n timer siden" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "i dag" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "i går" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n dag siden" +msgstr[1] "%n dager siden" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "forrige måned" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n dag siden" +msgstr[1] "%n dager siden" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "måneder siden" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "forrige år" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "år siden" @@ -293,7 +256,7 @@ msgstr "Avbryt" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Fortsett" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" @@ -307,155 +270,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Feil" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Delt" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Del" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Feil" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Feil under deling" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Delt med deg av {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Del med" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "Del med link" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Passordbeskyttet" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Passord" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Send" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Set utløpsdato" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Utløpsdato" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Del på epost" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Ingen personer funnet" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "gruppe" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Avslutt deling" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "kan endre" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "tilgangskontroll" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "opprett" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "oppdater" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "slett" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "del" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Passordbeskyttet" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Kan ikke sette utløpsdato" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Sender..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "E-post sendt" +#: js/share.js:769 +msgid "Warning" +msgstr "Advarsel" + +#: 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 "Slett" + +#: js/tags.js:31 +msgid "Add" +msgstr "Legg til" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Du burde motta detaljer om å tilbakestille passordet ditt via epost." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Brukernavn" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -504,13 +495,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Anmod tilbakestilling" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -536,7 +527,7 @@ msgstr "Personlig" msgid "Users" msgstr "Brukere" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Apper" @@ -548,6 +539,34 @@ msgstr "Admin" msgid "Help" msgstr "Hjelp" +#: 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 "Tilgang nektet" @@ -564,108 +583,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hei der.⏎\n⏎\nVille bare gjøre deg oppmerksom på at %s delte %s med deg.⏎\nVis den: %s⏎\n⏎\nVI ses!" +msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Rediger kategorier" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Legg til" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Sikkerhetsadvarsel" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "opprett en administrator-konto" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Avansert" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "vil bli brukt" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Databasebruker" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Databasenavn" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Database tabellområde" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Databasevert" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Fullfør oppsetting" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Ferdigstiller ..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Logg ut" @@ -683,19 +713,27 @@ msgstr "Hvis du ikke har endret passordet ditt nylig kan kontoen din være kompr msgid "Please change your password to secure your account again." msgstr "Vennligst skift passord for å gjøre kontoen din sikker igjen." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Mistet passordet ditt?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "husk" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Logg inn" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -703,10 +741,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +msgstr "" + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." msgstr "" -#: templates/update.php:3 +#: 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 "Oppdaterer ownCloud til versjon %s, dette kan ta en stund." + +#: 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/nb_NO/files.po b/l10n/nb_NO/files.po index e5f3ebc6c84e2f35158cea78d6a56a467d0bfa60..b0f0975c6bae1b000d570bb86ff1cb2fc8d6c76f 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -30,220 +30,286 @@ msgstr "Kan ikke flytte %s - En fil med samme navn finnes allerede" msgid "Could not move %s" msgstr "Kunne ikke flytte %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Filnavn kan ikke være tomt." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Kunne ikke sette opplastingskatalog." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Ugyldig nøkkel" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer ble lastet opp. Ukjent feil." -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Pust ut, ingen feil. Filen ble lastet opp problemfritt" -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Filen du prøvde å laste opp ble kun delvis lastet opp" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Ingen filer ble lastet opp" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Mangler midlertidig mappe" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Klarte ikke å skrive til disk" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Ikke nok lagringsplass" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Ugyldig katalog." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Filer" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Ikke nok lagringsplass" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Opplasting avbrutt." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "URL-en kan ikke være tom." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Ugyldig mappenavn. Bruk av \"Shared\" er reservert av ownCloud." +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Feil" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} finnes allerede" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "Del" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Slett permanent" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Gi nytt navn" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Ventende" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} finnes allerede" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "erstatt" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "foreslå navn" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "avbryt" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "erstattet {new_name} med {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "angre" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laster opp %n fil" msgstr[1] "Laster opp %n filer" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' er et ugyldig filnavn." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Filnavn kan ikke være tomt." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ugyldig navn, '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' er ikke tillatt." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Lagringsplass er oppbrukt, filer kan ikke lenger oppdateres eller synkroniseres!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Lagringsplass er nesten brukt opp ([usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Nedlastingen din klargjøres. Hvis filene er store kan dette ta litt tid." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Feil" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Navn" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Størrelse" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Endret" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "Kunne ikke gi nytt navn til %s" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Last opp" @@ -279,65 +345,69 @@ msgstr "Maksimal størrelse på ZIP-filer" msgid "Save" msgstr "Lagre" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Ny" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "Tekstfil" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Ny mappe" + +#: templates/index.php:10 msgid "Folder" msgstr "Mappe" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Fra link" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Slettet filer" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Du har ikke skrivetilgang her." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last opp noe!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Last ned" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Avslutt deling" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Slett" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Filen er for stor" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filene du prøver å laste opp er for store for å laste opp til denne serveren." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Skanner filer, vennligst vent." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Pågående skanning" diff --git a/l10n/nb_NO/files_encryption.po b/l10n/nb_NO/files_encryption.po index 1aea5d92addcd6fc4a4a1c4b0ea3f16e5477ecfe..4db89c03c2304c918c1145a07681bea20c1d6a6c 100644 --- a/l10n/nb_NO/files_encryption.po +++ b/l10n/nb_NO/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:41 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Lagrer..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Kryptering" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index b9d4ea69c8bcc0a04e22bb6f8d3405c533511016..3e778cb6ab485c7d028aa00a409bdd48f2935fb8 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Tilgang innvilget" @@ -26,7 +26,7 @@ msgstr "Tilgang innvilget" msgid "Error configuring Dropbox storage" msgstr "Feil ved konfigurering av Dropbox-lagring" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Gi tilgang" @@ -34,24 +34,24 @@ msgstr "Gi tilgang" msgid "Please provide a valid Dropbox app key and secret." msgstr "Vær vennlig å oppgi gyldig Dropbox appnøkkel og hemmelighet." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Feil med konfigurering av Google Drive" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Advarsel: \"smbclient\" er ikke installert. Kan ikke montere CIFS/SMB mapper. Ta kontakt med din systemadministrator for å installere det." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Advarsel: FTP støtte i PHP er ikke slått på eller innstallert. Kan ikke montere FTP mapper. Ta kontakt med din systemadministrator for å innstallere det." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 02cbd3e982f2892ff3ce1e5fde75910ce3f7fdac..cf4943e47fa6725cb0df4a782ad941bb836af7c0 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Passordet er feil. Prøv på nytt." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Passord" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Send inn" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -54,28 +54,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappen %s med deg" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte filen %s med deg" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Last ned" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Last opp" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Forhåndsvisning ikke tilgjengelig for" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 8a0267ad7cb2ad694d4ca7a9a92be27c9b62213c..5bb60afa538d1625b2938be479da8b615e9ef2f4 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-17 22:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: 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" @@ -28,55 +28,31 @@ msgstr "Kunne ikke slette %s fullstendig" msgid "Couldn't restore %s" msgstr "Kunne ikke gjenopprette %s" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "utfør gjenopprettings operasjon" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Feil" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "slett filer permanent" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Slett permanent" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Navn" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "Slettet" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n mapper" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "%n filer" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Ingenting her. Søppelkassen din er tom!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Navn" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Gjenopprett" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Slettet" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Slett" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 1fa0543983ba9b71d433a2df5ac59447b510d2d9..034978c5f134d69c9faf5a8fcf046cdbbb145fb0 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 07:10+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" @@ -17,318 +17,317 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Hjelp" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Personlig" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Innstillinger" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Brukere" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Ukjent filtype" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Ugyldig bilde" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "web tjenester du kontrollerer" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP-nedlasting av avslått" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Filene må lastes ned en om gangen" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Tilbake til filer" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "De valgte filene er for store til å kunne generere ZIP-fil" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Applikasjon er ikke påslått" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Autentikasjonsfeil" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Symbol utløpt. Vennligst last inn siden på nytt." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Filer" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Tekst" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Bilder" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din nettservev er ikke konfigurert korrekt for filsynkronisering. WebDAV ser ut til å ikke funkere." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Vennligst dobbelsjekk installasjonsguiden." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Kunne ikke finne kategori \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "sekunder siden" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n minutter siden" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n timer siden" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "i dag" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "i går" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n dager siden" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "forrige måned" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n dager siden" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "forrige år" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "år siden" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Kunne ikke finne kategori \"%s\"" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index fe0d19856afe9337880e373beba5231e1b6f478f..39604e80dc2dcdb001cfd0d1cadfc51bfe846ee9 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+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" @@ -29,12 +29,12 @@ msgid "Authentication error" msgstr "Autentiseringsfeil" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Ditt visningsnavn er blitt endret." +msgid "Your full name has been changed." +msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Kunne ikke endre visningsnavn" +msgid "Unable to change full name" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -119,11 +119,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "Oppdater til {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Slå avBehandle " -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Aktiver" @@ -131,31 +131,31 @@ msgstr "Aktiver" msgid "Please wait...." msgstr "Vennligst vent..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Oppdaterer..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Feil ved oppdatering av app" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Feil" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Oppdater" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Oppdatert" @@ -163,7 +163,7 @@ msgstr "Oppdatert" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -183,44 +183,75 @@ msgstr "angre" msgid "Unable to remove user" msgstr "Kunne ikke slette bruker" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupper" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Gruppeadministrator" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Slett" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "legg til gruppe" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "Oppgi et gyldig brukernavn" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "Feil ved oppretting av bruker" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "Oppgi et gyldig passord" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "Sikkerhetsadvarsel" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -229,48 +260,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Installasjonsadvarsel" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Modulen 'fileinfo' mangler" -#: templates/admin.php:47 +#: templates/admin.php:68 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:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "Språk virker ikke" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Ingen internettilkopling" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -279,110 +330,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Utfør en oppgave med hver side som blir lastet" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Aktiver API for Deling" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Tillat apps å bruke API for Deling" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Tillat lenker" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Tillat brukere å dele filer med lenker" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "TIllat videredeling" -#: templates/admin.php:153 +#: templates/admin.php:196 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:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Tillat brukere å dele med alle" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Tillat kun deling med andre brukere i samme gruppe" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "Sikkerhet" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Tving HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "Logg" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Loggnivå" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Mer" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Mindre" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versjon" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Bruk denne adressen for å få tilgang til filene dine via WebDAV" +"Use this address to access your Files via " +"WebDAV" +msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Kryptering" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -574,6 +637,10 @@ msgstr "" msgid "Default Storage" msgstr "Standard lager" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Ubegrenset" @@ -591,8 +658,8 @@ msgid "Storage" msgstr "Lager" #: templates/users.php:108 -msgid "change display name" -msgstr "endre visningsnavn" +msgid "change full name" +msgstr "" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 52aa1d44d42d2cc0323aec63e1ab4c58a7c87b72..ca55fe72a9ac76872a8e3b671468137f50d06834 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 07:10+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" @@ -25,314 +25,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "Klarte ikke å slette tjener-konfigurasjonen." -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Konfigurasjonen er i orden og tilkoblingen skal være etablert!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Konfigurasjonen er i orden, men Bind mislyktes. Vennligst sjekk tjener-konfigurasjonen og påloggingsinformasjonen." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "Konfigurasjonen er ikke i orden. Vennligst se ownClouds logfil for flere detaljer." +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 "" -#: js/settings.js:66 +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 msgid "Deletion failed" msgstr "Sletting mislyktes" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Hent innstillinger fra tidligere tjener-konfigurasjon?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Behold innstillinger?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Kan ikke legge til tjener-konfigurasjon" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Suksess" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Feil" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Velg grupper" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Tilkoblingstest lyktes" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Tilkoblingstest mislyktes" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Er du sikker på at du vil slette aktiv tjener-konfigurasjon?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Bekreft sletting" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" msgstr "" -#: templates/settings.php:12 +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Lagre" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Hjelp" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Warning: PHP LDAP modulen er ikke installert, hjelperen vil ikke virke. Vennligst be din system-administrator om å installere den." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Tjener-konfigurasjon" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +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 "Legg til tjener-konfigurasjon" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Tjener" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Du kan utelate protokollen, men du er påkrevd å bruke SSL. Deretter starte med ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Base DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "En hoved DN pr. linje" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Du kan spesifisere Base DN for brukere og grupper under Avansert fanen" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Port" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "Bruker DN" -#: templates/settings.php:46 +#: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "DN nummeret til klienten som skal bindes til, f.eks. uid=agent,dc=example,dc=com. For anonym tilgang, la DN- og passord-feltet stå tomt." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Passord" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "For anonym tilgang, la DN- og passord-feltet stå tomt." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Brukerpålogging filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "En hoved DN pr. linje" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Du kan spesifisere Base DN for brukere og grupper under Avansert fanen" + +#: templates/part.wizard-userfilter.php:4 #, php-format -msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +msgid "Limit the access to %s to users meeting this criteria:" msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Brukerliste filter" - -#: templates/settings.php:58 +#: templates/part.wizard-userfilter.php:31 +#, php-format msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Gruppefilter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Tilbake" -#: templates/settings.php:62 +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Fortsett" + +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Warning: PHP LDAP modulen er ikke installert, hjelperen vil ikke virke. Vennligst be din system-administrator om å installere den." + +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Konfigurasjon aktiv" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Når ikke huket av så vil denne konfigurasjonen bli hoppet over." -#: templates/settings.php:69 -msgid "Port" -msgstr "Port" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Sikkerhetskopierings (Replica) vert" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Bruk TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Case-insensitiv LDAP tjener (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Slå av SSL-sertifikat validering" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "i sekunder. En endring tømmer bufferen." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Vis brukerens navnfelt" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Hovedbruker tre" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "En Bruker Base DN pr. linje" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Vis gruppens navnfelt" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Hovedgruppe tre" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "En gruppe hoved-DN pr. linje" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "gruppe-medlem assosiasjon" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "i bytes" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "La stå tom for brukernavn (standard). Ellers, spesifiser en LDAP/AD attributt." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Hjelp" diff --git a/l10n/nds/core.po b/l10n/nds/core.po new file mode 100644 index 0000000000000000000000000000000000000000..14b1f47bfbdbac012783b50197c69d4e0b302065 --- /dev/null +++ b/l10n/nds/core.po @@ -0,0 +1,775 @@ +# 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: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-08 03:26+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nds\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:119 ajax/share.php:198 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: ajax/share.php:169 +#, 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 "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +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:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:33 +msgid "Monday" +msgstr "" + +#: js/config.php:34 +msgid "Tuesday" +msgstr "" + +#: js/config.php:35 +msgid "Wednesday" +msgstr "" + +#: js/config.php:36 +msgid "Thursday" +msgstr "" + +#: js/config.php:37 +msgid "Friday" +msgstr "" + +#: js/config.php:38 +msgid "Saturday" +msgstr "" + +#: js/config.php:43 +msgid "January" +msgstr "" + +#: js/config.php:44 +msgid "February" +msgstr "" + +#: js/config.php:45 +msgid "March" +msgstr "" + +#: js/config.php:46 +msgid "April" +msgstr "" + +#: js/config.php:47 +msgid "May" +msgstr "" + +#: js/config.php:48 +msgid "June" +msgstr "" + +#: js/config.php:49 +msgid "July" +msgstr "" + +#: js/config.php:50 +msgid "August" +msgstr "" + +#: js/config.php:51 +msgid "September" +msgstr "" + +#: js/config.php:52 +msgid "October" +msgstr "" + +#: js/config.php:53 +msgid "November" +msgstr "" + +#: js/config.php:54 +msgid "December" +msgstr "" + +#: js/js.js:387 +msgid "Settings" +msgstr "" + +#: js/js.js:858 +msgid "seconds ago" +msgstr "" + +#: js/js.js:859 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:860 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:861 +msgid "today" +msgstr "" + +#: js/js.js:862 +msgid "yesterday" +msgstr "" + +#: js/js.js:863 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:864 +msgid "last month" +msgstr "" + +#: js/js.js:865 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:866 +msgid "months ago" +msgstr "" + +#: js/js.js:867 +msgid "last year" +msgstr "" + +#: js/js.js:868 +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/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:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 +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:187 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:189 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:219 +msgid "Share link" +msgstr "" + +#: js/share.js:222 +msgid "Password protect" +msgstr "" + +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +msgid "Password" +msgstr "" + +#: js/share.js:229 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:233 +msgid "Email link to person" +msgstr "" + +#: js/share.js:234 +msgid "Send" +msgstr "" + +#: js/share.js:239 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:240 +msgid "Expiration date" +msgstr "" + +#: js/share.js:275 +msgid "Share via email:" +msgstr "" + +#: js/share.js:278 +msgid "No people found" +msgstr "" + +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:375 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:397 +msgid "Unshare" +msgstr "" + +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 +msgid "can edit" +msgstr "" + +#: js/share.js:410 +msgid "access control" +msgstr "" + +#: js/share.js:413 +msgid "create" +msgstr "" + +#: js/share.js:416 +msgid "update" +msgstr "" + +#: js/share.js:419 +msgid "delete" +msgstr "" + +#: js/share.js:422 +msgid "share" +msgstr "" + +#: js/share.js:694 +msgid "Password protected" +msgstr "" + +#: js/share.js:707 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:719 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:734 +msgid "Sending ..." +msgstr "" + +#: js/share.js:745 +msgid "Email sent" +msgstr "" + +#: js/share.js:769 +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 ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:62 +#, php-format +msgid "%s password reset" +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.
    If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
    If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
    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:52 +#: templates/login.php:31 +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 "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:111 +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 documentation." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:67 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:74 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:86 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 +msgid "will be used" +msgstr "" + +#: templates/installation.php:149 +msgid "Database user" +msgstr "" + +#: templates/installation.php:156 +msgid "Database password" +msgstr "" + +#: templates/installation.php:161 +msgid "Database name" +msgstr "" + +#: templates/installation.php:169 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:176 +msgid "Database host" +msgstr "" + +#: templates/installation.php:185 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:72 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:44 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:49 +msgid "remember" +msgstr "" + +#: templates/login.php:52 +msgid "Log in" +msgstr "" + +#: templates/login.php:58 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    " +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/nds/files.po b/l10n/nds/files.po new file mode 100644 index 0000000000000000000000000000000000000000..0923a19e994c8787625efae7d1e8a8a36df2eb20 --- /dev/null +++ b/l10n/nds/files.po @@ -0,0 +1,413 @@ +# 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: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06: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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nds\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:27 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:64 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:71 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:72 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:74 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:75 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:76 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:77 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:78 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:96 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:127 ajax/upload.php:154 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:144 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:172 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 +msgid "Files" +msgstr "" + +#: js/file-upload.js:228 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:239 +msgid "Not enough space available" +msgstr "" + +#: js/file-upload.js:306 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:344 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:436 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 +msgid "Share" +msgstr "" + +#: js/fileactions.js:137 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:194 +msgid "Rename" +msgstr "" + +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" +msgstr "" + +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:539 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:539 +msgid "undo" +msgstr "" + +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:617 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:828 js/filelist.js:866 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:72 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:81 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:93 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:97 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:349 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error moving file" +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 +msgid "Name" +msgstr "" + +#: js/files.js:614 templates/index.php:68 +msgid "Size" +msgstr "" + +#: js/files.js:615 templates/index.php:70 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:11 templates/index.php:16 +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:5 +msgid "New" +msgstr "" + +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 +msgid "Text file" +msgstr "" + +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From link" +msgstr "" + +#: templates/index.php:29 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:34 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:45 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:62 +msgid "Download" +msgstr "" + +#: templates/index.php:73 templates/index.php:74 +msgid "Delete" +msgstr "" + +#: templates/index.php:86 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:88 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:93 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:96 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/nds/files_encryption.po b/l10n/nds/files_encryption.po new file mode 100644 index 0000000000000000000000000000000000000000..868191ccce7f5c3a78d371ab2313d23c6b725dd3 --- /dev/null +++ b/l10n/nds/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: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nds\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:59 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:60 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "" + +#: hooks/hooks.php:273 +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/settings-admin.js:13 +msgid "Saving..." +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/nds/files_external.po b/l10n/nds/files_external.po new file mode 100644 index 0000000000000000000000000000000000000000..ed547a97ccc2e571796bf57f361c07ae45db384b --- /dev/null +++ b/l10n/nds/files_external.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-27 02:28-0400\n" +"PO-Revision-Date: 2013-10-24 10:48+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nds\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:86 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:42 js/google.js:121 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:453 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:457 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:460 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/nds/files_sharing.po b/l10n/nds/files_sharing.po new file mode 100644 index 0000000000000000000000000000000000000000..4b81b2ed0553d20d67d6847e3f0593353cb0ef1d --- /dev/null +++ b/l10n/nds/files_sharing.po @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-27 02:28-0400\n" +"PO-Revision-Date: 2013-10-24 10:48+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nds\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: 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 "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:20 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:28 templates/public.php:94 +msgid "Download" +msgstr "" + +#: templates/public.php:45 templates/public.php:48 +msgid "Upload" +msgstr "" + +#: templates/public.php:58 +msgid "Cancel upload" +msgstr "" + +#: templates/public.php:91 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:98 +msgid "Direct link" +msgstr "" diff --git a/l10n/nds/files_trashbin.po b/l10n/nds/files_trashbin.po new file mode 100644 index 0000000000000000000000000000000000000000..3118b3b06d7f87708afae8021861c633c760b370 --- /dev/null +++ b/l10n/nds/files_trashbin.po @@ -0,0 +1,60 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-27 02:28-0400\n" +"PO-Revision-Date: 2013-10-24 10:48+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nds\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:42 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:42 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +msgid "Error" +msgstr "" + +#: lib/trashbin.php:814 lib/trashbin.php:816 +msgid "restored" +msgstr "" + +#: templates/index.php:8 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:22 +msgid "Name" +msgstr "" + +#: templates/index.php:25 templates/index.php:27 +msgid "Restore" +msgstr "" + +#: templates/index.php:33 +msgid "Deleted" +msgstr "" + +#: templates/index.php:36 templates/index.php:37 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/nds/files_versions.po b/l10n/nds/files_versions.po new file mode 100644 index 0000000000000000000000000000000000000000..661a70cf95093b443271d7ed9f64f16ff3959faa --- /dev/null +++ b/l10n/nds/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: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-27 02:28-0400\n" +"PO-Revision-Date: 2013-10-24 10:48+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nds\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:86 +msgid "More versions..." +msgstr "" + +#: js/versions.js:123 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:154 +msgid "Restore" +msgstr "" diff --git a/l10n/nds/lib.po b/l10n/nds/lib.po new file mode 100644 index 0000000000000000000000000000000000000000..8fe55cbf5018fdeeb6ab1f8677bcb539beacc99f --- /dev/null +++ b/l10n/nds/lib.po @@ -0,0 +1,333 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nds\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: private/app.php:243 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:255 +msgid "No app name specified" +msgstr "" + +#: private/app.php:360 +msgid "Help" +msgstr "" + +#: private/app.php:373 +msgid "Personal" +msgstr "" + +#: private/app.php:384 +msgid "Settings" +msgstr "" + +#: private/app.php:396 +msgid "Users" +msgstr "" + +#: private/app.php:409 +msgid "Admin" +msgstr "" + +#: private/app.php:873 +#, 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:34 +msgid "web services under your control" +msgstr "" + +#: private/files.php:66 private/files.php:98 +#, php-format +msgid "cannot open \"%s\"" +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:63 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:125 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:131 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:140 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:146 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:159 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:169 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:182 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:39 private/json.php:62 private/json.php:73 +msgid "Authentication error" +msgstr "" + +#: private/json.php:51 +msgid "Token expired. Please reload page." +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:24 +#: private/setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL 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:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#, 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL." +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:23 private/setup/postgresql.php:69 +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:195 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:196 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:131 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:132 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:133 +msgid "today" +msgstr "" + +#: private/template/functions.php:134 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:136 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:138 +msgid "last month" +msgstr "" + +#: private/template/functions.php:139 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:141 +msgid "last year" +msgstr "" + +#: private/template/functions.php:142 +msgid "years ago" +msgstr "" diff --git a/l10n/nds/settings.po b/l10n/nds/settings.po new file mode 100644 index 0000000000000000000000000000000000000000..a24c4c4aca62c6c9bb3f05f4f442db34c33cda94 --- /dev/null +++ b/l10n/nds/settings.po @@ -0,0 +1,668 @@ +# 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: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nds\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 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/apps.js:43 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +msgid "Disable" +msgstr "" + +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +msgid "Enable" +msgstr "" + +#: js/apps.js:71 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:125 +msgid "Updating...." +msgstr "" + +#: js/apps.js:128 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:128 +msgid "Error" +msgstr "" + +#: js/apps.js:129 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:132 +msgid "Updated" +msgstr "" + +#: js/personal.js:220 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:266 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/personal.js:287 +msgid "Saving..." +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:95 templates/users.php:26 templates/users.php:90 +#: templates/users.php:118 +msgid "Groups" +msgstr "" + +#: js/users.js:100 templates/users.php:92 templates/users.php:130 +msgid "Group Admin" +msgstr "" + +#: js/users.js:123 templates/users.php:170 +msgid "Delete" +msgstr "" + +#: js/users.js:284 +msgid "add group" +msgstr "" + +#: js/users.js:451 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:452 js/users.js:458 js/users.js:473 +msgid "Error creating user" +msgstr "" + +#: js/users.js:457 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:45 personal.php:46 +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:22 templates/admin.php:36 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:25 +#, 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:39 +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:50 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:53 +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:54 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:65 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:68 +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:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 +#, 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:118 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:121 +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:135 +msgid "Cron" +msgstr "" + +#: templates/admin.php:142 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:150 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:163 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:169 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:170 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:177 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:178 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:186 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:187 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:195 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:196 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:203 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:206 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 +msgid "Security" +msgstr "" + +#: templates/admin.php:234 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:236 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:242 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:254 +msgid "Log" +msgstr "" + +#: templates/admin.php:255 +msgid "Log level" +msgstr "" + +#: templates/admin.php:287 +msgid "More" +msgstr "" + +#: templates/admin.php:288 +msgid "Less" +msgstr "" + +#: templates/admin.php:294 templates/personal.php:173 +msgid "Version" +msgstr "" + +#: templates/admin.php:298 templates/personal.php:176 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:13 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:28 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:33 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:39 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:41 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +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 %s of the available %s" +msgstr "" + +#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +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:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:44 +msgid "New password" +msgstr "" + +#: templates/personal.php:46 +msgid "Change password" +msgstr "" + +#: templates/personal.php:58 templates/users.php:88 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:73 +msgid "Email" +msgstr "" + +#: templates/personal.php:75 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:76 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:86 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:91 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:93 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:94 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:95 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:97 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:101 +msgid "Abort" +msgstr "" + +#: templates/personal.php:102 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:110 templates/personal.php:111 +msgid "Language" +msgstr "" + +#: templates/personal.php:130 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:137 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:139 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "" + +#: templates/personal.php:150 +msgid "Encryption" +msgstr "" + +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:158 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:163 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:21 +msgid "Login Name" +msgstr "" + +#: templates/users.php:30 +msgid "Create" +msgstr "" + +#: templates/users.php:36 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:48 templates/users.php:148 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:66 templates/users.php:163 +msgid "Other" +msgstr "" + +#: templates/users.php:87 +msgid "Username" +msgstr "" + +#: templates/users.php:94 +msgid "Storage" +msgstr "" + +#: templates/users.php:108 +msgid "change full name" +msgstr "" + +#: templates/users.php:112 +msgid "set new password" +msgstr "" + +#: templates/users.php:143 +msgid "Default" +msgstr "" diff --git a/l10n/nds/user_ldap.po b/l10n/nds/user_ldap.po new file mode 100644 index 0000000000000000000000000000000000000000..9bb61ef276d0618bc254c83c4fa3cab5999c631c --- /dev/null +++ b/l10n/nds/user_ldap.po @@ -0,0 +1,513 @@ +# 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: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-27 17:09+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nds\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:37 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:40 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:44 +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:777 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:786 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:795 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:812 js/settings.js:821 +msgid "Select groups" +msgstr "" + +#: js/settings.js:815 js/settings.js:824 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:818 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:845 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:852 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:861 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:862 +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:779 lib/wizard.php:791 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:952 +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 "Limit the access to %s to groups meeting this criteria:" +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 "What attribute shall be used as login name:" +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 the access to %s to users meeting this 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 "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php: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:40 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:42 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:43 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:43 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:44 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:45 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:45 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:51 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:52 +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:53 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:54 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:55 +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:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:58 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:59 +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:60 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:60 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/nds/user_webdavauth.po b/l10n/nds/user_webdavauth.po new file mode 100644 index 0000000000000000000000000000000000000000..ae2cf068e7fe104ee379cef65063db4dc960b44c --- /dev/null +++ b/l10n/nds/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-27 02:28-0400\n" +"PO-Revision-Date: 2013-10-24 10:48+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nds\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/ne/core.po b/l10n/ne/core.po index 52425ae2ab0ee6b70872b56c062ad02900a06d8b..5fe329f3e9b2abc7fa523c2cfaaa05b04b0d72d1 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-08 03:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,14 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -190,55 +152,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "" @@ -306,155 +268,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" +#: js/share.js:213 +msgid "Share with user or group …" msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -503,12 +493,12 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" msgstr "" #: lostpassword/templates/resetpassword.php:4 @@ -535,7 +525,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "" @@ -547,6 +537,34 @@ msgstr "" 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 "" @@ -563,108 +581,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -682,19 +711,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -702,10 +739,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " msgstr "" -#: templates/update.php:3 +#: 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/ne/files.po b/l10n/ne/files.po index 99b4c5422106f83dcbcfedbd3a4448985dd2f962..0d44c7750faa3d24ee662ba9efcceeb2a86cfba0 100644 --- a/l10n/ne/files.po +++ b/l10n/ne/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06: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" @@ -27,220 +27,286 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" msgstr "" -#: js/fileactions.js:119 -msgid "Share" +#: js/file-upload.js:595 +msgid "Could not create file" msgstr "" -#: js/fileactions.js:131 -msgid "Delete permanently" +#: js/file-upload.js:611 +msgid "Could not create folder" msgstr "" -#: js/fileactions.js:197 -msgid "Rename" +#: js/file-upload.js:661 +msgid "Error fetching URL" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 -msgid "Pending" +#: js/fileactions.js:125 +msgid "Share" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/fileactions.js:137 +msgid "Delete permanently" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" +#: js/fileactions.js:194 +msgid "Rename" msgstr "" -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "" @@ -276,65 +342,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/ne/files_encryption.po b/l10n/ne/files_encryption.po index a30502e5bbf1c612dc533717bb703da4d0ed0be6..334bc328e2b5ecfb1f4cd495c7b55136f1a122ce 100644 --- a/l10n/ne/files_encryption.po +++ b/l10n/ne/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:44 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 -msgid "Saving..." +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." +#: js/settings-admin.js:13 +msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ne/files_sharing.po b/l10n/ne/files_sharing.po index 8f745e77bbe0250c330cd92d053959172cd6bf2e..2d9ef07ffd815a4d83406c04c6a4c17d65e4175e 100644 --- a/l10n/ne/files_sharing.po +++ b/l10n/ne/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-10-21 13:01-0400\n" +"PO-Revision-Date: 2013-10-21 17:02+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" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" + +#: templates/public.php:98 +msgid "Direct link" +msgstr "" diff --git a/l10n/ne/files_trashbin.po b/l10n/ne/files_trashbin.po index 06099b3a416256281e7f18ddf5091d331b9ab54a..d733415ed4d7c583d584605d9157efde8b4b2c51 100644 --- a/l10n/ne/files_trashbin.po +++ b/l10n/ne/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:814 lib/trashbin.php:816 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:23 msgid "Name" msgstr "" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:26 templates/index.php:28 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:34 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index a45524a68a8677f52883446785d8e65dc5236f99..bc3849b95dc1b8080342f2a0a30ed8daae43c7a4 100644 --- a/l10n/ne/lib.po +++ b/l10n/ne/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,317 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/ne/settings.po b/l10n/ne/settings.po index 855bab38ba26902b466ee5f9051fa943996da95d..e0f8135708a858f4e318414549b3675c8fa89b9d 100644 --- a/l10n/ne/settings.po +++ b/l10n/ne/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,31 +129,31 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/ne/user_ldap.po b/l10n/ne/user_ldap.po index 823ea6ee1a6a3e28877b896b893f250ddfcaa514..90edbef2af702573c07de55b0cf6a99f7423ed8a 100644 --- a/l10n/ne/user_ldap.po +++ b/l10n/ne/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-27 17:09+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" @@ -25,314 +25,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "" -#: js/settings.js:141 +#: js/settings.js:777 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:786 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:795 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:812 js/settings.js:821 +msgid "Select groups" +msgstr "" + +#: js/settings.js:815 js/settings.js:824 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:818 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:845 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:852 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:861 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:862 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:779 lib/wizard.php:791 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:952 +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 "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 1c2702b714dd2dd1679180f4163cf8d05f5ccf76..54f27a40f2c18e5406fbeb6aff4982049e9dda48 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,14 +20,15 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s deelde »%s« met jou" -#: ajax/share.php:227 -msgid "group" -msgstr "groep" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Kon geen e-mail sturen aan de volgende gebruikers: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -54,45 +55,6 @@ msgstr "Bestandscache bijgewerkt" msgid "... %d%% done ..." msgstr "... %d%% gereed ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Categorie type niet opgegeven." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Geen categorie om toe te voegen?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Deze categorie bestaat al: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Object type niet opgegeven." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID niet opgegeven." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Toevoegen van %s aan favorieten is mislukt." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Geen categorie geselecteerd voor verwijdering." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Verwijderen %s van favorieten is mislukt." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Geen afbeelding of bestand opgegeven" @@ -189,59 +151,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Instellingen" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minuten geleden" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n uur geleden" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "vandaag" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "gisteren" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dagen geleden" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "vorige maand" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n maanden geleden" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "vorig jaar" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "jaar geleden" @@ -272,22 +234,22 @@ msgstr "Fout bij laden berichtensjabloon: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{count} bestandsconflict" +msgstr[1] "{count} bestandsconflicten" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Een bestandsconflict" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Welke bestanden wilt u bewaren?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Als u beide versies selecteerde, zal het gekopieerde bestand een nummer aan de naam toegevoegd krijgen." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -295,169 +257,197 @@ msgstr "Annuleer" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Verder" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(alles geselecteerd)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} geselecteerd)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" +msgstr "Fout bij laden bestand bestaat al sjabloon" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Het object type is niet gespecificeerd." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Fout" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "De app naam is niet gespecificeerd." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Het vereiste bestand {file} is niet geïnstalleerd!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Gedeeld" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Delen" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Fout" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Fout tijdens het delen" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Fout tijdens het stoppen met delen" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Fout tijdens het veranderen van permissies" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Gedeeld met u en de groep {group} door {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Gedeeld met u door {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Deel met" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Delen met gebruiker of groep ..." -#: js/share.js:188 -msgid "Share with link" -msgstr "Deel met link" +#: js/share.js:219 +msgid "Share link" +msgstr "Deel link" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Wachtwoord beveiligd" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Wachtwoord" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Sta publieke uploads toe" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "E-mail link naar persoon" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Versturen" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Stel vervaldatum in" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Vervaldatum" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Deel via e-mail:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Geen mensen gevonden" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "groep" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Verder delen is niet toegestaan" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Gedeeld in {item} met {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Stop met delen" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "melden per e-mail" + +#: js/share.js:408 msgid "can edit" msgstr "kan wijzigen" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "toegangscontrole" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "creëer" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "bijwerken" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "verwijderen" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "deel" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Wachtwoord beveiligd" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Fout tijdens het verwijderen van de verval datum" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Fout tijdens het instellen van de vervaldatum" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Versturen ..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "E-mail verzonden" +#: js/share.js:769 +msgid "Warning" +msgstr "Waarschuwing" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Het object type is niet gespecificeerd." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Opgeven nieuw" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Verwijder" + +#: js/tags.js:31 +msgid "Add" +msgstr "Toevoegen" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Bewerken tags" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Fout bij laden dialoog sjabloon: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Geen tags geselecteerd voor verwijdering." + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "Herlaad deze pagina." + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "De link voor het resetten van je wachtwoord is verzonden naar je e-mailadres.
    Als je dat bericht niet snel ontvangen hebt, controleer dan uw spambakje.
    Als het daar ook niet is, vraag dan je beheerder om te helpen." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Aanvraag mislukt!
    Weet je zeker dat je gebruikersnaam en/of wachtwoord goed waren?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Je ontvangt een link om je wachtwoord opnieuw in te stellen via e-mail." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Gebruikersnaam" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -506,13 +496,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Je bestanden zijn versleuteld. Als je geen recoverykey hebt ingeschakeld is er geen manier om je data terug te krijgen indien je je wachtwoord reset!\nAls je niet weet wat te doen, neem dan alsjeblieft contact op met je administrator eer je doorgaat.\nWil je echt doorgaan?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Ja, ik wil mijn wachtwoord nu echt resetten" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Resetaanvraag" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Reset" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -538,7 +528,7 @@ msgstr "Persoonlijk" msgid "Users" msgstr "Gebruikers" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Apps" @@ -550,6 +540,34 @@ msgstr "Beheerder" msgid "Help" msgstr "Help" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "Fout bij laden tags" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "Tag bestaat al" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "Fout bij verwijderen tag(s)" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "Fout bij taggen" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "Fout bij ont-taggen" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "Fout bij favoriet maken" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "Fout bij verwijderen favorietstatus" + #: templates/403.php:12 msgid "Access forbidden" msgstr "Toegang verboden" @@ -566,108 +584,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hallo daar,\n\n%s deelde %s met jou.\nBekijk: %s\n\nVeel plezier!" +msgstr "Hallo daar,\n\neven een berichtje dat %s %s met u deelde.\nBekijk het: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Wijzig categorieën" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "De share vervalt op %s." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Toevoegen" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Proficiat!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Beveiligingswaarschuwing" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Je PHP-versie is kwetsbaar voor de NULL byte aanval (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Werk uw PHP installatie bij om %s veilig te kunnen gebruiken." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Er kon geen willekeurig nummer worden gegenereerd. Zet de PHP OpenSSL-extentie aan." -#: templates/installation.php:33 +#: 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 "Zonder random nummer generator is het mogelijk voor een aanvaller om de resettokens van wachtwoorden te voorspellen. Dit kan leiden tot het inbreken op uw account." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Je gegevensdirectory en bestanden zijn vermoedelijk bereikbaar vanaf het internet omdat het .htaccess-bestand niet werkt." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "Bekijk de documentatie voor Informatie over het correct configureren van uw server." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Maak een beheerdersaccount aan" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Geavanceerd" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Gegevensmap" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Configureer de database" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "zal gebruikt worden" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Gebruiker database" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Wachtwoord database" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Naam database" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Databaseserver" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Installatie afronden" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Afronden ..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "Deze applicatie heeft een werkend JavaScript nodig. activeer JavaScript en herlaad deze interface." + +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s is beschikbaar. Verkrijg meer informatie over het bijwerken." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Afmelden" @@ -685,19 +714,27 @@ msgstr "Als je je wachtwoord niet onlangs heeft aangepast, kan je account overge msgid "Please change your password to secure your account again." msgstr "Wijzig je wachtwoord zodat je account weer beveiligd is." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "Authenticatie bij de server mislukte!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Neem contact op met uw systeembeheerder." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Wachtwoord vergeten?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "onthoud gegevens" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Meld je aan" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Alternatieve inlogs" @@ -705,10 +742,37 @@ msgstr "Alternatieve inlogs" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Hallo daar,

    %s deelde »%s« met jou.
    Bekijk!

    Veel plezier!" +"href=\"%s\">View it!

    " +msgstr "Hallo daar,

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

    " + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "Deze ownCloud werkt momenteel in enkele gebruiker modus." + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "Dat betekent dat alleen beheerders deze installatie kunnen gebruiken." -#: templates/update.php:3 +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "Beem contact op met uw systeembeheerder als deze melding aanhoudt of plotseling verscheen." + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "Bedankt voor uw geduld." + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "Updaten ownCloud naar versie %s, dit kan even duren..." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "Deze ownCloud dienst wordt nu bijgewerkt, dat kan even duren." + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "Laad deze pagina straks opnieuw om verder te gaan met ownCloud." diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 68d1ce8e06bdea155bc011f62214f072eae3d725..bd5ede56598601e5c9159db12ddce53a97d4c2d8 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-23 08:30+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,220 +29,286 @@ msgstr "Kon %s niet verplaatsen - Er bestaat al een bestand met deze naam" msgid "Could not move %s" msgstr "Kon %s niet verplaatsen" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Bestandsnaam kan niet leeg zijn." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "De bestandsnaam mag geen \"/\" bevatten. Kies een andere naam." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "De naam %s bestaat al in map %s. Kies een andere naam." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "Geen geldige bron" + +#: ajax/newfile.php:86 +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:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Fout bij downloaden %s naar %s" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Fout bij creëren bestand" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "Mapnaam mag niet leeg zijn." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "De mapnaam mag geen \"/\" bevatten. Kies een andere naam." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Fout bij aanmaken map" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Kan upload map niet instellen." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Ongeldig Token" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Er was geen bestand geladen. Onbekende fout" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "De upload van het bestand is goedgegaan." -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Het bestand is gedeeltelijk geüpload" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Er is geen bestand geüpload" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Er ontbreekt een tijdelijke map" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Schrijven naar schijf mislukt" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Niet genoeg opslagruimte beschikbaar" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Upload mislukt, Kon geen bestandsinfo krijgen." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Upload mislukt. Kon ge-uploade bestand niet vinden" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Ongeldige directory." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Bestanden" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "Kan {filename} niet uploaden omdat het een map is of 0 bytes groot is" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Niet genoeg ruimte beschikbaar" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "" +msgstr "Kon het resultaat van de server niet terugkrijgen." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "URL kan niet leeg zijn." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "URL mag niet leeg zijn" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Ongeldige mapnaam. Gebruik van 'Gedeeld' is voorbehouden aan Owncloud zelf" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "in de home map 'Shared' is een gereserveerde bestandsnaam" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Fout" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} bestaat al" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Kon bestand niet creëren" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Kon niet creëren map" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Fout bij ophalen URL" -#: js/fileactions.js:119 +#: js/fileactions.js:125 msgid "Share" msgstr "Delen" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Verwijder definitief" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Hernoem" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "In behandeling" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} bestaat al" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "vervang" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Kon niet hernoemen bestand" -#: js/filelist.js:416 -msgid "suggest name" -msgstr "Stel een naam voor" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "annuleren" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "verving {new_name} met {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "ongedaan maken" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Fout bij verwijderen bestand." + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n mappen" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "%n bestanden" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} en {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n bestand aan het uploaden" msgstr[1] "%n bestanden aan het uploaden" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' is een ongeldige bestandsnaam." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Bestandsnaam kan niet leeg zijn." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Uw opslagruimte zit vol, Bestanden kunnen niet meer worden ge-upload of gesynchroniseerd!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Uw opslagruimte zit bijna vol ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "Crypto app is geactiveerd, maar uw sleutels werden niet geïnitialiseerd. Log uit en log daarna opnieuw in." + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "Ongeldige privésleutel voor crypto app. Werk het privésleutel wachtwoord bij in uw persoonlijke instellingen om opnieuw toegang te krijgen tot uw versleutelde bestanden." + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Encryptie is uitgeschakeld maar uw bestanden zijn nog steeds versleuteld. Ga naar uw persoonlijke instellingen om uw bestanden te decoderen." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Uw download wordt voorbereid. Dit kan enige tijd duren bij grote bestanden." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" -msgstr "" +msgstr "Fout bij verplaatsen bestand" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Fout" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Naam" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Grootte" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Aangepast" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Ongeldige mapnaam. Gebruik van 'Shared' is gereserveerd." + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s kon niet worden hernoemd" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Uploaden" @@ -278,65 +344,69 @@ msgstr "Maximale grootte voor ZIP bestanden" msgid "Save" msgstr "Bewaren" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nieuw" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "Nieuw tekstbestand" + +#: templates/index.php:8 msgid "Text file" msgstr "Tekstbestand" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Nieuwe map" + +#: templates/index.php:10 msgid "Folder" msgstr "Map" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Vanaf link" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Verwijderde bestanden" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "U hebt hier geen schrijfpermissies." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "U hebt geen toestemming om hier te uploaden of bestanden te maken" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Er bevindt zich hier niets. Upload een bestand!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Downloaden" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Stop met delen" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Verwijder" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Upload is te groot" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Bestanden worden gescand, even wachten." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Er wordt gescand" diff --git a/l10n/nl/files_encryption.po b/l10n/nl/files_encryption.po index b72cecc5040ea795aabf7d4a9e6799ebf2f616d6..ed6bb180e8a5f32e0cb419fce7ec009c822c2959 100644 --- a/l10n/nl/files_encryption.po +++ b/l10n/nl/files_encryption.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: Len \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-02 17:27-0500\n" +"PO-Revision-Date: 2013-11-30 19:00+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,75 +45,96 @@ msgstr "Wachtwoord succesvol gewijzigd." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Kon wachtwoord niet wijzigen. Wellicht oude wachtwoord niet juist ingevoerd." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Privésleutel succesvol bijgewerkt." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Kon het wachtwoord van de privésleutel niet wijzigen. Misschien was het oude wachtwoord onjuist." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "Uw privésleutel is niet geldig! Misschien was uw wachtwoord van buitenaf gewijzigd. U kunt het wachtwoord van uw privésleutel aanpassen in uw persoonlijke instellingen om toegang tot uw versleutelde bestanden te vergaren." +"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 "Crypto app niet geïnitialiseerd. Misschien werd de crypto app geheractiveerd tijdens de sessie. Log uit en log daarna opnieuw in om de crypto app te initialiseren." -#: hooks/hooks.php:41 +#: 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 "Uw privésleutel is niet geldig! Waarschijnlijk is uw wachtwoord gewijzigd buiten %s (bijv. uw corporate directory). U kunt uw privésleutel wachtwoord in uw persoonlijke instellingen bijwerken om toegang te krijgen tot uw versleutelde bestanden." + +#: 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 "Kan dit bestand niet ontcijferen, waarschijnlijk is het een gedeeld bestand, Vraag de eigenaar om het bestand opnieuw met u te delen." + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Onbekende fout, Controleer uw systeeminstellingen of neem contact op met uw systeembeheerder" + +#: hooks/hooks.php:59 msgid "Missing requirements." msgstr "Missende benodigdheden." -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Wees er zeker van dat PHP5.3.3 of nieuwer is geïstalleerd en dat de OpenSSL PHP extensie is ingeschakeld en correct geconfigureerd. De versleutel-app is voorlopig uitgeschakeld." -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "De volgende gebruikers hebben geen configuratie voor encryptie:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "initiële versleuteling gestart... Dit kan even duren, geduld a.u.b." + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Opslaan" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Uw privésleutel is niet geldig. Misschien was uw wachtwoord van buitenaf gewijzigd." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Ga meteen naar uw" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "U kunt uw privésleutel deblokkeren in uw" - -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "persoonlijke instellingen" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Versleuteling" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Activeren herstelsleutel (maakt het mogelijk om gebruikersbestanden terug te halen in geval van verlies van het wachtwoord):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Wachtwoord herstelsleulel" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Herhaal het herstelsleutel wachtwoord" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Geactiveerd" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Gedeactiveerd" @@ -121,58 +142,62 @@ msgstr "Gedeactiveerd" msgid "Change recovery key password:" msgstr "Wijzig wachtwoord herstelsleutel:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Oude wachtwoord herstelsleutel" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Nieuwe wachtwoord herstelsleutel" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "Herhaal het nieuwe herstelsleutel wachtwoord" + +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Wijzigen wachtwoord" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Het wachtwoord van uw privésleutel komt niet meer overeen met uw inlogwachtwoord:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Stel het wachtwoord van uw oude privésleutel in op uw huidige inlogwachtwoord." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Als u uw oude wachtwoord niet meer weet, kunt u uw beheerder vragen uw bestanden terug te halen." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Oude wachtwoord" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Huidige wachtwoord" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Bijwerken wachtwoord Privésleutel" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Activeren wachtwoord herstel:" -#: templates/settings-personal.php:47 +#: 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 "Het activeren van deze optie maakt het mogelijk om uw versleutelde bestanden te benaderen als uw wachtwoord kwijt is" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Bestandsherstel instellingen bijgewerkt" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Kon bestandsherstel niet bijwerken" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 605a5e2ce927b9d4d333b9a835ef3f5dafe6f883..539642335ba4e4cc57c6f8a4472f49b5ac18ee50 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Toegang toegestaan" @@ -26,7 +26,7 @@ msgstr "Toegang toegestaan" msgid "Error configuring Dropbox storage" msgstr "Fout tijdens het configureren van Dropbox opslag" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Sta toegang toe" @@ -34,24 +34,24 @@ msgstr "Sta toegang toe" msgid "Please provide a valid Dropbox app key and secret." msgstr "Geef een geldige Dropbox key en secret." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Fout tijdens het configureren van Google Drive opslag" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Waarschuwing: \"smbclient\" is niet geïnstalleerd. Mounten van CIFS/SMB shares is niet mogelijk. Vraag uw beheerder om smbclient te installeren." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Waarschuwing: FTP ondersteuning in PHP is niet geactiveerd of geïnstalleerd. Mounten van FTP shares is niet mogelijk. Vraag uw beheerder FTP ondersteuning te installeren." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 1acf14b32977ee1b5c727e6178c24a9d4cbc19c2..ee7cf514292422258a5210f61933f016b3da87d4 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Len \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,17 +20,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Deze share is met een wachtwoord beveiligd" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Wachtwoord ongeldig. Probeer het nogmaals." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Wachtwoord" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Verzenden" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Sorry, deze link lijkt niet meer in gebruik te zijn." @@ -55,28 +55,32 @@ msgstr "delen is uitgeschakeld" msgid "For more info, please ask the person who sent this link." msgstr "Voor meer informatie, neem contact op met de persoon die u deze link heeft gestuurd." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s deelt de map %s met u" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s deelt het bestand %s met u" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Downloaden" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Uploaden" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Geen voorbeeldweergave beschikbaar voor" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Directe link" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index ba5a867135572de14bf54798c6fd160bf82d41be..cd643d87f31df2bca9aeac89908810ca3a9ab948 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-17 06:30+0000\n" -"Last-Translator: André Koot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "Kon %s niet permanent verwijderen" msgid "Couldn't restore %s" msgstr "Kon %s niet herstellen" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "uitvoeren restore operatie" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Fout" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "verwijder bestanden definitief" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Verwijder definitief" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Naam" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "Verwijderd" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n map" -msgstr[1] "%n mappen" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n bestand" -msgstr[1] "%n bestanden" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "hersteld" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Niets te vinden. Uw prullenbak is leeg!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Naam" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Herstellen" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Verwijderd" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Verwijder" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 918f3b09a7a87edb0b9bac121006599915f6c144..91ff5c348786a06366fe8f98a13df3c233461ea6 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:05+0000\n" -"Last-Translator: André Koot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,318 +20,317 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "App \"%s\" kan niet worden geïnstalleerd omdat die niet compatible is met deze versie van ownCloud." -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "De app naam is niet gespecificeerd." -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Help" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Persoonlijk" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Instellingen" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Gebruikers" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Beheerder" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Upgrade \"%s\" mislukt." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Maatwerk profielafbeelding werkt nog niet met versleuteling" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Onbekend bestandsformaat" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Ongeldige afbeelding" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Webdiensten in eigen beheer" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "Kon \"%s\" niet openen" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP download is uitgeschakeld." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Bestanden moeten één voor één worden gedownload." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Terug naar bestanden" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "De geselecteerde bestanden zijn te groot om een zip bestand te maken." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Download de bestanden in kleinere brokken, appart of vraag uw administrator." +msgstr "Download de bestanden afzonderlijk in kleinere porties of vraag het uw beheerder," -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Geen bron opgegeven bij installatie van de app" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Geen href opgegeven bij installeren van de app vanaf http" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Geen pad opgegeven bij installeren van de app vanaf een lokaal bestand" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Archiefbestanden van type %s niet ondersteund" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Kon archiefbestand bij installatie van de app niet openen" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "De app heeft geen info.xml bestand" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "De app kan niet worden geïnstalleerd wegens onjuiste code in de app" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "De app kan niet worden geïnstalleerd omdat die niet compatible is met deze versie van ownCloud" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "De app kan niet worden geïnstallerd omdat het de true tag bevat die niet is toegestaan voor niet gepubliceerde apps" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "De app kan niet worden geïnstalleerd omdat de versie in info.xml/version niet dezelfde is als de versie zoals die in de app store staat vermeld" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "App directory bestaat al" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Kan de app map niet aanmaken, Herstel de permissies. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "De applicatie is niet actief" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Authenticatie fout" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token verlopen. Herlaad de pagina." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Bestanden" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Tekst" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Afbeeldingen" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s opgeven database gebruikersnaam." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s opgeven databasenaam." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s er mogen geen puntjes in de databasenaam voorkomen" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL gebruikersnaam en/of wachtwoord niet geldig: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Geef of een bestaand account op of het beheerdersaccount." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL gebruikersnaam en/of wachtwoord ongeldig" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Fout: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Onjuiste commande was: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL gebruiker '%s'@'localhost' bestaat al." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Verwijder deze gebruiker uit MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL gebruiker '%s'@'%%' bestaat al" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Verwijder deze gebruiker uit MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Er kon geen verbinding met Oracle worden bereikt" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Oracle gebruikersnaam en/of wachtwoord ongeldig" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Onjuiste commando was: \"%s\", naam: %s, wachtwoord: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL gebruikersnaam en/of wachtwoord ongeldig" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Stel de gebruikersnaam van de beheerder in." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Stel een beheerderswachtwoord in." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Controleer de installatiehandleiding goed." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Kon categorie \"%s\" niet vinden" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "seconden geleden" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuut geleden" msgstr[1] "%n minuten geleden" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n uur geleden" msgstr[1] "%n uur geleden" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "vandaag" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "gisteren" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n dag terug" msgstr[1] "%n dagen geleden" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "vorige maand" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n maand geleden" msgstr[1] "%n maanden geleden" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "vorig jaar" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "jaar geleden" - -#: template.php:297 -msgid "Caused by:" -msgstr "Gekomen door:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Kon categorie \"%s\" niet vinden" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 68edba7080a90edb42cc9bf83458d7fee7734129..7ad4e328062dabf7f31f43e94c62435ba83346f6 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-06 07:40+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,12 +31,12 @@ msgid "Authentication error" msgstr "Authenticatie fout" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Uw weergavenaam is gewijzigd." +msgid "Your full name has been changed." +msgstr "Uw volledige naam is gewijzigd." #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Kon de weergavenaam niet wijzigen" +msgid "Unable to change full name" +msgstr "Kan de volledige naam niet wijzigen" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -90,42 +90,42 @@ msgstr "Kon de app niet bijwerken." #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "Onjuist wachtwoord" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "Geen gebruiker opgegeven" #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "Voer een beheerdersherstelwachtwoord in, anders zullen alle gebruikersgegevens verloren gaan" #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "Onjuist beheerdersherstelwachtwoord. Controleer het wachtwoord en probeer het opnieuw." #: changepassword/controller.php:87 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "De Back-end ondersteunt geen wachtwoordwijzigingen, maar de cryptosleutel van de gebruiker is succesvol bijgewerkt." #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" -msgstr "" +msgstr "Kan wachtwoord niet wijzigen" #: js/apps.js:43 msgid "Update to {appversion}" msgstr "Bijwerken naar {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Uitschakelen" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Activeer" @@ -133,31 +133,31 @@ msgstr "Activeer" msgid "Please wait...." msgstr "Even geduld aub...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Fout tijdens het uitzetten van het programma" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Fout tijdens het aanzetten van het programma" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Bijwerken...." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Fout bij bijwerken app" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Fout" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Bijwerken" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Bijgewerkt" @@ -165,7 +165,7 @@ msgstr "Bijgewerkt" msgid "Select a profile picture" msgstr "Kies een profielafbeelding" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "Bestanden worden gedecodeerd... Even geduld alstublieft, dit kan even duren." @@ -185,44 +185,75 @@ msgstr "ongedaan maken" msgid "Unable to remove user" msgstr "Kon gebruiker niet verwijderen" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Groepen" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Groep beheerder" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Verwijder" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "toevoegen groep" -#: js/users.js:436 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Er moet een geldige gebruikersnaam worden opgegeven" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Fout bij aanmaken gebruiker" -#: js/users.js:442 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Er moet een geldig wachtwoord worden opgegeven" +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Waarschuwing: Home directory voor gebruiker \"{user}\" bestaat al" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Nederlands" -#: templates/admin.php:15 +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "Alles (fatale problemen, fouten, waarschuwingen, info, debug)" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "Info, waarschuwingen, fouten en fatale problemen" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "Waarschuwingen, fouten en fatale problemen" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "Fouten en fatale problemen" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "Alleen fatale problemen" + +#: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" msgstr "Beveiligingswaarschuwing" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "U bent met %s verbonden over HTTP. We adviseren met klem uw server zo te configureren dat allen HTTPS kan worden gebruikt." + +#: templates/admin.php:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -231,48 +262,68 @@ msgid "" "root." msgstr "Uw data folder en uw bestanden zijn waarschijnlijk vanaf het internet bereikbaar. Het .htaccess-bestand werkt niet. We raden ten zeerste aan aan om uw webserver zodanig te configureren, dat de datamap niet bereikbaar is vanaf het internet of om uw datamap te verplaatsen naar een locatie buiten de document root van de webserver." -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Instellingswaarschuwing" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt." -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Conntroleer de installatie handleiding goed." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' ontbreekt" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "De PHP module 'fileinfo' ontbreekt. We adviseren met klem om deze module te activeren om de beste resultaten te bereiken voor mime-type detectie." -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "Uw PHP versie is verouderd" + +#: templates/admin.php:82 +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 "Uw PHP versie is verouderd. We adviseren met klem om bij te werken naar versie 5.3.8 of later, omdat oudere versies corrupt kunnen zijn. Het is mogelijk dat deze installatie niet goed werkt." + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Taalbestand werkt niet" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "De systeemtaal kan niet worden ingesteld op een taal die UTF-8 ondersteunt." + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "Dat betekent dat er problemen kunnen optreden met bepaalde tekens in bestandsnamen." + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "De systeemtaal kan niet worden ingesteld op %s. Hierdoor kunnen er problemen optreden met bepaalde karakters in bestandsnamen. Het wordt sterk aangeraden om de vereiste pakketen op uw systeem te installeren, zodat %s ondersteund wordt." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "We adviseren met klem om de noodzakelijke pakketten op uw systeem te installeren om een van de volgende talen te ondersteunen: %s." -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Internet verbinding werkt niet" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -281,110 +332,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Deze server heeft geen actieve internetverbinding. Dat betekent dat sommige functies, zoals aankoppelen van externe opslag, notificaties over updates of installatie van apps van 3e partijen niet werken. Ook het benaderen van bestanden vanaf een remote locatie en het versturen van notificatie emails kan mislukken. We adviseren om de internetverbinding voor deze server in te schakelen als u alle functies wilt gebruiken." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Bij laden van elke pagina één taak uitvoeren" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php is geregistreerd bij een webcron service om cron.php eens per minuut aan te roepen via http." +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Gebruik de systeem cron service om het bestand cron.php eens per minuut aan te roepen." +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Delen" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Activeren Share API" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Apps toestaan de Share API te gebruiken" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Toestaan links" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Toestaan dat gebruikers objecten met links delen met anderen" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Sta publieke uploads toe" -#: templates/admin.php:144 +#: templates/admin.php:187 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:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Toestaan opnieuw delen" -#: templates/admin.php:153 +#: templates/admin.php:196 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:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Toestaan dat gebruikers met iedereen delen" -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Toestaan e-mailnotificaties" + +#: templates/admin.php:214 +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:221 msgid "Security" msgstr "Beveiliging" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Afdwingen HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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:191 +#: templates/admin.php:242 #, 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:203 +#: templates/admin.php:254 msgid "Log" msgstr "Log" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Meer" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Minder" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versie" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Gebruik dit adres toegang tot uw bestanden via WebDAV" +"Use this address to access your Files via " +"WebDAV" +msgstr "Gebruik deze link om uw bestanden via WebDAV te benaderen" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Versleuteling" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "De encryptie-appplicatie is niet meer aanwezig, decodeer al uw bestanden" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "De crypto app is niet langer geactiveerd, u moet alle bestanden decrypten." -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Inlog-wachtwoord" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Decodeer alle bestanden" @@ -576,6 +639,10 @@ msgstr "Voer het herstel wachtwoord in om de gebruikersbestanden terug te halen msgid "Default Storage" msgstr "Standaard Opslaglimiet" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "Geef de opslagquotering op (bijv. \"512 MB\" of \"12 GB\")" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Ongelimiteerd" @@ -593,8 +660,8 @@ msgid "Storage" msgstr "Opslaglimiet" #: templates/users.php:108 -msgid "change display name" -msgstr "wijzig weergavenaam" +msgid "change full name" +msgstr "wijzigen volledige naam" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index b0ecf57ce45f48850b95ba9f1e47a7b24f365e63..563da00c9a10077439a7ec06c16682b5a852afbc 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" -"Last-Translator: kwillems \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,314 +28,425 @@ msgstr "Niet gelukt de vertalingen leeg te maken." msgid "Failed to delete the server configuration" msgstr "Verwijderen serverconfiguratie mislukt" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "De configuratie is geldig en de verbinding is geslaagd!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "De configuratie is geldig, maar Bind mislukte. Controleer de serverinstellingen en inloggegevens." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "De configuratie is ongeldig. Controleer de ownCloud log voor meer details." +msgstr "De configuratie is ongeldig. Bekijk de logbestanden voor meer details." + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "Geen actie opgegeven" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "Geen configuratie opgegeven" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "Geen gegevens verstrekt" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "Kon configuratie %s niet instellen" -#: js/settings.js:66 +#: js/settings.js:67 msgid "Deletion failed" msgstr "Verwijderen mislukt" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Overnemen instellingen van de recente serverconfiguratie?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Instellingen bewaren?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Kon de serverconfiguratie niet toevoegen" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "vertaaltabel leeggemaakt" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Succes" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Fout" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "Configuratie OK" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "Configuratie onjuist" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "Configuratie incompleet" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Selecteer groepen" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "Selecteer objectklasse" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "Selecteer attributen" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Verbindingstest geslaagd" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Verbindingstest mislukt" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Wilt u werkelijk de huidige Serverconfiguratie verwijderen?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Bevestig verwijderen" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "Waarschuwing: De Apps user_ldap en user_webdavauth zijn incompatible. U kunt onverwacht gedrag ervaren. Vraag uw beheerder om een van beide apps de deactiveren." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "%s groep gevonden" +msgstr[1] "%s groepen gevonden" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "%s gebruiker gevonden" +msgstr[1] "%s gebruikers gevonden" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "Ongeldige server" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "Kon de gewenste functie niet vinden" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Bewaren" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Test configuratie" -#: templates/settings.php:12 +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Help" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "Beperk toegang tot %s tot groepen die voldoen aan deze criteria:" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "alleen deze objectklassen" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "alleen van deze groepen:" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "Bewerk raw filter" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "Raw LDAP filter" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Waarschuwing: De PHP LDAP module is niet geïnstalleerd, het backend zal niet werken. Vraag uw systeembeheerder om de module te installeren." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "Dit filter geeft aan welke LDAP groepen toegang hebben tot %s." -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Serverconfiguratie" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "groepen gevonden" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "Welk attribuut moet worden gebruikt als inlognaam:" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "LDAP Username:" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "LDAP e-mailadres:" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "Overige attributen:" + +#: 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 "Definiëert het toe te passen filter als er geprobeerd wordt in te loggen. %%uid vervangt de gebruikersnaam bij het inloggen. Bijvoorbeeld: \"uid=%%uid\"" + +#: templates/part.wizard-server.php:18 msgid "Add Server Configuration" msgstr "Toevoegen serverconfiguratie" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Host" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Je kunt het protocol weglaten, tenzij je SSL vereist. Start in dat geval met ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Base DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Een Base DN per regel" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Je kunt het Base DN voor gebruikers en groepen specificeren in het tab Geavanceerd." +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Poort" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "User DN" -#: templates/settings.php:46 +#: 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 "De DN van de client gebruiker waarmee de verbinding zal worden gemaakt, bijv. uid=agent,dc=example,dc=com. Voor anonieme toegang laat je het DN en het wachtwoord leeg." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Wachtwoord" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Voor anonieme toegang, laat de DN en het wachtwoord leeg." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Gebruikers Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Een Base DN per regel" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Je kunt het Base DN voor gebruikers en groepen specificeren in het tab Geavanceerd." + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "Beperk toegang tot %s tot gebruikers die voldoen aan deze criteria:" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "Definiëert het toe te passen filter als er geprobeerd wordt in te loggen. %%uid vervangt de gebruikersnaam bij het inloggen. Bijvoorbeeld: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "Dit filter geeft aan welke LDAP gebruikers toegang hebben tot %s." -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Gebruikers Lijst Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "gebruikers gevonden" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "Definieert het toe te passen filter bij het ophalen van gebruikers (geen tijdelijke aanduidingen). Bijvoorbeeld: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Terug" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Groep Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Verder" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "Waarschuwing: De Apps user_ldap en user_webdavauth zijn incompatible. U kunt onverwacht gedrag ervaren. Vraag uw beheerder om een van beide apps de deactiveren." -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "Definieert het toe te passen filter bij het ophalen van groepen (geen tijdelijke aanduidingen). Bijvoorbeeld: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Waarschuwing: De PHP LDAP module is niet geïnstalleerd, het backend zal niet werken. Vraag uw systeembeheerder om de module te installeren." -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Verbindingsinstellingen" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Configuratie actief" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Als dit niet is ingeschakeld wordt deze configuratie overgeslagen." -#: templates/settings.php:69 -msgid "Port" -msgstr "Poort" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Backup (Replica) Host" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Opgeven optionele backup host. Het moet een replica van de hoofd LDAP/AD server." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Backup (Replica) Poort" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Deactiveren hoofdserver" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "Maak alleen een verbinding met de replica server." -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Gebruik TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Gebruik het niet voor LDAPS verbindingen, dat gaat niet lukken." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Niet-hoofdlettergevoelige LDAP server (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Schakel SSL certificaat validatie uit." -#: templates/settings.php:75 +#: 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 "Niet aanbevolen, gebruik alleen om te testen! Als de connectie alleen werkt met deze optie, importeer dan het SSL-certificaat van de LDAP-server naar uw %s server." -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Cache time-to-live" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "in seconden. Een verandering maakt de cache leeg." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Mapinstellingen" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Gebruikers Schermnaam Veld" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "Het te gebruiken LDAP attribuut voor het genereren van de weergavenaam voor de gebruiker." -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Basis Gebruikers Structuur" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "Een User Base DN per regel" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "Attributen voor gebruikerszoekopdrachten" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Optioneel; één attribuut per regel" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Groep Schermnaam Veld" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "Het te gebruiken LDAP attribuut voor het genereren van de weergavenaam voor de groepen." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Basis Groupen Structuur" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "Een Group Base DN per regel" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Attributen voor groepszoekopdrachten" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Groepslid associatie" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Speciale attributen" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Quota veld" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Quota standaard" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "in bytes" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "E-mailveld" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "Gebruikers Home map naamgevingsregel" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Laat leeg voor de gebruikersnaam (standaard). Of, specificeer een LDAP/AD attribuut." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "Interne gebruikersnaam" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -351,15 +462,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Standaard wordt de interne gebruikersnaam aangemaakt op basis van het UUID attribuut. Het zorgt ervoor dat de gebruikersnaam uniek is en dat tekens niet hoeven te worden geconverteerd. De interne gebruikersnaam heeft als beperking dat alleen deze tekens zijn toegestaan​​: [a-zA-Z0-9_.@- ]. Andere tekens worden vervangen door hun ASCII vertaling of gewoonweg weggelaten. Bij identieke namen wordt een nummer toegevoegd of verhoogd. De interne gebruikersnaam wordt gebruikt om een ​​gebruiker binnen het systeem te herkennen. Het is ook de standaardnaam voor de standaardmap van de gebruiker in ownCloud. Het is ook een vertaling voor externe URL's, bijvoorbeeld voor alle *DAV diensten. Met deze instelling kan het standaardgedrag worden overschreven. Om een soortgelijk gedrag te bereiken als van vóór ownCloud 5, voer het gebruikersweergavenaam attribuut in in het volgende veld. Laat het leeg voor standaard gedrag. Veranderingen worden alleen toegepast op gekoppelde (toegevoegde) LDAP-gebruikers." -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "Interne gebruikersnaam attribuut:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "Negeren UUID detectie" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -370,15 +481,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Standaard herkent ownCloud het UUID-attribuut automatisch. Het UUID attribuut wordt gebruikt om LDAP-gebruikers en -groepen uniek te identificeren. Ook zal de interne gebruikersnaam worden aangemaakt op basis van het UUID, tenzij deze hierboven anders is aangegeven. U kunt de instelling overschrijven en zelf een waarde voor het attribuut opgeven. U moet ervoor zorgen dat het ingestelde attribuut kan worden opgehaald voor zowel gebruikers als groepen en dat het uniek is. Laat het leeg voor standaard gedrag. Veranderingen worden alleen doorgevoerd op nieuw gekoppelde (toegevoegde) LDAP-gebruikers en-groepen." -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID Attribuut:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "UUID attribuut voor gebruikers:" -#: templates/settings.php:104 +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "UUID attribuut voor groepen:" + +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "Gebruikersnaam-LDAP gebruikers vertaling" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -392,18 +507,10 @@ msgid "" "experimental stage." msgstr "ownCloud maakt gebruik van gebruikersnamen om (meta) data op te slaan en toe te wijzen. Om gebruikers uniek te identificeren, krijgt elke LDAP-gebruiker ook een interne gebruikersnaam. Dit vereist een koppeling van de ownCloud gebruikersnaam aan een ​​LDAP-gebruiker. De gecreëerde gebruikersnaam is gekoppeld aan de UUID van de LDAP-gebruiker. Aanvullend wordt ook de 'DN' gecached om het aantal LDAP-interacties te verminderen, maar dit wordt niet gebruikt voor identificatie. Als de DN verandert, zullen de veranderingen worden gevonden. De interne naam wordt overal gebruikt. Het wissen van de koppeling zal overal resten achterlaten. Het wissen van koppelingen is niet configuratiegevoelig, maar het raakt wel alle LDAP instellingen! Zorg ervoor dat deze koppelingen nooit in een productieomgeving gewist worden. Maak ze alleen leeg in een test- of ontwikkelomgeving." -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "Leegmaken Gebruikersnaam-LDAP gebruikers vertaling" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Leegmaken Groepsnaam-LDAP groep vertaling" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Test configuratie" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Help" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index e16776a09863157188574d46f7c9bf1cefbc4957..0364a320a67b265cbebfa3bcfeace556452b4af4 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-24 12:58-0400\n" -"PO-Revision-Date: 2013-09-24 08:30+0000\n" -"Last-Translator: unhammer \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,14 +20,15 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s delte «%s» med deg" -#: ajax/share.php:227 -msgid "group" -msgstr "gruppe" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -54,45 +55,6 @@ msgstr "Mellomlager oppdatert" msgid "... %d%% done ..." msgstr "… %d %% ferdig …" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Ingen kategoritype." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Ingen kategori å leggja til?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Denne kategorien finst alt: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Ingen objekttype." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "Ingen %s-ID." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Klarte ikkje leggja til %s i favorittar." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Ingen kategoriar valt for sletting." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Klarte ikkje fjerna %s frå favorittar." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Inga bilete eller fil gitt" @@ -189,59 +151,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "sekund sidan" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minutt sidan" msgstr[1] "%n minutt sidan" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time sidan" msgstr[1] "%n timar sidan" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "i dag" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "i går" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag sidan" msgstr[1] "%n dagar sidan" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "førre månad" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sidan" msgstr[1] "%n månadar sidan" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "månadar sidan" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "i fjor" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "år sidan" @@ -309,155 +271,183 @@ msgstr "({count} valte)" msgid "Error loading file exists template" msgstr "Klarte ikkje å lasta fil-finst-mal" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Objekttypen er ikkje spesifisert." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 -msgid "Error" -msgstr "Feil" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Programnamnet er ikkje spesifisert." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Den kravde fila {file} er ikkje installert!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Delt" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Del" -#: js/share.js:131 js/share.js:696 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Feil" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Feil ved deling" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Feil ved udeling" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Feil ved endring av tillatingar" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Delt med deg og gruppa {group} av {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Delt med deg av {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Del med" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "Del med lenkje" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Passordvern" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Passord" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Tillat offentleg opplasting" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Send lenkja over e-post" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Send" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Set utløpsdato" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Utløpsdato" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Del over e-post:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Fann ingen personar" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "gruppe" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Vidaredeling er ikkje tillate" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {brukar}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Udel" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "kan endra" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "tilgangskontroll" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "lag" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "oppdater" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "slett" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "del" -#: js/share.js:400 js/share.js:643 +#: js/share.js:694 msgid "Password protected" msgstr "Passordverna" -#: js/share.js:656 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Klarte ikkje fjerna utløpsdato" -#: js/share.js:668 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Klarte ikkje setja utløpsdato" -#: js/share.js:683 +#: js/share.js:734 msgid "Sending ..." msgstr "Sender …" -#: js/share.js:694 +#: js/share.js:745 msgid "Email sent" msgstr "E-post sendt" +#: js/share.js:769 +msgid "Warning" +msgstr "Åtvaring" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Objekttypen er ikkje spesifisert." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Slett" + +#: js/tags.js:31 +msgid "Add" +msgstr "Legg til" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Lenkja til å nullstilla passordet med er sendt til e-posten din.
    Sjå i spam-/søppelmappa di viss du ikkje ser e-posten innan rimeleg tid.
    Spør din lokale administrator viss han ikkje er der heller." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Førespurnaden feila!
    Er du viss på at du skreiv inn rett e-post/brukarnamn?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Du vil få ein e-post med ei lenkje for å nullstilla passordet." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Brukarnamn" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -506,13 +496,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Filene dine er krypterte. Viss du ikkje har skrudd på gjenopprettingsnøkkelen, finst det ingen måte å få tilbake dataa dine når passordet ditt er nullstilt. Viss du ikkje er sikker på kva du skal gjera bør du spørja administratoren din før du går vidare. Vil du verkeleg fortsetja?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Ja, eg vil nullstilla passordet mitt no" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Be om nullstilling" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -538,7 +528,7 @@ msgstr "Personleg" msgid "Users" msgstr "Brukarar" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Program" @@ -550,6 +540,34 @@ msgstr "Admin" msgid "Help" msgstr "Hjelp" +#: 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 "Tilgang forbudt" @@ -566,108 +584,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hei der,\n\nnemner berre at %s delte %s med deg.\nSjå det her: %s\n\nMe talast!" +msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Endra kategoriar" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Legg til" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Tryggleiksåtvaring" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "PHP-utgåva di er sårbar for NULL-byteåtaket (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Ver venleg og oppdater PHP-installasjonen din til å brukar %s trygt." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Ingen tilgjengeleg tilfeldig nummer-generator, ver venleg og aktiver OpenSSL-utvidinga i PHP." -#: templates/installation.php:33 +#: 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 "Utan ein trygg tilfeldig nummer-generator er det enklare for ein åtakar å gjetta seg fram til passordnullstillingskodar og dimed ta over kontoen din." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Datamappa og filene dine er sannsynlegvis tilgjengelege frå Internett sidan .htaccess-fila ikkje fungerer." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "Ver venleg og les dokumentasjonen for meir informasjon om korleis du konfigurerer tenaren din." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Lag ein admin-konto" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Avansert" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Set opp databasen" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "vil verta nytta" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Databasebrukar" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Databasenamn" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Tabellnamnrom for database" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Databasetenar" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Fullfør oppsettet" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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 "%s er tilgjengeleg. Få meir informasjon om korleis du oppdaterer." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Logg ut" @@ -685,19 +714,27 @@ msgstr "Viss du ikkje endra passordet ditt nyleg, så kan kontoen din vera kompr msgid "Please change your password to secure your account again." msgstr "Ver venleg og endra passordet for å gjera kontoen din trygg igjen." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Gløymt passordet?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "hugs" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Logg inn" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Alternative innloggingar" @@ -705,10 +742,37 @@ msgstr "Alternative innloggingar" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Hei der,

    nemner berre at %s delte «%s» med deg.
    Sjå det!

    Me talast!<" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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 "Oppdaterer ownCloud til utgåve %s, dette kan ta ei stund." + +#: 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/nn_NO/files.po b/l10n/nn_NO/files.po index dc82bdca1b74917dde1234f75ffaf338a70332d1..08a93b7fab3f48c53784db26b2c6842e30871636 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-24 12:58-0400\n" -"PO-Revision-Date: 2013-09-24 08:20+0000\n" -"Last-Translator: unhammer \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,62 +30,107 @@ msgstr "Klarte ikkje flytta %s – det finst allereie ei fil med dette namnet" msgid "Could not move %s" msgstr "Klarte ikkje flytta %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Filnamnet kan ikkje vera tomt." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Klarte ikkje å endra opplastingsmappa." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Ugyldig token" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer lasta opp. Ukjend feil" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Ingen feil, fila vart lasta opp" -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Fila vart berre delvis lasta opp" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Ingen filer vart lasta opp" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Manglar ei mellombels mappe" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Klarte ikkje skriva til disk" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Ikkje nok lagringsplass tilgjengeleg" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "Feil ved opplasting. Klarte ikkje å henta filinfo." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "Feil ved opplasting. Klarte ikkje å finna opplasta fil." -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Ugyldig mappe." @@ -93,157 +138,178 @@ msgstr "Ugyldig mappe." msgid "Files" msgstr "Filer" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Klarte ikkje å lasta opp {filename} sidan det er ei mappe eller er 0 byte." -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Ikkje nok lagringsplass tilgjengeleg" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Opplasting avbroten." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "Klarte ikkje å henta resultat frå tenaren." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "Nettadressa kan ikkje vera tom." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Ugyldig mappenamn. Mappa «Shared» er reservert av ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Feil" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} finst allereie" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "Del" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Slett for godt" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Endra namn" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Under vegs" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} finst allereie" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "byt ut" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "føreslå namn" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "avbryt" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "bytte ut {new_name} med {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "angre" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} og {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Lastar opp %n fil" msgstr[1] "Lastar opp %n filer" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "«.» er eit ugyldig filnamn." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Filnamnet kan ikkje vera tomt." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ugyldig namn, «\\», «/», «<», «>», «:», «\"», «|», «?» og «*» er ikkje tillate." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Lagringa di er full, kan ikkje lenger oppdatera eller synkronisera!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Lagringa di er nesten full ({usedSpacePercent} %)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Kryptering er skrudd av, men filene dine er enno krypterte. Du kan dekryptera filene i personlege innstillingar." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Gjer klar nedlastinga di. Dette kan ta ei stund viss filene er store." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "Feil ved flytting av fil" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Feil" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Namn" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Storleik" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Endra" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "Klarte ikkje å omdøypa på %s" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Last opp" @@ -279,65 +345,69 @@ msgstr "Maksimal storleik for ZIP-filer" msgid "Save" msgstr "Lagre" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Ny" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "Tekst fil" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "Mappe" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Frå lenkje" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Sletta filer" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Du har ikkje skriverettar her." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last noko opp!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Last ned" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Udel" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Slett" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "For stor opplasting" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filene du prøver å lasta opp er større enn maksgrensa til denne tenaren." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Skannar filer, ver venleg og vent." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Køyrande skanning" diff --git a/l10n/nn_NO/files_encryption.po b/l10n/nn_NO/files_encryption.po index 112217447c87552c888cd3a5adeb78cbd45de0bc..63a65fd989fe6f46a78eeca503cd84b213a6c993 100644 --- a/l10n/nn_NO/files_encryption.po +++ b/l10n/nn_NO/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-08 21:36-0400\n" -"PO-Revision-Date: 2013-09-08 17:40+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:51 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:52 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:250 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Lagrar …" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Kryptering" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index 729a5014814f1d0adb21aba78ab2359d0b144cc9..85acba6f7029bf75ef11fa663e43dc7d4b65ee4d 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 4b5c1c4d3ae512c9a1542fd9f732e2b8adadc072..78a8e15a2bb3ffd3a5071d1f756cb6c6133bbfab 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: unhammer \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Passordet er gale. Prøv igjen." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Passord" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Send" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Orsak, denne lenkja fungerer visst ikkje lenger." @@ -54,28 +54,32 @@ msgstr "deling er slått av" msgid "For more info, please ask the person who sent this link." msgstr "Spør den som sende deg lenkje om du vil ha meir informasjon." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappa %s med deg" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte fila %s med deg" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Last ned" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Last opp" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Inga førehandsvising tilgjengeleg for" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 8a6b4412c287fe2a80138134d039772a6627badf..618246702e1c9d26d5e51714abcd9a9b4c551e2f 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-08 21:36-0400\n" -"PO-Revision-Date: 2013-09-08 15:20+0000\n" -"Last-Translator: unhammer \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,55 +29,31 @@ msgstr "Klarte ikkje sletta %s for godt" msgid "Couldn't restore %s" msgstr "Klarte ikkje gjenoppretta %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "utfør gjenoppretting" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Feil" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "slett fila for godt" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Slett for godt" - -#: js/trash.js:184 templates/index.php:17 -msgid "Name" -msgstr "Namn" - -#: js/trash.js:185 templates/index.php:27 -msgid "Deleted" -msgstr "Sletta" - -#: js/trash.js:193 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n mappe" -msgstr[1] "%n mapper" - -#: js/trash.js:199 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n fil" -msgstr[1] "%n filer" - -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "gjenoppretta" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Ingenting her. Papirkorga di er tom!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Namn" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Gjenopprett" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Sletta" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Slett" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 9e73f6fe6aa9165b968b984866d6c0b7f4e5a6cb..ec60d2c1735459b20090f1f129c76c6dea7d036b 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-24 12:58-0400\n" -"PO-Revision-Date: 2013-09-24 08:30+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -19,318 +19,317 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Hjelp" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Personleg" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Innstillingar" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Brukarar" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Administrer" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Ukjend filtype" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Ugyldig bilete" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Vev tjenester under din kontroll" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Feil i autentisering" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Filer" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Tekst" -#: search/provider/file.php:30 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Tenaren din er ikkje enno rett innstilt til å tilby filsynkronisering sidan WebDAV-grensesnittet ser ut til å vera øydelagt." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Ver venleg og dobbeltsjekk installasjonsrettleiinga." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "sekund sidan" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minutt sidan" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n timar sidan" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "i dag" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "i går" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dagar sidan" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "førre månad" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n månadar sidan" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "i fjor" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "år sidan" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 761b9f46275e14fbc81700f1979c6d1df9e14748..c97bf982e440af39eb3c69855d7c28ac41e780b5 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-24 12:58-0400\n" -"PO-Revision-Date: 2013-09-24 08:30+0000\n" -"Last-Translator: unhammer \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,12 +30,12 @@ msgid "Authentication error" msgstr "Autentiseringsfeil" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Visingsnamnet ditt er endra." +msgid "Your full name has been changed." +msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Klarte ikkje endra visingsnamnet" +msgid "Unable to change full name" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -164,7 +164,7 @@ msgstr "Oppdatert" msgid "Select a profile picture" msgstr "Vel eit profilbilete" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dekrypterer filer … Ver venleg og vent, dette kan ta ei stund." @@ -184,44 +184,75 @@ msgstr "angra" msgid "Unable to remove user" msgstr "Klarte ikkje fjerna brukaren" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupper" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Gruppestyrar" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Slett" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "legg til gruppe" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "Du må oppgje eit gyldig brukarnamn" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "Feil ved oppretting av brukar" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "Du må oppgje eit gyldig passord" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Nynorsk" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "Tryggleiksåtvaring" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -230,48 +261,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:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Oppsettsåtvaring" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Ver venleg og dobbeltsjekk installasjonsrettleiinga." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Modulen «fileinfo» manglar" -#: templates/admin.php:47 +#: templates/admin.php:68 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:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "Regionaldata fungerer ikkje" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "Klarte ikkje endra regionaldata for systemet til %s. Dette vil seia at det kan verta problem med visse teikn i filnamn. Me rår deg sterkt til å installera dei kravde pakkene på systemet ditt så du får støtte for %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Nettilkoplinga fungerer ikkje" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -280,110 +331,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Denne tenaren har ikkje ei fungerande nettilkopling. Dette vil seia at visse funksjonar, som montering av ekstern lagring, meldingar om oppdateringar eller installering av tredjepartsprogram, ikkje vil fungera. Det kan òg henda at du ikkje får tilgang til filene dine utanfrå, eller ikkje får sendt varslingsepostar. Me rår deg til å skru på nettilkoplinga for denne tenaren viss du ønskjer desse funksjonane." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Utfør éi oppgåve for kvar sidelasting" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "Ei webcron-teneste er stilt inn til å kalla cron.php ein gong i minuttet over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Bruk cron-tenesta til systemet for å kalla cron.php-fila ein gong i minuttet." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Slå på API-et for deling" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "La app-ar bruka API-et til deling" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Tillat lenkjer" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "La brukarar dela ting offentleg med lenkjer" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Tillat offentlege opplastingar" -#: templates/admin.php:144 +#: templates/admin.php:187 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:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Tillat vidaredeling" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "La brukarar vidaredela delte ting" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "La brukarar dela med kven som helst" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "La brukarar dela berre med brukarar i deira grupper" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "Tryggleik" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Krev HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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:191 +#: templates/admin.php:242 #, 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:203 +#: templates/admin.php:254 msgid "Log" msgstr "Logg" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Log nivå" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Meir" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Mindre" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Utgåve" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Bruk denne adressa for å henta filene dine over WebDAV" +"Use this address to access your Files via " +"WebDAV" +msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Kryptering" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "Krypteringsprogrammet er ikkje lenger slått på, dekrypter alle filene dine" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Innloggingspassord" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Dekrypter alle filene" @@ -575,6 +638,10 @@ msgstr "Skriv inn gjenopprettingspassordet brukt for å gjenoppretta brukarfilen msgid "Default Storage" msgstr "Standardlagring" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Ubegrensa" @@ -592,8 +659,8 @@ msgid "Storage" msgstr "Lagring" #: templates/users.php:108 -msgid "change display name" -msgstr "endra visingsnamn" +msgid "change full name" +msgstr "" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 50449bc4e8a30951e13437bfd08046a16e778b7b..354e05bee4d8f81dd461fae043601c1334038a7b 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-10 10:41-0400\n" -"PO-Revision-Date: 2013-09-09 09:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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 "Feil ved sletting" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Feil" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Vel grupper" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:778 lib/wizard.php:790 +msgid "Invalid Host" msgstr "" -#: templates/settings.php:12 +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Lagra" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Hjelp" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" -msgstr "Tenar" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" +msgstr "Tenar" + +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:36 +msgid "Port" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Passord" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 -#, php-format -msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" msgstr "" -#: templates/settings.php:58 +#: templates/part.wizard-userfilter.php:31 +#, php-format msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:62 +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Tilbake" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Gå vidare" + +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Hjelp" diff --git a/l10n/nqo/core.po b/l10n/nqo/core.po index e50801d30bab899fe77bbe766ab2a2cd8a4ba137..4007dd3247c3be629afa0a28dc85a214ffa418d1 100644 --- a/l10n/nqo/core.po +++ b/l10n/nqo/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-08 03:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,14 @@ msgstr "" "Language: nqo\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -190,51 +152,51 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "" @@ -301,155 +263,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" +#: js/share.js:213 +msgid "Share with user or group …" msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -498,12 +488,12 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" msgstr "" #: lostpassword/templates/resetpassword.php:4 @@ -530,7 +520,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "" @@ -542,6 +532,34 @@ msgstr "" 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 "" @@ -558,108 +576,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -677,19 +706,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -697,10 +734,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " msgstr "" -#: templates/update.php:3 +#: 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/nqo/files.po b/l10n/nqo/files.po index 4749e89f2645d1d866c22b173d48b797c353ea84..779270d0848d0871bbf474e0aa7e661cdee83577 100644 --- a/l10n/nqo/files.po +++ b/l10n/nqo/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06: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" @@ -27,217 +27,283 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" msgstr "" -#: js/fileactions.js:119 -msgid "Share" +#: js/file-upload.js:595 +msgid "Could not create file" msgstr "" -#: js/fileactions.js:131 -msgid "Delete permanently" +#: js/file-upload.js:611 +msgid "Could not create folder" msgstr "" -#: js/fileactions.js:197 -msgid "Rename" +#: js/file-upload.js:661 +msgid "Error fetching URL" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 -msgid "Pending" +#: js/fileactions.js:125 +msgid "Share" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/fileactions.js:137 +msgid "Delete permanently" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" +#: js/fileactions.js:194 +msgid "Rename" msgstr "" -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "" @@ -273,65 +339,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/nqo/files_encryption.po b/l10n/nqo/files_encryption.po index 3c4beade2a4c3182f51467bb7a6f299dedb8c806..0094acd72fc0bf40829bd08edc6736520e316bd0 100644 --- a/l10n/nqo/files_encryption.po +++ b/l10n/nqo/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:39-0400\n" -"PO-Revision-Date: 2013-09-07 07:28+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:51 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:52 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:250 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 -msgid "Saving..." +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." +#: js/settings-admin.js:13 +msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/nqo/files_sharing.po b/l10n/nqo/files_sharing.po index 8c548248cff1854e126126c5949f1ba6b35eb95e..7d6dbe42c6c492a8bc2917532b564e9b24cff727 100644 --- a/l10n/nqo/files_sharing.po +++ b/l10n/nqo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:28+0000\n" +"POT-Creation-Date: 2013-10-21 13:01-0400\n" +"PO-Revision-Date: 2013-10-21 17:02+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" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:91 msgid "No preview available for" msgstr "" + +#: templates/public.php:98 +msgid "Direct link" +msgstr "" diff --git a/l10n/nqo/files_trashbin.po b/l10n/nqo/files_trashbin.po index 8c737c0b7573e81407e187aab8e6a7a82aca9d96..69ea00584d04a6a5cfbcbdcf9cd6033ce0d824a5 100644 --- a/l10n/nqo/files_trashbin.po +++ b/l10n/nqo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:28+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -27,53 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:37 -msgid "delete file permanently" +#: lib/trashbin.php:814 lib/trashbin.php:816 +msgid "restored" msgstr "" -#: js/trash.js:129 -msgid "Delete permanently" +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:184 templates/index.php:17 +#: templates/index.php:23 msgid "Name" msgstr "" -#: js/trash.js:185 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:193 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:199 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - -#: lib/trash.php:814 lib/trash.php:816 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:26 templates/index.php:28 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:34 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/nqo/lib.po b/l10n/nqo/lib.po index 6f2612e081723bed36702f55ac278f6739fc5a63..2ee237736f699b77d69940a591e238bed21e6ed9 100644 --- a/l10n/nqo/lib.po +++ b/l10n/nqo/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -17,314 +17,313 @@ msgstr "" "Language: nqo\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/nqo/settings.po b/l10n/nqo/settings.po index aafbac399b08451fff752ad403cd908028722bcc..20ff083d4c29ce4d1c2052bf68ff494d178ae5ef 100644 --- a/l10n/nqo/settings.po +++ b/l10n/nqo/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,31 +129,31 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/nqo/user_ldap.po b/l10n/nqo/user_ldap.po index d377705d79dba1e7a448a345c616cf0bd476538a..a042730684a617ab2e5ce06cf7eb5600ce8b31eb 100644 --- a/l10n/nqo/user_ldap.po +++ b/l10n/nqo/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:28+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-27 17:09+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" @@ -25,314 +25,423 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "" -#: js/settings.js:141 +#: js/settings.js:777 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:786 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:795 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:812 js/settings.js:821 +msgid "Select groups" +msgstr "" + +#: js/settings.js:815 js/settings.js:824 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:818 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:845 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:852 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:861 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:862 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" + +#: lib/wizard.php:779 lib/wizard.php:791 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:952 +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 "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +457,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +476,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +502,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 10cb24643137dea8ce1da74c456cafe90c77dd55..7ace16d57370056d2393cc29f916181689bf6c16 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,14 +17,15 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" -msgstr "grop" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Pas de categoria d'ajustar ?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Pas de categorias seleccionadas per escafar." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -186,59 +148,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Configuracion" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "uèi" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "ièr" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "mes passat" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "meses a" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "an passat" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "ans a" @@ -306,155 +268,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Error" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Parteja" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Error" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Error al partejar" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Error al non partejar" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Error al cambiar permissions" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" -msgstr "Parteja amb" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "Parteja amb lo ligam" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Parat per senhal" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Senhal" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Met la data d'expiracion" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Data d'expiracion" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Parteja tras corrièl :" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Deguns trobat" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "grop" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Tornar partejar es pas permis" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Pas partejador" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "pòt modificar" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "Contraròtle d'acces" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "crea" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "met a jorn" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "escafa" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "parteja" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Parat per senhal" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Error al metre de la data d'expiracion" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 "Escafa" + +#: js/tags.js:31 +msgid "Add" +msgstr "Ajusta" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Reçaupràs un ligam per tornar botar ton senhal via corrièl." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Non d'usancièr" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -503,13 +493,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Tornar botar requesit" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -535,7 +525,7 @@ msgstr "Personal" msgid "Users" msgstr "Usancièrs" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Apps" @@ -547,6 +537,34 @@ msgstr "Admin" msgid "Help" msgstr "Ajuda" +#: 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 "Acces enebit" @@ -563,108 +581,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Edita categorias" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Ajusta" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Avertiment de securitat" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Crea un compte admin" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Avançat" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Dorsièr de donadas" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Configura la basa de donadas" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "serà utilizat" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Usancièr de la basa de donadas" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Senhal de la basa de donadas" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Nom de la basa de donadas" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Espandi de taula de basa de donadas" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Òste de basa de donadas" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Configuracion acabada" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Sortida" @@ -682,19 +711,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "L'as perdut lo senhal ?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "bremba-te" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Dintrada" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -702,10 +739,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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.php:3 +#: 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/oc/files.po b/l10n/oc/files.po index df81825fe3f912fe8718c8a8d75f7e1e0ee9a325..2fd5757cfc470712260096a97b81943e01592653 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -27,220 +27,286 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Amontcargament capitat, pas d'errors" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Lo fichièr foguèt pas completament amontcargat" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Cap de fichièrs son estats amontcargats" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Un dorsièr temporari manca" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "L'escriptura sul disc a fracassat" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Fichièrs" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Amontcargar anullat." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Error" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "Parteja" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Torna nomenar" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Al esperar" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "remplaça" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "nom prepausat" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "anulla" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "defar" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Error" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Nom" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Talha" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Modificat" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Amontcarga" @@ -276,65 +342,69 @@ msgstr "Talha maximum de dintrada per fichièrs ZIP" msgid "Save" msgstr "Enregistra" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nòu" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "Fichièr de tèxte" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "Dorsièr" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr " Anulla l'amontcargar" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Pas res dedins. Amontcarga qualquaren" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Avalcarga" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Pas partejador" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Escafa" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Amontcargament tròp gròs" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los fichièrs que sias a amontcargar son tròp pesucs per la talha maxi pel servidor." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Los fiichièrs son a èsser explorats, " -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Exploracion en cors" diff --git a/l10n/oc/files_encryption.po b/l10n/oc/files_encryption.po index eba3e13368c22a279d5517c77287e9e7e68c0981..c71d7b93c33e167518365a7f83392f0d8b988147 100644 --- a/l10n/oc/files_encryption.po +++ b/l10n/oc/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:44 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Enregistra..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index b899bcf9b7db3bca727e0211dacb608c2582c85a..853318c6d57487484a4f906251aac744af4b1ac4 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index a94307e4bfd08313201b25d3ec9f1262d48b571f..985ee5954633367de8b3a3dcefd6789d92e33da1 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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 "Senhal" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Sosmetre" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Avalcarga" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Amontcarga" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr " Anulla l'amontcargar" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 1f47311fecd9ed25ecbf0138d0eba5ea562acc08..d1ca842a142779586df9b4be8c4a3862e4b59628 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Error" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:815 lib/trashbin.php:817 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:8 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:22 msgid "Name" msgstr "Nom" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:25 templates/index.php:27 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:33 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Escafa" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index a1e7d21d338a51b440a381256644d43f1b771cfd..3fa8719bf948b330219be91285637e256d3404a7 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,318 +17,317 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Ajuda" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Personal" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Configuracion" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Usancièrs" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Services web jos ton contraròtle" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Avalcargar los ZIP es inactiu." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Los fichièrs devan èsser avalcargats un per un." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Torna cap als fichièrs" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Error d'autentificacion" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Fichièrs" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "segonda a" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "uèi" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "ièr" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "mes passat" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "an passat" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "ans a" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index bd0c36692d28e2f0df2978e6336610d6eeb86829..d14a580b73fb89b78bc0ffc157bde9cee4ef64db 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "Error d'autentificacion" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Desactiva" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Activa" @@ -129,31 +129,31 @@ msgstr "Activa" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Error" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "defar" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grops" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grop Admin" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Escafa" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "Avertiment de securitat" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Executa un prètfach amb cada pagina cargada" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Al partejar" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Activa API partejada" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "Jornal" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Mai d'aquò" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 48c4e281c6dd65ba497e0ff0c60d78123c64863f..58d4c7ffba472b411f465a1012f45cdfa1f81ed2 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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 "Fracàs d'escafatge" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Error" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:778 lib/wizard.php:790 +msgid "Invalid Host" msgstr "" -#: templates/settings.php:12 +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Enregistra" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Ajuda" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Senhal" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Ajuda" diff --git a/l10n/pa/core.po b/l10n/pa/core.po index 184ac05da0136f08cf6f5df3050e528f01c643ba..d84cad3d41f42f216cba380a6ce4339465776dfe 100644 --- a/l10n/pa/core.po +++ b/l10n/pa/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -18,13 +18,14 @@ msgstr "" "Language: pa\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -52,45 +53,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -187,59 +149,59 @@ msgstr "ਨਵੰਬ" msgid "December" msgstr "ਦਸੰਬਰ" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "ਸੈਟਿੰਗ" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "ਸਕਿੰਟ ਪਹਿਲਾਂ" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "ਅੱਜ" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "ਕੱਲ੍ਹ" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "ਪਿਛਲੇ ਮਹੀਨੇ" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "ਮਹੀਨੇ ਪਹਿਲਾਂ" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "ਪਿਛਲੇ ਸਾਲ" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "ਸਾਲਾਂ ਪਹਿਲਾਂ" @@ -307,155 +269,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "ਗਲ" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "ਸਾਂਝਾ ਕਰੋ" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "ਗਲ" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" +#: js/share.js:213 +msgid "Share with user or group …" msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "ਪਾਸਵਰ" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "ਭੇਜੋ" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "ਯੂਜ਼ਰ-ਨਾਂ" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -504,12 +494,12 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" msgstr "" #: lostpassword/templates/resetpassword.php:4 @@ -536,7 +526,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "" @@ -548,6 +538,34 @@ msgstr "" 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 "" @@ -564,108 +582,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "ਸੁਰੱਖਿਆ ਚੇਤਾਵਨੀ" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -683,19 +712,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -703,10 +740,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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/pa/files.po b/l10n/pa/files.po index 93b8cdfacd0b9bd95374d0a2892dd5947cc2e8e6..5c76d7fda4b59fb4f3366e18e66d1b4fca2e6940 100644 --- a/l10n/pa/files.po +++ b/l10n/pa/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06: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" @@ -27,220 +27,286 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "ਫਾਇਲਾਂ" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "ਗਲਤੀ" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" -#: js/fileactions.js:119 +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "ਸਾਂਝਾ ਕਰੋ" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "ਨਾਂ ਬਦਲੋ" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "" - -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "ਵਾਪਸ" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "ਗਲਤੀ" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "ਅੱਪਲੋਡ" @@ -276,65 +342,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "ਅੱਪਲੋਡ ਰੱਦ ਕਰੋ" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "ਡਾਊਨਲੋਡ" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "ਹਟਾਓ" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/pa/files_encryption.po b/l10n/pa/files_encryption.po index c49ed353a6ce8d7db8702a325cff04d7107a786e..5b6b7d13002bfcfc5c62cdfe2fa4224fa728c55d 100644 --- a/l10n/pa/files_encryption.po +++ b/l10n/pa/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:46-0400\n" -"PO-Revision-Date: 2013-09-17 13:14+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:53 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:54 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:255 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "...ਸੰਭਾਲਿਆ ਜਾ ਰਿਹਾ ਹੈ" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/pa/files_external.po b/l10n/pa/files_external.po index 95660c84dbc55f3eaeb924712fe5e773eccc137e..2c798ff1348de8775b1e5ce7fbd5f390e5eebdc2 100644 --- a/l10n/pa/files_external.po +++ b/l10n/pa/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:14+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -37,20 +37,20 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:457 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/pa/files_sharing.po b/l10n/pa/files_sharing.po index 5857f609be9fbad2aab683ec89f93c85b7a54709..3648d32e6a094ef29803feaebd7374b6aba3a2fa 100644 --- a/l10n/pa/files_sharing.po +++ b/l10n/pa/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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/authenticate.php:9 -msgid "Submit" -msgstr "" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "ਡਾਊਨਲੋਡ" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "ਅੱਪਲੋਡ" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "ਅੱਪਲੋਡ ਰੱਦ ਕਰੋ" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/pa/files_trashbin.po b/l10n/pa/files_trashbin.po index b6c92523c505857a763d592b990c611c8abd87f8..40900fcf3374cef3380f4f2559f11ad6bb7bf216 100644 --- a/l10n/pa/files_trashbin.po +++ b/l10n/pa/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:14+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "ਗਲਤੀ" -#: js/trash.js:37 -msgid "delete file permanently" +#: lib/trashbin.php:815 lib/trashbin.php:817 +msgid "restored" msgstr "" -#: js/trash.js:129 -msgid "Delete permanently" +#: templates/index.php:8 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:190 templates/index.php:21 +#: templates/index.php:22 msgid "Name" msgstr "" -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:814 lib/trash.php:816 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:25 templates/index.php:27 +msgid "Restore" msgstr "" -#: templates/index.php:24 templates/index.php:26 -msgid "Restore" +#: templates/index.php:33 +msgid "Deleted" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "ਹਟਾਓ" diff --git a/l10n/pa/lib.po b/l10n/pa/lib.po index 6747e51ba073af1ad36a8a6f14b86a8b3fae81fb..a5ae066958d133134fdfc16c9d50d0bb59ff2bec 100644 --- a/l10n/pa/lib.po +++ b/l10n/pa/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:14+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,317 @@ msgstr "" "Language: pa\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "ਸੈਟਿੰਗ" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "ਫਾਇਲਾਂ" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "ਸਕਿੰਟ ਪਹਿਲਾਂ" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "ਅੱਜ" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "ਕੱਲ੍ਹ" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "ਪਿਛਲੇ ਮਹੀਨੇ" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "ਪਿਛਲੇ ਸਾਲ" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "ਸਾਲਾਂ ਪਹਿਲਾਂ" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/pa/settings.po b/l10n/pa/settings.po index 8095ea1076f6a5b984af8411cfc3d2f0fc8411e1..20706ef03d223fce5d1a0b0b44a727857df74427 100644 --- a/l10n/pa/settings.po +++ b/l10n/pa/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+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" @@ -28,11 +28,11 @@ msgid "Authentication error" msgstr "" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -118,11 +118,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "ਬੰਦ" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "ਚਾਲੂ" @@ -130,31 +130,31 @@ msgstr "ਚਾਲੂ" msgid "Please wait...." msgstr "...ਉਡੀਕੋ ਜੀ" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "...ਅੱਪਡੇਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "ਗਲਤੀ" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "ਅੱਪਡੇਟ ਕੀਤਾ" @@ -162,7 +162,7 @@ msgstr "ਅੱਪਡੇਟ ਕੀਤਾ" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -182,44 +182,75 @@ msgstr "ਵਾਪਸ" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "ਗਰੁੱਪ" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "ਗਰੁੱਪ ਐਡਮਿਨ" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "ਹਟਾਓ" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "ਗਰੁੱਪ ਸ਼ਾਮਲ" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "__ਭਾਸ਼ਾ_ਨਾਂ__" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "ਸੁਰੱਖਿਆ ਚੇਤਾਵਨੀ" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -228,48 +259,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "ਸੈਟਅੱਪ ਚੇਤਾਵਨੀ" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -278,110 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -573,6 +636,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -590,7 +657,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/pa/user_ldap.po b/l10n/pa/user_ldap.po index 0c8fff503980b2065876743db909456d7de3868f..57a5f5729e4f258a4cdaf2de60460200057aa529 100644 --- a/l10n/pa/user_ldap.po +++ b/l10n/pa/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:14+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-27 17:09+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" @@ -25,314 +25,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "ਗਲਤੀ" -#: js/settings.js:141 +#: js/settings.js:777 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:786 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:795 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:812 js/settings.js:821 +msgid "Select groups" +msgstr "" + +#: js/settings.js:815 js/settings.js:824 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:818 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:845 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:852 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:861 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:862 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:779 lib/wizard.php:791 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:952 +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 "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "ਪਾਸਵਰ" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index d3f781b0e4da2e5c4433189b1094515be628dbd2..3bc8355954d3cd4284df9937a056837abfbccbc5 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -4,14 +4,15 @@ # # Translators: # Cyryl Sochacki , 2013 +# bobie , 2013 # adbrand , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-30 12:27+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: bobie \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,14 +20,15 @@ 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/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s Współdzielone »%s« z tobą" -#: ajax/share.php:227 -msgid "group" -msgstr "grupa" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Nie można było wysłać wiadomości do następujących użytkowników: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -53,48 +55,9 @@ msgstr "Zaktualizuj filecache" msgid "... %d%% done ..." msgstr "... %d%% udane ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Nie podano typu kategorii." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Brak kategorii do dodania?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Ta kategoria już istnieje: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Nie podano typu obiektu." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "Nie podano ID %s." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Błąd podczas dodawania %s do ulubionych." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Nie zaznaczono kategorii do usunięcia." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Błąd podczas usuwania %s z ulubionych." - #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "Brak obrazu lub pliku dostarczonego" #: avatar/controller.php:81 msgid "Unknown filetype" @@ -106,11 +69,11 @@ msgstr "Nieprawidłowe zdjęcie" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "Brak obrazka profilu tymczasowego, spróbuj ponownie" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "Brak danych do przycięcia" #: js/config.php:32 msgid "Sunday" @@ -188,63 +151,63 @@ msgstr "Listopad" msgid "December" msgstr "Grudzień" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute temu" msgstr[1] "%n minut temu" msgstr[2] "%n minut temu" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n godzine temu" msgstr[1] "%n godzin temu" msgstr[2] "%n godzin temu" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "dziś" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dzień temu" msgstr[1] "%n dni temu" msgstr[2] "%n dni temu" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "w zeszłym miesiącu" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n miesiąc temu" msgstr[1] "%n miesięcy temu" msgstr[2] "%n miesięcy temu" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "w zeszłym roku" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "lat temu" @@ -254,7 +217,7 @@ msgstr "Wybierz" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Błąd podczas ładowania pliku wybranego szablonu: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -270,7 +233,7 @@ msgstr "OK" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Błąd podczas ładowania szablonu wiadomości: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" @@ -285,13 +248,13 @@ msgstr "Konflikt pliku" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Które pliki chcesz zachować?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Jeśli wybierzesz obie wersje, skopiowany plik będzie miał dodany numerek w nazwie" #: js/oc-dialogs.js:376 msgid "Cancel" @@ -311,157 +274,185 @@ msgstr "({count} zaznaczonych)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" +msgstr "Błąd podczas ładowania szablonu istniejącego pliku" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Nie określono typu obiektu." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 -msgid "Error" -msgstr "Błąd" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Nie określono nazwy aplikacji." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Wymagany plik {file} nie jest zainstalowany!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Udostępniono" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Udostępnij" -#: js/share.js:131 js/share.js:696 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Błąd" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Błąd podczas współdzielenia" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Błąd podczas zatrzymywania współdzielenia" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Błąd przy zmianie uprawnień" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Udostępnione tobie i grupie {group} przez {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Udostępnione tobie przez {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Współdziel z" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Współdziel z użytkownikiem lub grupą ..." -#: js/share.js:188 -msgid "Share with link" -msgstr "Współdziel wraz z odnośnikiem" +#: js/share.js:219 +msgid "Share link" +msgstr "Udostępnij link" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Zabezpiecz hasłem" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Hasło" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Pozwól na publiczne wczytywanie" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Wyślij osobie odnośnik poprzez e-mail" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Wyślij" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Ustaw datę wygaśnięcia" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Data wygaśnięcia" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Współdziel poprzez e-mail:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Nie znaleziono ludzi" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "grupa" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Współdzielenie nie jest możliwe" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Współdzielone w {item} z {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Zatrzymaj współdzielenie" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "powiadom przez emaila" + +#: js/share.js:408 msgid "can edit" msgstr "może edytować" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "kontrola dostępu" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "utwórz" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "uaktualnij" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "usuń" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "współdziel" -#: js/share.js:400 js/share.js:643 +#: js/share.js:694 msgid "Password protected" msgstr "Zabezpieczone hasłem" -#: js/share.js:656 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Błąd podczas usuwania daty wygaśnięcia" -#: js/share.js:668 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Błąd podczas ustawiania daty wygaśnięcia" -#: js/share.js:683 +#: js/share.js:734 msgid "Sending ..." msgstr "Wysyłanie..." -#: js/share.js:694 +#: js/share.js:745 msgid "Email sent" msgstr "E-mail wysłany" +#: js/share.js:769 +msgid "Warning" +msgstr "Ostrzeżenie" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Nie określono typu obiektu." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Wpisz nowy" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Usuń" + +#: js/tags.js:31 +msgid "Add" +msgstr "Dodaj" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Edytuj tagi" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Błąd podczas ładowania szablonu dialogu: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Nie zaznaczono tagów do usunięcia." + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "Proszę przeładować stronę" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Link do zresetowania hasła została wysłana na adres email.
    Jeśli nie otrzymasz go w najbliższym czasie, sprawdź folder ze spamem.
    Jeśli go tam nie ma zwrócić się do administratora tego ownCloud-a." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Żądanie niepowiodło się!
    Czy Twój email/nazwa użytkownika są poprawne?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Odnośnik służący do resetowania hasła zostanie wysłany na adres e-mail." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Nazwa użytkownika" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -510,13 +501,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Pliki są szyfrowane. Jeśli nie włączono klucza odzyskiwania, nie będzie możliwe odzyskać dane z powrotem po zresetowaniu hasła. Jeśli nie masz pewności, co zrobić, prosimy o kontakt z administratorem, przed kontynuowaniem. Czy chcesz kontynuować?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Tak, naprawdę chcę zresetować hasło teraz" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Żądanie resetowania" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Resetuj" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -542,7 +533,7 @@ msgstr "Osobiste" msgid "Users" msgstr "Użytkownicy" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Aplikacje" @@ -554,6 +545,34 @@ msgstr "Administrator" msgid "Help" msgstr "Pomoc" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "Błąd ładowania tagów" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "Tag już istnieje" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "Błąd przy osuwaniu tag(ów)" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "Błąd tagowania" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "Błąd odtagowania" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "Błąd podczas dodawania do ulubionch" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "Błąd przy usuwaniu z ulubionych" + #: templates/403.php:12 msgid "Access forbidden" msgstr "Dostęp zabroniony" @@ -570,108 +589,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Cześć,\n\nInformuję cię że %s udostępnia ci %s.\nZobacz na: %s\n\nPozdrawiam!" +msgstr "Witaj,\n\ntylko informuję, że %s współdzieli z Tobą %s.\nZobacz tutaj: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Edytuj kategorie" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "Ten zasób wygaśnie %s" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Dodaj" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Pozdrawiam!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Ostrzeżenie o zabezpieczeniach" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Twója wersja PHP jest narażona na NULL Byte attack (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Proszę uaktualnij swoją instalacje PHP aby używać %s bezpiecznie." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Bezpieczny generator liczb losowych jest niedostępny. Włącz rozszerzenie OpenSSL w PHP." -#: templates/installation.php:33 +#: 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 "Bez bezpiecznego generatora liczb losowych, osoba atakująca może przewidzieć token resetujący hasło i przejąć kontrolę nad twoim kontem." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Twój katalog danych i pliki są prawdopodobnie dostępne z poziomu internetu, ponieważ plik .htaccess nie działa." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "Aby uzyskać informacje jak poprawnie skonfigurować swój serwer, zapoznaj się z dokumentacją." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Utwórz konta administratora" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Zaawansowane" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Katalog danych" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Skonfiguruj bazę danych" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "zostanie użyte" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Użytkownik bazy danych" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Hasło do bazy danych" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Nazwa bazy danych" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Obszar tabel bazy danych" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Komputer bazy danych" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Zakończ konfigurowanie" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Kończę ..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "Ta aplikacja wymaga włączenia JavaScript do poprawnego działania. Proszę włączyć JavaScript i przeładować stronę." + +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s jest dostępna. Dowiedz się więcej na temat aktualizacji." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Wyloguj" @@ -689,19 +719,27 @@ msgstr "Jeśli hasło było dawno niezmieniane, twoje konto może być zagrożon msgid "Please change your password to secure your account again." msgstr "Zmień swoje hasło, aby ponownie zabezpieczyć swoje konto." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "Uwierzytelnianie po stronie serwera nie powiodło się!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Skontaktuj się z administratorem" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Nie pamiętasz hasła?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "pamiętaj" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Zaloguj" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Alternatywne loginy" @@ -709,10 +747,37 @@ msgstr "Alternatywne loginy" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Cześć,

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

    Pozdrawiam!" +"href=\"%s\">View it!

    " +msgstr "Cześć,

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

    " + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "Ta instalacja ownCloud działa obecnie w trybie pojedynczego użytkownika." + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "To oznacza, że tylko administratorzy mogą w tej chwili używać aplikacji." -#: templates/update.php:3 +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "Skontaktuj się z administratorem, jeśli ten komunikat pojawił się nieoczekiwanie lub wyświetla się ciągle." + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "Dziękuję za cierpliwość." + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "Aktualizowanie ownCloud do wersji %s. Może to trochę potrwać." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "Ta instalacja ownCloud jest w tej chwili aktualizowana, co może chwilę potrwać" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "Proszę przeładować tę stronę za chwilę, aby kontynuować pracę w ownCloud" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index a88ee97ad7e89bf66341e6eb7e34aa273b5eb5cd..c68288c62b984042b2fcf8201c3379f5e2e7648f 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -4,14 +4,17 @@ # # Translators: # Cyryl Sochacki , 2013 +# I Robot , 2013 +# bobie , 2013 # Mariusz Fik , 2013 +# Michal Plichta , 2013 # adbrand , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:14-0400\n" -"PO-Revision-Date: 2013-09-30 12:24+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-21 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 10:30+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -30,62 +33,107 @@ msgstr "Nie można było przenieść %s - Plik o takiej nazwie już istnieje" msgid "Could not move %s" msgstr "Nie można było przenieść %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Nazwa pliku nie może być pusta." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "Nazwa pliku nie może zawierać \"/\". Proszę wybrać inną nazwę." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "Nazwa %s jest już używana w folderze %s. Proszę wybrać inną nazwę." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "Niepoprawne źródło" + +#: ajax/newfile.php:86 +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:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Błąd podczas pobierania %s do %S" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Błąd przy tworzeniu pliku" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "Nazwa folderu nie może być pusta." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "Nazwa folderu nie może zawierać \"/\". Proszę wybrać inną nazwę." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Błąd przy tworzeniu folderu" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Nie można ustawić katalog wczytywania." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Nieprawidłowy Token" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Żaden plik nie został załadowany. Nieznany błąd" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Nie było błędów, plik wysłano poprawnie." -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Załadowany plik został wysłany tylko częściowo." -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Nie wysłano żadnego pliku" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Brak folderu tymczasowego" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Błąd zapisu na dysk" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Za mało dostępnego miejsca" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "Nieudane przesłanie. Nie można pobrać informacji o pliku." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "Nieudane przesłanie. Nie można znaleźć przesyłanego pliku" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Zła ścieżka." @@ -93,160 +141,181 @@ msgstr "Zła ścieżka." msgid "Files" msgstr "Pliki" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Nie można przesłać {filename} być może jest katalogiem lub posiada 0 bajtów" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Za mało miejsca" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "Nie można uzyskać wyniku z serwera." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "URL nie może być pusty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "URL nie może być pusty" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Nieprawidłowa nazwa folderu. Wykorzystanie 'Shared' jest zarezerwowane przez ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "W katalogu domowym \"Shared\" jest zarezerwowana nazwa pliku" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Błąd" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} już istnieje" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Nie można utworzyć pliku" -#: js/fileactions.js:119 +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Nie można utworzyć folderu" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Błąd przy pobieraniu adresu URL" + +#: js/fileactions.js:125 msgid "Share" msgstr "Udostępnij" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Trwale usuń" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Zmień nazwę" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Oczekujące" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} już istnieje" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "zastąp" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "zasugeruj nazwę" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Nie można zmienić nazwy pliku" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "anuluj" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "zastąpiono {new_name} przez {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "cofnij" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Błąd podczas usuwania pliku" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n katalog" msgstr[1] "%n katalogi" msgstr[2] "%n katalogów" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n plik" msgstr[1] "%n pliki" msgstr[2] "%n plików" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" -msgstr "{katalogi} and {pliki}" +msgstr "{dirs} and {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Wysyłanie %n pliku" msgstr[1] "Wysyłanie %n plików" msgstr[2] "Wysyłanie %n plików" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "„.” jest nieprawidłową nazwą pliku." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Nazwa pliku nie może być pusta." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nieprawidłowa nazwa. Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*' są niedozwolone." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Magazyn jest pełny. Pliki nie mogą zostać zaktualizowane lub zsynchronizowane!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Twój magazyn jest prawie pełny ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "Aplikacja szyfrująca jest aktywna, ale twoje klucze nie zostały zainicjowane, prosze wyloguj się i zaloguj ponownie." + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "Klucz prywatny nie jest poprawny! Może Twoje hasło zostało zmienione z zewnątrz. Można zaktualizować hasło klucza prywatnego w ustawieniach osobistych w celu odzyskania dostępu do plików" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Szyfrowanie zostało wyłączone, ale nadal pliki są zaszyfrowane. Przejdź do ustawień osobistych i tam odszyfruj pliki." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Pobieranie jest przygotowywane. Może to zająć trochę czasu jeśli pliki są duże." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "Błąd prz przenoszeniu pliku" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Błąd" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Nazwa" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Rozmiar" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Modyfikacja" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Niepoprawna nazwa folderu. Wykorzystanie \"Shared\" jest zarezerwowane." + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s nie można zmienić nazwy" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Wyślij" @@ -282,65 +351,69 @@ msgstr "Maksymalna wielkość pliku wejściowego ZIP " msgid "Save" msgstr "Zapisz" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nowy" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "Nowy plik tekstowy" + +#: templates/index.php:8 msgid "Text file" msgstr "Plik tekstowy" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Nowy folder" + +#: templates/index.php:10 msgid "Folder" msgstr "Folder" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Z odnośnika" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Pliki usunięte" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Anuluj wysyłanie" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Nie masz uprawnień do zapisu w tym miejscu." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "Nie masz uprawnień do wczytywania lub tworzenia plików w tym miejscu" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Pusto. Wyślij coś!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Pobierz" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Zatrzymaj współdzielenie" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Usuń" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Ładowany plik jest za duży" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Pliki, które próbujesz przesłać, przekraczają maksymalną dopuszczalną wielkość." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Skanowanie plików, proszę czekać." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Aktualnie skanowane" diff --git a/l10n/pl/files_encryption.po b/l10n/pl/files_encryption.po index a232ad391349a24fc5d67505cd650539b497ea75..268225af9be992b1ffa6cbf2b9d1c4574399c745 100644 --- a/l10n/pl/files_encryption.po +++ b/l10n/pl/files_encryption.po @@ -4,13 +4,14 @@ # # Translators: # Cyryl Sochacki , 2013 +# bobie , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"PO-Revision-Date: 2013-12-13 14:46+0000\n" +"Last-Translator: bobie \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,75 +45,96 @@ msgstr "Zmiana hasła udana." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Nie można zmienić hasła. Może stare hasło nie było poprawne." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Pomyślnie zaktualizowano hasło klucza prywatnego." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Nie można zmienić prywatnego hasła. Może stare hasło nie było poprawne." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "Klucz prywatny nie jest ważny! Prawdopodobnie Twoje hasło zostało zmienione poza systemem ownCloud (np. w katalogu firmy). Aby odzyskać dostęp do zaszyfrowanych plików można zaktualizować hasło klucza prywatnego w ustawieniach osobistych." +"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 "Szyfrowanie aplikacja nie została zainicjowane! Może szyfrowanie aplikacji zostało ponownie włączone podczas tej sesji. Spróbuj się wylogować i zalogować ponownie aby zainicjować szyfrowanie aplikacji." -#: hooks/hooks.php:41 +#: 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 "Klucz prywatny nie jest poprawny! Prawdopodobnie Twoje hasło zostało zmienione poza %s (np. w katalogu firmy). Aby odzyskać dostęp do zaszyfrowanych plików można zaktualizować hasło klucza prywatnego w ustawieniach osobistych." + +#: files/error.php:19 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "Nie można odszyfrować tego pliku, prawdopodobnie jest to plik udostępniony. Poproś właściciela pliku o ponowne udostępnianie pliku Tobie." + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Nieznany błąd proszę sprawdzić ustawienia systemu lub skontaktuj się z administratorem" + +#: hooks/hooks.php:59 msgid "Missing requirements." msgstr "Brak wymagań." -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Proszę upewnić się, że PHP 5.3.3 lub nowszy jest zainstalowany i że OpenSSL oraz rozszerzenie PHP jest włączone i poprawnie skonfigurowane. Obecnie szyfrowanie aplikacji zostało wyłączone." -#: hooks/hooks.php:249 +#: hooks/hooks.php:278 msgid "Following users are not set up for encryption:" msgstr "Następujący użytkownicy nie mają skonfigurowanego szyfrowania:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "Rozpoczęto szyfrowanie... To może chwilę potrwać. Proszę czekać." + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Zapisywanie..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Klucz prywatny nie jest poprawny! Może Twoje hasło zostało zmienione z zewnątrz." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Przejdź bezpośrednio do" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Możesz odblokować swój klucz prywatny w swojej" - -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "Ustawienia osobiste" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Szyfrowanie" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Włączhasło klucza odzyskiwania (pozwala odzyskać pliki użytkowników w przypadku utraty hasła):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Hasło klucza odzyskiwania" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Powtórz hasło klucza odzyskiwania" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Włączone" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Wyłączone" @@ -120,58 +142,62 @@ msgstr "Wyłączone" msgid "Change recovery key password:" msgstr "Zmień hasło klucza odzyskiwania" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Stare hasło klucza odzyskiwania" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Nowe hasło klucza odzyskiwania" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "Powtórz nowe hasło klucza odzyskiwania" + +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Zmień hasło" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Hasło klucza prywatnego nie pasuje do hasła logowania:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Podaj swoje stare prywatne hasło aby ustawić nowe" -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Jeśli nie pamiętasz swojego starego hasła, poproś swojego administratora, aby odzyskać pliki." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Stare hasło logowania" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Bieżące hasło logowania" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Aktualizacja hasła klucza prywatnego" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Włącz hasło odzyskiwania:" -#: templates/settings-personal.php:47 +#: 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 "Włączenie tej opcji umożliwia otrzymać dostęp do zaszyfrowanych plików w przypadku utraty hasła" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Ustawienia odzyskiwania plików zmienione" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Nie można zmienić pliku odzyskiwania" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 759e4d7247b08d5a13730a0ae41cc5023af5febf..0f8b413e89ad22e50e9f966b2bb8d58241ac45e7 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ 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" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Dostęp do" @@ -26,7 +26,7 @@ msgstr "Dostęp do" msgid "Error configuring Dropbox storage" msgstr "Wystąpił błąd podczas konfigurowania zasobu Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Udziel dostępu" @@ -34,24 +34,24 @@ msgstr "Udziel dostępu" msgid "Please provide a valid Dropbox app key and secret." msgstr "Proszę podać prawidłowy klucz aplikacji Dropbox i klucz sekretny." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Wystąpił błąd podczas konfigurowania zasobu Google Drive" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Ostrzeżenie: \"smbclient\" nie jest zainstalowany. Zamontowanie katalogów CIFS/SMB nie jest możliwe. Skontaktuj sie z administratorem w celu zainstalowania." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Ostrzeżenie: Wsparcie dla FTP w PHP nie jest zainstalowane lub włączone. Skontaktuj sie z administratorem w celu zainstalowania lub włączenia go." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 0598448aa83d75c9582771ad59a1ddb153fdd1db..26d13fcd2021a70cd60526bda6563c28c39a520a 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Udział ten jest chroniony hasłem" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "To hasło jest niewłaściwe. Spróbuj ponownie." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Hasło" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Wyślij" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Przepraszamy ale wygląda na to, że ten link już nie działa." @@ -54,28 +54,32 @@ msgstr "Udostępnianie jest wyłączone" msgid "For more info, please ask the person who sent this link." msgstr "Aby uzyskać więcej informacji proszę poprosić osobę, która wysłał ten link." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s współdzieli folder z tobą %s" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s współdzieli z tobą plik %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Pobierz" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Wyślij" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Anuluj wysyłanie" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Podgląd nie jest dostępny dla" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Bezpośredni link" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index d06393b1c89b8f51fad4bdb9cae6e73d17eb63ef..bcd5e63eee6d280654a45b8e54e1924c73eadc69 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-05 07:36-0400\n" -"PO-Revision-Date: 2013-09-04 22:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -28,57 +28,31 @@ msgstr "Nie można trwale usunąć %s" msgid "Couldn't restore %s" msgstr "Nie można przywrócić %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "wykonywanie operacji przywracania" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Błąd" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "trwale usuń plik" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Trwale usuń" - -#: js/trash.js:184 templates/index.php:17 -msgid "Name" -msgstr "Nazwa" - -#: js/trash.js:185 templates/index.php:27 -msgid "Deleted" -msgstr "Usunięte" - -#: js/trash.js:193 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n katalogów" - -#: js/trash.js:199 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n plików" - -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "przywrócony" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nic tu nie ma. Twój kosz jest pusty!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Nazwa" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Przywróć" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Usunięte" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Usuń" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 9e29c51c5a9e8a08335e00b55c5ea2955e1741f0..2f3c4cb6cbae4002ca84aa556902b04f59b108b6 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -4,13 +4,14 @@ # # Translators: # Cyryl Sochacki , 2013 +# bobie , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-30 12:26+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,322 +19,321 @@ 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" -#: app.php:237 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Aplikacja \"%s\" nie może zostać zainstalowana, ponieważ nie jest zgodna z tą wersją ownCloud." -#: app.php:248 +#: private/app.php:255 msgid "No app name specified" msgstr "Nie określono nazwy aplikacji" -#: app.php:352 +#: private/app.php:360 msgid "Help" msgstr "Pomoc" -#: app.php:365 +#: private/app.php:373 msgid "Personal" msgstr "Osobiste" -#: app.php:376 +#: private/app.php:384 msgid "Settings" msgstr "Ustawienia" -#: app.php:388 +#: private/app.php:396 msgid "Users" msgstr "Użytkownicy" -#: app.php:401 +#: private/app.php:409 msgid "Admin" msgstr "Administrator" -#: app.php:832 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Błąd przy aktualizacji \"%s\"." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Domyślny profil zdjęć nie działa z szyfrowaniem jeszcze" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Nieznany typ pliku" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Błędne zdjęcie" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "Kontrolowane serwisy" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "Nie można otworzyć \"%s\"" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Pobieranie ZIP jest wyłączone." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Pliki muszą zostać pobrane pojedynczo." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Wróć do plików" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Wybrane pliki są zbyt duże, aby wygenerować plik zip." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Pobierz pliki w mniejszy kawałkach, oddzielnie lub poproś administratora o zwiększenie limitu." +msgstr "Proszę ściągać pliki osobno w mniejszych paczkach lub poprosić administratora." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Nie określono źródła podczas instalacji aplikacji" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Nie określono linku skąd aplikacja ma być zainstalowana" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Nie określono lokalnego pliku z którego miała być instalowana aplikacja" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Typ archiwum %s nie jest obsługiwany" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Nie udało się otworzyć archiwum podczas instalacji aplikacji" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "Aplikacja nie posiada pliku info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "Aplikacja nie może być zainstalowany ponieważ nie dopuszcza kod w aplikacji" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Aplikacja nie może zostać zainstalowana ponieważ jest niekompatybilna z tą wersja ownCloud" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Aplikacja nie może być zainstalowana ponieważ true tag nie jest true , co nie jest dozwolone dla aplikacji nie wysłanych" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Nie można zainstalować aplikacji, ponieważ w wersji info.xml/version nie jest taka sama, jak wersja z app store" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Katalog aplikacji już isnieje" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Nie mogę utworzyć katalogu aplikacji. Proszę popraw uprawnienia. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Aplikacja nie jest włączona" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Błąd uwierzytelniania" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token wygasł. Proszę ponownie załadować stronę." -#: search/provider/file.php:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Pliki" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Połączenie tekstowe" -#: search/provider/file.php:30 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Obrazy" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s wpisz nazwę użytkownika do bazy" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s wpisz nazwę bazy." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s nie można używać kropki w nazwie bazy danych" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nazwa i/lub hasło serwera MS SQL jest niepoprawne: %s." -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Należy wprowadzić istniejące konto użytkownika lub administratora." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL: Nazwa użytkownika i/lub hasło jest niepoprawne" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "Błąd DB: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Niepoprawna komenda: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Użytkownik MySQL '%s'@'localhost' już istnieje" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Usuń tego użytkownika z MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Użytkownik MySQL '%s'@'%%t' już istnieje" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Usuń tego użytkownika z MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Nie można ustanowić połączenia z bazą Oracle" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Oracle: Nazwa użytkownika i/lub hasło jest niepoprawne" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Niepoprawne polecania: \"%s\", nazwa: %s, hasło: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL: Nazwa użytkownika i/lub hasło jest niepoprawne" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Ustaw nazwę administratora." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Ustaw hasło administratora." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serwer internetowy nie jest jeszcze poprawnie skonfigurowany, aby umożliwić synchronizację plików, ponieważ interfejs WebDAV wydaje się być uszkodzony." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Sprawdź ponownie przewodniki instalacji." -#: tags.php:194 +#: private/tags.php:194 #, php-format msgid "Could not find category \"%s\"" msgstr "Nie można odnaleźć kategorii \"%s\"" -#: template/functions.php:96 +#: private/template/functions.php:130 msgid "seconds ago" msgstr "sekund temu" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute temu" msgstr[1] "%n minut temu" msgstr[2] "%n minut temu" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n godzinę temu" msgstr[1] "%n godzin temu" msgstr[2] "%n godzin temu" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "dziś" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "wczoraj" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n dzień temu" msgstr[1] "%n dni temu" msgstr[2] "%n dni temu" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "w zeszłym miesiącu" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n miesiąc temu" msgstr[1] "%n miesięcy temu" msgstr[2] "%n miesięcy temu" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "w zeszłym roku" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "lat temu" - -#: template.php:297 -msgid "Caused by:" -msgstr "Spowodowane przez:" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 830b2045a3fdd06dfbf99fa8ce8904dda511b6e3..e2ec0caf2546ab439b38d05d81752364c5fa4f8c 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:17-0400\n" -"PO-Revision-Date: 2013-09-30 12:15+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-21 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 10:40+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -29,12 +29,12 @@ msgid "Authentication error" msgstr "Błąd uwierzytelniania" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Twoje wyświetlana nazwa została zmieniona." +msgid "Your full name has been changed." +msgstr "Twoja pełna nazwa została zmieniona." #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Nie można zmienić wyświetlanej nazwy" +msgid "Unable to change full name" +msgstr "Nie można zmienić pełnej nazwy" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -92,24 +92,24 @@ msgstr "Złe hasło" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "Niedostarczony użytkownik" #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "Podaj hasło odzyskiwania administratora, w przeciwnym razie wszystkie dane użytkownika zostaną utracone" #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "Błędne hasło odzyskiwania. Sprawdź hasło i spróbuj ponownie." #: changepassword/controller.php:87 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "Zaplecze nie obsługuje zmiany hasła, ale klucz szyfrowania użytkownika został pomyślnie zaktualizowany." #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" @@ -159,7 +159,7 @@ msgstr "Aktualizuj" msgid "Updated" msgstr "Zaktualizowano" -#: js/personal.js:221 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Wybierz zdjęcie profilu" @@ -167,7 +167,7 @@ msgstr "Wybierz zdjęcie profilu" msgid "Decrypting files... Please wait, this can take some time." msgstr "Odszyfrowuje pliki... Proszę czekać, to może zająć jakiś czas." -#: js/personal.js:288 +#: js/personal.js:287 msgid "Saving..." msgstr "Zapisywanie..." @@ -183,44 +183,75 @@ msgstr "cofnij" msgid "Unable to remove user" msgstr "Nie można usunąć użytkownika" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupy" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Administrator grupy" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Usuń" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "dodaj grupę" -#: js/users.js:436 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Należy podać prawidłową nazwę użytkownika" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Błąd podczas tworzenia użytkownika" -#: js/users.js:442 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Należy podać prawidłowe hasło" +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Ostrzeżenie: Katalog domowy dla użytkownika \"{user}\" już istnieje" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "polski" -#: templates/admin.php:15 +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "Wszystko (Informacje, ostrzeżenia, błędy i poważne problemy, debug)" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "Informacje, ostrzeżenia, błędy i poważne problemy" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "Ostrzeżenia, błędy i poważne problemy" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "Błędy i poważne problemy" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "Tylko poważne problemy" + +#: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" msgstr "Ostrzeżenie o zabezpieczeniach" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -229,48 +260,68 @@ msgid "" "root." msgstr "Twój katalog danych i pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess, który dostarcza ownCloud nie działa. Sugerujemy, aby skonfigurować serwer WWW w taki sposób, aby katalog danych nie był dostępny lub przenieść katalog danych poza główny katalog serwera WWW." -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Ostrzeżenia konfiguracji" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serwer internetowy nie jest jeszcze poprawnie skonfigurowany, aby umożliwić synchronizację plików, ponieważ interfejs WebDAV wydaje się być uszkodzony." -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Proszę sprawdź ponownie przewodnik instalacji." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Brak modułu „fileinfo”" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Brak modułu PHP „fileinfo”. Zalecamy włączenie tego modułu, aby uzyskać najlepsze wyniki podczas wykrywania typów MIME." -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "Twoja wersja PHP jest za stara" + +#: templates/admin.php:82 +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 "Twoja wersja PHP jest za stara. Rekomendujemy przynajmniej wersje 5.3.8. Jeśli masz starsza wersję ownCloud może nie działać poprawnie." + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Lokalizacja nie działa" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "Ustawienia regionalne systemu nie można ustawić na jeden, który obsługuje UTF-8." + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "System lokalny nie może włączyć ustawień regionalnych %s. Może to oznaczać, że wystąpiły problemy z niektórymi znakami w nazwach plików. Zalecamy instalację wymaganych pakietów na tym systemie w celu wsparcia %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Połączenie internetowe nie działa" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -279,110 +330,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Ten serwer OwnCloud nie ma połączenia z Internetem. Oznacza to, że niektóre z funkcji, takich jak montowanie zewnętrznych zasobów, powiadomienia o aktualizacji lub 3-cie aplikacje mogą nie działać. Dostęp do plików z zewnątrz i wysyłanie powiadomienia e-mail nie może również działać. Sugerujemy, aby włączyć połączenia internetowego dla tego serwera, jeśli chcesz mieć wszystkie opcje." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Wykonuj jedno zadanie wraz z każdą wczytaną stroną" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php jest zarejestrowany w serwisie webcron do uruchamiania cron.php raz na minutę przez http." +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Użyj systemowego cron-a do uruchamiania cron.php raz na minutę." +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Udostępnianie" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Włącz API udostępniania" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Zezwalaj aplikacjom na korzystanie z API udostępniania" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Zezwalaj na odnośniki" -#: templates/admin.php:135 +#: templates/admin.php:178 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:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Pozwól na publiczne wczytywanie" -#: templates/admin.php:144 +#: templates/admin.php:187 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:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Zezwalaj na ponowne udostępnianie" -#: templates/admin.php:153 +#: templates/admin.php:196 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:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Zezwalaj użytkownikom na współdzielenie z kimkolwiek" -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Pozwól na mailowe powiadomienia" + +#: templates/admin.php:214 +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:221 msgid "Security" msgstr "Bezpieczeństwo" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Wymuś HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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:191 +#: templates/admin.php:242 #, 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:203 +#: templates/admin.php:254 msgid "Log" msgstr "Logi" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Poziom logów" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Więcej" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Mniej" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Wersja" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Użyj tego adresu do dostępu do twoich plików przez WebDAV" +"Use this address to access your Files via " +"WebDAV" +msgstr "Użyj tego adresu do dostępu do twoich plików przez WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Szyfrowanie" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "Aplikacja szyfrowanie nie jest włączona, odszyfruj wszystkie plik" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Hasło logowania" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Odszyfruj wszystkie pliki" @@ -574,6 +637,10 @@ msgstr "Wpisz hasło odzyskiwania, aby odzyskać pliki użytkowników podczas zm msgid "Default Storage" msgstr "Magazyn domyślny" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "Proszę ustawić ograniczenie zasobów (np. \"512 MB\" albo \"12 GB)" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Bez limitu" @@ -591,8 +658,8 @@ msgid "Storage" msgstr "Magazyn" #: templates/users.php:108 -msgid "change display name" -msgstr "zmień wyświetlaną nazwę" +msgid "change full name" +msgstr "Zmień pełna nazwę" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index fc5af2df2130b7aeaf2827362eb0e49cfc6b4142..f625cf545fc3764ea93e6fc55fdf247c0b36c3c9 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:40+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -27,314 +27,427 @@ msgstr "Nie udało się wyczyścić mapowania." msgid "Failed to delete the server configuration" msgstr "Nie można usunąć konfiguracji serwera" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Konfiguracja jest prawidłowa i można ustanowić połączenie!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Konfiguracja jest prawidłowa, ale Bind nie. Sprawdź ustawienia serwera i poświadczenia." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "Konfiguracja jest nieprawidłowa. Proszę przejrzeć logi dziennika ownCloud " +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 "" -#: js/settings.js:66 +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 msgid "Deletion failed" msgstr "Usunięcie nie powiodło się" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Przejmij ustawienia z ostatnich konfiguracji serwera?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Zachować ustawienia?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Nie można dodać konfiguracji serwera" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "Mapoanie wyczyszczone" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Sukces" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Błąd" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Wybierz grupy" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Test połączenia udany" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Test połączenia nie udany" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Czy chcesz usunąć bieżącą konfigurację serwera?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Potwierdź usunięcie" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" msgstr "" -#: templates/settings.php:12 +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Zapisz" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Konfiguracja testowa" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Pomoc" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Ostrzeżenie: Moduł PHP LDAP nie jest zainstalowany i nie będzie działał. Poproś administratora o włączenie go." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Konfiguracja servera" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +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 "Dodaj konfigurację servera" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Host" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Można pominąć protokół, z wyjątkiem wymaganego protokołu SSL. Następnie uruchom z ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Baza DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Jedna baza DN na linię" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Bazę DN można określić dla użytkowników i grup w karcie Zaawansowane" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Port" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "Użytkownik DN" -#: templates/settings.php:46 +#: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "DN użytkownika klienta, z którym powiązanie wykonuje się, np. uid=agent,dc=example,dc=com. Dla dostępu anonimowego pozostawić DN i hasło puste" -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Hasło" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Dla dostępu anonimowego pozostawić DN i hasło puste." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Filtr logowania użytkownika" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Jedna baza DN na linię" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Bazę DN można określić dla użytkowników i grup w karcie Zaawansowane" + +#: templates/part.wizard-userfilter.php:4 #, php-format -msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +msgid "Limit the access to %s to users meeting this criteria:" msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Lista filtrów użytkownika" - -#: templates/settings.php:58 +#: templates/part.wizard-userfilter.php:31 +#, php-format msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Grupa filtrów" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Wróć" -#: templates/settings.php:62 +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Kontynuuj " + +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Ostrzeżenie: Moduł PHP LDAP nie jest zainstalowany i nie będzie działał. Poproś administratora o włączenie go." + +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Konfiguracja połączeń" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Konfiguracja archiwum" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Gdy niezaznaczone, ta konfiguracja zostanie pominięta." -#: templates/settings.php:69 -msgid "Port" -msgstr "Port" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Kopia zapasowa (repliki) host" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Dać opcjonalnie hosta kopii zapasowej . To musi być repliką głównego serwera LDAP/AD." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Kopia zapasowa (repliki) Port" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Wyłącz serwer główny" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." -msgstr "" +msgstr "Połącz tylko do repliki serwera." -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Użyj TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Nie używaj go dodatkowo dla połączeń protokołu LDAPS, zakończy się niepowodzeniem." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Wielkość liter serwera LDAP (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Wyłączyć sprawdzanie poprawności certyfikatu SSL." -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Przechowuj czas życia" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "w sekundach. Zmiana opróżnia pamięć podręczną." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Ustawienia katalogów" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Pole wyświetlanej nazwy użytkownika" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Drzewo bazy użytkowników" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "Jeden użytkownik Bazy DN na linię" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "Szukaj atrybutów" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Opcjonalnie; jeden atrybut w wierszu" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Pole wyświetlanej nazwy grupy" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Drzewo bazy grup" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "Jedna grupa bazy DN na linię" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Grupa atrybutów wyszukaj" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Członek grupy stowarzyszenia" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Specjalne atrybuty" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Pole przydziału" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Przydział domyślny" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "w bajtach" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "Pole email" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "Reguły nazewnictwa folderu domowego użytkownika" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Pozostaw puste dla user name (domyślnie). W przeciwnym razie podaj atrybut LDAP/AD." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "Wewnętrzna nazwa użytkownika" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -350,15 +463,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "Wewnętrzny atrybut nazwy uzżytkownika:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "Zastąp wykrywanie UUID" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -369,15 +482,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atrybuty UUID:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "Atrybuty UUID dla użytkowników:" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "Atrybuty UUID dla grup:" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "Mapowanie użytkownika LDAP" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -391,18 +508,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "Czyść Mapowanie użytkownika LDAP" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Czyść Mapowanie nazwy grupy LDAP" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Konfiguracja testowa" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Pomoc" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 281471b1b940247f0e632b06152751020920ac4b..368acc1e41ebd9e37a40740ca6f09bb3443fbc3a 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 16:40+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -19,14 +19,15 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s compartilhou »%s« com você" -#: ajax/share.php:227 -msgid "group" -msgstr "grupo" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Não foi possível enviar e-mail para os seguintes usuários: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -53,45 +54,6 @@ msgstr "Atualizar cache de arquivo" msgid "... %d%% done ..." msgstr "... %d%% concluído ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Tipo de categoria não fornecido." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Nenhuma categoria a adicionar?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Esta categoria já existe: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "tipo de objeto não fornecido." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID não fornecido(s)." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Erro ao adicionar %s aos favoritos." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Nenhuma categoria selecionada para remoção." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Erro ao remover %s dos favoritos." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Nenhuma imagem ou arquivo fornecido" @@ -188,59 +150,59 @@ msgstr "novembro" msgid "December" msgstr "dezembro" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Ajustes" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] " ha %n minuto" msgstr[1] "ha %n minutos" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "ha %n hora" msgstr[1] "ha %n horas" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "hoje" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "ontem" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "ha %n dia" msgstr[1] "ha %n dias" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "último mês" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "ha %n mês" msgstr[1] "ha %n meses" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "meses atrás" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "último ano" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "anos atrás" @@ -308,155 +270,183 @@ msgstr "({count} selecionados)" msgid "Error loading file exists template" msgstr "Erro ao carregar arquivo existe modelo" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "O tipo de objeto não foi especificado." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Erro" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "O nome do app não foi especificado." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "O arquivo {file} necessário não está instalado!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Compartilhados" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Compartilhar" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Erro" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Erro ao compartilhar" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Erro ao descompartilhar" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Erro ao mudar permissões" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Compartilhado com você e com o grupo {group} por {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Compartilhado com você por {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Compartilhar com" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Compartilhar com usuário ou grupo ..." -#: js/share.js:188 -msgid "Share with link" -msgstr "Compartilhar com link" +#: js/share.js:219 +msgid "Share link" +msgstr "Compartilher link" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Proteger com senha" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Senha" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Permitir upload público" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Enviar link por e-mail" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Enviar" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Definir data de expiração" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Data de expiração" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Compartilhar via e-mail:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Nenhuma pessoa encontrada" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "grupo" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Não é permitido re-compartilhar" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Compartilhado em {item} com {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Descompartilhar" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "notificar por e-mail" + +#: js/share.js:408 msgid "can edit" msgstr "pode editar" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "controle de acesso" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "criar" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "atualizar" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "remover" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "compartilhar" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Protegido com senha" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Erro ao remover data de expiração" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Erro ao definir data de expiração" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Enviando ..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "E-mail enviado" +#: js/share.js:769 +msgid "Warning" +msgstr "Aviso" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "O tipo de objeto não foi especificado." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Entrar uma nova" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Eliminar" + +#: js/tags.js:31 +msgid "Add" +msgstr "Adicionar" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Editar etiqueta" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Erro carregando diálogo de formatação:{error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Nenhuma etiqueta selecionada para deleção." + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "Por favor recarregue a página" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "O link para redefinir sua senha foi enviada para o seu e-mail.
    Se você não recebê-lo dentro de um período razoável de tempo, verifique o spam/lixo.
    Se ele não estiver lá perguntar ao seu administrador local." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "O pedido falhou!
    Certifique-se que seu e-mail/username estavam corretos?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Você receberá um link para redefinir sua senha por e-mail." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Nome de usuário" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -505,13 +495,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Seus arquivos estão encriptados. Se você não habilitou a chave de recuperação, não haverá maneira de recuperar seus dados após criar uma nova senha. Se você não tem certeza do que fazer, por favor entre em contato com o administrador antes de continuar. Tem certeza que realmente quer continuar?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Sim, realmente quero criar uma nova senha." -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Pedir redefinição" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Resetar" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -537,7 +527,7 @@ msgstr "Pessoal" msgid "Users" msgstr "Usuários" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Aplicações" @@ -549,6 +539,34 @@ msgstr "Admin" msgid "Help" msgstr "Ajuda" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr " Erro carregando etiqueta" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "tiqueta já existe" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "Erro deletando etiqueta(s)" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "Erro etiquetando" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "Erro retirando etiquetando" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "Erro colocando no favoritos" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "Erro retirando do favoritos" + #: templates/403.php:12 msgid "Access forbidden" msgstr "Acesso proibido" @@ -565,108 +583,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Olá,\n\napenas para você saber que %s compartilhou %s com você.\nVeja: %s\n\nAbraços!" +msgstr "Olá,\n\ngostaria que você soubesse que %s compartilhou %s com vecê.\nVeja isto: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Editar categorias" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "O compartilhamento irá expirar em %s." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Adicionar" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Saúde!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Aviso de Segurança" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Sua versão do PHP está vulnerável ao ataque NULL Byte (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Por favor, atualize sua instalação PHP para usar %s segurança." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Nenhum gerador de número aleatório de segurança disponível. Habilite a extensão OpenSSL do PHP." -#: templates/installation.php:33 +#: 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 "Sem um gerador de número aleatório de segurança, um invasor pode ser capaz de prever os símbolos de redefinição de senhas e assumir sua conta." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Seu diretório de dados e arquivos são provavelmente acessíveis pela internet, porque o .htaccess não funciona." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "Para obter informações sobre como configurar corretamente o seu servidor, consulte a documentação." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Criar uma conta de administrador" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Avançado" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Pasta de dados" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Configurar o banco de dados" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "será usado" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Usuário do banco de dados" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Senha do banco de dados" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Nome do banco de dados" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Espaço de tabela do banco de dados" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Host do banco de dados" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Concluir configuração" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Finalizando ..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "Esta aplicação reque JavaScript habilidado para correta operação.\nPor favor habilite JavaScript e recarregue esta esta interface." + +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s está disponível. Obtenha mais informações sobre como atualizar." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Sair" @@ -684,19 +713,27 @@ msgstr "Se você não mudou a sua senha recentemente, a sua conta pode estar com msgid "Please change your password to secure your account again." msgstr "Por favor troque sua senha para tornar sua conta segura novamente." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "Autenticação do servidor falhou!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Por favor, contate o administrador." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Esqueceu sua senha?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "lembrar" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Fazer login" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Logins alternativos" @@ -704,10 +741,37 @@ msgstr "Logins alternativos" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Olá,

    apenas para você saber que %s compartilhou %s com você.
    Veja:

    Abraços!" +"href=\"%s\">View it!

    " +msgstr "Olá,

    só gostaria que você soubesse que %s compartilhou »%s« com você.
    Veja isto!
    \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -30,62 +30,107 @@ msgstr "Impossível mover %s - Um arquivo com este nome já existe" msgid "Could not move %s" msgstr "Impossível mover %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "O nome do arquivo não pode estar vazio." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "O nome do arquivo não deve conter \"/\". Por favor, escolha um nome diferente." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "O nome %s já é usado na pasta %s. Por favor, escolha um nome diferente." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "Não é uma fonte válida" + +#: ajax/newfile.php:86 +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:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Erro ao baixar %s para %s" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Erro ao criar o arquivo" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "O nome da pasta não pode estar vazio." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "O nome da pasta não pode conter \"/\". Por favor, escolha um nome diferente." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Erro ao criar a pasta" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Impossível configurar o diretório de upload" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Token inválido" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Nenhum arquivo foi enviado. Erro desconhecido" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Sem erros, o arquivo foi enviado com sucesso" -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "O arquivo foi parcialmente enviado" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Nenhum arquivo enviado" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Pasta temporária não encontrada" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Falha ao escrever no disco" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Espaço de armazenamento insuficiente" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 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:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "Falha no envio. Não foi possível encontrar o arquivo enviado" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Diretório inválido." @@ -93,157 +138,178 @@ msgstr "Diretório inválido." msgid "Files" msgstr "Arquivos" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Incapaz de fazer o envio de {filename}, pois é um diretório ou tem 0 bytes" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Espaço de armazenamento insuficiente" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "Não foi possível obter o resultado do servidor." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "URL não pode ficar em branco" +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "URL não pode estar vazia" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Nome de pasta inválido. O uso do nome 'Compartilhado' é reservado ao ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "Na pasta home 'Shared- Compartilhada' é um nome reservado" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Erro" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} já existe" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Não foi possível criar o arquivo" -#: js/fileactions.js:119 +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Não foi possível criar a pasta" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Erro ao buscar URL" + +#: js/fileactions.js:125 msgid "Share" msgstr "Compartilhar" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Excluir permanentemente" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Renomear" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} já existe" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "substituir" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "sugerir nome" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Não foi possível renomear o arquivo" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "cancelar" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "Substituído {old_name} por {new_name} " -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "desfazer" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Erro eliminando o arquivo." + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n pasta" msgstr[1] "%n pastas" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n arquivo" msgstr[1] "%n arquivos" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Enviando %n arquivo" msgstr[1] "Enviando %n arquivos" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' é um nome de arquivo inválido." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "O nome do arquivo não pode estar vazio." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Seu armazenamento está cheio, arquivos não podem mais ser atualizados ou sincronizados!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Seu armazenamento está quase cheio ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "App de encriptação está ativado, mas as chaves não estão inicializadas, por favor log-out e faça login novamente" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "Chave do App de Encriptação é inválida. Por favor, atualize sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados." + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Encriptação foi desabilitada mas seus arquivos continuam encriptados. Por favor vá a suas configurações pessoais para descriptar seus arquivos." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Seu download está sendo preparado. Isto pode levar algum tempo se os arquivos forem grandes." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "Erro movendo o arquivo" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Erro" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Nome" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Tamanho" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Modificado" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Nome da pasta inválido. Uso de 'Shared' é reservado." + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s não pode ser renomeado" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Upload" @@ -279,65 +345,69 @@ msgstr "Tamanho máximo para arquivo ZIP" msgid "Save" msgstr "Guardar" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Novo" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "Novo arquivo texto" + +#: templates/index.php:8 msgid "Text file" msgstr "Arquivo texto" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Nova pasta" + +#: templates/index.php:10 msgid "Folder" msgstr "Pasta" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Do link" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Arquivos apagados" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Você não possui permissão de escrita aqui." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "Você não tem permissão para carregar ou criar arquivos aqui" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Nada aqui.Carrege alguma coisa!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Baixar" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Descompartilhar" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Excluir" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Upload muito grande" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os arquivos que você está tentando carregar excedeu o tamanho máximo para arquivos no servidor." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Arquivos sendo escaneados, por favor aguarde." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Scanning atual" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index 43542c8f6f6c9cbb86c89476eb49aa6c46f006fa..0d4611d79d567cea55c5b94a9529b59d91bc1fc0 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-02 17:27-0500\n" +"PO-Revision-Date: 2013-12-02 16:30+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -46,75 +46,96 @@ msgstr "Senha alterada com sucesso." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Não foi possível alterar a senha. Talvez a senha antiga não estava correta." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Senha de chave privada atualizada com sucesso." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Não foi possível atualizar a senha de chave privada. Talvez a senha antiga esteja incorreta." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "Sua chave privada não é válida! Provavelmente sua senha foi alterada fora do sistema ownCloud (por exemplo, seu diretório corporativo). Você pode atualizar sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados." +"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 "Aplicativo de criptografia não foi inicializado! Talvez o aplicativo de criptografia tenha sido reativado durante essa sessão. Por favor, tente fazer logoff e login novamente para inicializar o aplicativo de criptografia." -#: hooks/hooks.php:41 +#: 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 "Sua chave privada não é válida! Provavelmente sua senha foi alterada fora de %s (por exemplo, seu diretório corporativo). Você pode atualizar sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados." + +#: 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 "Este arquivo não pode ser decriptado, provavelmente este é um arquivo compartilhado. Poe favoe peça ao dono do arquivo para compartilha-lo com você." + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Erro desconhecido, por favor verifique suas configurações ou faça contato com o administrador" + +#: hooks/hooks.php:59 msgid "Missing requirements." msgstr "Requisitos não encontrados." -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitado e configurado corretamente. Por enquanto, o aplicativo de criptografia foi desativado." -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "Seguintes usuários não estão configurados para criptografia:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "Criptografia inicial inicializada... Isto pode tomar algum tempo. Por favor espere." + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Salvando..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Sua chave privada não é válida! Talvez sua senha tenha sido mudada." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Ir diretamente para o seu" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Você pode desbloquear sua chave privada nas suas" - -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "configurações pessoais." -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Criptografia" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Habilitar chave de recuperação (permite recuperar arquivos de usuários em caso de perda de senha):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Senha da chave de recuperação" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Repita Recuperação de senha da chave" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Habilitado" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Desabilitado" @@ -122,58 +143,62 @@ msgstr "Desabilitado" msgid "Change recovery key password:" msgstr "Mudar a senha da chave de recuperação:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Senha antiga da chave de recuperação" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Nova senha da chave de recuperação" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "Repita Nova senha da chave de recuperação" + +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Trocar Senha" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Sua senha de chave privada não coincide mais com sua senha de login:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Configure sua antiga senha de chave privada para sua atual senha de login." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Se você não se lembra de sua antiga senha você pode pedir ao administrador que recupere seus arquivos." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Senha antiga de login" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Senha de login atual" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Atualizar senha de chave privada" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Habilitar recuperação de senha:" -#: templates/settings-personal.php:47 +#: 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 "Habilitar essa opção vai permitir que você obtenha novamente acesso aos seus arquivos encriptados em caso de perda de senha" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Configurações de recuperação de arquivo atualizado" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Não foi possível atualizar a recuperação de arquivos" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index e47a052c0bd49881480d8a90b6f257a536b34f0c..49e4100d52610090f73981af457c260dbcf76ccb 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Acesso concedido" @@ -26,7 +26,7 @@ msgstr "Acesso concedido" msgid "Error configuring Dropbox storage" msgstr "Erro ao configurar armazenamento do Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Permitir acesso" @@ -34,24 +34,24 @@ msgstr "Permitir acesso" msgid "Please provide a valid Dropbox app key and secret." msgstr "Por favor forneça um app key e secret válido do Dropbox" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Erro ao configurar armazenamento do Google Drive" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Aviso: \"smbclient\" não está instalado. Impossível montar compartilhamentos de CIFS/SMB. Por favor, peça ao seu administrador do sistema para instalá-lo." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Aviso: O suporte para FTP do PHP não está ativado ou instalado. Impossível montar compartilhamentos FTP. Por favor, peça ao seu administrador do sistema para instalá-lo." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index 0c110ef8250e79718ce737ccb773f5c520793d9b..0e25ada0b954b58afbe44ed9730e29ce179b0706 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Este compartilhamento esta protegido por senha" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Senha incorreta. Tente novamente." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Senha" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Submeter" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Desculpe, este link parece não mais funcionar." @@ -54,28 +54,32 @@ msgstr "compartilhamento está desativada" msgid "For more info, please ask the person who sent this link." msgstr "Para mais informações, por favor, pergunte a pessoa que enviou este link." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartilhou a pasta %s com você" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartilhou o arquivo %s com você" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Baixar" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Upload" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Nenhuma visualização disponível para" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Link direto" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 3b2ef25c158ba14a035550a8a7eba184b7b01493..3104219a27e1ccca44abedceeeb2695bdd9153e3 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-10 10:41-0400\n" -"PO-Revision-Date: 2013-09-10 13:30+0000\n" -"Last-Translator: Flávio Veras \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "Não foi possível excluir %s permanentemente" msgid "Couldn't restore %s" msgstr "Não foi possível restaurar %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "realizar operação de restauração" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Erro" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "excluir arquivo permanentemente" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Excluir permanentemente" - -#: js/trash.js:184 templates/index.php:17 -msgid "Name" -msgstr "Nome" - -#: js/trash.js:185 templates/index.php:27 -msgid "Deleted" -msgstr "Excluído" - -#: js/trash.js:193 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n pastas" - -#: js/trash.js:199 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n arquivo" -msgstr[1] "%n arquivos" - -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "restaurado" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nada aqui. Sua lixeira está vazia!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Nome" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Restaurar" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Excluído" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Excluir" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 315979949498424652cdeffe3f1f7bf856922fcd..b6aa06fddba6f595fd8e8d3e9b8b659a548619a9 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:05+0000\n" -"Last-Translator: Flávio Veras \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,318 +18,317 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "O aplicativo \"%s\" não pode ser instalado porque não é compatível com esta versão do ownCloud." -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "O nome do aplicativo não foi especificado." -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Ajuda" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Pessoal" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Ajustes" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Usuários" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Falha na atualização de \"%s\"." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Fotos de perfil personalizados ainda não funcionam com criptografia" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Tipo de arquivo desconhecido" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Imagem inválida" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "serviços web sob seu controle" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "não pode abrir \"%s\"" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Download ZIP está desligado." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Arquivos precisam ser baixados um de cada vez." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Voltar para Arquivos" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Arquivos selecionados são muito grandes para gerar arquivo zip." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Baixe os arquivos em pedaços menores, separadamente ou solicite educadamente ao seu administrador." +msgstr "Por favor baixe os arquivos separadamente em pedaços ou educadamente pergunte ao seu administrador." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Nenhuma fonte foi especificada enquanto instalava o aplicativo" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Nenhuma href foi especificada enquanto instalava o aplicativo de httml" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Nenhum caminho foi especificado enquanto instalava o aplicativo do arquivo local" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Arquivos do tipo %s não são suportados" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Falha para abrir o arquivo enquanto instalava o aplicativo" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "O aplicativo não fornece um arquivo info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "O aplicativo não pode ser instalado por causa do código não permitido no Aplivativo" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "O aplicativo não pode ser instalado porque não é compatível com esta versão do ownCloud" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "O aplicativo não pode ser instalado porque ele contém a marca verdadeiro que não é permitido para aplicações não embarcadas" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "O aplicativo não pode ser instalado porque a versão em info.xml /versão não é a mesma que a versão relatada na App Store" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Diretório App já existe" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Não é possível criar pasta app. Corrija as permissões. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Aplicação não está habilitada" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Erro de autenticação" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token expirou. Por favor recarregue a página." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Arquivos" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Texto" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Imagens" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s insira o nome de usuário do banco de dados." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s insira o nome do banco de dados." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s você não pode usar pontos no nome do banco de dados" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nome de usuário e/ou senha MS SQL inválido(s): %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Você precisa inserir uma conta existente ou o administrador." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Nome de usuário e/ou senha MySQL inválido(s)" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "Erro no BD: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Comando ofensivo era: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "O usuário MySQL '%s'@'localhost' já existe." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Derrubar este usuário do MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Usuário MySQL '%s'@'%%' já existe" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Derrube este usuário do MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Conexão Oracle não pode ser estabelecida" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Nome de usuário e/ou senha Oracle inválido(s)" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Comando ofensivo era: \"%s\", nome: %s, senha: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "Nome de usuário e/ou senha PostgreSQL inválido(s)" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Defina um nome de usuário de administrador." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Defina uma senha de administrador." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Seu servidor web não está configurado corretamente para permitir sincronização de arquivos porque a interface WebDAV parece estar quebrada." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, confira os guias de instalação." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Impossível localizar categoria \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "segundos atrás" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "ha %n minutos" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "ha %n horas" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "hoje" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "ontem" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "ha %n dias" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "último mês" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "ha %n meses" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "último ano" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "anos atrás" - -#: template.php:297 -msgid "Caused by:" -msgstr "Causados ​​por:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Impossível localizar categoria \"%s\"" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index c8608696d6129c5450f2d0bd65dba1e64b8adc39..94e5cc8ff98bff82a753ae2e0f8e920bbe3c4b5c 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-05 10:30+0000\n" +"Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,12 +29,12 @@ msgid "Authentication error" msgstr "Erro de autenticação" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "A exibição de seu nome foi alterada." +msgid "Your full name has been changed." +msgstr "Seu nome completo foi alterado." #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Impossível alterar nome de exibição" +msgid "Unable to change full name" +msgstr "Não é possível alterar o nome completo" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -119,11 +119,11 @@ msgstr "Impossível modificar senha" msgid "Update to {appversion}" msgstr "Atualizar para {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Desabilitar" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Habilitar" @@ -131,31 +131,31 @@ msgstr "Habilitar" msgid "Please wait...." msgstr "Por favor, aguarde..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Erro enquanto desabilitava o aplicativo" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Erro enquanto habilitava o aplicativo" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Atualizando..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Erro ao atualizar aplicativo" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Erro" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Atualizar" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Atualizado" @@ -163,7 +163,7 @@ msgstr "Atualizado" msgid "Select a profile picture" msgstr "Selecione uma imagem para o perfil" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "Decriptando arquivos... Por favor aguarde, isso pode levar algum tempo." @@ -183,44 +183,75 @@ msgstr "desfazer" msgid "Unable to remove user" msgstr "Impossível remover usuário" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupos" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grupo Administrativo" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Excluir" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "adicionar grupo" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "Forneça um nome de usuário válido" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "Erro ao criar usuário" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "Forneça uma senha válida" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Aviso: O diretório home para o usuário \"{user}\" já existe" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Português (Brasil)" -#: templates/admin.php:15 +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "Tudo (questões fatais, erros, avisos, informações, depuração)" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "Informações, avisos, erros e problemas fatais" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "Avisos, erros e problemas fatais" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "Erros e problemas fatais" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "Somente questões fatais" + +#: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" msgstr "Aviso de Segurança" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "Você está acessando %s via HTTP. Sugerimos você configurar o servidor para exigir o uso de HTTPS em seu lugar." + +#: templates/admin.php:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -229,48 +260,68 @@ msgid "" "root." msgstr "Seu diretório de dados e seus arquivos são, provavelmente, acessíveis a partir da internet. O arquivo htaccess. não está funcionando. Nós sugerimos fortemente que você configure o seu servidor web de uma forma que o diretório de dados não esteja mais acessível ou mova o diretório de dados para fora do raiz do servidor." -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Aviso de Configuração" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Seu servidor web não está configurado corretamente para permitir sincronização de arquivos porque a interface WebDAV parece não estar funcionando." -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, verifique os guias de instalação." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Módulo 'fileinfo' faltando" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "O módulo PHP 'fileinfo' está faltando. Recomendamos que ative este módulo para obter uma melhor detecção do tipo de mídia (mime-type)." -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "Sua versão de PHP está desatualizada" + +#: templates/admin.php:82 +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 sua versão do PHP está desatualizada. Recomendamos a atualização para 5.3.8 ou mais recente, pois as versões mais antigas são conhecidas por serem quebradas. É possível que esta instalação não esteja funcionando corretamente." + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Localização não funcionando" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "Localidade do sistema não pode ser definido como um que suporta UTF-8." + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "Isso significa que pode haver problemas com certos caracteres nos nomes de arquivo." + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "A localidade do sistema não pode ser definida para %s. Isso significa que pode haver problemas com certos caracteres em nomes de arquivos. Nós sugerimos instalar os pacotes necessários no seu sistema para suportar %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "Nós sugerimos para instalar os pacotes necessários no seu sistema para suportar uma das seguintes localidades: %s." -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Sem conexão com a internet" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -279,110 +330,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Este servidor não tem conexão com a internet. Isso significa que algumas das características como a montagem de armazenamento externo, notificações sobre atualizações ou instalação de aplicativos de 3ºs terceiros não funcionam. Acessar arquivos remotamente e envio de e-mails de notificação também não podem funcionar. Sugerimos permitir conexão com a internet para esse servidor, se você deseja ter todas as funcionalidades." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Execute uma tarefa com cada página carregada" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php está registrado em um serviço webcron chamar cron.php uma vez por minuto usando http." +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Utilizar sistema de serviços cron para chamar o arquivo cron.php uma vez por minuto." +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Compartilhamento" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Habilitar API de Compartilhamento" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Permitir que aplicativos usem a API de Compartilhamento" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Permitir links" -#: templates/admin.php:135 +#: templates/admin.php:178 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:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Permitir envio público" -#: templates/admin.php:144 +#: templates/admin.php:187 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:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Permitir recompartilhamento" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Permitir que usuários compartilhem novamente itens compartilhados com eles" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Permitir que usuários compartilhem com qualquer um" -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Permitir notificação por email" + +#: templates/admin.php:214 +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:221 msgid "Security" msgstr "Segurança" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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:191 +#: templates/admin.php:242 #, 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:203 +#: templates/admin.php:254 msgid "Log" msgstr "Registro" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Nível de registro" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Mais" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Menos" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versão" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Use esse endereço para acessar seus arquivos via WebDAV" +"Use this address to access your Files via " +"WebDAV" +msgstr "Use este endereço para ter acesso a seus Arquivos via WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Criptografia" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "O aplicativo de encriptação não está mais ativo, decripti todos os seus arquivos" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "O aplicativo de criptografia não está habilitado, por favor descriptar todos os seus arquivos" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Senha de login" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Decripti todos os Arquivos" @@ -574,6 +637,10 @@ msgstr "Digite a senha de recuperação para recuperar os arquivos dos usuários msgid "Default Storage" msgstr "Armazenamento Padrão" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "Por favor insira cota de armazenamento (ex: \"512\" ou \"12 GB\")" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Ilimitado" @@ -591,8 +658,8 @@ msgid "Storage" msgstr "Armazenamento" #: templates/users.php:108 -msgid "change display name" -msgstr "alterar nome de exibição" +msgid "change full name" +msgstr "alterar nome completo" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index e54db81dd8330336a989fc41099871de8737fd0b..6fd04f074938215307b90d9f4d3b6e26d03cebf6 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" -"Last-Translator: Flávio Veras \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,314 +27,425 @@ msgstr "Falha ao limpar os mapeamentos." msgid "Failed to delete the server configuration" msgstr "Falha ao deletar a configuração do servidor" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "A configuração é válida e a conexão foi estabelecida!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "A configuração é válida, mas o Bind falhou. Confira as configurações do servidor e as credenciais." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "A configuração é inválida. Leia o log do ownCloud para mais detalhes." +msgstr "Configuração inválida. Por favor, dê uma olhada nos logs para mais detalhes." + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "Nenhuma ação especificada" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "Nenhuma configuração especificada" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "Não há dados especificados" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "Não foi possível definir a configuração %s" -#: js/settings.js:66 +#: js/settings.js:67 msgid "Deletion failed" msgstr "Remoção falhou" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Tomar parámetros de recente configuração de servidor?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Manter ajustes?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Impossível adicionar a configuração do servidor" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "mapeamentos limpos" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Sucesso" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Erro" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "Configuração OK" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "Configuração incorreta" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "Configuração incompleta" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Selecionar grupos" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "Selecione classes de objetos" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "Selecione os atributos" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Teste de conexão bem sucedida" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Teste de conexão falhou" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Você quer realmente deletar as atuais Configurações de Servidor?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Confirmar Exclusão" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "Aviso: Os aplicativos user_ldap e user_webdavauth são incompatíveis. Você pode experimentar comportamento inesperado. Por favor, peça ao seu administrador do sistema para desabilitar um deles." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "grupo% s encontrado" +msgstr[1] "grupos% s encontrado" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "usuário %s encontrado" +msgstr[1] "usuários %s encontrados" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "Host inválido" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "Não foi possível encontrar a função desejada" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Guardar" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Teste de Configuração" -#: templates/settings.php:12 +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Ajuda" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "Limitar o acesso a %s para grupos que coincidam com estes critérios:" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "apenas essas classes de objetos:" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "apenas a partir dos grupos:" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "Editar filtro raw ao invéz" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "Filtro LDAP Raw" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Aviso: O módulo PHP LDAP não está instalado, o backend não funcionará. Por favor, peça ao seu administrador do sistema para instalá-lo." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "O filtro especifica quais grupos LDAP devem ter acesso à instância do %s." -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Configuração de servidor" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "grupos encontrados" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "O atributo deve ser usado como nome de login:" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "Usuário LDAP:" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "LDAP Endereço de E-mail:" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "Outros atributos:" + +#: 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 "Define o filtro a ser aplicado, o login é feito. %%uid substitui o nome do usuário na ação de login. Exemplo: \"uid=%%uid\"" + +#: templates/part.wizard-server.php:18 msgid "Add Server Configuration" msgstr "Adicionar Configuração de Servidor" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Servidor" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Você pode omitir o protocolo, exceto quando requerer SSL. Então inicie com ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "DN Base" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Uma base DN por linha" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Você pode especificar DN Base para usuários e grupos na guia Avançada" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Porta" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "DN Usuário" -#: templates/settings.php:46 +#: 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 "O DN do cliente usuário com qual a ligação deverá ser feita, ex. uid=agent,dc=example,dc=com. Para acesso anônimo, deixe DN e Senha vazios." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Senha" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Para acesso anônimo, deixe DN e Senha vazios." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Filtro de Login de Usuário" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Uma base DN por linha" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Você pode especificar DN Base para usuários e grupos na guia Avançada" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "Limitar o acesso a %s para usuários que coincidam com estes critérios:" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "Define o filtro a ser aplicado, o login é feito. %%uid substitui o nome do usuário na ação de login. Exemplo: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "O filtro especifica quais usuários LDAP devem ter acesso à instância do %s." -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Filtro de Lista de Usuário" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "usuários encontrados" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "Define o filtro a ser aplicado, ao recuperar usuários (sem espaços reservados). Exemplo: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Voltar" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Filtro de Grupo" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Continuar" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "Aviso: Os aplicativos user_ldap e user_webdavauth são incompatíveis. Você pode experimentar comportamento inesperado. Por favor, peça ao seu administrador do sistema para desabilitar um deles." -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "Define o filtro a ser aplicado, ao recuperar grupos (sem espaços reservados). Exemplo: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Aviso: O módulo PHP LDAP não está instalado, o backend não funcionará. Por favor, peça ao seu administrador do sistema para instalá-lo." -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Configurações de Conexão" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Configuração ativa" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Quando não marcada, esta configuração será ignorada." -#: templates/settings.php:69 -msgid "Port" -msgstr "Porta" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Servidor de Backup (Réplica)" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Defina um servidor de backup opcional. Ele deverá ser uma réplica do servidor LDAP/AD principal." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Porta do Backup (Réplica)" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Desativar Servidor Principal" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "Conectar-se somente ao servidor de réplica." -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Usar TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Não use adicionalmente para conexões LDAPS, pois falhará." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Servidor LDAP sensível à caixa alta (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Desligar validação de certificado SSL." -#: templates/settings.php:75 +#: 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 "Não recomendado, use-o somente para teste! Se a conexão só funciona com esta opção, importar o certificado SSL do servidor LDAP em seu servidor %s." -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Cache Time-To-Live" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "em segundos. Uma mudança esvaziará o cache." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Configurações de Diretório" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Campo Nome de Exibição de Usuário" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "O atributo LDAP para usar para gerar o nome de exibição do usuário." -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Árvore de Usuário Base" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "Um usuário-base DN por linha" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "Atributos de Busca de Usuário" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Opcional; um atributo por linha" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Campo Nome de Exibição de Grupo" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "O atributo LDAP para usar para gerar o nome de apresentação do grupo." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Árvore de Grupo Base" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "Um grupo-base DN por linha" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Atributos de Busca de Grupo" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Associação Grupo-Membro" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Atributos Especiais" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Campo de Cota" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Cota Padrão" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "em bytes" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "Campo de Email" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "Regra para Nome da Pasta Pessoal do Usuário" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Deixe vazio para nome de usuário (padrão). Caso contrário, especifique um atributo LDAP/AD." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "Nome de usuário interno" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -350,15 +461,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Por padrão, o nome de usuário interno será criado a partir do atributo UUID. Ele garante que o nome de usuário é único e que caracteres não precisam ser convertidos. O nome de usuário interno tem a restrição de que apenas estes caracteres são permitidos: [a-zA-Z0-9_.@- ]. Outros caracteres são substituídos por seus correspondentes em ASCII ou simplesmente serão omitidos. Em caso de colisão um número será adicionado/aumentado. O nome de usuário interno é usado para identificar um usuário internamente. É também o nome padrão da pasta \"home\" do usuário. É também parte de URLs remotas, por exemplo, para todos as instâncias *DAV. Com esta definição, o comportamento padrão pode ser sobrescrito. Para alcançar um comportamento semelhante ao de antes do ownCloud 5, forneça o atributo do nome de exibição do usuário no campo seguinte. Deixe-o vazio para o comportamento padrão. As alterações terão efeito apenas para usuários LDAP recém mapeados (adicionados)." -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "Atributo Interno de Nome de Usuário:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "Substituir detecção UUID" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -369,15 +480,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Por padrão, o atributo UUID é detectado automaticamente. O atributo UUID é usado para identificar, sem dúvidas, os usuários e grupos LDAP. Além disso, o nome de usuário interno será criado com base no UUID, se não especificado acima. Você pode substituir a configuração e passar um atributo de sua escolha. Você deve certificar-se de que o atributo de sua escolha pode ser lido tanto para usuários como para grupos, e que seja único. Deixe-o vazio para o comportamento padrão. As alterações terão efeito apenas para usuários e grupos LDAP recém mapeados (adicionados)." -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atributo UUID:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "UUID Atributos para Usuários:" -#: templates/settings.php:104 +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "UUID Atributos para Grupos:" + +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "Usuário-LDAP Mapeamento de Usuário" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -391,18 +506,10 @@ msgid "" "experimental stage." msgstr "Nomes de usuários sãi usados para armazenar e atribuir (meta) dados. A fim de identificar com precisão e reconhecer usuários, cada usuário LDAP terá um nome de usuário interno. Isso requer um mapeamento nome de usuário para usuário LDAP. O nome de usuário criado é mapeado para o UUID do usuário LDAP. Adicionalmente, o DN fica em cache, assim como para reduzir a interação LDAP, mas não é utilizado para a identificação. Se o DN muda, as mudanças serão encontradas. O nome de usuário interno é utilizado em todo lugar. Limpar os mapeamentos não influencia a configuração. Limpar os mapeamentos deixará rastros em todo lugar. Limpar os mapeamentos não influencia a configuração, mas afeta as configurações LDAP! Somente limpe os mapeamentos em embiente de testes ou em estágio experimental." -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "Limpar Mapeamento de Usuário Nome de Usuário-LDAP" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Limpar NomedoGrupo-LDAP Mapeamento do Grupo" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Teste de Configuração" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Ajuda" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 974950a164f9325612c3b96425ccfc6257119a6c..cc4b1340ad331c599673eee9effe39c52ab5d1fa 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Bruno Martins , 2013 +# Bruno Martins , 2013 # bmgmatias , 2013 # Mouxy , 2013 +# Duarte Velez Grilo , 2013 # Gontxi , 2013 # Helder Meneses , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: Helder Meneses \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" @@ -22,14 +23,15 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s partilhado »%s« contigo" -#: ajax/share.php:227 -msgid "group" -msgstr "grupo" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -56,45 +58,6 @@ msgstr "Actualizado o cache dos ficheiros" msgid "... %d%% done ..." msgstr "... %d%% feito ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Tipo de categoria não fornecido" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Nenhuma categoria para adicionar?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "A categoria já existe: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Tipo de objecto não fornecido" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "ID %s não fornecido" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Erro a adicionar %s aos favoritos" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Nenhuma categoria seleccionada para eliminar." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Erro a remover %s dos favoritos." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Não foi selecionado nenhum ficheiro para importar" @@ -191,59 +154,59 @@ msgstr "Novembro" msgid "December" msgstr "Dezembro" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Configurações" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto atrás" msgstr[1] "%n minutos atrás" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hora atrás" msgstr[1] "%n horas atrás" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "hoje" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "ontem" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dia atrás" msgstr[1] "%n dias atrás" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "ultímo mês" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mês atrás" msgstr[1] "%n meses atrás" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "meses atrás" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "ano passado" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "anos atrás" @@ -283,7 +246,7 @@ msgstr "" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Quais os ficheiros que pretende manter?" #: js/oc-dialogs.js:368 msgid "" @@ -297,169 +260,197 @@ msgstr "Cancelar" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Continuar" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(todos seleccionados)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} seleccionados)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "O tipo de objecto não foi especificado" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Erro" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "O nome da aplicação não foi especificado" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "O ficheiro necessário {file} não está instalado!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Partilhado" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Partilhar" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Erro" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Erro ao partilhar" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Erro ao deixar de partilhar" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Erro ao mudar permissões" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Partilhado consigo e com o grupo {group} por {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Partilhado consigo por {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Partilhar com" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "Partilhar com link" +#: js/share.js:219 +msgid "Share link" +msgstr "Partilhar o link" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Proteger com palavra-passe" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Password" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Permitir Envios Públicos" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Enviar o link por e-mail" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Enviar" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Especificar data de expiração" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Data de expiração" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Partilhar via email:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Não foi encontrado ninguém" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "grupo" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Não é permitido partilhar de novo" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Partilhado em {item} com {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Deixar de partilhar" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "Notificar por email" + +#: js/share.js:408 msgid "can edit" msgstr "pode editar" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "Controlo de acesso" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "criar" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "actualizar" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "apagar" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "partilhar" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Protegido com palavra-passe" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Erro ao retirar a data de expiração" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Erro ao aplicar a data de expiração" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "A Enviar..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "E-mail enviado" +#: js/share.js:769 +msgid "Warning" +msgstr "Aviso" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "O tipo de objecto não foi especificado" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Eliminar" + +#: js/tags.js:31 +msgid "Add" +msgstr "Adicionar" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "O link para fazer reset à sua password foi enviado para o seu e-mail.
    Se não o recebeu dentro um espaço de tempo aceitável, por favor verifique a sua pasta de SPAM.
    Se não o encontrar, por favor contacte o seu administrador." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "O pedido falhou!
    Tem a certeza que introduziu o seu email/username correcto?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Vai receber um endereço para repor a sua password" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Nome de utilizador" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -508,13 +499,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Os seus ficheiros estão encriptados. Se não activou a chave de recuperação, não vai ser possível recuperar os seus dados no caso da sua password ser reinicializada. Se não tem a certeza do que precisa de fazer, por favor contacte o seu administrador antes de continuar. Tem a certeza que quer continuar?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Sim, tenho a certeza que pretendo redefinir a minha palavra-passe agora." -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Pedir reposição" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Repor" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -540,7 +531,7 @@ msgstr "Pessoal" msgid "Users" msgstr "Utilizadores" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Aplicações" @@ -552,6 +543,34 @@ msgstr "Admin" msgid "Help" msgstr "Ajuda" +#: 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 "Acesso interdito" @@ -568,108 +587,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Olá,\n\nApenas para lhe informar que %s partilhou %s consigo.\nVeja-o: %s\n\nCumprimentos!" +msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Editar categorias" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "Esta partilha vai expirar em %s." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Adicionar" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Aviso de Segurança" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "A sua versão do PHP é vulnerável ao ataque Byte Null (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Por favor atualize a sua versão PHP instalada para usar o %s com segurança." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Não existe nenhum gerador seguro de números aleatórios, por favor, active a extensão OpenSSL no PHP." -#: templates/installation.php:33 +#: 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 "Sem nenhum gerador seguro de números aleatórios, uma pessoa mal intencionada pode prever a sua password, reiniciar as seguranças adicionais e tomar conta da sua conta. " -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "A pasta de dados do ownCloud e os respectivos ficheiros, estarão provavelmente acessíveis a partir da internet, pois o ficheiros .htaccess não funciona." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "Para obter informações de como configurar correctamente o servidor, veja em: documentação." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Criar uma conta administrativa" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Avançado" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Pasta de dados" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Configure a base de dados" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "vai ser usada" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Utilizador da base de dados" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Password da base de dados" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Nome da base de dados" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Tablespace da base de dados" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Anfitrião da base de dados" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Acabar instalação" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "A terminar..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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 "%s está disponível. Tenha mais informações como actualizar." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Sair" @@ -687,19 +717,27 @@ msgstr "Se não mudou a sua palavra-passe recentemente, a sua conta pode ter sid msgid "Please change your password to secure your account again." msgstr "Por favor mude a sua palavra-passe para assegurar a sua conta de novo." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Por favor contacte o administrador." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Esqueceu-se da sua password?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "lembrar" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Entrar" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Contas de acesso alternativas" @@ -707,10 +745,37 @@ msgstr "Contas de acesso alternativas" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Olá,

    Apenas para lhe informar que %s partilhou »%s« consigo.
    Consulte-o aqui!

    Cumprimentos!" +"href=\"%s\">View it!

    " +msgstr "" + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "" -#: templates/update.php:3 +#: 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 "Obrigado pela sua paciência." + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "A actualizar o ownCloud para a versão %s, esta operação pode demorar." + +#: 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/pt_PT/files.po b/l10n/pt_PT/files.po index 7a35987288855c2f70278e21c25cc1b773a23f60..97c3bb28e4c7387fd814fa293ca5eba8c9e1bc04 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -30,220 +30,286 @@ msgstr "Não foi possível mover o ficheiro %s - Já existe um ficheiro com esse msgid "Could not move %s" msgstr "Não foi possível move o ficheiro %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "O nome do ficheiro não pode estar vazio." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Não foi possível criar o diretório de upload" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Token inválido" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Não ocorreram erros, o ficheiro foi submetido com sucesso" -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro seleccionado foi apenas carregado parcialmente" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Nenhum ficheiro foi submetido" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Está a faltar a pasta temporária" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Falhou a escrita no disco" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Não há espaço suficiente em disco" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "O carregamento falhou. Não foi possível obter a informação do ficheiro." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Directório Inválido" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Ficheiros" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Espaço em disco insuficiente!" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "" +msgstr "Não foi possível obter o resultado do servidor." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "O URL não pode estar vazio." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Nome da pasta inválido. Palavra 'Shared' é reservado pela ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Erro" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "O nome {new_name} já existe" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "Partilhar" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Renomear" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "O nome {new_name} já existe" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "substituir" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "sugira um nome" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "cancelar" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "substituido {new_name} por {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "desfazer" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n pasta" msgstr[1] "%n pastas" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n ficheiro" msgstr[1] "%n ficheiros" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "A carregar %n ficheiro" msgstr[1] "A carregar %n ficheiros" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' não é um nome de ficheiro válido!" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "O nome do ficheiro não pode estar vazio." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "O seu armazenamento está cheio, os ficheiros não podem ser sincronizados." -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "O seu espaço de armazenamento está quase cheiro ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "A encriptação foi desactivada mas os seus ficheiros continuam encriptados. Por favor consulte as suas definições pessoais para desencriptar os ficheiros." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "O seu download está a ser preparado. Este processo pode demorar algum tempo se os ficheiros forem grandes." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" -msgstr "" +msgstr "Erro ao mover o ficheiro" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Erro" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Nome" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Tamanho" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Modificado" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s não pode ser renomeada" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Carregar" @@ -279,65 +345,69 @@ msgstr "Tamanho máximo para ficheiros ZIP" msgid "Save" msgstr "Guardar" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Novo" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "Ficheiro de texto" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Nova Pasta" + +#: templates/index.php:10 msgid "Folder" msgstr "Pasta" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Da ligação" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Ficheiros eliminados" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Não tem permissões de escrita aqui." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Vazio. Envie alguma coisa!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Transferir" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Deixar de partilhar" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Eliminar" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Upload muito grande" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiro que está a tentar enviar excedem o tamanho máximo de envio neste servidor." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Os ficheiros estão a ser analisados, por favor aguarde." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/pt_PT/files_encryption.po b/l10n/pt_PT/files_encryption.po index dd0f5f9b92797f39c0e08b9a9b795c409a215b78..05ab1951b23487b21d6a21170a37ddd3d1366a52 100644 --- a/l10n/pt_PT/files_encryption.po +++ b/l10n/pt_PT/files_encryption.po @@ -4,14 +4,15 @@ # # Translators: # Mouxy , 2013 +# Duarte Velez Grilo , 2013 # moura232 , 2013 # Helder Meneses , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:09+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" @@ -46,75 +47,96 @@ msgstr "Password alterada com sucesso." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Não foi possivel alterar a password. Possivelmente a password antiga não está correcta." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Não foi possível alterar a chave. Possivelmente a password antiga não está correcta." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "Chave privada não é válida! Provavelmente senha foi alterada fora do sistema ownCloud (exemplo, o diretório corporativo). Pode atualizar password da chave privada em configurações personalizadas para recuperar o acesso aos seus arquivos encriptados." +"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 "" -#: hooks/hooks.php:41 +#: 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:59 msgid "Missing requirements." msgstr "Faltam alguns requisitos." -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" +msgstr "Os utilizadores seguintes não estão marcados para cifragem:" + +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "A guardar..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "configurações personalizadas " -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Encriptação" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Active a chave de recuperação (permite recuperar os ficheiros no caso de perda da password):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Chave de recuperação da conta" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Activado" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Desactivado" @@ -122,58 +144,62 @@ msgstr "Desactivado" msgid "Change recovery key password:" msgstr "Alterar a chave de recuperação:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Chave anterior de recuperação da conta" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Nova chave de recuperação da conta" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Mudar a Password" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Password anterior da conta" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Password actual da conta" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "ativar recuperação do password:" -#: templates/settings-personal.php:47 +#: 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 "Ao activar esta opção, tornar-lhe-a possível a obtenção de acesso aos seus ficheiros encriptados caso perca a password." -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Actualizadas as definições de recuperação de ficheiros" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Não foi possível actualizar a recuperação de ficheiros" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index 33b1d070b50638f66c1aba5ef7f8e55cc7dabb7f..7cac3cf3883ef2de86f64f0ff02a7fe1e512cde1 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Acesso autorizado" @@ -26,7 +26,7 @@ msgstr "Acesso autorizado" msgid "Error configuring Dropbox storage" msgstr "Erro ao configurar o armazenamento do Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Conceder acesso" @@ -34,24 +34,24 @@ msgstr "Conceder acesso" msgid "Please provide a valid Dropbox app key and secret." msgstr "Por favor forneça uma \"app key\" e \"secret\" do Dropbox válidas." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Erro ao configurar o armazenamento do Google Drive" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Atenção: O cliente \"smbclient\" não está instalado. Não é possível montar as partilhas CIFS/SMB . Peça ao seu administrador para instalar." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Aviso: O suporte FTP no PHP não está activate ou instalado. Não é possível montar as partilhas FTP. Peça ao seu administrador para instalar." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 7db55d8e767733f17c67b6db5ae47f279e975f10..8f81ec47564046ee0efbe85ecdde70232268e369 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -3,15 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Duarte Velez Grilo , 2013 # Helder Meneses , 2013 # moliveira , 2013 +# PapiMigas Migas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Helder Meneses \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"Last-Translator: PapiMigas Migas \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" @@ -20,16 +22,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Esta partilha está protegida por palavra-chave" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Password errada, por favor tente de novo" -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" -msgstr "Password" - -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Submeter" +msgstr "Palavra-passe" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." @@ -55,28 +57,32 @@ msgstr "A partilha está desativada" msgid "For more info, please ask the person who sent this link." msgstr "Para mais informações, por favor questione a pessoa que lhe enviou este link" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s partilhou a pasta %s consigo" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s partilhou o ficheiro %s consigo" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Transferir" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Carregar" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Não há pré-visualização para" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Link direto" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 64a86f404cfcf1212a92765ede6f108ae4c3b763..08cb33d5748118790dda1355f4c60534f0002085 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-01 13:27-0400\n" -"PO-Revision-Date: 2013-08-31 14:50+0000\n" -"Last-Translator: Helder Meneses \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "Não foi possível eliminar %s de forma permanente" msgid "Couldn't restore %s" msgstr "Não foi possível restaurar %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "executar a operação de restauro" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Erro" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "Eliminar permanentemente o(s) ficheiro(s)" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Eliminar permanentemente" - -#: js/trash.js:184 templates/index.php:17 -msgid "Name" -msgstr "Nome" - -#: js/trash.js:185 templates/index.php:27 -msgid "Deleted" -msgstr "Apagado" - -#: js/trash.js:193 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n pasta" -msgstr[1] "%n pastas" - -#: js/trash.js:199 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n ficheiro" -msgstr[1] "%n ficheiros" - -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "Restaurado" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Não hà ficheiros. O lixo está vazio!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Nome" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Restaurar" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Apagado" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Eliminar" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 937940f95720b21d5619814c5ffd34e914ea3946..aa1267bce67b92a2f1d8c931645762316aa59f2a 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -4,12 +4,13 @@ # # Translators: # Helder Meneses , 2013 +# PapiMigas Migas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-19 18:40+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -18,318 +19,317 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." -msgstr "" +msgstr "A aplicação \"%s\" não pode ser instaladas por não ser compatível com esta versão da ownCloud." -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" -msgstr "" +msgstr "O nome da aplicação não foi especificado" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Ajuda" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Pessoal" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Configurações" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Utilizadores" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "A actualização \"%s\" falhou." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Ficheiro desconhecido" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Imagem inválida" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "serviços web sob o seu controlo" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "Não foi possível abrir \"%s\"" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Descarregamento em ZIP está desligado." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Os ficheiros precisam de ser descarregados um por um." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Voltar a Ficheiros" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Os ficheiros seleccionados são grandes demais para gerar um ficheiro zip." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Descarregue os ficheiros em partes menores, separados ou peça gentilmente ao seu administrador." +msgstr "Por favor descarregue os ficheiros divididos em partes mais pequenas ou peça ajuda ao seu administrador." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" -msgstr "" +msgstr "Não foi especificada uma fonte de instalação desta aplicação" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" -msgstr "" +msgstr "Não foi especificada uma href http para instalar esta aplicação" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" -msgstr "" +msgstr "Não foi especificado o caminho de instalação desta aplicação" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" -msgstr "" +msgstr "Arquivos do tipo %s não são suportados" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" -msgstr "" +msgstr "Ocorreu um erro ao abrir o ficheiro de instalação desta aplicação" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" -msgstr "" +msgstr "A aplicação não disponibiliza um ficheiro info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" -msgstr "" +msgstr "A aplicação não pode ser instalado devido a código não permitido dentro da aplicação" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" -msgstr "" +msgstr "A aplicação não pode ser instalada por não ser compatível com esta versão do ownCloud" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" -msgstr "" +msgstr "Esta aplicação não pode ser instalada por que contém o tag true que só é permitido para aplicações nativas" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "" +msgstr "Esta aplicação não pode ser instalada porque a versão no info.xml/version não coincide com a reportada na loja de aplicações" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" -msgstr "" +msgstr "A directoria da aplicação já existe" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "" +msgstr "Não foi possível criar a pasta da aplicação. Por favor verifique as permissões. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "A aplicação não está activada" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Erro na autenticação" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "O token expirou. Por favor recarregue a página." -#: search/provider/file.php:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Ficheiros" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Texto" -#: search/provider/file.php:30 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Imagens" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s introduza o nome de utilizador da base de dados" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s introduza o nome da base de dados" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s não é permitido utilizar pontos (.) no nome da base de dados" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nome de utilizador/password do MySQL é inválido: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Precisa de introduzir uma conta existente ou de administrador" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Nome de utilizador/password do MySQL inválida" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "Erro na BD: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "O comando gerador de erro foi: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "O utilizador '%s'@'localhost' do MySQL já existe." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Eliminar este utilizador do MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "O utilizador '%s'@'%%' do MySQL já existe" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Eliminar este utilizador do MySQL" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Não foi possível estabelecer a ligação Oracle" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Nome de utilizador/password do Oracle inválida" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "O comando gerador de erro foi: \"%s\", nome: %s, password: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "Nome de utilizador/password do PostgreSQL inválido" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Definir um nome de utilizador de administrador" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Definiar uma password de administrador" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "O seu servidor web não está configurado correctamente para autorizar sincronização de ficheiros, pois o interface WebDAV parece estar com problemas." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Por favor verifique installation guides." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Não foi encontrado a categoria \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "Minutos atrás" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minutos atrás" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n horas atrás" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "hoje" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "ontem" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dias atrás" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "ultímo mês" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n meses atrás" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "ano passado" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "anos atrás" - -#: template.php:297 -msgid "Caused by:" -msgstr "Causado por:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Não foi encontrado a categoria \"%s\"" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index f171929bbc34639fa82f7bd71ce00cd7c6978e55..d92800eab37bf0bb22d369b9fb424ff25a49e8fa 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -5,15 +5,17 @@ # Translators: # bmgmatias , 2013 # Mouxy , 2013 +# Duarte Velez Grilo , 2013 # Helder Meneses , 2013 # Nelson Rosado , 2013 +# PapiMigas Migas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"PO-Revision-Date: 2013-12-12 10:40+0000\n" +"Last-Translator: Helder Meneses \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" @@ -31,12 +33,12 @@ msgid "Authentication error" msgstr "Erro na autenticação" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "O seu nome foi alterado" +msgid "Your full name has been changed." +msgstr "O seu nome completo foi alterado." #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Não foi possível alterar o nome" +msgid "Unable to change full name" +msgstr "Não foi possível alterar o seu nome completo" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -90,42 +92,42 @@ msgstr "Não foi possível actualizar a aplicação." #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "Password errada" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "Nenhum utilizador especificado." #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "Por favor forneça uma palavra chave de recuperação de administrador, caso contrário todos os dados de utilizador serão perdidos" #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "Palavra chave de recuperação de administrador errada. Por favor verifique a palavra chave e tente de novo." #: changepassword/controller.php:87 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "Não foi possível alterar a sua palavra-passe, mas a chave de encriptação foi atualizada." #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" -msgstr "" +msgstr "Não foi possível alterar a sua password" #: js/apps.js:43 msgid "Update to {appversion}" msgstr "Actualizar para a versão {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Desactivar" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Activar" @@ -133,39 +135,39 @@ msgstr "Activar" msgid "Please wait...." msgstr "Por favor aguarde..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Erro enquanto desactivava a aplicação" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Erro enquanto activava a aplicação" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "A Actualizar..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Erro enquanto actualizava a aplicação" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Erro" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Actualizar" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Actualizado" #: js/personal.js:220 msgid "Select a profile picture" -msgstr "" +msgstr "Seleccione uma fotografia de perfil" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "A desencriptar os ficheiros... Por favor aguarde, esta operação pode demorar algum tempo." @@ -185,44 +187,75 @@ msgstr "desfazer" msgid "Unable to remove user" msgstr "Não foi possível remover o utilizador" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupos" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grupo Administrador" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Eliminar" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "Adicionar grupo" -#: js/users.js:436 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Um nome de utilizador válido deve ser fornecido" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Erro a criar utilizador" -#: js/users.js:442 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Uma password válida deve ser fornecida" +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Atenção: a pasta pessoal do utilizador \"{user}\" já existe" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "Tudo (problemas fatais, erros, avisos, informação, depuração)" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "Informação, avisos, erros e problemas fatais" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "Avisos, erros e problemas fatais" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "Erros e problemas fatais" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "Apenas problemas fatais" + +#: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" msgstr "Aviso de Segurança" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "Está a aceder %s via HTTP. Recomendamos vivamente que configure o servidor para forçar o uso de HTTPS." + +#: templates/admin.php:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -231,48 +264,68 @@ msgid "" "root." msgstr "A sua pasta com os dados e os seus ficheiros estão provavelmente acessíveis a partir das internet. O seu ficheiro .htaccess não está a funcionar corretamente. Sugerimos veementemente que configure o seu servidor web de maneira a que a pasta com os dados deixe de ficar acessível, ou mova a pasta com os dados para fora da raiz de documentos do servidor web." -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Aviso de setup" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "O seu servidor web não está configurado correctamente para autorizar sincronização de ficheiros, pois o interface WebDAV parece estar com problemas." -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Por favor verifique oGuia de instalação." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Falta o módulo 'fileinfo'" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "O Módulo PHP 'fileinfo' não se encontra instalado/activado. É fortemente recomendado que active este módulo para obter os melhores resultado com a detecção dos tipos de mime." -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "A sua versão do PHP está ultrapassada" + +#: templates/admin.php:82 +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 sua versão do PHP está ultrapassada. Recomendamos que actualize para a versão 5.3.8 ou mais recente, devido às versões anteriores conterem problemas. É também possível que esta instalação não esteja a funcionar correctamente." + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Internacionalização não está a funcionar" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "Não é possível pôr as definições de sistema compatíveis com UTF-8." + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "Isto significa que podem haver problemas com alguns caracteres nos nomes dos ficheiros." + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "Este servidor de ownCloud não consegue definir a codificação de caracteres para %s. Isto significa que pode haver problemas com alguns caracteres nos nomes dos ficheiros. É fortemente recomendado que instale o pacote recomendado para ser possível ver caracteres codificados em %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "Recomendamos fortemente que instale no seu sistema todos os pacotes necessários para suportar os seguintes locales: %s." -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "A ligação à internet não está a funcionar" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -281,110 +334,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Este servidor ownCloud não tem uma ligação de internet a funcionar. Isto significa que algumas funcionalidades como o acesso a locais externos (dropbox, gdrive, etc), notificações sobre actualizções, ou a instalação de aplicações não irá funcionar. Sugerimos que active uma ligação à internet se pretender obter todas as funcionalidades do ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Executar uma tarefa com cada página carregada" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php está registado num serviço webcron para chamar a página cron.php por http uma vez por minuto." +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Use o serviço cron do sistema para chamar o ficheiro cron.php uma vez por minuto." +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Partilha" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Activar a API de partilha" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Permitir que os utilizadores usem a API de partilha" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Permitir links" -#: templates/admin.php:135 +#: templates/admin.php:178 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:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Permitir Envios Públicos" -#: templates/admin.php:144 +#: templates/admin.php:187 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:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Permitir repartilha" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Permitir que os utilizadores partilhem itens partilhados com eles" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Permitir que os utilizadores partilhem com todos" -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Permitir notificação por email" + +#: templates/admin.php:214 +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:221 msgid "Security" msgstr "Segurança" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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:191 +#: templates/admin.php:242 #, 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:203 +#: templates/admin.php:254 msgid "Log" msgstr "Registo" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Nível do registo" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Mais" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Menos" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versão" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Use este endereço para aceder aos seus ficheiros via WebDav" +"Use this address to access your Files via " +"WebDAV" +msgstr "Utilize esta ligação para aceder aos seus ficheiros via WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Encriptação" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "A aplicação de encriptação não se encontra mais disponível, desencripte o seu ficheiro" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "A aplicação de encriptação já não está ativa, por favor desincripte todos os seus ficheiros" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Password de entrada" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Desencriptar todos os ficheiros" @@ -576,6 +641,10 @@ msgstr "Digite a senha de recuperação, a fim de recuperar os arquivos de usuá msgid "Default Storage" msgstr "Armazenamento Padrão" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "Insira a quota de armazenamento (ex: \"512 MB\" ou \"12 GB\")" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Ilimitado" @@ -593,8 +662,8 @@ msgid "Storage" msgstr "Armazenamento" #: templates/users.php:108 -msgid "change display name" -msgstr "modificar nome exibido" +msgid "change full name" +msgstr "alterar nome completo" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 03ef1f30c99aebfab54f05000f295823131c6509..048fb54948548ac62aeec693a07f54e5134cab20 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Bruno Martins , 2013 +# Bruno Martins , 2013 # Mouxy , 2013 # Helder Meneses , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -28,314 +28,425 @@ msgstr "Falhou a limpar os mapas" msgid "Failed to delete the server configuration" msgstr "Erro ao eliminar as configurações do servidor" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "A configuração está correcta e foi possível estabelecer a ligação!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "A configuração está correcta, mas não foi possível estabelecer o \"laço\", por favor, verifique as configurações do servidor e as credenciais." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "A configuração é inválida. Por favor, veja o log do ownCloud para mais detalhes." +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 "" -#: js/settings.js:66 +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 msgid "Deletion failed" msgstr "Erro ao apagar" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Assumir as configurações da configuração do servidor mais recente?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Manter as definições?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Não foi possível adicionar as configurações do servidor." -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "Mapas limpos" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Sucesso" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Erro" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Seleccionar grupos" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Teste de conecção passado com sucesso." -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Erro no teste de conecção." -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Deseja realmente apagar as configurações de servidor actuais?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Confirmar a operação de apagar" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" msgstr "" -#: templates/settings.php:12 +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Guardar" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Testar a configuração" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Ajuda" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Aviso: O módulo PHP LDAP não está instalado, logo não irá funcionar. Por favor peça ao administrador para o instalar." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Configurações do servidor" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +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 "Adicionar configurações do servidor" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Anfitrião" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Pode omitir o protocolo, excepto se necessitar de SSL. Neste caso, comece com ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "DN base" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Uma base DN por linho" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Pode especificar o ND Base para utilizadores e grupos no separador Avançado" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Porto" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "DN do utilizador" -#: templates/settings.php:46 +#: 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 "O DN to cliente " -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Password" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Para acesso anónimo, deixe DN e a Palavra-passe vazios." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Filtro de login de utilizador" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Uma base DN por linho" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Pode especificar o ND Base para utilizadores e grupos no separador Avançado" + +#: templates/part.wizard-userfilter.php:4 #, php-format -msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +msgid "Limit the access to %s to users meeting this criteria:" msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Utilizar filtro" - -#: templates/settings.php:58 +#: templates/part.wizard-userfilter.php:31 +#, php-format msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Filtrar por grupo" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Voltar" -#: templates/settings.php:62 +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Continuar" + +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Aviso: O módulo PHP LDAP não está instalado, logo não irá funcionar. Por favor peça ao administrador para o instalar." + +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Definições de ligação" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Configuração activa" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Se não estiver marcada, esta definição não será tida em conta." -#: templates/settings.php:69 -msgid "Port" -msgstr "Porto" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Servidor de Backup (Réplica)" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Forneça um servidor (anfitrião) de backup. Deve ser uma réplica do servidor principal de LDAP/AD " -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Porta do servidor de backup (Replica)" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Desactivar servidor principal" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Usar TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Não utilize para adicionar ligações LDAP, irá falhar!" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Servidor LDAP (Windows) não sensível a maiúsculas." -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Desligar a validação de certificado SSL." -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Cache do tempo de vida dos objetos no servidor" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "em segundos. Uma alteração esvazia a cache." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Definições de directorias" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Mostrador do nome de utilizador." -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Base da árvore de utilizadores." -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "Uma base de utilizador DN por linha" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "Utilizar atributos de pesquisa" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Opcional; Um atributo por linha" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Mostrador do nome do grupo." -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Base da árvore de grupos." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "Uma base de grupo DN por linha" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Atributos de pesquisa de grupo" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Associar utilizador ao grupo." -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Atributos especiais" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Quota" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Quota padrão" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "em bytes" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "Campo de email" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "Regra da pasta inicial do utilizador" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Deixe vazio para nome de utilizador (padrão). De outro modo, especifique um atributo LDAP/AD." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "Nome de utilizador interno" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -351,15 +462,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "Atributo do nome de utilizador interno" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "Passar a detecção do UUID" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -370,15 +481,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atributo UUID:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "Mapeamento do utilizador LDAP" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -392,18 +507,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "Limpar mapeamento do utilizador-LDAP" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Limpar o mapeamento do nome de grupo LDAP" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Testar a configuração" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Ajuda" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 5e6a50773fd0744115f8a23f048df2dba98d0446..f2ee984065be768d33213663664d8a3d8a7ab730 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-21 20:00+0000\n" -"Last-Translator: corneliu.e \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,14 +21,15 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s Partajat »%s« cu tine de" -#: ajax/share.php:227 -msgid "group" -msgstr "grup" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -55,45 +56,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Tipul de categorie nu a fost specificat." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Nici o categorie de adăugat?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Această categorie deja există: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Tipul obiectului nu este prevăzut" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "ID-ul %s nu a fost introdus" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Eroare la adăugarea %s la favorite." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Nicio categorie selectată pentru ștergere." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Eroare la ștergerea %s din favorite." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -190,63 +152,63 @@ msgstr "Noiembrie" msgid "December" msgstr "Decembrie" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Setări" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "acum %n minut" msgstr[1] "acum %n minute" msgstr[2] "acum %n minute" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "acum %n oră" msgstr[1] "acum %n ore" msgstr[2] "acum %n ore" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "astăzi" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "ieri" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "acum %n zi" msgstr[1] "acum %n zile" msgstr[2] "acum %n zile" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "ultima lună" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "luni în urmă" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "ultimul an" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "ani în urmă" @@ -315,155 +277,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Tipul obiectului nu este specificat." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Eroare" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Numele aplicației nu este specificat." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Fișierul obligatoriu {file} nu este instalat!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Partajat" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Partajează" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Eroare" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Eroare la partajare" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Eroare la anularea partajării" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Eroare la modificarea permisiunilor" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Distribuie cu tine si grupul {group} de {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Distribuie cu tine de {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Partajat cu" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "Partajare cu legătură" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Protejare cu parolă" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Parolă" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Permiteţi încărcarea publică." -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Expediază legătura prin poșta electronică" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Expediază" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Specifică data expirării" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Data expirării" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Distribuie prin email:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Nici o persoană găsită" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "grup" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Repartajarea nu este permisă" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Distribuie in {item} si {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Anulare partajare" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "poate edita" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "control acces" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "creare" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "actualizare" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "ștergere" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "partajare" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Protejare cu parolă" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Eroare la anularea datei de expirare" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Eroare la specificarea datei de expirare" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Se expediază..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "Mesajul a fost expediat" +#: js/share.js:769 +msgid "Warning" +msgstr "Atenție" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Tipul obiectului nu este specificat." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Șterge" + +#: js/tags.js:31 +msgid "Add" +msgstr "Adaugă" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Linkul pentru resetarea parolei tale a fost trimis pe email.
    Daca nu ai primit email-ul intr-un timp rezonabil, verifica folderul spam/junk.
    Daca nu sunt acolo intreaba administratorul local." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Cerere esuata!
    Esti sigur ca email-ul/numele de utilizator sunt corecte?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Vei primi un mesaj prin care vei putea reseta parola via email." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Nume utilizator" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -512,13 +502,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Fișierele tale sunt criptate. Dacă nu ai activat o cheie de recuperare, nu va mai exista nici o metodă prin care să îți recuperezi datele după resetarea parole. Dacă nu ești sigur în privința la ce ai de făcut, contactează un administrator înainte să continuii. Chiar vrei să continui?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Da, eu chiar doresc să îmi resetez parola acum" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Cerere trimisă" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -544,7 +534,7 @@ msgstr "Personal" msgid "Users" msgstr "Utilizatori" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Aplicații" @@ -556,6 +546,34 @@ msgstr "Administrator" msgid "Help" msgstr "Ajutor" +#: 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 "Acces restricționat" @@ -572,108 +590,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Salutare,\n\nVă aduc la cunoștință că %s a partajat %s cu tine.\nAccesează la: %s\n\nNumai bine!" +msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Editează categorii" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Adaugă" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Avertisment de securitate" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Versiunea dvs. PHP este vulnerabilă la un atac cu un octet NULL (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Te rog actualizează versiunea PHP pentru a utiliza %s în mod securizat." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Nu este disponibil niciun generator securizat de numere aleatoare, vă rog activați extensia PHP OpenSSL." -#: templates/installation.php:33 +#: 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 "Fără generatorul securizat de numere aleatoare , un atacator poate anticipa simbolurile de resetare a parolei și poate prelua controlul asupra contului tău." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Directorul tău de date și fișiere sunt probabil accesibile de pe Internet, deoarece fișierul .htaccess nu funcționează." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "Pentru informații despre cum să configurezi serverul, vezi documentația." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Crează un cont de administrator" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Avansat" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Director date" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Configurează baza de date" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "vor fi folosite" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Utilizatorul bazei de date" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Parola bazei de date" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Numele bazei de date" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Tabela de spațiu a bazei de date" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Bază date" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Finalizează instalarea" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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 "%s este disponibil. Vezi mai multe informații despre procesul de actualizare." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Ieșire" @@ -691,19 +720,27 @@ msgstr "Dacă nu ți-ai schimbat parola recent, contul tău ar putea fi compromi msgid "Please change your password to secure your account again." msgstr "Te rog schimbă-ți parola pentru a-ți securiza din nou contul." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Ai uitat parola?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "amintește" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Autentificare" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Conectări alternative" @@ -711,10 +748,37 @@ msgstr "Conectări alternative" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Salutare,

    Vă aduc la cunoștință că %s a partajat %s cu tine.
    Accesează-l!

    Numai bine!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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 "Actualizăm ownCloud la versiunea %s, aceasta poate dura câteva momente." + +#: 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/ro/files.po b/l10n/ro/files.po index 85ce986ea03d688e71cdadcde0e42befc8d28d29..7d9acd7661b2c85aba8866af458bf4e3e466813c 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -11,10 +11,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:51-0400\n" -"PO-Revision-Date: 2013-09-21 16:50+0000\n" -"Last-Translator: corneliu.e \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,62 +32,107 @@ msgstr "%s nu se poate muta - Fișierul cu acest nume există deja " msgid "Could not move %s" msgstr "Nu s-a putut muta %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Numele fișierului nu poate rămâne gol." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Imposibil de a seta directorul pentru incărcare." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Jeton Invalid" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Nici un fișier nu a fost încărcat. Eroare necunoscută" -#: ajax/upload.php:66 +#: ajax/upload.php:71 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:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Fisierul incarcat depaseste marimea maxima permisa in php.ini: " -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Fișierul are o dimensiune mai mare decât variabile MAX_FILE_SIZE specificată în formularul HTML" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Fișierul a fost încărcat doar parțial" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Nu a fost încărcat nici un fișier" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Lipsește un dosar temporar" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Eroare la scrierea discului" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Nu este suficient spațiu disponibil" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 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:136 +#: ajax/upload.php:144 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:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "registru invalid." @@ -95,160 +140,181 @@ msgstr "registru invalid." msgid "Files" msgstr "Fișiere" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Nu se poate încărca {filename} deoarece este un director sau are mărimea de 0 octeți" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Nu este suficient spațiu disponibil" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Încărcare anulată." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "Nu se poate obține rezultatul de la server." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "Adresa URL nu poate fi golita" +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Nume de dosar invalid. Utilizarea 'Shared' e rezervată de ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Eroare" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} deja exista" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "a imparti" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Stergere permanenta" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Redenumire" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "in timpul" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} deja exista" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "înlocuire" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "sugerează nume" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "anulare" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} inlocuit cu {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "Anulează ultima acțiune" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n director" msgstr[1] "%n directoare" msgstr[2] "%n directoare" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fișier" msgstr[1] "%n fișiere" msgstr[2] "%n fișiere" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} și {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Se încarcă %n fișier." msgstr[1] "Se încarcă %n fișiere." msgstr[2] "Se încarcă %n fișiere." -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' este un nume invalid de fișier." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Numele fișierului nu poate rămâne gol." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nume invalide, '\\', '/', '<', '>', ':', '\"', '|', '?' si '*' nu sunt permise." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Spatiul de stocare este plin, fisierele nu mai pot fi actualizate sau sincronizate" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Spatiul de stocare este aproape plin {spatiu folosit}%" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "criptarea a fost disactivata dar fisierele sant inca criptate.va rog intrati in setarile personale pentru a decripta fisierele" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "in curs de descarcare. Aceasta poate să dureze ceva timp dacă fișierele sunt mari." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "Eroare la mutarea fișierului" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Eroare" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Nume" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Dimensiune" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Modificat" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s nu a putut fi redenumit" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Încărcare" @@ -284,65 +350,69 @@ msgstr "Dimensiunea maximă de intrare pentru fișiere compresate" msgid "Save" msgstr "Salvează" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Nou" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "lista" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "Dosar" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "de la adresa" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Sterge fisierele" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Anulează încărcarea" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Nu ai permisiunea de a scrie aici." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Nimic aici. Încarcă ceva!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Descarcă" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Anulare" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Șterge" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Fișierul încărcat este prea mare" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fișierul care l-ai încărcat a depășită limita maximă admisă la încărcare pe acest server." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Fișierele sunt scanate, asteptati va rog" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "În curs de scanare" diff --git a/l10n/ro/files_encryption.po b/l10n/ro/files_encryption.po index 65bcf49b446d8e237f15e17f0e998455cff311d0..2c475db5a09a48758ffdfe08b0ca36a3b7cfbac5 100644 --- a/l10n/ro/files_encryption.po +++ b/l10n/ro/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:41 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Se salvează..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Încriptare" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index 3d7a2b5f8c07c2022be0c6ee1351e2a0cd0e47d7..69aa8b63bc923e575d75902a611760e095889f24 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Acces permis" @@ -25,7 +25,7 @@ msgstr "Acces permis" msgid "Error configuring Dropbox storage" msgstr "Eroare la configurarea mediului de stocare Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Permite accesul" @@ -33,24 +33,24 @@ msgstr "Permite accesul" msgid "Please provide a valid Dropbox app key and secret." msgstr "Prezintă te rog o cheie de Dropbox validă și parola" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Eroare la configurarea mediului de stocare Google Drive" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Atenție: \"smbclient\" nu este instalat. Montarea mediilor CIFS/SMB partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleaze." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Atenție: suportul pentru FTP în PHP nu este activat sau instalat. Montarea mediilor FPT partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleze." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index e0a966d6e0fe66e8f0e35dc260f30903221e6bd6..f5960b814f3a371dc0075d8371e081830d31a857 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Parola este incorectă. Încercaţi din nou." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Parolă" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Trimite" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -54,28 +54,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s a partajat directorul %s cu tine" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s a partajat fișierul %s cu tine" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Descarcă" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Încărcare" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Anulează încărcarea" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Nici o previzualizare disponibilă pentru " + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 916fba8a41d0e41e02ea76c59221505c321c3751..ca45c2337baa687a45ef06bbaf2cd9b3305dd979 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:54-0400\n" -"PO-Revision-Date: 2013-09-21 16:50+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -27,57 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Eroare" -#: js/trash.js:37 -msgid "delete file permanently" +#: lib/trashbin.php:815 lib/trashbin.php:817 +msgid "restored" msgstr "" -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Stergere permanenta" +#: templates/index.php:8 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" -#: js/trash.js:190 templates/index.php:21 +#: templates/index.php:22 msgid "Name" msgstr "Nume" -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n directoare" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n fișiere" - -#: lib/trashbin.php:814 lib/trashbin.php:816 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:25 templates/index.php:27 +msgid "Restore" msgstr "" -#: templates/index.php:24 templates/index.php:26 -msgid "Restore" +#: templates/index.php:33 +msgid "Deleted" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Șterge" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 8f288b515edc0bcffd8a121ea26292fc840efbab..38e5a853139adb88c03581292143781f57abd9a9 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:56-0400\n" -"PO-Revision-Date: 2013-09-21 20:00+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -18,322 +18,321 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Ajutor" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Personal" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Setări" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Utilizatori" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Tip fișier necunoscut" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Imagine invalidă" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "servicii web controlate de tine" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Descărcarea ZIP este dezactivată." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Fișierele trebuie descărcate unul câte unul." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Înapoi la fișiere" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Fișierele selectate sunt prea mari pentru a genera un fișier zip." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Aplicația nu este activată" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Eroare la autentificare" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token expirat. Te rugăm să reîncarci pagina." -#: search/provider/file.php:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Fișiere" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Text" -#: search/provider/file.php:30 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Imagini" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serverul de web nu este încă setat corespunzător pentru a permite sincronizarea fișierelor deoarece interfața WebDAV pare a fi întreruptă." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Vă rugăm să verificați ghiduri de instalare." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Cloud nu a gasit categoria \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "secunde în urmă" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "acum %n minute" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "acum %n ore" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "astăzi" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "ieri" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "acum %n zile" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "ultima lună" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "ultimul an" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "ani în urmă" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Cloud nu a gasit categoria \"%s\"" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 6f79f4b1e0580d4c6ee9eeb9c4dd45a7e76aba39..4841638de48314966d3144f65e5e82c15c1df3a3 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:56-0400\n" -"PO-Revision-Date: 2013-09-21 20:00+0000\n" -"Last-Translator: corneliu.e \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,12 +29,12 @@ msgid "Authentication error" msgstr "Eroare la autentificare" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Numele afişat a fost schimbat." +msgid "Your full name has been changed." +msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Imposibil de schimbat numele afişat." +msgid "Unable to change full name" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -119,11 +119,11 @@ msgstr "Imposibil de schimbat parola" msgid "Update to {appversion}" msgstr "Actualizat la {versiuneaaplicaţiei}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Dezactivați" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Activare" @@ -131,31 +131,31 @@ msgstr "Activare" msgid "Please wait...." msgstr "Aşteptaţi vă rog...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Actualizare în curs...." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Eroare în timpul actualizării aplicaţiei" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Eroare" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Actualizare" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Actualizat" @@ -163,7 +163,7 @@ msgstr "Actualizat" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -183,44 +183,75 @@ msgstr "Anulează ultima acțiune" msgid "Unable to remove user" msgstr "Imposibil de eliminat utilizatorul" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupuri" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grupul Admin " -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Șterge" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "adăugaţi grupul" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "Trebuie să furnizaţi un nume de utilizator valid" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "Eroare la crearea utilizatorului" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "Trebuie să furnizaţi o parolă validă" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "_language_name_" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "Avertisment de securitate" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -229,48 +260,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Atenţie la implementare" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Modulul \"Fileinfo\" lipsește" -#: templates/admin.php:47 +#: templates/admin.php:68 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:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "Localizarea nu funcționează" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Conexiunea la internet nu funcționează" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -279,110 +330,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Execută o sarcină la fiecare pagină încărcată" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Partajare" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Activare API partajare" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Permite aplicațiilor să folosească API-ul de partajare" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Pemite legături" -#: templates/admin.php:135 +#: templates/admin.php:178 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:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Permite încărcări publice" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Permite repartajarea" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Permite utilizatorilor să repartajeze fișiere partajate cu ei" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Permite utilizatorilor să partajeze cu oricine" -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "Securitate" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "Jurnal de activitate" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Nivel jurnal" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Mai mult" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Mai puțin" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versiunea" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Încriptare" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -574,6 +637,10 @@ msgstr "" msgid "Default Storage" msgstr "Stocare implicită" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Nelimitată" @@ -591,8 +658,8 @@ msgid "Storage" msgstr "Stocare" #: templates/users.php:108 -msgid "change display name" -msgstr "schimbă numele afișat" +msgid "change full name" +msgstr "" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index e97322cda88a074bc43bdd4ec62a52557f7c90b1..9edb1afcd33ec94257f1deb51ee503aee07c51d4 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,427 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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 "Ștergerea a eșuat" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Succes" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Eroare" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Salvează" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Ajutor" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Atenție Modulul PHP LDAP nu este instalat, infrastructura nu va funcționa. Contactează administratorul sistemului pentru al instala." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +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/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Gazdă" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Puteți omite protocolul, decât dacă folosiți SSL. Atunci se începe cu ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "DN de bază" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Un Base DN pe linie" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Puteți să specificați DN de bază pentru utilizatori și grupuri în fila Avansat" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Portul" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "DN al utilizatorului" -#: templates/settings.php:46 +#: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "DN-ul clientului utilizator cu care se va efectua conectarea, d.e. uid=agent,dc=example,dc=com. Pentru acces anonim, lăsăți DN și Parolă libere." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Parolă" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Pentru acces anonim, lăsați DN și Parolă libere." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Filtrare după Nume Utilizator" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Un Base DN pe linie" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Puteți să specificați DN de bază pentru utilizatori și grupuri în fila Avansat" + +#: templates/part.wizard-userfilter.php:4 #, php-format -msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +msgid "Limit the access to %s to users meeting this criteria:" msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Filtrarea după lista utilizatorilor" - -#: templates/settings.php:58 +#: templates/part.wizard-userfilter.php:31 +#, php-format msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Fitrare Grup" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Înapoi" -#: templates/settings.php:62 +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Continuă" + +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Atenție Modulul PHP LDAP nu este instalat, infrastructura nu va funcționa. Contactează administratorul sistemului pentru al instala." + +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "Portul" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Utilizează TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Server LDAP insensibil la majuscule (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Oprește validarea certificatelor SSL " -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "în secunde. O schimbare curăță memoria tampon." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Câmpul cu numele vizibil al utilizatorului" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Arborele de bază al Utilizatorilor" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "Un User Base DN pe linie" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Câmpul cu numele grupului" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Arborele de bază al Grupurilor" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "Un Group Base DN pe linie" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Asocierea Grup-Membru" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "în octeți" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Lăsați gol pentru numele de utilizator (implicit). În caz contrar, specificați un atribut LDAP / AD." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +461,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +480,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +506,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Ajutor" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index f5720110be1a6c16127e472794f45dcd618db559..e1f8d1784205925265c3663e2604ab5c7f759bcb 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -7,20 +7,25 @@ # alfsoft , 2013 # lord93 , 2013 # foool , 2013 +# Evgeniy Spitsyn , 2013 # jekader , 2013 +# Mescalinich , 2013 +# stushev , 2013 # eurekafag , 2013 # sk.avenger , 2013 # Victor Bravo <>, 2013 +# vsapronov , 2013 +# not_your_conscience , 2013 # Vyacheslav Muranov , 2013 # Den4md , 2013 # Langaru , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-22 12:00+0000\n" -"Last-Translator: jekader \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 17:10+0000\n" +"Last-Translator: Evgeniy Spitsyn \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,14 +33,15 @@ 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/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s поделился »%s« с вами" -#: ajax/share.php:227 -msgid "group" -msgstr "группа" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Невозможно отправить письмо следующим пользователям: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -62,45 +68,6 @@ msgstr "Обновлен файловый кэш" msgid "... %d%% done ..." msgstr "... %d%% завершено ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Тип категории не предоставлен" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Нет категорий для добавления?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Эта категория уже существует: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Тип объекта не предоставлен" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "ID %s не предоставлен" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Ошибка добавления %s в избранное" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Нет категорий для удаления." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Ошибка удаления %s из избранного" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Не указано изображение или файл" @@ -197,63 +164,63 @@ msgstr "Ноябрь" msgid "December" msgstr "Декабрь" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Конфигурация" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n минуту назад" msgstr[1] "%n минуты назад" msgstr[2] "%n минут назад" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n час назад" msgstr[1] "%n часа назад" msgstr[2] "%n часов назад" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "сегодня" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "вчера" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n день назад" msgstr[1] "%n дня назад" msgstr[2] "%n дней назад" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n месяц назад" msgstr[1] "%n месяца назад" msgstr[2] "%n месяцев назад" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "несколько месяцев назад" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "в прошлом году" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "несколько лет назад" @@ -322,155 +289,183 @@ msgstr "({count} выбрано)" msgid "Error loading file exists template" msgstr "Ошибка при загрузке шаблона существующего файла" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Тип объекта не указан" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Ошибка" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Имя приложения не указано" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Необходимый файл {file} не установлен!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Общие" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Открыть доступ" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Ошибка" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Ошибка при открытии доступа" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Ошибка при закрытии доступа" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Ошибка при смене разрешений" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} открыл доступ для Вас и группы {group} " -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "{owner} открыл доступ для Вас" -#: js/share.js:183 -msgid "Share with" -msgstr "Поделиться с" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Поделиться с пользователем или группой..." -#: js/share.js:188 -msgid "Share with link" -msgstr "Поделиться с ссылкой" +#: js/share.js:219 +msgid "Share link" +msgstr "Поделиться ссылкой" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Защитить паролем" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Пароль" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Разрешить открытую загрузку" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Почтовая ссылка на персону" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Отправить" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Установить срок доступа" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Дата окончания" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Поделится через электронную почту:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Ни один человек не найден" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "группа" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Общий доступ не разрешен" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Общий доступ к {item} с {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Закрыть общий доступ" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "уведомить по почте" + +#: js/share.js:408 msgid "can edit" msgstr "может редактировать" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "контроль доступа" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "создать" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "обновить" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "удалить" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "открыть доступ" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Защищено паролем" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Ошибка при отмене срока доступа" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Ошибка при установке срока доступа" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Отправляется ..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "Письмо отправлено" +#: js/share.js:769 +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 "Ошибка загрузки шаблона диалога: {error}" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Ссылка для сброса пароля отправлена вам ​​по электронной почте.
    Если вы не получите письмо в пределах одной-двух минут, проверьте папку Спам.
    Если письма там нет, обратитесь к своему администратору." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Запрос не удался. Вы уверены, что email или имя пользователя указаны верно?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "На ваш адрес Email выслана ссылка для сброса пароля." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Имя пользователя" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -519,13 +514,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Ваши файлы зашифрованы. Если вы не активировали ключ восстановления, то после сброса пароля все ваши данные будут потеряны навсегда. Если вы не знаете что делать, свяжитесь со своим администратором до того как продолжить. Вы действительно хотите продолжить?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Да, я действительно хочу сбросить свой пароль" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Запросить сброс" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Сброс" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -551,18 +546,46 @@ msgstr "Личное" msgid "Users" msgstr "Пользователи" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Приложения" #: strings.php:8 msgid "Admin" -msgstr "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 "Доступ запрещён" @@ -579,108 +602,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Приветствую,⏎\n⏎\nпросто даю знать, что %s поделился %s с вами.⏎\nПосмотреть: %s⏎\n⏎\nУдачи!" +msgstr "Здравствуйте,\n\nпросто даём вам знать, что %s расшарил %s для вас.\nПосмотреть: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Редактировать категрии" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "Доступ пропадет в %s" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Добавить" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Приветствуем!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Предупреждение безопасности" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Ваша версия PHP уязвима к атаке NULL Byte (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Пожалуйста обновите Вашу PHP конфигурацию для безопасного использования %s." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Отсутствует защищенный генератор случайных чисел, пожалуйста, включите расширение PHP OpenSSL." -#: templates/installation.php:33 +#: 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:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Ваша папка с данными и файлы возможно доступны из интернета потому что файл .htaccess не работает." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "Для информации, как правильно настроить Ваш сервер, пожалуйста загляните в документацию." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Создать учётную запись администратора" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Дополнительно" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Директория с данными" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Настройка базы данных" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "будет использовано" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Пользователь базы данных" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Пароль базы данных" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Название базы данных" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Табличое пространство базы данных" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Хост базы данных" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Завершить установку" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Завершаем..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "Это приложение требует включённый JavaScript для корректной работы. Пожалуйста, включите JavaScript и перезагрузите интерфейс." + +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s доступно. Получить дополнительную информацию о порядке обновления." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Выйти" @@ -698,19 +732,27 @@ msgstr "Если Вы недавно не меняли свой пароль, т msgid "Please change your password to secure your account again." msgstr "Пожалуйста, смените пароль, чтобы обезопасить свою учетную запись." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "Неудачная аутентификация с сервером!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Пожалуйста, свяжитесь с вашим администратором." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Забыли пароль?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "запомнить" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Войти" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Альтернативные имена пользователя" @@ -718,10 +760,37 @@ msgstr "Альтернативные имена пользователя" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Приветствую,

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

    Удачи!" +"href=\"%s\">View it!

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

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

    " -#: templates/update.php:3 +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "Эта установка ownCloud в настоящее время в однопользовательском режиме." + +#: 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 "Идёт обновление ownCloud до версии %s. Это может занять некоторое время." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "Производится обновление ownCloud, это может занять некоторое время." + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "Перезагрузите эту страницу через некоторое время чтобы продолжить использовать ownCloud." diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 114807f53033c5a5b3422ebee69b85944112615e..71eb028f58201d15bb297853688cbd080321e45a 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -4,19 +4,22 @@ # # Translators: # lord93 , 2013 +# Evgeniy Spitsyn , 2013 # jekader , 2013 # eurekafag , 2013 # Victor Bravo <>, 2013 +# vsapronov , 2013 +# not_your_conscience , 2013 # navigator666 , 2013 # hackproof , 2013 # Friktor , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:51-0400\n" -"PO-Revision-Date: 2013-09-21 12:30+0000\n" -"Last-Translator: jekader \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-24 01:55-0500\n" +"PO-Revision-Date: 2013-12-22 17:50+0000\n" +"Last-Translator: Evgeniy Spitsyn \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" @@ -34,62 +37,107 @@ msgstr "Невозможно переместить %s - файл с таким msgid "Could not move %s" msgstr "Невозможно переместить %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Имя файла не может быть пустым." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "Имя файла не должно содержать символ \"/\". Пожалуйста, выберите другое имя." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "Имя %s уже используется в папке %s. Пожалуйста выберите другое имя." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "Неправильный источник" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "Сервер не позволяет открывать URL-адреса, пожалуйста, проверьте настройки сервера" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Ошибка при загрузке %s в %s" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Ошибка при создании файла" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "Имя папки не может быть пустым." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "Имя папки не должно содержать символ \"/\". Пожалуйста, выберите другое имя." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Ошибка при создании папки" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Не удалось установить каталог загрузки." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Недопустимый маркер" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Файл не был загружен. Неизвестная ошибка" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Файл загружен успешно." -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Файл превышает размер установленный upload_max_filesize в php.ini:" -#: ajax/upload.php:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Файл загружен частично" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Файл не был загружен" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Отсутствует временная папка" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Ошибка записи на диск" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Недостаточно доступного места в хранилище" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "Загрузка не удалась. Невозможно получить информацию о файле" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "Загрузка не удалась. Невозможно найти загруженный файл" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Неправильный каталог." @@ -97,160 +145,181 @@ msgstr "Неправильный каталог." msgid "Files" msgstr "Файлы" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Невозможно загрузить файл {filename} так как он является директорией либо имеет размер 0 байт" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Недостаточно свободного места" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Загрузка отменена." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "Не получен ответ от сервера" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку." -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "Ссылка не может быть пустой." -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Неправильное имя каталога. Имя 'Shared' зарезервировано." +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "В домашней папке 'Shared' зарезервированное имя файла" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Ошибка" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} уже существует" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Не удалось создать файл" -#: js/fileactions.js:119 +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Не удалось создать папку" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Ошибка получения URL" + +#: js/fileactions.js:125 msgid "Share" msgstr "Открыть доступ" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Удалено навсегда" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Ожидание" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} уже существует" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Не удалось переименовать файл" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "заменить" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "предложить название" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "отмена" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "заменено {new_name} на {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "отмена" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Ошибка при удалении файла." + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n папка" msgstr[1] "%n папки" msgstr[2] "%n папок" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n файл" msgstr[1] "%n файла" msgstr[2] "%n файлов" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} и {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Закачка %n файла" msgstr[1] "Закачка %n файлов" msgstr[2] "Закачка %n файлов" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' - неправильное имя файла." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Имя файла не может быть пустым." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Неправильное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ваше дисковое пространство полностью заполнено, произведите очистку перед загрузкой новых файлов." -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ваше хранилище почти заполнено ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "Приложение для шифрования активно, но ваши ключи не инициализированы, пожалуйста, перелогиньтесь" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "Неверный приватный ключ для приложения шифрования. Пожалуйста, обноваите ваш приватный ключ в персональных настройках чтобы восстановить доступ к вашим зашифрованным файлам." + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Шифрование было отключено, но ваши файлы все еще зашифрованы. Пожалуйста, зайдите на страницу персональных настроек для того, чтобы расшифровать ваши файлы." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Загрузка началась. Это может потребовать много времени, если файл большого размера." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "Ошибка при перемещении файла" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Ошибка" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Имя" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Размер" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Изменён" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Неправильное имя каталога. Имя 'Shared' зарезервировано." + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s не может быть переименован" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Загрузка" @@ -286,65 +355,69 @@ msgstr "Максимальный исходный размер для ZIP фай msgid "Save" msgstr "Сохранить" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Новый" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "Новый текстовый файл" + +#: templates/index.php:8 msgid "Text file" msgstr "Текстовый файл" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Новая папка" + +#: templates/index.php:10 msgid "Folder" msgstr "Папка" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Из ссылки" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Удалённые файлы" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Отмена загрузки" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "У вас нет разрешений на запись здесь." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "У вас недостаточно прав для загрузки или создания файлов отсюда." -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Здесь ничего нет. Загрузите что-нибудь!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Скачать" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Закрыть общий доступ" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Удалить" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Файл слишком велик" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файлы, которые вы пытаетесь загрузить, превышают лимит для файлов на этом сервере." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Подождите, файлы сканируются." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Текущее сканирование" diff --git a/l10n/ru/files_encryption.po b/l10n/ru/files_encryption.po index b3f6c241cf6ecb8370c2c79d2d4701aaf7ef632c..821add2380c8ec4a8e4d8f52a4a52efe993f6443 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.po @@ -9,13 +9,14 @@ # jekader , 2013 # eurekafag , 2013 # Victor Bravo <>, 2013 +# vsapronov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: eurekafag \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-02 17:27-0500\n" +"PO-Revision-Date: 2013-11-30 04:00+0000\n" +"Last-Translator: vsapronov \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" @@ -49,75 +50,96 @@ msgstr "Пароль изменен удачно." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Невозможно изменить пароль. Возможно старый пароль не был верен." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Пароль секретного ключа успешно обновлён." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Невозможно обновить пароль от секретного ключа. Возможно, старый пароль указан неверно." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "Ваш секретный ключ не действителен! Вероятно, ваш пароль был изменен вне системы OwnCloud (например, корпоративный каталог). Вы можете обновить секретный ключ в личных настройках на странице восстановления доступа к зашифрованным файлам. " +"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 "Приложение шифрации не инициализированно! Возможно приложение шифрации было реактивировано во время вашей сессии. Пожалуйста, попробуйте выйти и войти снова чтобы проинициализировать приложение шифрации." -#: hooks/hooks.php:41 +#: 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 "Ваш секретный ключ не действителен! Вероятно, ваш пароль был изменен вне %s (например, корпоративный каталог). Вы можете обновить секретный ключ в личных настройках на странице восстановления доступа к зашифрованным файлам. " + +#: 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:59 msgid "Missing requirements." msgstr "Требования отсутствуют." -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Пожалуйста, убедитесь, что версия PHP 5.3.3 или новее, а также, что OpenSSL и соответствующее расширение PHP включены и правильно настроены. На данный момент приложение шифрования отключено." -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "Для следующих пользователей шифрование не настроено:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "Начато начальное шифрование... Это может занять какое-то время. Пожалуйста, подождите." + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Сохранение..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Секретный ключ недействителен! Возможно, Ваш пароль был изменён в другой программе." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Перейти прямо в" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Вы можете разблокировать закрытый ключ в своём " - -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "персональные настройки" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Шифрование" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Включить ключ восстановления (позволяет пользователям восстановить файлы при потере пароля):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Пароль для ключа восстановления" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Отключено" @@ -125,58 +147,62 @@ msgstr "Отключено" msgid "Change recovery key password:" msgstr "Сменить пароль для ключа восстановления:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Старый пароль для ключа восстановления" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Пароль от секретного ключа больше не соответствует паролю входа:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Замените старый пароль от секретного ключа на новый пароль входа." -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Старый пароль для входа" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Текущйи пароль для входа" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Обновить пароль от секретного ключа" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Включить восстановление пароля:" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Настройки файла восстановления обновлены" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Невозможно обновить файл восстановления" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index bad6e0f93060176b4286504ec3411e73585de62d..24a62cae43d9d5bced5ac90340d1b5c46ac06f19 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-18 11:40+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" @@ -17,7 +17,7 @@ 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" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Доступ предоставлен" @@ -25,7 +25,7 @@ msgstr "Доступ предоставлен" msgid "Error configuring Dropbox storage" msgstr "Ошибка при настройке хранилища Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Предоставление доступа" @@ -33,24 +33,24 @@ msgstr "Предоставление доступа" msgid "Please provide a valid Dropbox app key and secret." msgstr "Пожалуйста, предоставьте действующий ключ Dropbox и пароль." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Ошибка при настройке хранилища Google Drive" -#: lib/config.php:447 +#: lib/config.php:467 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Внимание: \"smbclient\" не установлен. Подключение по CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его." -#: lib/config.php:450 +#: lib/config.php:471 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Внимание: Поддержка FTP не включена в PHP. Подключение по FTP невозможно. Пожалуйста, обратитесь к системному администратору, чтобы включить." -#: lib/config.php:453 +#: lib/config.php:474 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 13ded27e566458e29c5128f7f03006aaf0aa3905..2b5eca9c9748953bf5afa64f0efe64c2e4b8080e 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -4,14 +4,15 @@ # # Translators: # Victor Bravo <>, 2013 +# not_your_conscience , 2013 # Den4md , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Den4md \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"Last-Translator: not_your_conscience \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" @@ -20,17 +21,17 @@ msgstr "" "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" #: 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:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Пароль" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Отправить" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "К сожалению, эта ссылка, похоже не будет работать больше." @@ -55,28 +56,32 @@ msgstr "обмен отключен" msgid "For more info, please ask the person who sent this link." msgstr "Для получения дополнительной информации, пожалуйста, спросите того кто отослал данную ссылку." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s открыл доступ к папке %s для Вас" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s открыл доступ к файлу %s для Вас" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Скачать" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Загрузка" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Отмена загрузки" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Предпросмотр недоступен для" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Прямая ссылка" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index da4605cba1ba3ac3aed468ad0e1de588aa6302f2..4e30a52f76311de785c1f69ea73cb7fb7276fd34 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# baden , 2013 # Den4md , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-17 10:40+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-18 11:40+0000\n" +"Last-Translator: baden \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" @@ -18,70 +19,44 @@ 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/delete.php:42 +#: ajax/delete.php:63 #, php-format msgid "Couldn't delete %s permanently" msgstr "%s не может быть удалён навсегда" -#: ajax/undelete.php:42 +#: ajax/undelete.php:43 #, php-format msgid "Couldn't restore %s" msgstr "%s не может быть восстановлен" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "выполнить операцию восстановления" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 msgid "Error" msgstr "Ошибка" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "удалить файл навсегда" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Удалено навсегда" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Имя" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "Удалён" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n папок" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n файлов" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:905 lib/trashbin.php:907 msgid "restored" msgstr "восстановлен" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Здесь ничего нет. Ваша корзина пуста!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:20 +msgid "Name" +msgstr "Имя" + +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Восстановить" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:31 +msgid "Deleted" +msgstr "Удалён" + +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Удалить" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Удаленные файлы" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 35f307084051d16b0eaa04f705cb8dfb130e1078..cb1007c9a5f2e24dadfc02cca8a1e4344f3717d0 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -7,15 +7,16 @@ # jekader , 2013 # eurekafag , 2013 # sk.avenger , 2013 +# unixoid , 2013 # navigator666 , 2013 # Friktor , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:56-0400\n" -"PO-Revision-Date: 2013-09-21 11:50+0000\n" -"Last-Translator: jekader \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,322 +24,321 @@ 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" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Приложение \"%s\" нельзя установить, так как оно не совместимо с текущей версией ownCloud." -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "Не выбрано имя приложения" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Помощь" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Личное" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Конфигурация" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Пользователи" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Не смог обновить \"%s\"." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Пользовательские картинки профиля ещё не поддерживают шифрование" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Неизвестный тип файла" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Изображение повреждено" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "веб-сервисы под вашим управлением" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "не могу открыть \"%s\"" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP-скачивание отключено." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Файлы должны быть загружены по одному." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Назад к файлам" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Выбранные файлы слишком велики, чтобы создать zip файл." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Загрузите файл маленьшими порциями, раздельно или вежливо попросите Вашего администратора." +msgstr "Загрузите файлы раздельно маленькими частями или вежливо попросите вашего администратора." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Не указан источник при установке приложения" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Не указан атрибут href при установке приложения через http" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Не указан путь при установке приложения из локального файла" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Архивы %s не поддерживаются" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Не возможно открыть архив при установке приложения" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "Приложение не имеет файла info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "Приложение невозможно установить. В нем содержится запрещенный код." -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Приложение невозможно установить. Не совместимо с текущей версией ownCloud." -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Приложение невозможно установить. Оно содержит параметр true который не допустим для приложений, не входящих в поставку." -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Приложение невозможно установить. Версия в info.xml/version не совпадает с версией заявленной в магазине приложений" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Папка приложения уже существует" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Не удалось создать директорию. Исправьте права доступа. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Приложение не разрешено" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Ошибка аутентификации" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Токен просрочен. Перезагрузите страницу." -#: search/provider/file.php:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Файлы" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Текст" -#: search/provider/file.php:30 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Изображения" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s введите имя пользователя базы данных." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s введите имя базы данных." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s Вы не можете использовать точки в имени базы данных" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Имя пользователя и/или пароль MS SQL не подходит: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Вы должны войти или в существующий аккаунт или под администратором." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Неверное имя пользователя и/или пароль MySQL" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "Ошибка БД: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Вызываемая команда была: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Пользователь MySQL '%s'@'localhost' уже существует." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Удалить этого пользователя из MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Пользователь MySQL '%s'@'%%' уже существует" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Удалить этого пользователя из MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "соединение с Oracle не может быть установлено" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Неверное имя пользователя и/или пароль Oracle" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Вызываемая команда была: \"%s\", имя: %s, пароль: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "Неверное имя пользователя и/или пароль PostgreSQL" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Установить имя пользователя для admin." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "становит пароль для admin." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш веб сервер до сих пор не настроен правильно для возможности синхронизации файлов, похоже что проблема в неисправности интерфейса WebDAV." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Пожалуйста, дважды просмотрите инструкции по установке." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Категория \"%s\" не найдена" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "несколько секунд назад" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n минута назад" msgstr[1] "%n минуты назад" msgstr[2] "%n минут назад" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n час назад" msgstr[1] "%n часа назад" msgstr[2] "%n часов назад" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "сегодня" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "вчера" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n день назад" msgstr[1] "%n дня назад" msgstr[2] "%n дней назад" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "в прошлом месяце" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n месяц назад" msgstr[1] "%n месяца назад" msgstr[2] "%n месяцев назад" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "в прошлом году" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "несколько лет назад" - -#: template.php:297 -msgid "Caused by:" -msgstr "Вызвано:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Категория \"%s\" не найдена" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 94e073154dff9a0a1a5b33ec0135711c2aab585d..91d66080a29cca089a70579f4c1d62ab008ee2ed 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -3,22 +3,28 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Aleksey Grigoryev , 2013 +# Aleksey Grigoriev , 2013 # Alexander Shashkevych , 2013 # alfsoft , 2013 # lord93 , 2013 +# Evgeniy Spitsyn , 2013 # jekader , 2013 # eurekafag , 2013 +# stushev, 2014 +# unixoid , 2013 +# vsapronov , 2013 +# not_your_conscience , 2013 # navigator666 , 2013 # hackproof , 2013 # Friktor , 2013 +# Иван Тюрин , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:56-0400\n" -"PO-Revision-Date: 2013-09-21 11:20+0000\n" -"Last-Translator: jekader \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"PO-Revision-Date: 2014-01-05 23:30+0000\n" +"Last-Translator: stushev\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" @@ -36,12 +42,12 @@ msgid "Authentication error" msgstr "Ошибка аутентификации" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Ваше отображаемое имя было изменено." +msgid "Your full name has been changed." +msgstr "Ваше полное имя было изменено." #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Невозможно изменить отображаемое имя" +msgid "Unable to change full name" +msgstr "Невозможно изменить полное имя" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -126,11 +132,11 @@ msgstr "Невозможно изменить пароль" msgid "Update to {appversion}" msgstr "Обновить до {версия приложения}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Выключить" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Включить" @@ -138,31 +144,31 @@ msgstr "Включить" msgid "Please wait...." msgstr "Подождите..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Ошибка отключения приложения" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Ошибка включения приложения" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Обновление..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Ошибка при обновлении приложения" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Ошибка" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Обновить" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Обновлено" @@ -170,7 +176,7 @@ msgstr "Обновлено" msgid "Select a profile picture" msgstr "Выберите картинку профиля" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "Расшифровка файлов... Пожалуйста, подождите, это может занять некоторое время." @@ -190,44 +196,75 @@ msgstr "отмена" msgid "Unable to remove user" msgstr "Невозможно удалить пользователя" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Группы" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" -msgstr "Группа Администраторы" +msgstr "Администратор группы" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Удалить" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "добавить группу" -#: js/users.js:436 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Укажите правильное имя пользователя" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Ошибка создания пользователя" -#: js/users.js:442 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Укажите валидный пароль" +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Предупреждение: домашняя папка пользователя \"{user}\" уже существует" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Русский " -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "Предупреждение безопасности" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -236,48 +273,68 @@ msgid "" "root." msgstr "Похоже, что папка с Вашими данными и Ваши файлы доступны из интернета. Файл .htaccess не работает. Мы настойчиво предлагаем Вам сконфигурировать вебсервер таким образом, чтобы папка с Вашими данными более не была доступна или переместите папку с данными куда-нибудь в другое место вне основной папки документов вебсервера." -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Предупреждение установки" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Пожалуйста, дважды просмотрите инструкции по установке." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Модуль 'fileinfo' отсутствует" -#: templates/admin.php:47 +#: templates/admin.php:68 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) файлов." +msgstr "PHP-модуль 'fileinfo' отсутствует. Мы настоятельно рекомендуем включить этот модуль для улучшения определения типов (mime-type) файлов." -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "Ваша версия PHP устарела" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "Локализация не работает" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "Невозможно установить системную локаль, поддерживающую UTF-8" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "Это значит, что могут быть проблемы с некоторыми символами в именах файлов." + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "Системный язык не может быть установлен в %s. Это значит, что могут возникнуть проблемы с некоторыми символами в именах файлов. Мы настойчиво предлагаем установить требуемые пакеты в Вашей системе для поддержки %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "Мы настоятельно рекомендуем установить требуемые пакеты в систему, для поддержки одной из следующих локалей: %s." -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Интернет-соединение не работает" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -286,110 +343,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Этот сервер не имеет подключения к сети интернет. Это значит, что некоторые возможности, такие как подключение внешних дисков, уведомления об обновлениях или установка сторонних приложений – не работают. Удалённый доступ к файлам и отправка уведомлений по электронной почте вероятнее всего тоже не будут работать. Предлагаем включить соединение с интернетом для этого сервера, если Вы хотите иметь все возможности." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Планировщик задач по расписанию" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Выполнять одно задание с каждой загруженной страницей" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php зарегистрирован в сервисе webcron, чтобы cron.php вызывался раз в минуту используя http." +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Использовать системный сервис cron для вызова cron.php раз в минуту." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "Использовать системный cron для вызова cron.php каждые 15 минут." -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Общий доступ" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Включить API общего доступа" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Позволить приложениям использовать API общего доступа" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Разрешить ссылки" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Разрешить пользователям открывать в общий доступ элементы с публичной ссылкой" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Разрешить открытые загрузки" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Разрешить пользователям позволять другим загружать в их открытые папки" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Разрешить переоткрытие общего доступа" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Позволить пользователям открывать общий доступ к эллементам уже открытым в общий доступ" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Разрешить пользователя делать общий доступ любому" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Разрешить пользователям делать общий доступ только для пользователей их групп" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Разрешить уведомление по почте" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "Разрешить пользователю оповещать почтой о расшаренных файлах" + +#: templates/admin.php:221 msgid "Security" msgstr "Безопасность" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Принудить к HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Принудить клиентов подключаться к %s через шифрованное соединение." -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Пожалуйста, подключитесь к %s используя HTTPS чтобы включить или отключить принудительное SSL." -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" -msgstr "Лог" +msgstr "Журнал" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" -msgstr "Уровень лога" +msgstr "Уровень детализации журнала" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Больше" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Меньше" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Версия" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Используйте этот адрес чтобы получить доступ к вашим файлам через WebDav - " +"Use this address to access your Files via " +"WebDAV" +msgstr "Используйте этот адресс для доступа к вашим файлам через WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Шифрование" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "Приложение шифрования не активно, отмените шифрование всех ваших файлов." +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "Приложение для шифрования выключено, пожалуйста, расшифруйте ваши файлы" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Пароль входа" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Снять шифрование со всех файлов" @@ -569,7 +638,7 @@ msgstr "Создать" #: templates/users.php:36 msgid "Admin Recovery Password" -msgstr "Восстановление Пароля Администратора" +msgstr "Восстановление пароля администратора" #: templates/users.php:37 templates/users.php:38 msgid "" @@ -579,7 +648,11 @@ msgstr "Введите пароль для того, чтобы восстано #: templates/users.php:42 msgid "Default Storage" -msgstr "Хранилище по-умолчанию" +msgstr "Хранилище по умолчанию" + +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "Пожалуйста, введите квоту на хранилище (например: \"512 MB\" или \"12 GB\")" #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" @@ -598,8 +671,8 @@ msgid "Storage" msgstr "Хранилище" #: templates/users.php:108 -msgid "change display name" -msgstr "изменить отображаемое имя" +msgid "change full name" +msgstr "изменить полное имя" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 68e53bc41e1371e2d0c7f45f50e313897094be40..686aeb1269d99ae14b2fa2e15cfc1118d7e69272 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -7,14 +7,18 @@ # Fenuks , 2013 # alfsoft , 2013 # jekader , 2013 +# Евгений Белоусов , 2013 +# unixoid , 2013 +# vsapronov , 2013 +# not_your_conscience , 2013 # navigator666 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:54-0400\n" -"PO-Revision-Date: 2013-09-21 11:40+0000\n" -"Last-Translator: jekader \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,320 +28,433 @@ msgstr "" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." -msgstr "Не удалось очистить соотвествия." +msgstr "Не удалось очистить соответствия." #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" msgstr "Не удалось удалить конфигурацию сервера" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Конфигурация правильная и подключение может быть установлено!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Конфигурация верна, но операция подключения завершилась неудачно. Пожалуйста, проверьте настройки сервера и учетные данные." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "Конфигурация не верна. Пожалуйста, посмотрите в журнале ownCloud детали." +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 "Невозможно создать конфигурацию %s" -#: js/settings.js:66 +#: js/settings.js:67 msgid "Deletion failed" msgstr "Удаление не удалось" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Принять настройки из последней конфигурации сервера?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Сохранить настройки?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Не получилось добавить конфигурацию сервера" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "Соответствия очищены" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Успешно" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Ошибка" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "Конфигурация в порядке" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "Конфигурация неправильна" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "Конфигурация не завершена" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Выберите группы" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "Выберите объектные классы" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "Выберите атрибуты" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Проверка соединения удалась" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Проверка соединения не удалась" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Вы действительно хотите удалить существующую конфигурацию сервера?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Подтверждение удаления" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "Предупреждение: Приложения user_ldap и user_webdavauth не совместимы. Вы можете наблюдать некорректное поведение. Пожалуйста попросите Вашего системного администратора отключить одно из них." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "%s группа найдена" +msgstr[1] "%s группы найдены" +msgstr[2] "%s групп найдено" -#: templates/settings.php:12 +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "%s пользователь найден" +msgstr[1] "%s пользователя найдено" +msgstr[2] "%s пользователей найдено" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "Неверный сервер" + +#: lib/wizard.php:951 +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 "Limit the access to %s to groups meeting this criteria:" +msgstr "Ограничить доступ к %s группам, удовлетворяющим этому критерию:" + +#: 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 "Исходный LDAP фильтр" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Внимание: Модуль LDAP для PHP не установлен, бэкенд не будет работать. Пожалуйста, попросите вашего системного администратора его установить. " +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "Этот фильтр определяет, какие LDAP группы должны иметь доступ к %s." -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Конфигурация сервера" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "групп найдено" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "Какой атрибут должен быть использован для логина:" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "Имя пользователя LDAP" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "LDAP адрес электронной почты:" + +#: 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 "Определяет фильтр для применения при попытке входа. %%uid заменяет имя пользователя при входе в систему. Например: \"uid=%%uid\"" + +#: templates/part.wizard-server.php:18 msgid "Add Server Configuration" msgstr "Добавить конфигурацию сервера" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Сервер" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Можно опустить протокол, за исключением того, когда вам требуется SSL. Тогда начните с ldaps :/ /" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Базовый DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "По одному базовому DN в строке." - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Вы можете задать Base DN для пользователей и групп на вкладке \"Расширенное\"" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Порт" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "DN пользователя" -#: templates/settings.php:46 +#: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "DN-клиента пользователя, с которым связывают должно быть заполнено, например, uid=агент, dc=пример, dc=com. Для анонимного доступа, оставьте DN и пароль пустыми." +msgstr "DN пользователя, под которым выполняется подключение, например, uid=agent,dc=example,dc=com. Для анонимного доступа оставьте DN и пароль пустыми." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Пароль" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Для анонимного доступа оставьте DN и пароль пустыми." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Фильтр входа пользователей" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "По одной базе поиска (Base DN) в строке." -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Вы можете задать Base DN для пользователей и групп на вкладке \"Расширенное\"" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "Ограничить доступ к %s пользователям, удовлетворяющим этому критерию:" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "Определяет фильтр для применения при попытке входа. %%uid заменяет имя пользователя при входе в систему. Например: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "Этот фильтр указывает, какие пользователи LDAP должны иметь доступ к %s." -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Фильтр списка пользователей" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "пользователей найдено" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "Определяет фильтр, использующийся при получении пользователей (без подмены переменных). Например: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Назад" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Фильтр группы" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Продолжить" -#: templates/settings.php:62 +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "Определяет фильтр, использующийся при получении групп (без подмены переменных). Например: \"objectClass=posixGroup\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "Предупреждение: Приложения user_ldap и user_webdavauth несовместимы. Вы можете наблюдать некорректное поведение. Пожалуйста, попросите вашего системного администратора отключить одно из них." -#: templates/settings.php:66 +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Внимание: Модуль LDAP для PHP не установлен, бэкенд не будет работать. Пожалуйста, попросите вашего системного администратора его установить. " + +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Настройки подключения" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Конфигурация активна" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Когда галочка снята, эта конфигурация будет пропущена." -#: templates/settings.php:69 -msgid "Port" -msgstr "Порт" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Адрес резервного сервера" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Укажите дополнительный резервный сервер. Он должен быть репликой главного LDAP/AD сервера." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Порт резервного сервера" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" -msgstr "Отключение главного сервера" +msgstr "Отключить главный сервер" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." -msgstr "Только подключение к серверу реплик." - -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Использовать TLS" +msgstr "Подключаться только к серверу-реплике." -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Не используйте совместно с безопасными подключениями (LDAPS), это не сработает." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Нечувствительный к регистру сервер LDAP (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Отключить проверку сертификата SSL." -#: templates/settings.php:75 +#: 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 "Не рекомендуется, используйте только в режиме тестирования! Если соединение работает только с этой опцией, импортируйте на ваш %s сервер сертификат SSL сервера LDAP." +msgstr "Не рекомендуется, используйте только в режиме тестирования! Если соединение работает только с этой опцией, импортируйте на ваш %s сервер SSL-сертификат сервера LDAP." -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Кэш времени жизни" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "в секундах. Изменение очистит кэш." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Настройки каталога" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Поле отображаемого имени пользователя" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "Атрибут LDAP, который используется для генерации отображаемого имени пользователя." -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "База пользовательского дерева" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "По одной базовому DN пользователей в строке." -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" -msgstr "Поисковые атрибуты пользователя" +msgstr "Атрибуты поиска пользоватетелей" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" -msgstr "Опционально; один атрибут на линию" +msgstr "Опционально; один атрибут в строке" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Поле отображаемого имени группы" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "Атрибут LDAP, который используется для генерации отображаемого имени группы." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "База группового дерева" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "По одной базовому DN групп в строке." -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Атрибуты поиска для группы" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Ассоциация Группа-Участник" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Специальные атрибуты" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" -msgstr "Поле квота" +msgstr "Поле квоты" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Квота по умолчанию" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "в байтах" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" -msgstr "Поле адресса эллектронной почты" +msgstr "Поле адреса электронной почты" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" -msgstr "Правило именования Домашней Папки Пользователя" +msgstr "Правило именования домашней папки пользователя" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Оставьте имя пользователя пустым (по умолчанию). Иначе укажите атрибут LDAP/AD." +msgstr "Оставьте пустым для использования имени пользователя (по умолчанию). Иначе укажите атрибут LDAP/AD." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "Внутреннее имя пользователя" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -351,17 +468,17 @@ msgid "" "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 "По-умолчанию внутреннее имя пользователя будет создано из атрибута UUID. Таким образом имя пользователя становится уникальным и не требует конвертации символов. Внутреннее имя пользователя может состоять только из следующих символов: [ a-zA-Z0-9_.@- ]. Остальные символы замещаются соответствиями из таблицы ASCII или же просто пропускаются. При совпадении к имени будет добавлено число. Внутреннее имя пользователя используется для внутренней идентификации пользователя. Также оно является именем по-умолчанию для папки пользователя в ownCloud. Оно также портом для удаленных ссылок, к примеру, для всех сервисов *DAV. С помощию данной настройки можно изменить поведение по-умолчанию. Чтобы достичь поведения, как было настроено до изменения, ownCloud 5 выводит атрибут имени пользователя в этом поле. Оставьте его пустым для режима по-умолчанию. Изменения будут иметь эффект только для новых подключенных (добавленных) пользователей LDAP." +msgstr "По умолчанию внутреннее имя пользователя будет создано из атрибута UUID. Таким образом имя пользователя становится уникальным и не требует конвертации символов. Внутреннее имя пользователя может состоять только из следующих символов: [ a-zA-Z0-9_.@- ]. Остальные символы замещаются соответствиями из таблицы ASCII или же просто пропускаются. При совпадении к имени будет добавлено или увеличено число. Внутреннее имя пользователя используется для внутренней идентификации пользователя. Также оно является именем по умолчанию для папки пользователя в ownCloud. Оно также является частью URL, к примеру, для всех сервисов *DAV. С помощью данной настройки можно изменить поведение по умолчанию. Чтобы достичь поведения, как было до ownCloud 5, введите атрибут отображаемого имени пользователя в этом поле. Оставьте его пустым для режима по умолчанию. Изменения будут иметь эффект только для новых подключенных (добавленных) пользователей LDAP." -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" -msgstr "Аттрибут для внутреннего имени:" +msgstr "Атрибут для внутреннего имени:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "Переопределить нахождение UUID" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -370,17 +487,21 @@ msgid "" "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 "По-умолчанию, ownCloud определяет атрибут UUID автоматически. Этот атрибут используется для того, чтобы достоверно индентифицировать пользователей и группы LDAP. Также, на основании атрибута UUID создается внутреннее имя пользователя, если выше не указано иначе. Вы можете переопределить эту настройку и указать свой атрибут по выбору. Вы должны удостовериться, что выбранный вами атрибут может быть выбран для пользователей и групп, а также то, что он уникальный. Оставьте поле пустым для поведения по-умолчанию. Изменения вступят в силу только для новых подключенных (добавленных) пользователей и групп LDAP." +msgstr "По умолчанию ownCloud определяет атрибут UUID автоматически. Этот атрибут используется для того, чтобы достоверно индентифицировать пользователей и группы LDAP. Также на основании атрибута UUID создается внутреннее имя пользователя, если выше не указано иначе. Вы можете переопределить эту настройку и указать свой атрибут по выбору. Вы должны удостовериться, что выбранный вами атрибут может быть выбран для пользователей и групп, а также то, что он уникальный. Оставьте поле пустым для поведения по умолчанию. Изменения вступят в силу только для новых подключенных (добавленных) пользователей и групп LDAP." + +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "UUID-атрибуты для пользователей:" -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Аттрибут для UUID:" +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "UUID-атрибуты для групп:" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "Соответствия Имя-Пользователь LDAP" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -392,20 +513,12 @@ msgid "" " 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 "ownCloud использует имена пользователей для хранения и назначения метаданных. Для точной идентификации и распознавания пользователей, каждый пользователь LDAP будет иметь свое внутреннее имя пользователя. Это требует привязки имени пользователя ownCloud к пользователю LDAP. При создании имя пользователя назначается идентификатору UUID пользователя LDAP. Помимо этого кешируется доменное имя (DN) для уменьшения числа обращений к LDAP, однако оно не используется для идентификации. Если доменное имя было изменено, об этом станет известно ownCloud. Внутреннее имя ownCloud используется повсеместно в ownCloud. После сброса привязок в базе могут сохраниться остатки старой информации. Сброс привязок не привязан к конфигурации, он повлияет на все LDAP подключения! Ни в коем случае не рекомендуется сбрасывать привязки если система уже находится в эксплуатации, только на этапе тестирования." +msgstr "ownCloud использует имена пользователей для хранения и назначения метаданных. Для точной идентификации и распознавания пользователей, каждый пользователь LDAP будет иметь свое внутреннее имя пользователя. Это требует привязки имени пользователя ownCloud к пользователю LDAP. При создании имя пользователя назначается идентификатору UUID пользователя LDAP. Помимо этого кешируется различающееся имя (DN) для уменьшения числа обращений к LDAP, однако оно не используется для идентификации. Если различающееся имя было изменено, об этом станет известно ownCloud. Внутреннее имя ownCloud используется повсеместно в ownCloud. После сброса привязок в базе могут сохраниться остатки старой информации. Сброс привязок не привязан к конфигурации, он повлияет на все LDAP-подключения! Ни в коем случае не рекомендуется сбрасывать привязки, если система уже находится в эксплуатации, только на этапе тестирования." -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "Очистить соответствия Имя-Пользователь LDAP" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Очистить соответствия Группа-Группа LDAP" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Тестовая конфигурация" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Помощь" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index e0d22e9b2b2cf6288a64ea427b6fcd6770674aae..ff4597f8a1d81944f62d40b5a1d2170fc81b2b9b 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:22+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,14 +17,15 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" -msgstr "කණ්ඩායම" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "මකා දැමීම සඳහා ප්‍රවර්ගයන් තෝරා නොමැත." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -186,59 +148,59 @@ msgstr "නොවැම්බර්" msgid "December" msgstr "දෙසැම්බර්" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "සිටුවම්" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "අද" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "පෙර මාසයේ" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "මාස කීපයකට පෙර" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" @@ -306,155 +268,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "දෝෂයක්" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "බෙදා හදා ගන්න" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "දෝෂයක්" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" -msgstr "බෙදාගන්න" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "යොමුවක් මඟින් බෙදාගන්න" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "මුර පදයකින් ආරක්ශාකරන්න" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "මුර පදය" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "කල් ඉකුත් විමේ දිනය දමන්න" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "කල් ඉකුත් විමේ දිනය" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "විද්‍යුත් තැපෑල මඟින් බෙදාගන්න: " -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "කණ්ඩායම" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "නොබෙදු" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "සංස්කරණය කළ හැක" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "ප්‍රවේශ පාලනය" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "සදන්න" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "යාවත්කාලීන කරන්න" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "මකන්න" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "බෙදාහදාගන්න" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "මුර පදයකින් ආරක්ශාකර ඇත" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "කල් ඉකුත් දිනය ඉවත් කිරීමේ දෝෂයක්" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "කල් ඉකුත් දිනය ස්ථාපනය කිරීමේ දෝෂයක්" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "ඔබගේ මුරපදය ප්‍රත්‍යාරම්භ කිරීම සඳහා යොමුව විද්‍යුත් තැපෑලෙන් ලැබෙනු ඇත" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "පරිශීලක නම" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -503,12 +493,12 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" msgstr "" #: lostpassword/templates/resetpassword.php:4 @@ -535,7 +525,7 @@ msgstr "පෞද්ගලික" msgid "Users" msgstr "පරිශීලකයන්" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "යෙදුම්" @@ -547,6 +537,34 @@ msgstr "පරිපාලක" 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 "ඇතුල් වීම තහනම්" @@ -563,108 +581,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "ප්‍රභේදයන් සංස්කරණය" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "එකතු කරන්න" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "ආරක්ෂක නිවේදනයක්" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "දියුණු/උසස්" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "දත්ත ෆෝල්ඩරය" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "දත්ත සමුදාය හැඩගැසීම" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "භාවිතා වනු ඇත" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "දත්තගබඩා භාවිතාකරු" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "දත්තගබඩාවේ මුරපදය" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "දත්තගබඩාවේ නම" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "දත්තගබඩා සේවාදායකයා" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "ස්ථාපනය කිරීම අවසන් කරන්න" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "නික්මීම" @@ -682,19 +711,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "මුරපදය අමතකද?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "මතක තබාගන්න" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "ප්‍රවේශවන්න" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -702,10 +739,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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.php:3 +#: 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/si_LK/files.po b/l10n/si_LK/files.po index 6a62c6c1ea15ed622a37e7932379963fada6d118..9df11d771084eab48800604666a1b231e1fecc04 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -27,220 +27,286 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "දෝෂයක් නොමැත. සාර්ථකව ගොනුව උඩුගත කෙරුණි" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "උඩුගත කළ ගොනුවේ කොටසක් පමණක් උඩුගත විය" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "ගොනුවක් උඩුගත නොවුණි" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "තාවකාලික ෆොල්ඩරයක් අතුරුදහන්" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "තැටිගත කිරීම අසාර්ථකයි" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "ගොනු" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "උඩුගත කිරීම අත් හරින්න ලදී" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත" -#: js/file-upload.js:520 -msgid "URL cannot be empty." -msgstr "යොමුව හිස් විය නොහැක" +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "දෝෂයක්" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "බෙදා හදා ගන්න" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "නැවත නම් කරන්න" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "ප්‍රතිස්ථාපනය කරන්න" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "නමක් යෝජනා කරන්න" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "අත් හරින්න" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "නිෂ්ප්‍රභ කරන්න" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "දෝෂයක්" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "නම" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "ප්‍රමාණය" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "වෙනස් කළ" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "උඩුගත කරන්න" @@ -276,65 +342,69 @@ msgstr "ZIP ගොනු සඳහා දැමිය හැකි උපරි msgid "Save" msgstr "සුරකින්න" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "නව" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "පෙළ ගොනුව" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "ෆෝල්ඩරය" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "යොමුවෙන්" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "උඩුගත කිරීම අත් හරින්න" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "මෙහි කිසිවක් නොමැත. යමක් උඩුගත කරන්න" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "බාන්න" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "නොබෙදු" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "මකා දමන්න" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "උඩුගත කිරීම විශාල වැඩිය" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ඔබ උඩුගත කිරීමට තැත් කරන ගොනු මෙම සේවාදායකයා උඩුගත කිරීමට ඉඩදී ඇති උපරිම ගොනු විශාලත්වයට වඩා වැඩිය" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "ගොනු පරික්ෂා කෙරේ. මඳක් රැඳී සිටින්න" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "වර්තමාන පරික්ෂාව" diff --git a/l10n/si_LK/files_encryption.po b/l10n/si_LK/files_encryption.po index 380ffe03e8cc229474dad173f182aca8c590ed72..7edd1f497ada50728b369f7f54220bb80d5254ca 100644 --- a/l10n/si_LK/files_encryption.po +++ b/l10n/si_LK/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:09+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:41 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "සුරැකෙමින් පවතී..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "ගුප්ත කේතනය" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index 84135df646df17a8b5367a8f0207414b9a705c75..cfd9ed24ece57c36ca291df8045f23bbbe8f434c 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "පිවිසීමට හැක" @@ -25,7 +25,7 @@ msgstr "පිවිසීමට හැක" msgid "Error configuring Dropbox storage" msgstr "Dropbox ගබඩාව වින්‍යාස කිරීමේ දෝශයක් ඇත" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "පිවිසුම ලබාදෙන්න" @@ -33,24 +33,24 @@ msgstr "පිවිසුම ලබාදෙන්න" msgid "Please provide a valid Dropbox app key and secret." msgstr "කරුණාකර වලංගු Dropbox යෙදුම් යතුරක් හා රහසක් ලබාදෙන්න." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Google Drive ගබඩාව වින්‍යාස කිරීමේ දෝශයක් ඇත" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index c09a00ba7075c57e22443824072611a5a88498fa..fd643b41252371de7ac548579b2f9716c8fd0ef7 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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/authenticate.php:9 -msgid "Submit" -msgstr "යොමු කරන්න" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ඔබව %s ෆෝල්ඩරයට හවුල් කරගත්තේය" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s ඔබ සමඟ %s ගොනුව බෙදාහදාගත්තේය" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "බාන්න" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "උඩුගත කරන්න" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "උඩුගත කිරීම අත් හරින්න" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "පූර්වදර්ශනයක් නොමැත" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index ef616c5a5481bf39a8342a4e1ef63a01379d2741..93598dcd45a0cd14593dc23020bd13e67364a04b 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "දෝෂයක්" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:815 lib/trashbin.php:817 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:8 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:22 msgid "Name" msgstr "නම" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:25 templates/index.php:27 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:33 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "මකා දමන්න" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index befb81f4fa0d481f911a1da248b7c320002bb8ea..584bebcb4d71e9533bf7ea3e2cfa68398fb744ad 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,318 +17,317 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "උදව්" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "පෞද්ගලික" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "සිටුවම්" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "පරිශීලකයන්" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "පරිපාලක" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP භාගත කිරීම් අක්‍රියයි" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "ගොනු එකින් එක භාගත යුතුයි" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "ගොනු වෙතට නැවත යන්න" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "තෝරාගත් ගොනු ZIP ගොනුවක් තැනීමට විශාල වැඩිය." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "යෙදුම සක්‍රිය කර නොමැත" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "සත්‍යාපන දෝෂයක්" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "ටෝකනය කල් ඉකුත් වී ඇත. පිටුව නැවුම් කරන්න" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "ගොනු" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "පෙළ" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "අනු රූ" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "අද" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "ඊයේ" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "පෙර මාසයේ" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index dede6a46ee8292ccf7925461e7917604c08a6515..f2d8b41cc84b69d473f69fb565c3de0a36690384 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "සත්‍යාපන දෝෂයක්" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "අක්‍රිය කරන්න" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "සක්‍රිය කරන්න" @@ -129,31 +129,31 @@ msgstr "සක්‍රිය කරන්න" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "දෝෂයක්" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "යාවත්කාල කිරීම" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "නිෂ්ප්‍රභ කරන්න" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "කණ්ඩායම්" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "කාණ්ඩ පරිපාලක" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "මකා දමන්න" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "ආරක්ෂක නිවේදනයක්" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "හුවමාරු කිරීම" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "යොමු සලසන්න" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "යළි යළිත් හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "හුවමාරු කළ හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "ඕනෑම අයෙකු හා හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "තම කණ්ඩායමේ අයෙකු හා පමණක් හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "ලඝුව" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "වැඩි" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "අඩු" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "ගුප්ත කේතනය" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 9628a98779c7e89c383a82a6ef6c12636454076a..f7bb2e04b61c938b50929a2029f232f163cefa14 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "සාර්ථකයි" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "දෝෂයක්" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +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 "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +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/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "සත්කාරකය" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "SSL අවශ්‍යය වන විට පමණක් හැර, අන් අවස්ථාවන්හිදී ප්‍රොටොකෝලය අත් හැරිය හැක. භාවිතා කරන විට ldaps:// ලෙස ආරම්භ කරන්න" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "තොට" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "මුර පදය" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "පරිශීලක පිවිසුම් පෙරහන" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "පරිශීලක ලැයිස්තු පෙරහන" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "කණ්ඩායම් පෙරහන" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "තොට" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "TLS භාවිතා කරන්න" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "උදව්" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 6970d1b3c74273abe9b4b1370d8233a9c5f13edf..1d149c8a11b944b71472a962531ca411a6c7830a 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"PO-Revision-Date: 2014-01-04 15:30+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,13 +17,14 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -112,137 +74,137 @@ msgstr "" #: js/config.php:32 msgid "Sunday" -msgstr "" +msgstr "Nedeľa" #: js/config.php:33 msgid "Monday" -msgstr "" +msgstr "Pondelok" #: js/config.php:34 msgid "Tuesday" -msgstr "" +msgstr "Utorok" #: js/config.php:35 msgid "Wednesday" -msgstr "" +msgstr "Streda" #: js/config.php:36 msgid "Thursday" -msgstr "" +msgstr "Štvrtok" #: js/config.php:37 msgid "Friday" -msgstr "" +msgstr "Piatok" #: js/config.php:38 msgid "Saturday" -msgstr "" +msgstr "Sobota" #: js/config.php:43 msgid "January" -msgstr "" +msgstr "Január" #: js/config.php:44 msgid "February" -msgstr "" +msgstr "Február" #: js/config.php:45 msgid "March" -msgstr "" +msgstr "Marec" #: js/config.php:46 msgid "April" -msgstr "" +msgstr "Apríl" #: js/config.php:47 msgid "May" -msgstr "" +msgstr "Máj" #: js/config.php:48 msgid "June" -msgstr "" +msgstr "Jún" #: js/config.php:49 msgid "July" -msgstr "" +msgstr "Júl" #: js/config.php:50 msgid "August" -msgstr "" +msgstr "August" #: js/config.php:51 msgid "September" -msgstr "" +msgstr "September" #: js/config.php:52 msgid "October" -msgstr "" +msgstr "Október" #: js/config.php:53 msgid "November" -msgstr "" +msgstr "November" #: js/config.php:54 msgid "December" -msgstr "" +msgstr "December" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" -msgstr "" +msgstr "Nastavenia" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "" @@ -293,7 +255,7 @@ msgstr "" #: js/oc-dialogs.js:376 msgid "Cancel" -msgstr "" +msgstr "Zrušiť" #: js/oc-dialogs.js:386 msgid "Continue" @@ -311,155 +273,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" +msgstr "Zdieľať" + +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" +#: js/share.js:213 +msgid "Share with user or group …" msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "skupina" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 "Odstrániť" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -508,12 +498,12 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" msgstr "" #: lostpassword/templates/resetpassword.php:4 @@ -534,13 +524,13 @@ msgstr "" #: strings.php:5 msgid "Personal" -msgstr "" +msgstr "Osobné" #: strings.php:6 msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "" @@ -552,6 +542,34 @@ msgstr "" 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 "" @@ -568,108 +586,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" -msgstr "" +msgstr "Pokročilé" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -687,19 +716,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -707,10 +744,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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/sk/files.po b/l10n/sk/files.po index 070448f726fb24af4565a68843d66b0694be98d1..dee18527fb45c56e71e04ad3f370ea38a5646c20 100644 --- a/l10n/sk/files.po +++ b/l10n/sk/files.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"PO-Revision-Date: 2014-01-04 15:30+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,223 +27,289 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" msgstr "" -#: js/fileactions.js:119 -msgid "Share" +#: js/file-upload.js:595 +msgid "Could not create file" msgstr "" -#: js/fileactions.js:131 -msgid "Delete permanently" +#: js/file-upload.js:611 +msgid "Could not create folder" msgstr "" -#: js/fileactions.js:197 -msgid "Rename" +#: js/file-upload.js:661 +msgid "Error fetching URL" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 -msgid "Pending" -msgstr "" +#: js/fileactions.js:125 +msgid "Share" +msgstr "Zdieľať" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/fileactions.js:137 +msgid "Delete permanently" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" +#: js/fileactions.js:194 +msgid "Rename" msgstr "" -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "" @@ -277,67 +343,71 @@ msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "" +msgstr "Uložiť" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" -msgstr "" - -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" +msgstr "Stiahnuť" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" -msgstr "" +msgstr "Odstrániť" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/sk/files_encryption.po b/l10n/sk/files_encryption.po index 796557674c439a39531d39d7383f3c90cef061bd..56f3e5e10c48db5d6cce421872315763f36e8c4e 100644 --- a/l10n/sk/files_encryption.po +++ b/l10n/sk/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:44 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 -msgid "Saving..." +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." +#: js/settings-admin.js:13 +msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/sk/files_external.po b/l10n/sk/files_external.po index 62d305b600416e89b7b505f8909b5b786c517d64..5a80877b71b0689f31373694c68363d7b488bc46 100644 --- a/l10n/sk/files_external.po +++ b/l10n/sk/files_external.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"PO-Revision-Date: 2014-01-04 15:20+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,7 +17,7 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:431 +#: lib/config.php:467 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:434 +#: lib/config.php:471 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:437 +#: lib/config.php:474 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -104,7 +104,7 @@ msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "" +msgstr "Odstrániť" #: templates/settings.php:129 msgid "Enable User External Storage" diff --git a/l10n/sk/files_sharing.po b/l10n/sk/files_sharing.po index 42e2cda81b6b6a8f4864eee09a11994242d97034..2783214c344d01c2add599146cd194c24d7444b1 100644 --- a/l10n/sk/files_sharing.po +++ b/l10n/sk/files_sharing.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"PO-Revision-Date: 2014-01-04 15:30+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:29 templates/public.php:95 msgid "Download" -msgstr "" +msgstr "Stiahnuť" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:92 msgid "No preview available for" msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/sk/files_trashbin.po b/l10n/sk/files_trashbin.po index 322a3dbd56e8c00adf754aa703e6ba9ca9f2c1fc..7cd4fe3874589e381a5b47fa251684e549ac4e85 100644 --- a/l10n/sk/files_trashbin.po +++ b/l10n/sk/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"PO-Revision-Date: 2014-01-04 15:20+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,70 +17,44 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:63 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:43 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:905 lib/trashbin.php:907 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:7 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:20 msgid "Name" msgstr "" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:23 templates/index.php:25 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:31 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" -msgstr "" +msgstr "Odstrániť" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index 27f317215a56ae049443eba77b4b7b760179e751..9cd71b74332d80d47e2a0f082c4294ee6f511ac0 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"PO-Revision-Date: 2014-01-04 15:20+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,322 +17,321 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: app.php:239 +#: private/app.php:245 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:257 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:362 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:375 msgid "Personal" -msgstr "" +msgstr "Osobné" -#: app.php:385 +#: private/app.php:386 msgid "Settings" -msgstr "" +msgstr "Nastavenia" -#: app.php:397 +#: private/app.php:398 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:411 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index 864614817b2d36ad5034c7da4b8a209471f9d7f2..6a0e0098d45683d77e627d382a59d33cafb4a1ca 100644 --- a/l10n/sk/settings.po +++ b/l10n/sk/settings.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"PO-Revision-Date: 2014-01-04 15:20+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,31 +129,31 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" -msgstr "" +msgstr "Odstrániť" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "" +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,13 +635,17 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" #: templates/users.php:66 templates/users.php:163 msgid "Other" -msgstr "" +msgstr "Ostatné" #: templates/users.php:87 msgid "Username" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/sk/user_ldap.po b/l10n/sk/user_ldap.po index 0c3d5db2fe95a2162c242d741618a45c8fca5135..79c47dfcc604f22ee4b91b07f25bf7d67e0e8ff2 100644 --- a/l10n/sk/user_ldap.po +++ b/l10n/sk/user_ldap.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"PO-Revision-Date: 2014-01-04 15:20+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,314 +25,427 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" msgstr "" -#: templates/settings.php:12 +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Uložiť" + +#: 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 "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +461,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +480,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +506,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 7c9758b4cc8ad3929153bfbf60a2aa839594f321..18d65c58b7b8a5797e05654090f8b16fa7aedb5f 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,26 +19,27 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" -msgstr "%s s Vami zdieľa »%s«" +msgstr "%s s vami zdieľa »%s«" -#: ajax/share.php:227 -msgid "group" -msgstr "skupina" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Nebolo možné odoslať email týmto používateľom: %s " #: ajax/update.php:11 msgid "Turned on maintenance mode" -msgstr "Mód údržby zapnutý" +msgstr "Mód údržby je zapnutý" #: ajax/update.php:14 msgid "Turned off maintenance mode" -msgstr "Mód údržby vypnutý" +msgstr "Mód údržby e vypnutý" #: ajax/update.php:17 msgid "Updated database" -msgstr "Databáza aktualizovaná" +msgstr "Databáza je aktualizovaná" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." @@ -53,64 +54,25 @@ msgstr "\"Filecache\" aktualizovaná" msgid "... %d%% done ..." msgstr "... %d%% dokončených ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Neposkytnutý typ kategórie." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Žiadna kategória pre pridanie?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Kategória: %s už existuje." - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Neposkytnutý typ objektu." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID neposkytnuté." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Chyba pri pridávaní %s do obľúbených položiek." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Neboli vybrané žiadne kategórie pre odstránenie." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Chyba pri odstraňovaní %s z obľúbených položiek." - #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "Obrázok alebo súbor nebol zadaný" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Neznámy typ súboru" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Chybný obrázok" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "Dočasný profilový obrázok nie je k dispozícii, skúste to znovu" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "Dáta pre orezanie neboli zadané" #: js/config.php:32 msgid "Sunday" @@ -188,73 +150,73 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minútou" msgstr[1] "pred %n minútami" msgstr[2] "pred %n minútami" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n hodinou" msgstr[1] "pred %n hodinami" msgstr[2] "pred %n hodinami" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "dnes" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "včera" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "pred %n dňom" msgstr[1] "pred %n dňami" msgstr[2] "pred %n dňami" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesiacom" msgstr[1] "pred %n mesiacmi" msgstr[2] "pred %n mesiacmi" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "minulý rok" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "pred rokmi" #: js/oc-dialogs.js:123 msgid "Choose" -msgstr "Výber" +msgstr "Vybrať" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Chyba pri nahrávaní šablóny výberu súborov: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -270,28 +232,28 @@ msgstr "Ok" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Chyba pri nahrávaní šablóny správy: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "{count} konflikt súboru" +msgstr[1] "{count} konflikty súboru" +msgstr[2] "{count} konfliktov súboru" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Jeden konflikt súboru" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Ktoré súbory chcete ponechať?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Ak zvolíte obe verzie, názov nakopírovaného súboru bude doplnený o číslo." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -299,169 +261,197 @@ msgstr "Zrušiť" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Pokračovať" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(všetko vybrané)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} vybraných)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" - -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Nešpecifikovaný typ objektu." +msgstr "Chyba pri nahrávaní šablóny existencie súboru" -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Chyba" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Nešpecifikované meno aplikácie." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Požadovaný súbor {file} nie je nainštalovaný!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Zdieľané" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Zdieľať" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Chyba" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Chyba počas zdieľania" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Chyba počas ukončenia zdieľania" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Chyba počas zmeny oprávnení" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Zdieľané s vami a so skupinou {group} používateľom {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Zdieľané s vami používateľom {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Zdieľať s" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Zdieľať s používateľom alebo skupinou ..." -#: js/share.js:188 -msgid "Share with link" -msgstr "Zdieľať cez odkaz" +#: js/share.js:219 +msgid "Share link" +msgstr "Zdieľať linku" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Chrániť heslom" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Heslo" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Povoliť verejné nahrávanie" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Odoslať odkaz emailom" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Odoslať" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Nastaviť dátum expirácie" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Dátum expirácie" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" -msgstr "Zdieľať cez e-mail:" +msgstr "Zdieľať cez email:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Používateľ nenájdený" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "skupina" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Zdieľanie už zdieľanej položky nie je povolené" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Zdieľané v {item} s {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Zrušiť zdieľanie" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "informovať emailom" + +#: js/share.js:408 msgid "can edit" msgstr "môže upraviť" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "prístupové práva" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "vytvoriť" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "aktualizovať" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "vymazať" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "zdieľať" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Chránené heslom" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Chyba pri odstraňovaní dátumu expirácie" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Chyba pri nastavení dátumu expirácie" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Odosielam ..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "Email odoslaný" +#: js/share.js:769 +msgid "Warning" +msgstr "Varovanie" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Nešpecifikovaný typ objektu." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Zadať nový" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Zmazať" + +#: js/tags.js:31 +msgid "Add" +msgstr "Pridať" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Upraviť štítky" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Chyba pri načítaní šablóny dialógu: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Nie sú vybraté štítky na zmazanie." + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "Obnovte prosím stránku." + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Odkaz na obnovenie hesla bol odoslaný na Vašu emailovú adresu.
    Ak ho v krátkej dobe neobdržíte, skontrolujte si Váš kôš a priečinok spam.
    Ak ho ani tam nenájdete, kontaktujte svojho administrátora." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" -msgstr "Požiadavka zlyhala.
    Uistili ste sa, že Vaše používateľské meno a email sú správne?" +msgstr "Požiadavka zlyhala.
    Uistili ste sa, že vaše používateľské meno a email sú správne?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Odkaz pre obnovenie hesla obdržíte e-mailom." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Meno používateľa" -#: lostpassword/templates/lostpassword.php:22 +#: 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 "Vaše súbory sú šifrované. Ak nemáte povolený kľúč obnovy, nie je spôsob, ako získať po obnove hesla Vaše dáta. Ak nie ste si isí tým, čo robíte, obráťte sa najskôr na administrátora. Naozaj chcete pokračovať?" +msgstr "Vaše súbory sú šifrované. Ak nemáte povolený kľúč obnovy, nie je spôsob, ako získať po obnove hesla vaše dáta. Ak nie ste si istí tým, čo robíte, obráťte sa najskôr na administrátora. Naozaj chcete pokračovať?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Áno, želám si teraz obnoviť svoje heslo" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Požiadať o obnovenie" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Resetovať" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -542,18 +532,46 @@ msgstr "Osobné" msgid "Users" msgstr "Používatelia" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Aplikácie" #: strings.php:8 msgid "Admin" -msgstr "Administrátor" +msgstr "Administrácia" #: strings.php:9 msgid "Help" msgstr "Pomoc" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "Chyba pri načítaní štítkov" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "Štítok už existuje" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "Chyba pri mazaní štítka(ov)" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "Chyba pri pridaní štítka" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "Chyba pri odobratí štítka" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "Chyba pri pridaní do obľúbených" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "Chyba pri odobratí z obľúbených" + #: templates/403.php:12 msgid "Access forbidden" msgstr "Prístup odmietnutý" @@ -570,108 +588,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Ahoj,\n\nChcem Vám oznámiť, že %s s Vami zdieľa %s.\nPozrieť si to môžete tu: %s\n\nVďaka" +msgstr "Ahoj,\n\nchcem ti dať navedomie, že %s zdieľa %s s tebou.\nZobrazenie tu: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Upraviť kategórie" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "Zdieľanie expiruje %s." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Pridať" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Za zdravie!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Bezpečnostné varovanie" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Verzia Vášho PHP je napadnuteľná pomocou techniky \"NULL Byte\" (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Aktualizujte prosím vašu inštanciu PHP pre bezpečné používanie %s." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Nie je dostupný žiadny bezpečný generátor náhodných čísel, prosím, povoľte rozšírenie OpenSSL v PHP." -#: templates/installation.php:33 +#: 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 "Bez bezpečného generátora náhodných čísel môže útočník predpovedať token pre obnovu hesla a prevziať kontrolu nad vaším kontom." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Váš priečinok s dátami a súbormi je dostupný z internetu, lebo súbor .htaccess nefunguje." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "Pre informácie, ako správne nastaviť váš server, sa pozrite do dokumentácie." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Vytvoriť administrátorský účet" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Rozšírené" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Priečinok dát" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Nastaviť databázu" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "bude použité" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" -msgstr "Hostiteľ databázy" +msgstr "Používateľ databázy" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Heslo databázy" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Meno databázy" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Tabuľkový priestor databázy" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Server databázy" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Dokončiť inštaláciu" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Dokončujem..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "Táto aplikácia vyžaduje JavaScript a tento musí byť povolený pre správnu funkciu aplikácie. Prosím povoľte JavaScript a znovunačítajte toto rozhranie." + +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "%s je dostupná. Získajte viac informácií k postupu aktualizáce." +msgstr "%s je dostupná. Získajte viac informácií k postupu aktualizácie." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Odhlásiť" @@ -683,36 +712,71 @@ msgstr "Automatické prihlásenie bolo zamietnuté!" msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "V nedávnej dobe ste nezmenili svoje heslo, Váš účet môže byť kompromitovaný." +msgstr "V nedávnej dobe ste nezmenili svoje heslo, váš účet môže byť kompromitovaný." #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Prosím, zmeňte svoje heslo pre opätovné zabezpečenie Vášho účtu" +msgstr "Prosím, zmeňte svoje heslo pre opätovné zabezpečenie vášho účtu" + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "Autentifikácia na serveri zlyhala!" -#: templates/login.php:32 +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Kontaktujte prosím vášho administrátora." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Zabudli ste heslo?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "zapamätať" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Prihlásiť sa" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" -msgstr "Alternatívne prihlasovanie" +msgstr "Alternatívne prihlásenie" #: templates/mail.php:15 #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Ahoj,

    chcem Vám oznámiť, že %s s Vami zdieľa %s.\nPozrieť si to môžete tu:
    zde.

    Vďaka" +"href=\"%s\">View it!

    " +msgstr "Ahoj,

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

    " + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "Táto inštancia ownCloudu je teraz v jednopoužívateľskom móde." + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "Len správca systému môže používať túto inštanciu." -#: templates/update.php:3 +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "Kontaktujte prosím správcu systému, ak sa táto správa objavuje opakovane alebo neočakávane." + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "Ďakujeme za Vašu trpezlivosť." + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "Aktualizujem ownCloud na verziu %s, môže to chvíľu trvať." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "Táto inštancia ownCloud sa práve aktualizuje, čo môže nejaký čas trvať." + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "Prosím obnovte túto stránku a po krátkej dobe môžete pokračovať v používaní." diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index fd554f6c97366575ffb8806c1a6daa3688748451..3ac04ae10b6f360f5be200013868487871543c8d 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -28,223 +28,289 @@ msgstr "Nie je možné presunúť %s - súbor s týmto menom už existuje" msgid "Could not move %s" msgstr "Nie je možné presunúť %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Meno súboru nemôže byť prázdne" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "Názov súboru nesmie obsahovať \"/\". Prosím zvoľte iný názov." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "Názov %s už používa priečinok s%. Prosím zvoľte iný názov." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "Neplatný zdroj" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Chyba pri sťahovaní súboru %s do %s" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Chyba pri vytváraní súboru" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "Názov priečinka nemôže byť prázdny." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "Názov priečinka nesmie obsahovať \"/\". Prosím zvoľte iný názov." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Chyba pri vytváraní priečinka" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Nemožno nastaviť priečinok pre nahrané súbory." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Neplatný token" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" -msgstr "Žiaden súbor nebol odoslaný. Neznáma chyba" +msgstr "Žiaden súbor nebol nahraný. Neznáma chyba" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Nenastala žiadna chyba, súbor bol úspešne nahraný" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Nahraný súbor predčil konfiguračnú direktívu upload_max_filesize v súbore php.ini:" +msgstr "Nahraný súbor prekročil limit nastavený v upload_max_filesize v súbore php.ini:" -#: ajax/upload.php:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Ukladaný súbor sa nahral len čiastočne" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Žiadny súbor nebol uložený" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Chýba dočasný priečinok" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Zápis na disk sa nepodaril" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Nedostatok dostupného úložného priestoru" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Nahrávanie zlyhalo. Nepodarilo sa získať informácie o súbore." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Nahrávanie zlyhalo. Nepodarilo sa nájsť nahrávaný súbor" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Neplatný priečinok." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Súbory" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "Nemožno nahrať súbor {filename}, pretože je to priečinok, alebo má 0 bitov" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Nie je k dispozícii dostatok miesta" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Odosielanie zrušené." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "" +msgstr "Nepodarilo sa dostať výsledky zo servera." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "URL nemôže byť prázdne." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "URL nemôže byť prázdna" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Neplatný názov priečinka. Názov \"Shared\" je rezervovaný pre ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +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:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Chyba" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} už existuje" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Nemožno vytvoriť súbor" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Nemožno vytvoriť priečinok" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "Zdieľať" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Zmazať trvalo" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Premenovať" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Prebieha" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} už existuje" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "nahradiť" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Nemožno premenovať súbor" -#: js/filelist.js:416 -msgid "suggest name" -msgstr "pomôcť s menom" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "zrušiť" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "prepísaný {new_name} súborom {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "vrátiť" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Chyba pri mazaní súboru." + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n priečinok" msgstr[1] "%n priečinky" msgstr[2] "%n priečinkov" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n súbor" msgstr[1] "%n súbory" msgstr[2] "%n súborov" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" -msgstr "" +msgstr "{dirs} a {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Nahrávam %n súbor" msgstr[1] "Nahrávam %n súbory" msgstr[2] "Nahrávam %n súborov" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' je neplatné meno súboru." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Meno súboru nemôže byť prázdne" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Vaše úložisko je plné. Súbory nemožno aktualizovať ani synchronizovať!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Vaše úložisko je takmer plné ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "Aplikácia na šifrovanie je zapnutá, ale vaše kľúče nie sú inicializované. Odhláste sa a znovu sa prihláste." + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "Chybný súkromný kľúč na šifrovanie aplikácií. Zaktualizujte si heslo súkromného kľúča v svojom osobnom nastavení, aby ste znovu získali prístup k svojim zašifrovaným súborom." + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Šifrovanie bolo zakázané, ale vaše súbory sú stále zašifrované. Prosím, choďte do osobného nastavenia pre dešifrovanie súborov." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Vaše sťahovanie sa pripravuje. Ak sú sťahované súbory veľké, môže to chvíľu trvať." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" -msgstr "" +msgstr "Chyba pri presúvaní súboru" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Chyba" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Názov" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Veľkosť" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Upravené" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Názov priečinka je chybný. Použitie názvu 'Shared' nie je povolené." + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s nemohol byť premenovaný" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Odoslať" @@ -280,65 +346,69 @@ msgstr "Najväčšia veľkosť ZIP súborov" msgid "Save" msgstr "Uložiť" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" -msgstr "Nová" +msgstr "Nový" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "Nový textový súbor" + +#: templates/index.php:8 msgid "Text file" msgstr "Textový súbor" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Nový priečinok" + +#: templates/index.php:10 msgid "Folder" msgstr "Priečinok" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Z odkazu" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Zmazané súbory" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Zrušiť odosielanie" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Nemáte oprávnenie na zápis." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "Nemáte oprávnenie sem nahrávať alebo vytvoriť súbory" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Žiadny súbor. Nahrajte niečo!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Sťahovanie" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Zrušiť zdieľanie" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Zmazať" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Nahrávanie je príliš veľké" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Súbory, ktoré sa snažíte nahrať, presahujú maximálnu veľkosť pre nahratie súborov na tento server." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Čakajte, súbory sú prehľadávané." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Práve prezerané" diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index 7353664590fef4d6f53816798214a162fed5c755..36c34248e2c8855a0181587744325e53e068806b 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-30 09:31-0400\n" -"PO-Revision-Date: 2013-08-28 18:40+0000\n" -"Last-Translator: martin\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-02 17:27-0500\n" +"PO-Revision-Date: 2013-12-02 13:30+0000\n" +"Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,75 +45,96 @@ msgstr "Heslo úspešne zmenené." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Nemožno zmeniť heslo. Pravdepodobne nebolo staré heslo zadané správne." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Heslo súkromného kľúča je úspešne aktualizované." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Nemožno aktualizovať heslo súkromného kľúča. Možno nebolo staré heslo správne." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "Váš privátny kľúč je nesprávny! Pravdepodobne bolo zmenené vaše heslo mimo systému ownCloud (napr. váš korporátny adresár). Môžte aktualizovať vaše heslo privátneho kľúča v osobných nastaveniach za účelom obnovenia prístupu k zašifrovaným súborom." +"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 "Šifrovacia aplikácia nie je inicializovaná. Je možné, že aplikácia bola znova aktivovaná počas vášho prihlasovania. Pokúste sa odhlásiť a znova prihlásiť pre inicializáciu šifrovania." -#: hooks/hooks.php:41 +#: 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 "Váš súkromný kľúč nie je platný! Možno bolo vaše heslo zmenené mimo %s (napr. firemný priečinok). Môžete si aktualizovať heslo svojho ​​súkromného kľúča vo vašom osobnom nastavení, ak si chcete obnoviť prístup k šifrovaným súborom." + +#: 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 "Tento súbor sa nepodarilo dešifrovať, pravdepodobne je zdieľaný. Požiadajte majiteľa súboru, aby ho s vami znovu vyzdieľal." + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Neznáma chyba, skontrolujte si vaše systémové nastavenia alebo kontaktujte administrátora" + +#: hooks/hooks.php:59 msgid "Missing requirements." msgstr "Chýbajúce požiadavky." -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Prosím uistite sa, že PHP verzie 5.3.3 alebo novšej je nainštalované a tiež, že OpenSSL knižnica spolu z PHP rozšírením je povolená a konfigurovaná správne. Nateraz bola aplikácia šifrovania zablokovaná." -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "Nasledujúci používatelia nie sú nastavení pre šifrovanie:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "Počiatočné šifrovanie započalo ... To môže nejakú dobu trvať. Čakajte prosím." + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Ukladám..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Váš súkromný kľúč je neplatný. Možno bolo Vaše heslo zmenené z vonku." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Choďte priamo do vášho" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Môžte odomknúť váš privátny kľúč v" - -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "osobné nastavenia" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Šifrovanie" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Povoliť obnovovací kľúč (umožňuje obnoviť používateľské súbory v prípade straty hesla):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Heslo obnovovacieho kľúča" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Zopakujte heslo kľúča pre obnovu" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Povolené" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Zakázané" @@ -121,58 +142,62 @@ msgstr "Zakázané" msgid "Change recovery key password:" msgstr "Zmeniť heslo obnovovacieho kľúča:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Staré heslo obnovovacieho kľúča" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" msgstr "Nové heslo obnovovacieho kľúča" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "Zopakujte nové heslo kľúča pre obnovu" + +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Zmeniť heslo" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "Vaše heslo súkromného kľúča je rovnaké ako Vaše prihlasovacie heslo:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "Nastavte si staré heslo súkromného kľúča k Vášmu súčasnému prihlasovaciemu heslu." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Ak si nepamätáte svoje staré heslo, môžete požiadať správcu o obnovenie svojich súborov." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Staré prihlasovacie heslo" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Súčasné prihlasovacie heslo" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Aktualizovať heslo súkromného kľúča" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Povoliť obnovu hesla:" -#: templates/settings-personal.php:47 +#: 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 "Povolenie Vám umožní znovu získať prístup k Vašim zašifrovaným súborom, ak stratíte heslo" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Nastavenie obnovy súborov aktualizované" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Nemožno aktualizovať obnovenie súborov" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 5f990176d0b0f4bcd1570d5b93a79836607d28a7..24ef5a545fbe10fe7048d098f179639484fabce9 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Prístup povolený" @@ -26,7 +26,7 @@ msgstr "Prístup povolený" msgid "Error configuring Dropbox storage" msgstr "Chyba pri konfigurácii úložiska Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Povoliť prístup" @@ -34,24 +34,24 @@ msgstr "Povoliť prístup" msgid "Please provide a valid Dropbox app key and secret." msgstr "Zadajte platný kľúč aplikácie a heslo Dropbox" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Chyba pri konfigurácii úložiska Google drive" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Upozornenie: \"smbclient\" nie je nainštalovaný. Nie je možné pripojenie oddielov CIFS/SMB. Požiadajte administrátora systému, nech ho nainštaluje." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Upozornenie: Podpora FTP v PHP nie je povolená alebo nainštalovaná. Nie je možné pripojenie oddielov FTP. Požiadajte administrátora systému, nech ho nainštaluje." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -64,7 +64,7 @@ msgstr "Externé úložisko" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Meno priečinka" +msgstr "Názov priečinka" #: templates/settings.php:10 msgid "External storage" @@ -113,7 +113,7 @@ msgstr "Povoliť externé úložisko" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Povoliť používateľom pripojiť ich vlastné externé úložisko" +msgstr "Povoliť používateľom pripojiť si vlastné externé úložisko" #: templates/settings.php:141 msgid "SSL root certificates" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 8d7b07737fe0d20e97f614ab8927fb9039e1021b..9822b994dc12e418646294a43aff0c5014a280a0 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Toto zdieľanie je chránené heslom" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Heslo je chybné. Skúste to znova." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Heslo" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Odoslať" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "To je nepríjemné, ale tento odkaz už nie je funkčný." @@ -54,28 +54,32 @@ msgstr "zdieľanie je zakázané" msgid "For more info, please ask the person who sent this link." msgstr "Pre viac informácií kontaktujte osobu, ktorá vám poslala tento odkaz." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s zdieľa s vami priečinok %s" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s zdieľa s vami súbor %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Sťahovanie" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" -msgstr "Odoslať" +msgstr "Nahrať" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" -msgstr "Zrušiť odosielanie" +msgstr "Zrušiť nahrávanie" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Žiaden náhľad k dispozícii pre" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Priama linka" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 488bcade2e15be1078bd047cdd47a50124c173eb..6aad589b1605a0cb91e528f08e82676a27d33214 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-20 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -28,57 +28,31 @@ msgstr "Nemožno zmazať %s navždy" msgid "Couldn't restore %s" msgstr "Nemožno obnoviť %s" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "vykonať obnovu" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Chyba" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "trvalo zmazať súbor" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Zmazať trvalo" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Názov" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "Zmazané" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n priečinok" -msgstr[1] "%n priečinky" -msgstr[2] "%n priečinkov" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n súbor" -msgstr[1] "%n súbory" -msgstr[2] "%n súborov" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "obnovené" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Žiadny obsah. Kôš je prázdny!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Názov" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Obnoviť" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Zmazané" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Zmazať" diff --git a/l10n/sk_SK/files_versions.po b/l10n/sk_SK/files_versions.po index afbd44c4156f38a8dac8770d74a713f065d55fbe..da02c6b6b12225ef08bd05cabde655b4acf8ea39 100644 --- a/l10n/sk_SK/files_versions.po +++ b/l10n/sk_SK/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-07 19:40+0000\n" +"POT-Creation-Date: 2013-10-27 02:28-0400\n" +"PO-Revision-Date: 2013-10-23 16:14+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -23,22 +23,22 @@ msgstr "" msgid "Could not revert: %s" msgstr "Nemožno obnoviť: %s" -#: js/versions.js:7 +#: js/versions.js:14 msgid "Versions" msgstr "Verzie" -#: js/versions.js:53 +#: js/versions.js:60 msgid "Failed to revert {file} to revision {timestamp}." msgstr "Zlyhalo obnovenie súboru {file} na verziu {timestamp}." -#: js/versions.js:79 +#: js/versions.js:86 msgid "More versions..." msgstr "Viac verzií..." -#: js/versions.js:116 +#: js/versions.js:123 msgid "No other versions available" msgstr "Žiadne ďalšie verzie nie sú dostupné" -#: js/versions.js:149 +#: js/versions.js:154 msgid "Restore" msgstr "Obnoviť" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 8d4dc2dc8911717c37e6d489bc06b1d3a47a2963..b33bb89f204f211b215b2041e75d8c095c5c67b1 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -19,322 +19,321 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." -msgstr "Aplikácia \"%s\" nemôže byť nainštalovaná kvôli nekompatibilite z danou verziou ownCloudu." +msgstr "Aplikácia \"%s\" nemôže byť nainštalovaná kvôli nekompatibilite z touto verziou ownCloudu." -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "Nešpecifikované meno aplikácie" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Pomoc" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Osobné" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Nastavenia" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Používatelia" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Administrátor" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Zlyhala aktualizácia \"%s\"." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Neznámy typ súboru" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Chybný obrázok" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "webové služby pod Vašou kontrolou" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "nemožno otvoriť \"%s\"" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Sťahovanie súborov ZIP je vypnuté." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Súbory musia byť nahrávané jeden za druhým." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Späť na súbory" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Zvolené súbory sú príliš veľké na vygenerovanie zip súboru." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Stiahnite súbory po menších častiach, samostatne, alebo sa obráťte na správcu." +msgstr "Prosím, stiahnite si súbory samostatne v menších blokoch alebo sa obráťte na správcu." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Nešpecifikovaný zdroj pri inštalácii aplikácie" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Nešpecifikovaný atribút \"href\" pri inštalácii aplikácie pomocou protokolu \"http\"" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Nešpecifikovaná cesta pri inštalácii aplikácie z lokálneho súboru" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" -msgstr "Typ archívu %s nie je podporovaný" +msgstr "Tento typ archívu %s nie je podporovaný" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Zlyhanie pri otváraní archívu počas inštalácie aplikácie" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "Aplikácia neposkytuje súbor info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" -msgstr "Aplikácia nemôže byť inštalovaná pre nepovolený kód v aplikácii" +msgstr "Aplikácia nemôže byť nainštalovaná pre nepovolený kód v aplikácii" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" -msgstr "Aplikácia nemôže byť inštalovaná pre nekompatibilitu z danou verziou ownCloudu" +msgstr "Aplikácia nemôže byť nainštalovaná pre nekompatibilitu z touto verziou ownCloudu" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" -msgstr "Aplikácia nemôže byť inštalovaná pretože obsahuje pravý štítok, ktorý nie je povolený pre zaslané \"shipped\" aplikácie" +msgstr "Aplikácia nemôže byť nainštalovaná pretože obsahuje pravý štítok, ktorý nie je povolený pre zaslané \"shipped\" aplikácie" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "Aplikácia nemôže byť inštalovaná pretože verzia v info.xml/version nezodpovedá verzii špecifikovanej v aplikačnom obchode" +msgstr "Aplikácia nemôže byť nainštalovaná pretože verzia v info.xml/version nezodpovedá verzii špecifikovanej v obchode s aplikáciami" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" -msgstr "Aplikačný adresár už existuje" +msgstr "Aplikačný priečinok už existuje" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Nemožno vytvoriť aplikačný priečinok. Prosím upravte povolenia. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Aplikácia nie je zapnutá" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Chyba autentifikácie" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token vypršal. Obnovte, prosím, stránku." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Súbory" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Text" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Obrázky" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." -msgstr "Zadajte používateľské meno %s databázy.." +msgstr "Zadajte používateľské meno %s databázy." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "Zadajte názov databázy pre %s databázy." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "V názve databázy %s nemôžete používať bodky" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Používateľské meno, alebo heslo MS SQL nie je platné: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Musíte zadať jestvujúci účet alebo administrátora." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Používateľské meno a/alebo heslo pre MySQL databázu je neplatné" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "Chyba DB: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Podozrivý príkaz bol: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Používateľ '%s'@'localhost' už v MySQL existuje." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Zahodiť používateľa z MySQL." -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Používateľ '%s'@'%%' už v MySQL existuje" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Zahodiť používateľa z MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Nie je možné pripojiť sa k Oracle" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Používateľské meno a/alebo heslo pre Oracle databázu je neplatné" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Podozrivý príkaz bol: \"%s\", meno: %s, heslo: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "Používateľské meno a/alebo heslo pre PostgreSQL databázu je neplatné" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Zadajte používateľské meno administrátora." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Zadajte heslo administrátora." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Váš webový server nie je správne nastavený na synchronizáciu, pretože rozhranie WebDAV je poškodené." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Prosím skontrolujte inštalačnú príručku." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Nemožno nájsť danú kategóriu \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "pred sekundami" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "pred %n minútou" +msgstr[1] "pred %n minútami" msgstr[2] "pred %n minútami" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "pred %n hodinou" +msgstr[1] "pred %n hodinami" msgstr[2] "pred %n hodinami" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "dnes" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "včera" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "pred %n dňom" +msgstr[1] "pred %n dňami" msgstr[2] "pred %n dňami" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "minulý mesiac" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "pred %n mesiacom" +msgstr[1] "pred %n mesiacmi" msgstr[2] "pred %n mesiacmi" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "minulý rok" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "pred rokmi" - -#: template.php:297 -msgid "Caused by:" -msgstr "Príčina:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Nemožno nájsť danú kategóriu \"%s\"" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 961d19a242b52b4679a126964a6ed9326713bbd5..226ab6392cb9ffb73ddbbd132f4d34febb33f31f 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-16 13:50+0000\n" +"Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,12 +29,12 @@ msgid "Authentication error" msgstr "Chyba autentifikácie" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Vaše zobrazované meno bolo zmenené." +msgid "Your full name has been changed." +msgstr "Vaše meno a priezvisko bolo zmenené." #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Nemožno zmeniť zobrazované meno" +msgid "Unable to change full name" +msgstr "Nemožno zmeniť meno a priezvisko" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -88,42 +88,42 @@ msgstr "Nemožno aktualizovať aplikáciu." #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "Nesprávne heslo" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "Nebol uvedený používateľ" #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "Zadajte administrátorské heslo pre obnovu, inak budú všetky dáta stratené" #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "Chybné administrátorské heslo pre obnovu. Skontrolujte správnosť hesla a skúste to znovu." #: changepassword/controller.php:87 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "Úložisko nepodporuje zmenu hesla, ale šifrovací kľúč používateľov bol úspešne zmenený." #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" -msgstr "" +msgstr "Zmena hesla sa nepodarila" #: js/apps.js:43 msgid "Update to {appversion}" msgstr "Aktualizovať na {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Zakázať" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Zapnúť" @@ -131,39 +131,39 @@ msgstr "Zapnúť" msgid "Please wait...." msgstr "Čakajte prosím..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Chyba pri zablokovaní aplikácie" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Chyba pri povoľovaní aplikácie" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Aktualizujem..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "chyba pri aktualizácii aplikácie" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Chyba" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Aktualizovať" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Aktualizované" #: js/personal.js:220 msgid "Select a profile picture" -msgstr "" +msgstr "Vybrať avatara" -#: js/personal.js:265 +#: js/personal.js:266 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ť." @@ -183,44 +183,75 @@ msgstr "vrátiť" msgid "Unable to remove user" msgstr "Nemožno odobrať používateľa" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Skupiny" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Správca skupiny" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Zmazať" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "pridať skupinu" -#: js/users.js:436 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Musíte zadať platné používateľské meno" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Chyba pri vytváraní používateľa" -#: js/users.js:442 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Musíte zadať platné heslo" +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Upozornenie: Domovský priečinok používateľa \"{user}\" už existuje" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Slovensky" -#: templates/admin.php:15 +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "Všetko (fatálne problémy, chyby, upozornenia, info, debug)" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "Info, upozornenia, chyby a fatálne problémy" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "Upozornenia, chyby a fatálne problémy" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "Chyby a fatálne problémy" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "Len fatálne problémy" + +#: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" -msgstr "Bezpečnostné varovanie" +msgstr "Bezpečnostné upozornenie" + +#: templates/admin.php:25 +#, 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:18 +#: templates/admin.php:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -229,48 +260,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:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Nastavenia oznámení" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Skontrolujte prosím znovu inštalačnú príručku." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Chýba modul 'fileinfo'" -#: templates/admin.php:47 +#: templates/admin.php:68 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:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "Vaša PHP verzia je zastaraná" + +#: templates/admin.php:82 +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 instalácia nebude fungovat správne." + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Lokalizácia nefunguje" -#: templates/admin.php:63 +#: templates/admin.php:98 +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:102 +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:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "Systémové nastavenie lokalizácie nemohlo byť nastavené na %s. To znamená, že sa môžu vyskytnúť problémy s niektorými znakmi v názvoch súborov. Odporúčame nainštalovať do vášho systému balíčky potrebné pre podporu %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "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:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Pripojenie na internet nefunguje" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -279,110 +330,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Server nemá funkčné pripojenie k internetu. Niektoré moduly ako napr. externé úložisko, oznámenie o dostupných aktualizáciách alebo inštalácia aplikácií tretích strán nebudú fungovať. Prístup k súborom z iných miest a odosielanie oznamovacích emailov tiež nemusí fungovať. Ak chcete využívať všetky vlastnosti ownCloudu, odporúčame povoliť pripojenie k internetu tomuto serveru." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Vykonať jednu úlohu s každým načítaní stránky" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php je registrovaný v službe webcron na zavolanie stránky cron.php raz za minútu cez HTTP." +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Použiť systémovú službu cron na spustenie súboru cron.php raz za minútu." +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Zdieľanie" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Povoliť API zdieľania" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Povoliť aplikáciám používať API na zdieľanie" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Povoliť odkazy" -#: templates/admin.php:135 +#: templates/admin.php:178 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:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Povoliť verejné nahrávanie súborov" -#: templates/admin.php:144 +#: templates/admin.php:187 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:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Povoliť zdieľanie ďalej" -#: templates/admin.php:153 +#: templates/admin.php:196 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:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Povoliť používateľom zdieľať s kýmkoľvek" -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Povoliť upozornenia emailom" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "Povoliť používateľom upozornenia emailom pre svoje zdieľané súbory" + +#: templates/admin.php:221 msgid "Security" msgstr "Zabezpečenie" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Vynútiť HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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:191 +#: templates/admin.php:242 #, 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:203 +#: templates/admin.php:254 msgid "Log" msgstr "Záznam" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Úroveň záznamu" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Viac" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Menej" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Verzia" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Použite túto adresu pre prístup k súborom cez WebDAV" +"Use this address to access your Files via " +"WebDAV" +msgstr "Použite túto linku pre prístup k vašim súborom cez WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Šifrovanie" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "Šifrovacia aplikácia nie je povolená, dešifrujte všetky vaše súbory" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "Šifrovacia aplikácia už nie je spustená, dešifrujte všetky svoje súbory." -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Prihlasovacie heslo" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Dešifrovať všetky súbory" @@ -574,6 +637,10 @@ msgstr "Zadajte heslo pre obnovenie súborov používateľa pri zmene hesla" msgid "Default Storage" msgstr "Predvolené úložisko" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "Prosím zadajte kvótu úložného priestoru (napr.: \"512 MB​​\" alebo \"12 GB\")" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Nelimitované" @@ -591,8 +658,8 @@ msgid "Storage" msgstr "Úložisko" #: templates/users.php:108 -msgid "change display name" -msgstr "zmeniť zobrazované meno" +msgid "change full name" +msgstr "zmeniť meno a priezvisko" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 4c4d7f82839074f8218ca6deddcecd84f25e34e3..314d24e8261388840af82f7332ad20504ad5af20 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" -"Last-Translator: martin\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,314 +27,427 @@ msgstr "Nepodarilo sa vymazať mapovania." msgid "Failed to delete the server configuration" msgstr "Zlyhalo zmazanie nastavenia servera." -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Nastavenie je v poriadku a pripojenie je stabilné." -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Nastavenie je v poriadku, ale pripojenie zlyhalo. Skontrolujte nastavenia servera a prihlasovacie údaje." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "Nastavenia sú neplatné. Podrobnosti hľadajte v logu ownCloud." +msgstr "Konfigurácia je chybná. Prosím, pozrite sa do logov pre ďalšie podrobnosti." + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "Nie je vybraná akcia" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "Nie je určená konfigurácia" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "Nie sú vybraté dáta" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "Nemôžem nastaviť konfiguráciu %s" -#: js/settings.js:66 +#: js/settings.js:67 msgid "Deletion failed" msgstr "Odstránenie zlyhalo" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Prebrať nastavenia z nedávneho nastavenia servera?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Ponechať nastavenia?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Nemožno pridať nastavenie servera" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "mapovanie vymazané" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Úspešné" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Chyba" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "Konfigurácia je vporiadku" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "Nesprávna konfigurácia" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "Nekompletná konfigurácia" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Vybrať skupinu" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "Vyberte triedy objektov" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "Vyberte atribúty" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Test pripojenia bol úspešný" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Test pripojenia zlyhal" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Naozaj chcete zmazať súčasné nastavenie servera?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Potvrdiť vymazanie" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "Upozornenie: Aplikácie user_ldap a user_webdavauth sú navzájom nekompatibilné. Môžete zaznamenať neočakávané správanie. Požiadajte prosím vášho systémového administrátora pre zakázanie jedného z nich." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "%s nájdená skupina" +msgstr[1] "%s nájdené skupiny" +msgstr[2] "%s nájdených skupín" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "%s nájdený používateľ" +msgstr[1] "%s nájdení používatelia" +msgstr[2] "%s nájdených používateľov" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "Neplatný hostiteľ" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "Nemožno nájsť požadovanú funkciu" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Uložiť" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Test nastavenia" -#: templates/settings.php:12 +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Pomoc" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "Obmedziť prístup %s do skupiny, ktoré spĺňajú tieto kritériá:" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "len tieto triedy objektov:" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "len z týchto skupín:" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "Miesto pre úpravu raw filtra" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "Raw LDAP filter" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Upozornenie: nie je nainštalovaný LDAP modul pre PHP, backend vrstva nebude fungovať. Požádejte administrátora systému aby ho nainštaloval." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "Tento filter LDAP určuje, ktoré skupiny budú mať prístup k %s inštancii." -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Nastavenia servera" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "nájdené skupiny" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "Ako prihlasovacie meno použiť atribút:" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "LDAP používateľské meno:" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "LDAP emailová adresa:" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "Iné atribúty:" + +#: 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 "Určuje použitý filter, pri pokuse o prihlásenie. %%uid nahradzuje používateľské meno v činnosti prihlásenia. Napríklad: \"uid=%%uid\"" + +#: templates/part.wizard-server.php:18 msgid "Add Server Configuration" msgstr "Pridať nastavenia servera." -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Hostiteľ" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Môžete vynechať protokol, s výnimkou požadovania SSL. Vtedy začnite s ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Základné DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Jedno základné DN na riadok" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "V rozšírenom nastavení môžete zadať základné DN pre používateľov a skupiny" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Port" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "Používateľské DN" -#: templates/settings.php:46 +#: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "DN klientského používateľa, ku ktorému tvoríte väzbu, napr. uid=agent,dc=example,dc=com. Pre anonymný prístup ponechajte údaje DN a Heslo prázdne." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Heslo" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Pre anonymný prístup ponechajte údaje DN a Heslo prázdne." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Filter prihlásenia používateľov" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Jedno základné DN na riadok" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "V rozšírenom nastavení môžete zadať základné DN pre používateľov a skupiny" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "Obmedziť prístup k %s na používateľov, ktorí spĺňajú tieto kritériá:" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "Určuje použitý filter, pri pokuse o prihlásenie. %%uid nahradzuje používateľské meno v činnosti prihlásenia. Napríklad: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "Tento filter LDAP určuje, ktorí používatelia majú prístup k %s inštancii." -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Filter zoznamov používateľov" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "nájdení používatelia" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "Definuje použitý filter, pri získavaní používateľov (bez \"placeholderov\"). Napríklad: \"objectClass=osoba\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Späť" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Filter skupiny" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Pokračovať" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "Upozornenie: Aplikácie user_ldap a user_webdavauth sú navzájom nekompatibilné. Môžete zaznamenať neočakávané správanie. Požiadajte prosím vášho systémového administrátora pre zakázanie jedného z nich." -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "Definuje použitý filter, pri získavaní skupín (bez \"placeholderov\"). Napríklad: \"objectClass=posixSkupina\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Upozornenie: nie je nainštalovaný LDAP modul pre PHP, backend vrstva nebude fungovať. Požádejte administrátora systému aby ho nainštaloval." -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Nastavenie pripojenia" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Nastavenia sú aktívne " -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Ak nie je zaškrtnuté, nastavenie bude preskočené." -#: templates/settings.php:69 -msgid "Port" -msgstr "Port" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" -msgstr "Záložný server (kópia) hosť" +msgstr "Záložný server (kópia) hostiteľa" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Zadajte záložný LDAP/AD. Musí to byť kópia hlavného LDAP/AD servera." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Záložný server (kópia) port" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Zakázať hlavný server" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "Pripojiť sa len k záložnému serveru." -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Použi TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Nepoužívajte pre pripojenie LDAPS, zlyhá." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "LDAP server nerozlišuje veľkosť znakov (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Vypnúť overovanie SSL certifikátu." -#: templates/settings.php:75 +#: 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 "Neodporúčané, použite iba pri testovaní! Pokiaľ spojenie funguje iba z daným nastavením, importujte SSL certifikát LDAP servera do vášho %s servera." -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" -msgstr "Životnosť objektov v cache" +msgstr "Životnosť objektov v medzipamäti" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "v sekundách. Zmena vyprázdni vyrovnávaciu pamäť." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Nastavenie priečinka" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" -msgstr "Pole pre zobrazenia mena používateľa" +msgstr "Pole pre zobrazenie mena používateľa" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "Atribút LDAP použitý na vygenerovanie zobrazovaného mena používateľa. " -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Základný používateľský strom" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "Jedna používateľská základná DN na riadok" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "Atribúty vyhľadávania používateľov" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Voliteľné, jeden atribút na jeden riadok" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Pole pre zobrazenie mena skupiny" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "Atribút LDAP použitý na vygenerovanie zobrazovaného mena skupiny." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Základný skupinový strom" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "Jedna skupinová základná DN na riadok" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Atribúty vyhľadávania skupín" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Priradenie člena skupiny" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Špeciálne atribúty" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Pole kvóty" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Predvolená kvóta" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "v bajtoch" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" -msgstr "Pole email" +msgstr "Pole emailu" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" -msgstr "Pravidlo pre nastavenie mena používateľského priečinka dát" +msgstr "Pravidlo pre nastavenie názvu používateľského priečinka dát" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Nechajte prázdne pre používateľské meno (predvolené). Inak uveďte atribút LDAP/AD." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "Interné používateľské meno" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -350,15 +463,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "V predvolenom nastavení bude interné používateľské meno vytvorené z UUID atribútu. Zabezpečí sa to, že používateľské meno bude jedinečné a znaky nemusia byť prevedené. Interné meno má obmedzenie, iba tieto znaky sú povolené: [a-zA-Z0-9_ @ -.]. Ostatné znaky sú nahradené ich ASCII alebo jednoducho vynechané. Pri kolíziách používateľských mien bude číslo pridané / odobrané. Interné používateľské meno sa používa na internú identifikáciu používateľa. Je tiež predvoleným názvom používateľského domovského priečinka v ownCloud. Je tiež súčasťou URL pre vzdialený prístup, napríklad pre všetky služby * DAV. S týmto nastavením sa dá prepísať predvolené správanie. Pre dosiahnutie podobného správania sa ako pred verziou ownCloud 5 zadajte atribút zobrazenia používateľského mena v tomto poli. Ponechajte prázdne pre predvolené správanie. Zmeny budú mať vplyv iba na novo namapovaných (pridaných) LDAP používateľov." -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "Atribút interného používateľského mena:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "Prepísať UUID detekciu" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -369,15 +482,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "V predvolenom nastavení je UUID atribút detekovaný automaticky. UUID atribút je použitý na jedinečnú identifikáciu používateľov a skupín z LDAP. Naviac je na základe UUID vytvorené tiež interné použivateľské meno, ak nie je nastavené inak. Môžete predvolené nastavenie prepísať a použiť atribút ktorý si sami zvolíte. Musíte sa ale ubezpečiť, že atribút ktorý vyberiete bude uvedený pri použivateľoch, aj pri skupinách a je jedinečný. Ponechajte prázdne pre predvolené správanie. Zmena bude mať vplyv len na novo namapovaných (pridaných) používateľov a skupiny z LDAP." -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID atribút:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "UUID atribút pre používateľov:" -#: templates/settings.php:104 +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "UUID atribút pre skupiny:" + +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "Mapovanie názvov LDAP používateľských mien" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -391,18 +508,10 @@ msgid "" "experimental stage." msgstr "Použivateľské mená sa používajú pre uchovávanie a priraďovanie (meta)dát. Pre správnu identifikáciu a rozpoznanie používateľov bude mať každý používateľ z LDAP interné používateľské meno. To je nevyhnutné pre namapovanie používateľských mien na používateľov v LDAP. Vytvorené používateľské meno je namapované na UUID používateľa v LDAP. Naviac je cachovaná DN pre obmedzenie interakcie s LDAP, ale nie je používaná pre identifikáciu. Ak sa DN zmení, bude to správne rozpoznané. Interné používateľské meno sa používa všade. Vyčistenie namapování vymaže zvyšky všade. Vyčistenie naviac nie je špecifické, bude mať vplyv na všetky LDAP konfigurácie! Nikdy nečistite namapovanie v produkčnom prostredí, len v testovacej alebo experimentálnej fáze." -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "Zrušiť mapovanie LDAP používateľských mien" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Zrušiť mapovanie názvov LDAP skupín" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Test nastavenia" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Pomoc" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 57c093c4eeb08b4dff00b62e19d3ed3e5394bfe4..4d04d189759af732440cf31b2264ab468203981f 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,98 +19,60 @@ 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/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" -msgstr "%s je delil »%s« z vami" +msgstr "%s je omogočil souporabo »%s«" -#: ajax/share.php:227 -msgid "group" -msgstr "skupina" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Ni mogoče poslati sporočila za: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" -msgstr "" +msgstr "Vzdrževalni način je omogočen" #: ajax/update.php:14 msgid "Turned off maintenance mode" -msgstr "" +msgstr "Vzdrževalni način je onemogočen" #: ajax/update.php:17 msgid "Updated database" -msgstr "" +msgstr "Posodobljena podatkovna zbirka" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "" +msgstr "Poteka posodabljanje predpomnilnika datotek. Opravilo je lahko dolgotrajno ..." #: ajax/update.php:23 msgid "Updated filecache" -msgstr "" +msgstr "Predpomnilnik datotek je posodobljen" #: ajax/update.php:26 #, php-format msgid "... %d%% done ..." -msgstr "" - -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Vrsta kategorije ni podana." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Ali ni kategorije za dodajanje?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Kategorija že obstaja: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Vrsta predmeta ni podana." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "ID %s ni podan." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Napaka dodajanja %s med priljubljene predmete." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Za izbris ni izbrana nobena kategorija." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Napaka odstranjevanja %s iz priljubljenih predmetov." +msgstr "... %d%% končano ..." #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "Ni podane datoteke ali slike" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Neznana vrsta datoteke" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Neveljavna slika" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "Na voljo ni nobene začasne slike za profil. Poskusite znova." #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "Ni podanih podatkov obreza" #: js/config.php:32 msgid "Sunday" @@ -188,67 +150,67 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pred %n minuto" +msgstr[1] "pred %n minutama" +msgstr[2] "pred %n minutami" +msgstr[3] "pred %n minutami" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pred %n uro" +msgstr[1] "pred %n urama" +msgstr[2] "pred %n urami" +msgstr[3] "pred %n urami" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "danes" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "včeraj" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pred %n dnevom" +msgstr[1] "pred %n dnevoma" +msgstr[2] "pred %n dnevi" +msgstr[3] "pred %n dnevi" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pred %n mesecem" +msgstr[1] "pred %n mesecema" +msgstr[2] "pred %n meseci" +msgstr[3] "pred %n meseci" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "lansko leto" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "let nazaj" @@ -258,7 +220,7 @@ msgstr "Izbor" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Napaka nalaganja predloge izbirnika datotek: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -274,29 +236,29 @@ msgstr "V redu" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Napaka nalaganja predloge sporočil: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "{count} spor datotek" +msgstr[1] "{count} spora datotek" +msgstr[2] "{count} spori datotek" +msgstr[3] "{count} sporov datotek" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "En spor datotek" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Katare datoteke želite ohraniti?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Če izberete obe različici, bo kopirani datoteki k imenu dodana številka." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -304,169 +266,197 @@ msgstr "Prekliči" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Nadaljuj" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(vse izbrano)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} izbranih)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" - -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Vrsta predmeta ni podana." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Napaka" +msgstr "Napaka nalaganja predloge obstoječih datotek" -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Ime programa ni podano." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Zahtevana datoteka {file} ni nameščena!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "V souporabi" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Souporaba" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Napaka" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Napaka med souporabo" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Napaka med odstranjevanjem souporabe" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Napaka med spreminjanjem dovoljenj" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "V souporabi z vami in skupino {group}. Lastnik je {owner}." -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "V souporabi z vami. Lastnik je {owner}." -#: js/share.js:183 -msgid "Share with" -msgstr "Omogoči souporabo z" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Souporaba z uporabnikom ali skupino ..." -#: js/share.js:188 -msgid "Share with link" -msgstr "Omogoči souporabo preko povezave" +#: js/share.js:219 +msgid "Share link" +msgstr "Povezava za prejem" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Zaščiti z geslom" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Geslo" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" -msgstr "Dovoli javne prenose na strežnik" +msgstr "Dovoli javno pošiljanje na strežnik" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Posreduj povezavo po elektronski pošti" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Pošlji" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Nastavi datum preteka" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Datum preteka" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" -msgstr "Souporaba preko elektronske pošte:" +msgstr "Pošlji povezavo do dokumenta preko elektronske pošte:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Ni najdenih uporabnikov" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "skupina" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Nadaljnja souporaba ni dovoljena" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" -msgstr "V souporabi v {item} z {user}" +msgstr "V souporabi v {item} z uporabnikom {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Prekliči souporabo" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "obvesti po elektronski pošti" + +#: js/share.js:408 msgid "can edit" msgstr "lahko ureja" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "nadzor dostopa" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "ustvari" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "posodobi" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" -msgstr "izbriši" +msgstr "izbriše" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "določi souporabo" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Zaščiteno z geslom" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Napaka brisanja datuma preteka" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" -msgstr "Napaka med nastavljanjem datuma preteka" +msgstr "Napaka nastavljanja datuma preteka" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Pošiljanje ..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "Elektronska pošta je poslana" +#: js/share.js:769 +msgid "Warning" +msgstr "Opozorilo" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Vrsta predmeta ni podana." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Vnesite novo" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Izbriši" + +#: js/tags.js:31 +msgid "Add" +msgstr "Dodaj" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Uredi oznake" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Napaka nalaganja predloge pogovornega okna: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Ni izbranih oznak za izbris." + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "Stran je treba ponovno naložiti" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Povezava za ponastavitev gesla je bila poslana na elektronski naslov.
    V kolikor sporočila ne prejmete v doglednem času, preverite tudi mape vsiljene pošte.
    Če ne bo niti tam, stopite v stik s skrbnikom." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Zahteva je spodletela!
    Ali sta elektronski naslov oziroma uporabniško ime navedena pravilno?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Na elektronski naslov boste prejeli povezavo za ponovno nastavitev gesla." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Uporabniško ime" -#: lostpassword/templates/lostpassword.php:22 +#: 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 "Datoteke so šifrirane. Če niste omogočili ključa za obnovitev, žal podatkov ne bo mogoče pridobiti nazaj, ko boste geslo enkrat spremenili. Če niste prepričani, kaj storiti, se obrnite na skrbnika storitve. Ste prepričani, da želite nadaljevati?" +msgstr "Datoteke so šifrirane. Če niste omogočili ključa za obnovitev, žal podatkov ne bo mogoče pridobiti nazaj, ko boste geslo enkrat spremenili. Če niste prepričani, kaj storiti, se obrnite na skrbnika storitve. Ali ste prepričani, da želite nadaljevati?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Da, potrjujem ponastavitev gesla" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Zahtevaj ponovno nastavitev" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Ponastavi" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -547,7 +537,7 @@ msgstr "Osebno" msgid "Users" msgstr "Uporabniki" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Programi" @@ -559,6 +549,34 @@ msgstr "Skrbništvo" msgid "Help" msgstr "Pomoč" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "Napaka nalaganja oznak" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "Oznaka že obstaja" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "Napaka brisanja oznak" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "Napaka označevanja" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "Napaka odstranjevanja oznak" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "Napaka označevanja priljubljenosti" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "Napaka odstranjevanja oznake priljubljenosti" + #: templates/403.php:12 msgid "Access forbidden" msgstr "Dostop je prepovedan" @@ -575,108 +593,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Pozdravljen/a,⏎\n⏎\nsporočam, da je %s delil %s s teboj.⏎\nPoglej na: %s⏎\n⏎\nLep pozdrav!" +msgstr "Pozdravljeni,\n\noseba %s vam je omogočila souporabo %s.\nVir si lahko ogledate: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Uredi kategorije" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "Povezava souporabe bo potekla %s." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Dodaj" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Na zdravje!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Varnostno opozorilo" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Uporabljena različica PHP je ranljiva za napad NULL Byte (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "Za varno uporabo storitve %s posodobite PHP" +msgstr "Za varno uporabo storitve %s, je treba posodobiti namestitev PHP" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Na voljo ni nobenega varnega ustvarjalnika naključnih števil. Omogočiti je treba razširitev PHP OpenSSL." -#: templates/installation.php:33 +#: 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 "Brez varnega ustvarjalnika naključnih števil je mogoče napovedati žetone za ponastavitev gesla, s čimer je mogoče prevzeti nadzor nad računom." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Podatkovna mapa in datoteke so najverjetneje javno dostopni preko interneta, saj datoteka .htaccess ni ustrezno nastavljena." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." -msgstr "Za navodila, kako pravilno nastaviti vaš strežnik, kliknite na povezavo do dokumentacije." +msgstr "Za več informacij o pravilnem nastavljanju strežnika, kliknite na povezavo do dokumentacije." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Ustvari skrbniški račun" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Napredne možnosti" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Podatkovna mapa" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Nastavi podatkovno zbirko" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "bo uporabljen" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Uporabnik podatkovne zbirke" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Geslo podatkovne zbirke" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Ime podatkovne zbirke" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Razpredelnica podatkovne zbirke" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Gostitelj podatkovne zbirke" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" -msgstr "Končaj namestitev" +msgstr "Končaj nastavitev" + +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Poteka zaključevanje opravila ..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "Program zahteva omogočeno skriptno podporo. Za pravilno delovanje je treba omogočiti JavaScript in nato ponovno osvežiti vmesnik." -#: templates/layout.user.php:41 +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s je na voljo. Pridobite več podrobnosti za posodobitev." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Odjava" @@ -694,19 +723,27 @@ msgstr "V primeru, da gesla za dostop že nekaj časa niste spremenili, je raču msgid "Please change your password to secure your account again." msgstr "Spremenite geslo za izboljšanje zaščite računa." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "Overitev s strežnika je spodletela!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Stopite v stik s skrbnikom sistema." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Ali ste pozabili geslo?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "zapomni si" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Prijava" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Druge prijavne možnosti" @@ -714,10 +751,37 @@ msgstr "Druge prijavne možnosti" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Pozdravljen/a,

    sporočam, da je %s delil »%s« s teboj.
    Poglej vsebine!

    Lep pozdrav!" +"href=\"%s\">View it!

    " +msgstr "Pozdravljeni,

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

    " + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "Ta seja oblaka ownCloud je trenutno v načinu enega sočasnega uporabnika." -#: templates/update.php:3 +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "To pomeni, da lahko oblak uporabljajo le osebe s skrbniškimi dovoljenji." + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "Stopite v stik s skrbnikom sistema, če se bo sporočilo še naprej nepričakovano prikazovalo." + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "Hvala za potrpežljivost!" + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "Posodabljanje sistema ownCloud na različico %s je lahko dolgotrajno." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "Nastavitev oblaka ownCloud se trenutno posodablja. Opravilo je lahko dolgotrajno ..." + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "Ponovno naložite to stran po krajšem preteku časa in nadaljujte z uporabo oblaka ownCloud." diff --git a/l10n/sl/files.po b/l10n/sl/files.po index d8dee234cc0a94bce12cc9c01cf206764e3caf89..83b375f340e226b1e736de9e5ff9bf8ac2c7cbcb 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -4,13 +4,14 @@ # # Translators: # barbarak , 2013 +# mateju <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-22 01:55-0500\n" +"PO-Revision-Date: 2013-12-21 21:20+0000\n" +"Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,233 +22,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "%s ni mogoče premakniti - datoteka s tem imenom že obstaja" +msgstr "Datoteke %s ni mogoče premakniti - datoteka s tem imenom že obstaja." #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Ni mogoče premakniti %s" +msgstr "Datoteke %s ni mogoče premakniti" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Ime datoteke ne sme biti prazno polje." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "Ime datoteke ne sme vsebovati znaka \"/\". Določiti je treba drugo ime." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "Ime %s je že v mapi %s že v uporabi. Izbrati je treba drugo ime." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "Vir ni veljaven" + +#: ajax/newfile.php:86 +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:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Napaka med prejemanjem %s v mapo %s" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Napaka med ustvarjanjem datoteke" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "Ime mape ne more biti prazna vrednost." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "Ime mape ne sme vsebovati znaka \"/\". Določiti je treba drugo ime." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Napaka med ustvarjanjem mape" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Mapo, v katero boste prenašali dokumente, ni mogoče določiti" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Neveljaven žeton" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Ni poslane datoteke. Neznana napaka." -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je uspešno naložena." -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Poslan je le del datoteke." -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Ni poslane datoteke" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Manjka začasna mapa" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Pisanje na disk je spodletelo" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Na voljo ni dovolj prostora" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Pošiljanje je spodletelo. Ni mogoče pridobiti podrobnosti datoteke." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Pošiljanje je spodletelo. Ni mogoče najti poslane datoteke." -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Neveljavna mapa." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Datoteke" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "Ni mogoče poslati datoteke {filename}, saj je to ali mapa ali pa je velikost datoteke 0 bajtov." -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Na voljo ni dovolj prostora." -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Pošiljanje je preklicano." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "" +msgstr "Ni mogoče pridobiti podatkov s strežnika." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "Naslov URL ne sme biti prazna vrednost." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "Polje naslova URL ne sme biti prazno" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Ime mape je neveljavno. Uporaba oznake \"Souporaba\" je rezervirana za ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +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:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Napaka" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} že obstaja" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Ni mogoče ustvariti datoteke" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Ni mogoče ustvariti mape" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Napaka pridobivanja naslova URL" + +#: js/fileactions.js:125 msgid "Share" msgstr "Souporaba" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Izbriši dokončno" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Preimenuj" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "V čakanju ..." -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} že obstaja" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "zamenjaj" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "predlagaj ime" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Ni mogoče preimenovati datoteke" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "prekliči" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "preimenovano ime {new_name} z imenom {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "razveljavi" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Napaka brisanja datoteke." + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%n mapa" +msgstr[1] "%n mapi" +msgstr[2] "%n mape" +msgstr[3] "%n map" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%n datoteka" +msgstr[1] "%n datoteki" +msgstr[2] "%n datoteke" +msgstr[3] "%n datotek" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" -msgstr "" +msgstr "{dirs} in {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Posodabljanje %n datoteke" +msgstr[1] "Posodabljanje %n datotek" +msgstr[2] "Posodabljanje %n datotek" +msgstr[3] "Posodabljanje %n datotek" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' je neveljavno ime datoteke." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Ime datoteke ne sme biti prazno polje." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Neveljavno ime, znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni." +msgstr "Neveljavno ime; znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Shramba je povsem napolnjena. Datotek ni več mogoče posodabljati in usklajevati!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Mesto za shranjevanje je skoraj polno ({usedSpacePercent}%)" +msgstr "Prostor za shranjevanje je skoraj do konca zaseden ({usedSpacePercent}%)" + +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "Program za šifriranje je omogočen, vendar ni začet. Odjavite se in nato ponovno prijavite." + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "Ni ustreznega osebnega ključa za program za šifriranje. Posodobite osebni ključ za dostop do šifriranih datotek med nastavitvami." -#: js/files.js:67 +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." -msgstr "" +msgstr "Šifriranje je onemogočeno, datoteke pa so še vedno šifrirane. Odšifrirajte jih med nastavitvami." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Postopek priprave datoteke za prejem je lahko dolgotrajen, če je datoteka zelo velika." +msgstr "Postopek priprave datoteke za prejem je lahko dolgotrajen, kadar je datoteka zelo velika." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" -msgstr "" +msgstr "Napaka premikanja datoteke" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Napaka" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Ime" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Velikost" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Spremenjeno" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Neveljavno ime mape. Ime 'Souporaba' je zadržana za javno mapo." + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" -msgstr "%s ni bilo mogoče preimenovati" +msgstr "%s ni mogoče preimenovati" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Pošlji" @@ -283,65 +350,69 @@ msgstr "Največja vhodna velikost za datoteke ZIP" msgid "Save" msgstr "Shrani" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Novo" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "Nova besedilna datoteka" + +#: templates/index.php:8 msgid "Text file" msgstr "Besedilna datoteka" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Nova mapa" + +#: templates/index.php:10 msgid "Folder" msgstr "Mapa" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Iz povezave" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Izbrisane datoteke" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Prekliči pošiljanje" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Za to mesto ni ustreznih dovoljenj za pisanje." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "Ni ustreznih dovoljenj za pošiljanje ali ustvarjanje datotek na tem mestu." -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Tukaj še ni ničesar. Najprej je treba kakšno datoteko poslati v oblak!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Prejmi" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Prekliči souporabo" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Izbriši" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Prekoračenje omejitve velikosti" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke, ki jih želite poslati, presegajo največjo dovoljeno velikost na strežniku." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Poteka preučevanje datotek, počakajte ..." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Trenutno poteka preučevanje" diff --git a/l10n/sl/files_encryption.po b/l10n/sl/files_encryption.po index dce60f89a056ef8c2be427962c2613afa4c9c782..958c659739999cd50d9861c8e8f7408fd2000570 100644 --- a/l10n/sl/files_encryption.po +++ b/l10n/sl/files_encryption.po @@ -4,13 +4,14 @@ # # Translators: # barbarak , 2013 +# mateju <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: barbarak \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-02 17:27-0500\n" +"PO-Revision-Date: 2013-11-29 23:30+0000\n" +"Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,99 +21,120 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "Ključ za obnovitev gesla je bil uspešno nastavljen" +msgstr "Ključ za obnovitev gesla je uspešno nastavljen" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "Ključa za obnovitev gesla ni bilo mogoče nastaviti. Preverite ključ!" +msgstr "Ključa za obnovitev gesla ni mogoče nastaviti. Preverite ključ!" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "Ključ za obnovitev gesla je bil uspešno onemogočen" +msgstr "Ključ za obnovitev gesla je uspešno onemogočen" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "Ključa za obnovitev gesla ni bilo mogoče onemogočiti. Preverite ključ!" +msgstr "Ključa za obnovitev gesla ni mogoče onemogočiti. Preverite ključ!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "Geslo je bilo uspešno spremenjeno." +msgstr "Geslo je uspešno spremenjeno." #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "Gesla ni bilo mogoče spremeniti. Morda vnos starega gesla ni bil pravilen." +msgstr "Gesla ni mogoče spremeniti. Morda vnos starega gesla ni pravilen." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "Zasebni ključ za geslo je bil uspešno posodobljen." +msgstr "Zasebni ključ za geslo je uspešno posodobljen." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "Zasebnega ključa za geslo ni bilo mogoče posodobiti. Morda vnos starega gesla ni bil pravilen." +msgstr "Zasebnega ključa za geslo ni mogoče posodobiti. Morda vnos starega gesla ni bil pravilen." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno zunaj sistema ownCloud (npr. v skupnem imeniku). Svoj zasebni ključ, ki vam bo omogočil dostop do šifriranih dokumentov, lahko posodobite v osebnih nastavitvah." +"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 "Program za šifriranje ni začet. Morda je bil program ponovno omogočen šele med zagonom trenutne seje. Odjavite se in se nato prijavite nazaj. S tem morda razrešite napako." -#: hooks/hooks.php:41 +#: 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 "Zasebni ključ ni veljaven. Najverjetneje je bilo geslo spremenjeno izven %s (najverjetneje je to poslovna mapa). Geslo lahko posodobite med osebnimi nastavitvami in s tem obnovite dostop do šifriranih datotek." + +#: files/error.php:19 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "Te datoteke ni mogoče šifrirati, ker je to najverjetneje datoteka v souporabi. Prosite lastnika datoteke, da jo da ponovno v souporabo." + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Prišlo je do neznane napake. Preverite nastavitve sistema ali pa stopite v stik s skrbnikom sistema." + +#: hooks/hooks.php:59 msgid "Missing requirements." msgstr "Manjkajoče zahteve" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "Preverite, da imate na strežniku nameščen paket PHP 5.3.3 ali novejši in da je omogočen in pravilno nastavljen PHP OpenSSL . Zaenkrat je šifriranje onemogočeno." +msgstr "Preverite, ali je na strežniku nameščen paket PHP 5.3.3 ali novejši, da je omogočen in pravilno nastavljen PHP OpenSSL. Z obstoječimi možnostmi šifriranje ni mogoče." -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" -msgstr "Naslednji uporabniki še nimajo nastavljenega šifriranja:" +msgstr "Navedeni uporabniki še nimajo nastavljenega šifriranja:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "Začetno šifriranje je začeto ... Opravilo je lahko dolgotrajno." + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Poteka shranjevanje ..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Skočite neposredno na" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Svoj zasebni ključ lahko odklenite v" - -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "osebne nastavitve" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Šifriranje" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "Omogoči ključ za obnovitev datotek (v primeru izgube gesla)" +msgstr "Omogoči ključ za obnovitev datotek (v primeru izgube gesla):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "Ključ za obnovitev gesla" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Ponovi ključ za obnovitev gesla" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Omogočeno" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Onemogočeno" @@ -120,58 +142,62 @@ msgstr "Onemogočeno" msgid "Change recovery key password:" msgstr "Spremeni ključ za obnovitev gesla:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "Stari ključ za obnovitev gesla" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" -msgstr "Nov ključ za obnovitev gesla" +msgstr "Novi ključ za obnovitev gesla" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "Ponovi novi ključ za obnovitev gesla" + +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Spremeni geslo" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" -msgstr "Vaš zasebni ključ za geslo se ne ujema z vnešenim geslom ob prijavi:" +msgstr "Vaš zasebni ključ za geslo se ne ujema z geslom, vnesenim ob prijavi:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." -msgstr "Nastavite svoj star zasebni ključ v geslo, vnešeno ob prijavi." +msgstr "Nastavite svoj star zasebni ključ v geslo, vneseno ob prijavi." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "Če ste svoje geslo pozabili, lahko vaše datoteke obnovi skrbnik sistema." +msgstr "Če ste pozabili svoje geslo, lahko vaše datoteke obnovi le skrbnik sistema." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Staro geslo" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Trenutno geslo" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "Posodobi zasebni ključ" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Omogoči obnovitev gesla:" -#: templates/settings-personal.php:47 +#: 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 "Nastavitev te možnosti omogoča ponovno pridobitev dostopa do šifriranih datotek, v primeru da boste geslo pozabili." +msgstr "Nastavitev te možnosti omogoča ponovno pridobitev dostopa do šifriranih datotek, v primeru, da boste geslo pozabili." -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" -msgstr "Nastavitve obnavljanja dokumentov so bile posodobljene" +msgstr "Nastavitve obnavljanja dokumentov so posodobljene" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" -msgstr "Nastavitev za obnavljanje dokumentov ni bilo mogoče posodobiti" +msgstr "Nastavitev za obnavljanje dokumentov ni mogoče posodobiti" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 90cc598ec893452be60400546ddcbff691977b78..deddf05668379b150dce3b74575cb264f63b906a 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ 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" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Dostop je odobren" @@ -26,7 +26,7 @@ msgstr "Dostop je odobren" msgid "Error configuring Dropbox storage" msgstr "Napaka nastavljanja shrambe Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Odobri dostop" @@ -34,24 +34,24 @@ msgstr "Odobri dostop" msgid "Please provide a valid Dropbox app key and secret." msgstr "Vpisati je treba veljaven ključ programa in kodo za Dropbox" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Napaka nastavljanja shrambe Google Drive" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Opozorilo: paket \"smbclient\" ni nameščen. Priklapljanje pogonov CIFS/SMB ne bo mogoče." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Opozorilo: podpora FTP v PHP ni omogočena ali pa ni nameščena. Priklapljanje pogonov FTP zato ne bo mogoče." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index b038230f56a4e1e552e3d1ef8d237fc80838acab..8831af7422c54c102c5aad6411cb56925f4b06a4 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mateju <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,63 +19,67 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." -msgstr "" +msgid "This share is password-protected" +msgstr "To mesto je zaščiteno z geslom." #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "Geslo je napačno. Poskusite znova." + +#: templates/authenticate.php:10 msgid "Password" msgstr "Geslo" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Pošlji" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Povezava očitno ni več v uporabi." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Vzrok je lahko:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "predmet je odstranjen," #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "povezava je pretekla," #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "souporaba je onemogočena." #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Za več podrobnosti stopite v stik s pošiljateljem te povezave." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "Oseba %s je določila mapo %s za souporabo" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "Oseba %s je določila datoteko %s za souporabo" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Prejmi" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Pošlji" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Prekliči pošiljanje" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Predogled ni na voljo za" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Neposredna povezava" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 866885ca0cb56b956a6c6c81a868b6861fda098e..47b8914bdad97169cd00c29779aca532d93b1a8e 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mateju <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,66 +21,38 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Datoteke %s ni mogoče dokončno izbrisati." +msgstr "Datoteke %s ni mogoče trajno izbrisati." #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Ni mogoče obnoviti %s" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "izvedi opravilo obnavljanja" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Napaka" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "dokončno izbriši datoteko" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Izbriši dokončno" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Ime" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "Izbrisano" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" -msgstr "" +msgstr "obnovljeno" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Mapa smeti je prazna." -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Ime" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Obnovi" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Izbrisano" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Izbriši" diff --git a/l10n/sl/files_versions.po b/l10n/sl/files_versions.po index 13f114ac55016b1bebeda9ef9076c05a4b5e4f54..212224681253b3ae5b8d3f3b57ec3d82424f8dd6 100644 --- a/l10n/sl/files_versions.po +++ b/l10n/sl/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mateju <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-11 21:30+0000\n" +"Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,22 +23,22 @@ msgstr "" msgid "Could not revert: %s" msgstr "Ni mogoče povrniti: %s" -#: js/versions.js:7 +#: js/versions.js:14 msgid "Versions" msgstr "Različice" -#: js/versions.js:53 +#: js/versions.js:60 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "Povrnitev datoteke {file} na objavo {timestamp} je spodletelo." -#: js/versions.js:79 +#: js/versions.js:86 msgid "More versions..." -msgstr "" +msgstr "Več različic" -#: js/versions.js:116 +#: js/versions.js:123 msgid "No other versions available" -msgstr "" +msgstr "Ni drugih različic" -#: js/versions.js:149 +#: js/versions.js:154 msgid "Restore" msgstr "Obnovi" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 871f8629966cffebc40264e7460dae38d71510cc..1a6921a702893ab6c2e99c5fcb1320ed004d19fe 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -4,12 +4,13 @@ # # Translators: # barbarak , 2013 +# mateju <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -18,326 +19,325 @@ 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" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." -msgstr "" +msgstr "Programa \"%s\" ni mogoče namestiti, ker ni skladen s trenutno nameščeno različico oblaka ownCloud." -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" -msgstr "" +msgstr "Ni podanega imena programa" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Pomoč" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Osebno" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Nastavitve" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Uporabniki" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Skrbništvo" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." -msgstr "" - -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" +msgstr "Posodabljanje \"%s\" je spodletelo." -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Neznana vrsta datoteke" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Neveljavna slika" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "spletne storitve pod vašim nadzorom" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "ni mogoče odpreti \"%s\"" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Prejemanje datotek v paketu ZIP je onemogočeno." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Datoteke je mogoče prejeti le posamično." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Nazaj na datoteke" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Izbrane datoteke so prevelike za ustvarjanje datoteke arhiva zip." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "Datoteke je treba prejeti ločeno v manjših paketih, ali pa je treba za pomoč prositi skrbnika." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" -msgstr "" +msgstr "Ni podanega vira med nameščenjem programa" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" -msgstr "" +msgstr "Ni podanega podatka naslova HREF med nameščenjem programa preko protokola HTTP." -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" -msgstr "" +msgstr "Ni podane poti med nameščenjem programa iz krajevne datoteke" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" -msgstr "" +msgstr "Arhivi vrste %s niso podprti" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" -msgstr "" +msgstr "Odpiranje arhiva je med nameščanjem spodletelo" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" -msgstr "" +msgstr "Program je brez datoteke info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" -msgstr "" +msgstr "Programa ni mogoče namestiti zaradi nedovoljene programske kode." -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" -msgstr "" +msgstr "Programa ni mogoče namestiti, ker ni skladen z trenutno nameščeno različico oblaka ownCloud." -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" -msgstr "" +msgstr "Programa ni mogoče namestiti, ker vsebuje oznako potrditve, ki pa ni dovoljena za javne programe." -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "" +msgstr "Program ni mogoče namestiti zaradi neustrezne različice datoteke info.xml. Ta ni enaka različici programa." -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" -msgstr "" +msgstr "Programska mapa že obstaja" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "" +msgstr "Programske mape ni mogoče ustvariti. Ni ustreznih dovoljenj. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Program ni omogočen" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" -msgstr "Napaka pri overjanju" +msgstr "Napaka overjanja" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Žeton je potekel. Stran je treba ponovno naložiti." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Datoteke" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Besedilo" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Slike" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s - vnos uporabniškega imena podatkovne zbirke." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s - vnos imena podatkovne zbirke." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s - v imenu podatkovne zbirke ni dovoljeno uporabljati pik." -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Uporabniško ime ali geslo MS SQL ni veljavno: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Prijaviti se je treba v obstoječi ali pa skrbniški račun." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Uporabniško ime ali geslo MySQL ni veljavno" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "Napaka podatkovne zbirke: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Napačni ukaz je: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Uporabnik MySQL '%s'@'localhost' že obstaja." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" -msgstr "Odstrani uporabnika s podatkovne zbirke MySQL" +msgstr "Odstrani uporabnika iz podatkovne zbirke MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Uporabnik MySQL '%s'@'%%' že obstaja." -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." -msgstr "Odstrani uporabnika s podatkovne zbirke MySQL" +msgstr "Odstrani uporabnika iz podatkovne zbirke MySQL" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" -msgstr "Povezava z bazo Oracle ni uspela." +msgstr "Povezave s sistemom Oracle ni mogoče vzpostaviti." -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Uporabniško ime ali geslo Oracle ni veljavno" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Napačni ukaz je: \"%s\", ime: %s, geslo: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "Uporabniško ime ali geslo PostgreSQL ni veljavno" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Nastavi uporabniško ime skrbnika." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Nastavi geslo skrbnika." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Preverite navodila namestitve." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Kategorije \"%s\" ni mogoče najti." + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pred %n minuto" +msgstr[1] "pred %n minutama" +msgstr[2] "pred %n minutami" +msgstr[3] "pred %n minutami" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pred %n uro" +msgstr[1] "pred %n urama" +msgstr[2] "pred %n urami" +msgstr[3] "pred %n urami" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "danes" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "včeraj" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pred %n dnevom" +msgstr[1] "pred %n dnevoma" +msgstr[2] "pred %n dnevi" +msgstr[3] "pred %n dnevi" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "zadnji mesec" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pred %n mesecem" +msgstr[1] "pred %n mesecema" +msgstr[2] "pred %n meseci" +msgstr[3] "pred %n meseci" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "lansko leto" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "let nazaj" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Kategorije \"%s\" ni mogoče najti." diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index dd0437a4bdd3f86fa69b950999ffb6990e6ad4ad..5df294c5976ecd578fa27dea9df9cb8c827dc1a6 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-05 18:30+0000\n" +"Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,12 +29,12 @@ msgid "Authentication error" msgstr "Napaka med overjanjem" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Prikazano ime je bilo spremenjeno." +msgid "Your full name has been changed." +msgstr "Vaše polno ime je spremenjeno." #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Prikazanega imena ni mogoče spremeniti." +msgid "Unable to change full name" +msgstr "Ni mogoče spremeniti polnega imena" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -88,42 +88,42 @@ msgstr "Programa ni mogoče posodobiti." #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "Napačno geslo" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "Ni navedenega uporabnika" #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "Podati je treba skrbniško obnovitveno geslo, sicer bodo vsi uporabniški podatki izgubljeni." #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "Napačno navedeno skrbniško obnovitveno geslo. Preverite geslo in poskusite znova." #: changepassword/controller.php:87 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "Hrbtišče programa ne podpira spreminjanja gesla, je pa uspešno posodobljeno uporabniško šifriranje." #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" -msgstr "" +msgstr "Ni mogoče spremeniti gesla" #: js/apps.js:43 msgid "Update to {appversion}" msgstr "Posodobi na {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Onemogoči" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Omogoči" @@ -131,41 +131,41 @@ msgstr "Omogoči" msgid "Please wait...." msgstr "Počakajte ..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" -msgstr "" +msgstr "Napaka onemogočanja programa" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" -msgstr "" +msgstr "Napaka omogočanja programa" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Poteka posodabljanje ..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Prišlo je do napake med posodabljanjem programa." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Napaka" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Posodobi" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Posodobljeno" #: js/personal.js:220 msgid "Select a profile picture" -msgstr "" +msgstr "Izbor slike profila" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." -msgstr "" +msgstr "Poteka odšifriranje datotek ... Opravilo je lahko dolgotrajno." #: js/personal.js:287 msgid "Saving..." @@ -183,206 +183,265 @@ msgstr "razveljavi" msgid "Unable to remove user" msgstr "Uporabnika ni mogoče odstraniti" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Skupine" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Skrbnik skupine" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Izbriši" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "dodaj skupino" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "Navedeno mora biti veljavno uporabniško ime" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "Napaka ustvarjanja uporabnika" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "Navedeno mora biti veljavno geslo" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Opozorilo: osebna mapa uporabnika \"{user}\" že obstaja" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Slovenščina" -#: templates/admin.php:15 +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "Vse (podrobnosti, opozorila, hrošče, napake in usodne dogodke)" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "Podrobnosti, opozorila, napake in usodne dogodke" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "Opozorila, napake in usodne dogodke" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "Napake in usodne dogodke" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "Le usodne dogodke" + +#: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" msgstr "Varnostno opozorilo" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "Dostop do %s poteka preko HTTP. Priporočljivo je nastaviti strežnik na privzeto uporabo varne povezave preko protokola HTTPS." + +#: templates/admin.php:39 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 "" +msgstr "Vaša podatkovna mapa in datoteke so najverjetneje dosegljive preko interneta. Datoteka .htaccess ni ustrezno nastavljena. Priporočljivo je nastaviti spletni strežnik tako, da podatkovna mapa ni prosto dostopna. To je mogoče zagotoviti tudi tako, da je mapa premaknjena iz neustrezne korenske v podrejeno mapo ." -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Opozorilo nastavitve" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena." -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Preverite vodnike namestitve." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Manjka modul 'fileinfo'." -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Manjka modul PHP 'fileinfo'. Priporočljivo je omogočiti ta modul za popolno zaznavanje vrst MIME." -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "Nameščena različica PHP je zastarela" + +#: templates/admin.php:82 +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 "Nameščena različica PHP je zastarela. Priporočljivo je posodobiti namestitev na različico 5.3.8 ali novejše, saj starejše različice ne podpirajo vseh zmožnosti. Mogoče je, da namestitev ne deluje pravilno." + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Jezikovne prilagoditve ne delujejo." -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "Sistemskih jezikovnih nastavitev ni mogoče nastaviti na možnost, ki podpira nabor UTF-8." + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "To pomeni, da se lahko pojavijo napake pri nekaterih znakih v imenih datotek." + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "Priporočljivo je namestiti zahtevane pakete v sistem za podporo ene izmed navedenih jezikovnih možnosti: %s" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Internetna povezava ne deluje." -#: templates/admin.php:78 +#: templates/admin.php:121 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 "" +msgstr "Na voljo ni delujoče internetne povezave. To pomeni, da nekaterih možnosti, kot so priklapljanje zunanje shrambe, obveščanja o posodobitvah in nameščanje programov tretje roke ni podprto. Dostop do datotek z oddaljenih mest in pošiljanje obvestil preko elektronske pošte je verjetno še vedno mogoče. Za omogočanje vseh zmožnosti mora biti vzpostavljena tudi ustrezna internetna povezava." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Periodično opravilo" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Izvedi eno nalogo z vsako naloženo stranjo." -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "" +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "" +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Souporaba" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Omogoči API souporabe" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Dovoli programom uporabo vmesnika API souporabe" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Dovoli povezave" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Uporabnikom dovoli souporabo predmetov z javnimi povezavami" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" -msgstr "" +msgstr "Dovoli javno pošiljanje datotek v oblak" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "Dovoli uporabnikom, da omogočijo drugim uporabnikom, pošiljati datoteke v javno mapo." -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Dovoli nadaljnjo souporabo" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Uporabnikom dovoli nadaljnjo souporabo predmetov" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Uporabnikom dovoli souporabo s komerkoli" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Uporabnikom dovoli souporabo z ostalimi uporabniki njihove skupine" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Dovoli obvestila preko elektronske pošte" + +#: templates/admin.php:214 +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:221 msgid "Security" msgstr "Varnost" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Zahtevaj uporabo HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "Vsili povezavo odjemalca z %s preko šifrirane povezave." -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." -msgstr "" +msgstr "Za nastavljanje šifriranja SSL je treba vzpostaviti povezavo z mestom %s preko protokola HTTPS." -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "Dnevnik" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Raven beleženja" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Več" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Manj" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Različica" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "" +"Use this address to access your Files via " +"WebDAV" +msgstr "Uporabite naslov za dostop do datotek rpeko sistema WebDAV." -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Šifriranje" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "Program za šifriranje ni več omogočen. Odšifrirati je treba vse datoteke." -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" -msgstr "" +msgstr "Prijavno geslo" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" -msgstr "" +msgstr "Odšifriraj vse datoteke" #: templates/users.php:21 msgid "Login Name" @@ -562,18 +625,22 @@ msgstr "Ustvari" #: templates/users.php:36 msgid "Admin Recovery Password" -msgstr "Obnovitev administratorjevega gesla" +msgstr "Obnovitev skrbniškega gesla" #: templates/users.php:37 templates/users.php:38 msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "Vnesite geslo za obnovitev, ki ga boste uporabljali za obnovitev datotek uporabnikov med spremembo gesla" +msgstr "Vnesite geslo, ki omogoča obnovitev uporabniških datotek med spreminjanjem gesla" #: templates/users.php:42 msgid "Default Storage" msgstr "Privzeta shramba" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "Vnesite količinsko omejitev prostora (na primer: \"512 MB\" ali \"12 GB\")" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Neomejeno" @@ -591,8 +658,8 @@ msgid "Storage" msgstr "Shramba" #: templates/users.php:108 -msgid "change display name" -msgstr "spremeni prikazano ime" +msgid "change full name" +msgstr "Spremeni polno ime" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 4a826a92f8c417b5282199dbbf168c5908677cb2..276ce0e77e241c4555d3c2d8f8089b655b68c35e 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -4,13 +4,14 @@ # # Translators: # barbarak , 2013 +# mateju <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,320 +21,435 @@ msgstr "" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." -msgstr "Preslikav ni bilo mogoče izbrisati" +msgstr "Čiščenje preslikav je spodletelo." #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" msgstr "Brisanje nastavitev strežnika je spodletelo." -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Nastavitev je veljavna, zato je povezavo mogoče vzpostaviti!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "Nastavitev je veljavna, vendar pa je vez Bind spodletela. Preveriti je treba nastavitve strežnika in ustreznost poveril." +msgstr "Nastavitev je veljavna, vendar pa je vez spodletela. Preveriti je treba nastavitve strežnika in ustreznost poveril." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "Nastavitev je veljavna. Več podrobnosti je zapisanih v dnevniku ownCloud." +msgstr "Nastavitev ni veljavna. Več podrobnosti o napaki je zabeleženih v dnevniku." + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "Ni določenega dejanja" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "Ni določenih nastavitev" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "Ni navedenih podatkov" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "Ni mogoče uveljaviti nastavitev %s" -#: js/settings.js:66 +#: js/settings.js:67 msgid "Deletion failed" msgstr "Brisanje je spodletelo." -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" -msgstr "Ali naj se prevzame nastavitve nedavne nastavitve strežnika?" +msgstr "Ali naj bodo prevzete nedavne nastavitve strežnika?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" -msgstr "Ali nas se nastavitve ohranijo?" +msgstr "Ali naj se nastavitve ohranijo?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Ni mogoče dodati nastavitev strežnika" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" -msgstr "Preslikave so izbrisane" +msgstr "preslikave so izbrisane" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Uspešno končano." -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Napaka" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "Nastavitev je ustrezna" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "Nastavitev ni ustrezna" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "Nastavitev je nepopolna" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Izberi skupine" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "Izbor razredov predmeta" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "Izbor atributov" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Preizkus povezave je uspešno končan." -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Preizkus povezave je spodletel." -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Ali res želite izbrisati trenutne nastavitve strežnika?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Potrdi brisanje" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "" +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "%s najdena skupina" +msgstr[1] "%s najdeni skupini" +msgstr[2] "%s najdene skupine" +msgstr[3] "%s najdenih skupin" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "%s najden uporabnik" +msgstr[1] "%s najdena uporabnika" +msgstr[2] "%s najdeni uporabniki" +msgstr[3] "%s najdenih uporabnikov" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "Neveljaven gostitelj" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "Želene zmožnosti ni mogoče najti" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Shrani" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Preizkusne nastavitve" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Pomoč" -#: templates/settings.php:12 +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "Omeji dostop %s do skupin glede na kriterij:" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "le razredi predmeta:" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "le iz skupin:" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "Uredi surov filter" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "Surovi filter LDAP" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Opozorilo: modul PHP LDAP mora biti nameščen, sicer vmesnik ne bo deloval. Paket je treba namestiti." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "Filter določa, katere skupine LDAP bodo imele dostop do %s." -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Nastavitev strežnika" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "najdenih skupin" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "Kateri atribut naj bo uporabljen kot prijavno ime:" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "Uporabniško ime LDAP:" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "Elektronski naslov LDAP:" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "Drugi atributi:" + +#: 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 "Določi filter, ki bo uveljavljen ob poskusu prijave. %%uid zamenja uporabniško ime pri prijavi, na primer: \"uid=%%uid\"" + +#: templates/part.wizard-server.php:18 msgid "Add Server Configuration" msgstr "Dodaj nastavitve strežnika" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Gostitelj" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Protokol je lahko izpuščen, če ni posebej zahtevan SSL. V tem primeru se mora naslov začeti z ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Osnovni DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "En osnovni DN na vrstico" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Osnovni DN za uporabnike in skupine lahko določite v zavihku naprednih možnosti." +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Vrata" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" -msgstr "Uporabnik DN" +msgstr "Uporabnikovo enolično ime" -#: templates/settings.php:46 +#: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "DN uporabnikovega odjemalca, s katerim naj se opravi vezava, npr. uid=agent,dc=example,dc=com. Za brezimni dostop sta polji DN in geslo prazni." +msgstr "Enolično ime uporabnikovega odjemalca, s katerim naj se opravi vezava, npr. uid=agent,dc=example,dc=com. Za brezimni dostop sta polji prikaznega imena in gesla prazni." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Geslo" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." -msgstr "Za brezimni dostop sta polji DN in geslo prazni." +msgstr "Za brezimni dostop naj bosta polji imena in gesla prazni." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Filter prijav uporabnikov" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Eno osnovno enolično ime na vrstico" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Osnovno enolično ime za uporabnike in skupine lahko določite v zavihku naprednih možnosti." + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "Omeji dostop do %s uporabnikom, za katere velja kriterij:" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "Filter določa, kateri uporabniki LDAP bodo imeli dostop do %s." -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Filter seznama uporabnikov" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "najdenih uporabnikov" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Nazaj" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Filter skupin" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Nadaljuj" -#: templates/settings.php:62 +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "Opozorilo: določili user_ldap in user_webdavauth sta neskladni, kar lahko vpliva na delovanje sistema. O napaki pošljite poročilo skrbniku sistema in opozorite, da je treba eno izmed možnosti onemogočiti." -#: templates/settings.php:66 +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Opozorilo: modul PHP LDAP mora biti nameščen, sicer vmesnik ne bo deloval. Paket je treba namestiti." + +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Nastavitve povezave" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Dejavna nastavitev" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Neizbrana možnost preskoči nastavitev." -#: templates/settings.php:69 -msgid "Port" -msgstr "Vrata" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Varnostna kopija (replika) podatkov gostitelja" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Podati je treba izbirno varnostno kopijo gostitelja. Ta mora biti natančna replika strežnika LDAP/AD." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" -msgstr "Varnostna kopija (replika) podatka vrat" +msgstr "Vrata varnostne kopije (replike)" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Onemogoči glavni strežnik" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." -msgstr "" +msgstr "Poveži le s podvojenim strežnikom." -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Uporabi TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Strežnika ni priporočljivo uporabljati za povezave LDAPS. Povezava bo spodletela." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Strežnik LDAP ne upošteva velikosti črk (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Onemogoči določanje veljavnosti potrdila SSL." -#: templates/settings.php:75 +#: 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 "" +msgstr "Možnosti ni priporočljivo uporabiti; namenjena je zgolj preizkušanju! Če deluje povezava le s to možnostjo, je treba uvoziti potrdilo SSL strežnika LDAP na strežnik %s." -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Predpomni podatke TTL" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "v sekundah. Sprememba izprazni predpomnilnik." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Nastavitve mape" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Polje za uporabnikovo prikazano ime" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "Atribut LDAP za uporabo pri ustvarjanju prikaznega imena uporabnika." -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Osnovno uporabniško drevo" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" -msgstr "Eno osnovno uporabniško ime DN na vrstico" +msgstr "Eno osnovno uporabniško ime na vrstico" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" -msgstr "Uporabi atribute iskanja" +msgstr "Uporabnikovi atributi iskanja" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Izbirno; en atribut na vrstico" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Polje za prikazano ime skupine" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "Atribut LDAP za uporabo pri ustvarjanju prikaznega imena skupine." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Osnovno drevo skupine" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" -msgstr "Eno osnovno ime skupine DN na vrstico" +msgstr "Eno osnovno ime skupine na vrstico" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" -msgstr "Atributi iskanja skupine" +msgstr "Skupinski atributi iskanja" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Povezava član-skupina" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Posebni atributi" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Polje količinske omejitve" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Privzeta količinska omejitev" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "v bajtih" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "Polje elektronske pošte" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "Pravila poimenovanja uporabniške osebne mape" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Pustite prazno za uporabniško ime (privzeto), sicer navedite atribut LDAP/AD." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" -msgstr "Interno uporabniško ime" +msgstr "Programsko uporabniško ime" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -347,17 +463,17 @@ msgid "" "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 "" +msgstr "Privzeto je notranje uporabniško ime ustvarjeno na osnovi atributa UUID. To omogoča določitev uporabniškega imena kot enoličnega, zato znakov ni treba pretvarjati. Notranje ime je omejeno na standardne znake: [ a-zA-Z0-9_.@- ]. Morebitni drugi znaki so zamenjani z ustreznim ASCII znakom, ali pa so enostavno izpuščeni. V primeru sporov je prišteta ali odšteta številčna vrednost. Notranje uporabniško ime je uporabljeno za določanje uporabnika in je privzeto ime uporabnikove domače mape. Hkrati je tudi del oddaljenega naslova URL, na primer za storitve *DAV. S to nastavitvijo je prepisan privzet način delovanja. Pri različicah ownCloud, nižjih od 5.0, je podoben učinek mogoče doseči z vpisom prikaznega imena oziroma z neizpolnjenim (praznim) poljem te vrednosti. Spremembe bodo uveljavljene le za nove preslikane (dodane) uporabnike LDAP." -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" -msgstr "Atribut Interno uporabniško ime" +msgstr "Programski atribut uporabniškega imena:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "Prezri zaznavo UUID" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -366,17 +482,21 @@ msgid "" "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 "" +msgstr "Privzeto je atribut UUID samodejno zaznan. Uporabljen je za določevanje uporabnikov LDAP in skupin. Notranje uporabniško ime je določeno prav na atributu UUID, če ni določeno drugače. To nastavitev je mogoče prepisati in poslati poljuben atribut. Zagotoviti je treba le, da je ta pridobljen kot enolični podatek za uporabnika ali skupino. Prazno polje določa privzeti način. Spremembe bodo vplivale na novo preslikane (dodane) uporabnike LDAP in skupine." + +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "Atribut UUID za uporabnike:" -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "Atribut UUID" +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "Atribut UUID za skupine:" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" -msgstr "Preslikava uporabniško ime - LDAP-uporabnik" +msgstr "Uporabniška preslikava uporabniškega imena na LDAP" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -388,20 +508,12 @@ msgid "" " 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 "" +msgstr "Uporabniška imena so uporabljena za shranjevanje in dodeljevanje (meta) podatkov. Za natančno določanje in prepoznavanje uporabnikov je uporabljen sistem notranjega uporabniškega imena vsakega uporabnika LDAP. Ta možnost zahteva preslikavo uporabniškega imena v uporabnika LDAP in preslikano na njegov UUID. Sistem predpomni enolična imena za zmanjšanje odvisnosti LDAP, vendar pa ta podatek ni uporabljen za določevanje uporabnika. Če se enolično ime spremeni, se spremeni notranje uporabniško ime. Čiščenje preslikav pušča ostanke podatkov in vpliva na vse nastavitve LDAP! V delovnem okolju zato spreminjanje preslikav ni priporočljivo, možnost pa je na voljo za preizkušanje." -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" -msgstr "Izbriši preslikavo Uporabniškega imena in LDAP-uporabnika" +msgstr "Izbriši preslikavo uporabniškega imena na LDAP" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" -msgstr "Izbriši preslikavo Skupine in LDAP-skupine" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Preizkusne nastavitve" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Pomoč" +msgstr "Izbriši preslikavo skupine na LDAP" diff --git a/l10n/sl/user_webdavauth.po b/l10n/sl/user_webdavauth.po index 1906a62c581315601c62bd6f2a9e6c57d89e8bf8..51a7527747ff15d2ee53640800dafcc9f2fbf01d 100644 --- a/l10n/sl/user_webdavauth.po +++ b/l10n/sl/user_webdavauth.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-25 01:55-0500\n" +"PO-Revision-Date: 2013-12-24 22:37+0000\n" +"Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,11 +26,11 @@ msgstr "Overitev WebDAV" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Naslov:" #: 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 "" +msgstr "Uporabniška poverila bodo poslana na naveden naslov. Vstavek preveri odziv in kodi stanja 401 in 403 obravnava kot neveljavna poverila, vse ostale odzive pa kot veljavna." diff --git a/l10n/sq/core.po b/l10n/sq/core.po index c2395b2d0be052ca57a50b42b1c193fbb407dcc2..428cc6415b745e633db46a5a21b58f483eae2193 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,14 +19,15 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s ndau »%s« me ju" -#: ajax/share.php:227 -msgid "group" -msgstr "grupi" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -53,45 +54,6 @@ msgstr "Memorja e skedarëve u azhornua" msgid "... %d%% done ..." msgstr "... %d%% u krye ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Mungon tipi i kategorisë." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Asnjë kategori për të shtuar?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Kjo kategori tashmë ekziston: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Mungon tipi i objektit." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "Mungon ID-ja e %s." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Veprim i gabuar gjatë shtimit të %s tek të parapëlqyerat." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Nuk selektuar për tu eliminuar asnjë kategori." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Veprim i gabuar gjatë heqjes së %s nga të parapëlqyerat." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -188,59 +150,59 @@ msgstr "Nëntor" msgid "December" msgstr "Dhjetor" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Parametra" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "sekonda më parë" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut më parë" msgstr[1] "%n minuta më parë" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n orë më parë" msgstr[1] "%n orë më parë" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "sot" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "dje" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ditë më parë" msgstr[1] "%n ditë më parë" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "muajin e shkuar" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n muaj më parë" msgstr[1] "%n muaj më parë" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "muaj më parë" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "vitin e shkuar" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "vite më parë" @@ -308,155 +270,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Nuk është specifikuar tipi i objektit." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Veprim i gabuar" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Nuk është specifikuar emri i app-it." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Skedari i nevojshëm {file} nuk është i instaluar!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Ndarë" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Nda" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Veprim i gabuar" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Veprim i gabuar gjatë ndarjes" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Veprim i gabuar gjatë heqjes së ndarjes" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Veprim i gabuar gjatë ndryshimit të lejeve" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Ndarë me ju dhe me grupin {group} nga {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Ndarë me ju nga {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Nda me" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "Nda me lidhje" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Mbro me kod" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Kodi" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Lejo Ngarkimin Publik" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Dërgo email me lidhjen" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Dërgo" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Cakto datën e përfundimit" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Data e përfundimit" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Nda me email:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Nuk u gjet asnjë person" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "grupi" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Rindarja nuk lejohet" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Ndarë në {item} me {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Hiq ndarjen" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "mund të ndryshosh" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "kontrollimi i hyrjeve" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "krijo" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "azhurno" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "elimino" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "nda" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Mbrojtur me kod" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Veprim i gabuar gjatë heqjes së datës së përfundimit" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Veprim i gabuar gjatë caktimit të datës së përfundimit" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Duke dërguar..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "Email-i u dërgua" +#: js/share.js:769 +msgid "Warning" +msgstr "" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Nuk është specifikuar tipi i objektit." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Elimino" + +#: js/tags.js:31 +msgid "Add" +msgstr "Shto" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Lidhja për rivendosjen e kodit tuaj u dërgua tek email-i juaj.
    Nëqoftëse nuk e merrni brenda një kohe të arsyeshme, kontrolloni dosjet e postës së padëshirueshme (spam).
    Nëqoftëse nuk është as aty, pyesni administratorin tuaj lokal." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Kërkesa dështoi!
    A u siguruat që email-i/përdoruesi juaj ishte i saktë?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Do t'iu vijë një email që përmban një lidhje për ta rivendosur kodin." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Përdoruesi" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -505,13 +495,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Skedarët tuaj janë të kodifikuar. Nëqoftëse nuk keni aktivizuar çelësin e restaurimit, të dhënat tuaja nuk do të jenë të arritshme pasi të keni rivendosur kodin. Nëqoftëse nuk jeni i sigurt, ju lutemi kontaktoni administratorin tuaj para se të vazhdoni. Jeni i sigurt që dëshironi të vazhdoni?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Po, dua ta rivendos kodin tani" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Bëj kërkesë për rivendosjen" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -537,7 +527,7 @@ msgstr "Personale" msgid "Users" msgstr "Përdoruesit" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "App" @@ -549,6 +539,34 @@ msgstr "Admin" msgid "Help" msgstr "Ndihmë" +#: 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 "Ndalohet hyrja" @@ -565,108 +583,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Tungjatjeta,\n\nju njoftojmë që %s ka ndarë %s me ju.\nShikojeni: %s\n\nPëshëndetje!" +msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Ndrysho kategoritë" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Shto" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Paralajmërim sigurie" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Versioni juaj i PHP-së është i cënueshëm nga sulmi NULL Byte (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Ju lutem azhurnoni instalimin tuaj të PHP-së që të përdorni %s -in në mënyrë të sigurt." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Nuk disponohet asnjë krijues numrash të rastësishëm, ju lutem aktivizoni shtesën PHP OpenSSL." -#: templates/installation.php:33 +#: 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 "Pa një krijues numrash të rastësishëm të sigurt një person i huaj mund të jetë në gjendje të parashikojë kodin dhe të marri llogarinë tuaj." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Dosja dhe skedarët e të dhënave tuaja mbase janë të arritshme nga interneti sepse skedari .htaccess nuk po punon." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "Për më shumë informacion mbi konfigurimin e duhur të serverit tuaj, ju lutem shikoni dokumentacionin." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Krijo një llogari administruesi" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Të përparuara" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Emri i dosjes" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Konfiguro database-in" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "do të përdoret" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Përdoruesi i database-it" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Kodi i database-it" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Emri i database-it" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Tablespace-i i database-it" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Pozicioni (host) i database-it" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Mbaro setup-in" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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 "%s është i disponueshëm. Merrni më shumë informacione mbi azhurnimin." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Dalje" @@ -684,19 +713,27 @@ msgstr "Nqse nuk keni ndryshuar kodin kohët e fundit, llogaria juaj mund të je msgid "Please change your password to secure your account again." msgstr "Ju lutemi, ndryshoni kodin për ta siguruar përsëri llogarinë tuaj." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Ke humbur kodin?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "kujto" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Hyrje" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Hyrje alternative" @@ -704,10 +741,37 @@ msgstr "Hyrje alternative" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Tungjatjeta,

    duam t'ju njoftojmë që %s ka ndarë »%s« me ju.
    Shikojeni!

    Përshëndetje!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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 "Po azhurnoj ownCloud-in me versionin %s. Mund të zgjasi pak." + +#: 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/sq/files.po b/l10n/sq/files.po index a5b9a669e2950e3b88cf92508e47d9a15938f916..782e93a6b977b9ce2f8ee12941c2eb7d7bc67ae0 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -21,324 +21,394 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "%s nuk u spostua - Aty ekziston një skedar me të njëjtin emër" +msgstr "E pa mundur zhvendosja e %s - ekziston nje skedar me te njetin emer" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "%s nuk u spostua" +msgstr "Nuk mund të zhvendoset %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Emri i skedarit nuk mund të jetë bosh." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." -msgstr "Nuk është i mundur caktimi i dosjes së ngarkimit." +msgstr "E pa mundur të vendoset dosja e ngarkimit" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" -msgstr "Përmbajtje e pavlefshme" +msgstr "Shenjë e gabuar" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" -msgstr "Nuk u ngarkua asnjë skedar. Veprim i gabuar i panjohur" +msgstr "Asnjë skedar nuk u dërgua. Gabim i pa njohur" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" -msgstr "Nuk pati veprime të gabuara, skedari u ngarkua me sukses" +msgstr "Skedari u ngarkua me sukses" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Skedari i ngarkuar tejkalon udhëzimin upload_max_filesize tek php.ini:" +msgstr "Skedari i ngarkuar tejkalon limitin hapsirës së lejuar në php.ini" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Skedari i ngarkuar tejkalon udhëzimin MAX_FILE_SIZE të specifikuar në formularin HTML" +msgstr "Skedari i ngarkuar tejlakon vlerën MAX_FILE_SIZE të përcaktuar në formën HTML" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" -msgstr "Skedari i ngarkuar u ngarkua vetëm pjesërisht" +msgstr "Skedari është ngakruar vetëm pjesërisht" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" -msgstr "Nuk u ngarkua asnjë skedar" +msgstr "Asnjë skedar nuk është ngarkuar" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" -msgstr "Një dosje e përkohshme nuk u gjet" +msgstr "Mungon dosja e përkohshme" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" -msgstr "Ruajtja në disk dështoi" +msgstr "Dështoi shkrimi në disk" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" -msgstr "Nuk ka mbetur hapësirë memorizimi e mjaftueshme" +msgstr "Hapsira e arkivimit e pamjaftueshme" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." -msgstr "Dosje e pavlefshme." +msgstr "Dosje e pavlefshme" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" -msgstr "Skedarët" +msgstr "Skedarë" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" -msgstr "Nuk ka hapësirë memorizimi e mjaftueshme" +msgstr "Nuk ka hapsirë të nevojshme" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." -msgstr "Ngarkimi u anulua." +msgstr "Ngarkimi u anullua" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Ngarkimi i skedarit është në vazhdim. Nqse ndërroni faqen tani ngarkimi do të anulohet." +msgstr "Skedari duke u ngarkuar. Largimi nga faqja do të anullojë ngarkimin" -#: js/file-upload.js:520 -msgid "URL cannot be empty." -msgstr "URL-i nuk mund të jetë bosh." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Emri i dosjes është i pavlefshëm. Përdorimi i \"Shared\" është i rezervuar nga Owncloud-i" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Veprim i gabuar" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} është ekzistues " -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" -msgstr "Nda" +msgstr "Ndaj" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" -msgstr "Elimino përfundimisht" +msgstr "Fshi përfundimisht" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" -msgstr "Riemërto" +msgstr "Riemëro" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" -msgstr "Pezulluar" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} ekziston" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "zëvëndëso" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "sugjero një emër" +msgstr "Në vijim" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "anulo" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" -msgstr "U zëvëndësua {new_name} me {old_name}" +msgstr "u zëvendësua {new_name} me {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" -msgstr "anulo" +msgstr "anullo" + +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dosje" msgstr[1] "%n dosje" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n skedar" msgstr[1] "%n skedarë" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} dhe {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Po ngarkoj %n skedar" msgstr[1] "Po ngarkoj %n skedarë" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." -msgstr "'.' është emër i pavlefshëm." - -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Emri i skedarit nuk mund të jetë bosh." +msgstr "'.' nuk është skedar i vlefshem." -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Emër i pavlefshëm, '\\', '/', '<', '>', ':', '\"', '|', '?' dhe '*' nuk lejohen." +msgstr "Emër jo i vlefshëm, '\\', '/', '<', '>', ':', '\"', '|', '?' dhe '*' nuk lejohen." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Hapësira juaj e memorizimit është plot, nuk mund të ngarkoni apo sinkronizoni më skedarët." +msgstr "Hapsira juaj e arkivimit është plot, skedarët nuk mund të përditësohen ose sinkronizohen!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Hapësira juaj e memorizimit është gati plot ({usedSpacePercent}%)" +msgstr "Hapsira juaj e arkivimit është pothuajse në fund ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Kodifikimi u çaktivizua por skedarët tuaj vazhdojnë të jenë të kodifikuar. Ju lutem shkoni tek parametrat personale për të dekodifikuar skedarët tuaj." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Shkarkimi juaj po përgatitet. Mund të duhet pak kohë nqse skedarët janë të mëdhenj." +msgstr "Shkarkimi juaj është duke u përgatitur. Kjo mund të kërkojë kohë nëse skedarët janë të mëdhenj." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Gabim" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Emri" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" -msgstr "Dimensioni" +msgstr "Madhësia" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" -msgstr "Modifikuar" +msgstr "Ndryshuar" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" -#: lib/app.php:73 +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "Nuk është i mundur riemërtimi i %s" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Ngarko" #: templates/admin.php:5 msgid "File handling" -msgstr "Trajtimi i skedarit" +msgstr "Trajtimi i Skedarëve" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Dimensioni maksimal i ngarkimit" +msgstr "Madhësia maksimale e nagarkimit" #: templates/admin.php:10 msgid "max. possible: " -msgstr "maks. i mundur:" +msgstr "maks i mundshëm" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Duhet për shkarkimin e dosjeve dhe të skedarëve" +msgstr "Nevojitej shkarkim i shumë skedarëve dhe dosjeve" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Aktivizo shkarkimin e ZIP-eve" +msgstr "Mundëso skarkimin e ZIP" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 është i pakufizuar" +msgstr "o është pa limit" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Dimensioni maksimal i ngarkimit të skedarëve ZIP" +msgstr "Maksimumi hyrës i skedarëve ZIP" #: templates/admin.php:26 msgid "Save" msgstr "Ruaj" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" -msgstr "I ri" +msgstr "E re" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" -msgstr "Skedar teksti" +msgstr "Skedar tekst" + +#: templates/index.php:10 +msgid "New folder" +msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 msgid "Folder" msgstr "Dosje" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Nga lidhja" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" -msgstr "Skedarë të eliminuar" +msgstr "Skedarë të fshirë " -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" -msgstr "Anulo ngarkimin" +msgstr "Anullo ngarkimin" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Nuk keni të drejta për të shkruar këtu." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" -msgstr "Këtu nuk ka asgjë. Ngarkoni diçka!" +msgstr "Këtu nuk ka asgje. Ngarko dicka" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Shkarko" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Hiq ndarjen" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" -msgstr "Elimino" +msgstr "Fshi" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" -msgstr "Ngarkimi është shumë i madh" +msgstr "Ngarkimi shumë i madh" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Skedarët që doni të ngarkoni tejkalojnë dimensionet maksimale për ngarkimet në këtë server." +msgstr "Skedarët që po mundoheni të ngarkoni e tejkalojnë madhësinë maksimale të lejuar nga serveri." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." -msgstr "Skedarët po analizohen, ju lutemi pritni." +msgstr "Skanerizimi i skedarit në proces. Ju lutem prisni." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" -msgstr "Analizimi aktual" +msgstr "Skanimi aktual" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Po përmirësoj memorjen e filesystem-it..." +msgstr "Përditësimi i cache-se së sistemit në procesim..." diff --git a/l10n/sq/files_encryption.po b/l10n/sq/files_encryption.po index ccb7cbaa9260d885c49b5bab8daca5668ad14f1d..ef46b2cd31be47e67c35250842fc31c4d6525c2f 100644 --- a/l10n/sq/files_encryption.po +++ b/l10n/sq/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:44 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 -msgid "Saving..." +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" +#: js/settings-admin.js:13 +msgid "Saving..." +msgstr "Duke ruajtur..." -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index c8c772a9bdc7a94c0e1806d1eca0ea840397de39..62b645b85d66957648e3dec79867f0adfa68010b 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -95,7 +95,7 @@ msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "" +msgstr "Grupet" #: templates/settings.php:100 msgid "Users" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index e1a91f7789c8f1bc0de8c9364305cc85f416618a..cd5a5fbb8a5a3625a07eecb535c3241e589c8c5e 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Odeen \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Kodi është i gabuar. Provojeni përsëri." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Kodi" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Parashtro" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Ju kërkojmë ndjesë, kjo lidhje duket sikur nuk punon më." @@ -54,28 +54,32 @@ msgstr "ndarja është çaktivizuar" msgid "For more info, please ask the person who sent this link." msgstr "Për më shumë informacione, ju lutem pyesni personin që iu dërgoi këtë lidhje." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ndau me ju dosjen %s" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s ndau me ju skedarin %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Shkarko" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Ngarko" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Anulo ngarkimin" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Shikimi paraprak nuk është i mundur për" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index a359590d5750bf0b4a934db21d775b57bfeef0a3..64b4a4e742b921fefb8def7c0cda5382645ae18b 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-10 10:41-0400\n" -"PO-Revision-Date: 2013-09-09 23:00+0000\n" -"Last-Translator: Odeen \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,55 +28,31 @@ msgstr "Nuk munda ta eliminoj përfundimisht %s" msgid "Couldn't restore %s" msgstr "Nuk munda ta rivendos %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "ekzekuto operacionin e rivendosjes" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Veprim i gabuar" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "eliminoje përfundimisht skedarin" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "Elimino përfundimisht" - -#: js/trash.js:184 templates/index.php:17 -msgid "Name" -msgstr "Emri" - -#: js/trash.js:185 templates/index.php:27 -msgid "Deleted" -msgstr "Eliminuar" - -#: js/trash.js:193 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n dosje" -msgstr[1] "%n dosje" - -#: js/trash.js:199 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n skedar" -msgstr[1] "%n skedarë" - -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "rivendosur" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Këtu nuk ka asgjë. Koshi juaj është bosh!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Emri" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Rivendos" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Eliminuar" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Elimino" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index e10fb8cdfd900bf6d47d36ace9a330d3a99f8678..70e30925520b4860f7d62c16aff5b1e362e3d32c 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,317 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Ndihmë" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Personale" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Parametra" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Përdoruesit" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "shërbime web nën kontrollin tënd" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Shkarimi i skedarëve ZIP është i çaktivizuar." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Skedarët duhet të shkarkohen një nga një." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Kthehu tek skedarët" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Skedarët e selektuar janë shumë të mëdhenj për të krijuar një skedar ZIP." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Programi nuk është i aktivizuar." -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Veprim i gabuar gjatë vërtetimit të identitetit" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Përmbajtja ka skaduar. Ju lutemi ringarkoni faqen." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Skedarët" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Tekst" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Foto" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "% shkruani përdoruesin e database-it." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s shkruani emrin e database-it." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s nuk mund të përdorni pikat tek emri i database-it" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Përdoruesi dhe/apo kodi i MS SQL i pavlefshëm: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Duhet të përdorni një llogari ekzistuese ose llogarinë e administratorit." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Përdoruesi dhe/apo kodi i MySQL-it i pavlefshëm." -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "Veprim i gabuar i DB-it: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Komanda e gabuar ishte: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Përdoruesi MySQL '%s'@'localhost' ekziston." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Eliminoni këtë përdorues nga MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Përdoruesi MySQL '%s'@'%%' ekziston" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Eliminoni këtë përdorues nga MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Përdoruesi dhe/apo kodi i Oracle-it i pavlefshëm" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Komanda e gabuar ishte: \"%s\", përdoruesi: %s, kodi: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "Përdoruesi dhe/apo kodi i PostgreSQL i pavlefshëm" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Cakto emrin e administratorit." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Cakto kodin e administratorit." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Ju lutemi kontrolloni mirë shoqëruesin e instalimit." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Kategoria \"%s\" nuk u gjet" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "sekonda më parë" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minuta më parë" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n orë më parë" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "sot" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "dje" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n ditë më parë" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "muajin e shkuar" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n muaj më parë" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "vitin e shkuar" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "vite më parë" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Kategoria \"%s\" nuk u gjet" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 033a815c20c5dec990267cf799995cf3f891b633..3eb24bfb8c1e25d865a679b972fcfed8500dd4c7 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+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,48 +19,48 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "" +msgstr "E pamundur të shkarkohet lista nga App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 changepassword/controller.php:55 msgid "Authentication error" -msgstr "Veprim i gabuar gjatë vërtetimit të identitetit" +msgstr "Gabim autentifikimi" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "" +msgstr "Grupi ekziston" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "" +msgstr "E pamundur të shtohet grupi" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "" +msgstr "Email u ruajt" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "" +msgstr "Email jo i vlefshëm" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "" +msgstr "E pamundur të fshihet grupi" #: ajax/removeuser.php:25 msgid "Unable to delete user" -msgstr "" +msgstr "E pamundur të fshihet përdoruesi" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "" +msgstr "Gjuha u ndryshua" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" @@ -68,21 +68,21 @@ msgstr "Kërkesë e pavlefshme" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "" +msgstr "Administratorët nuk mund të heqin vehten prej grupit admin" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "E pamundur t'i shtohet përdoruesi grupit %s" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "E pamundur të hiqet përdoruesi nga grupi %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "E pamundur të përditësohet app." #: changepassword/controller.php:20 msgid "Wrong password" @@ -115,110 +115,141 @@ msgstr "" #: js/apps.js:43 msgid "Update to {appversion}" -msgstr "" +msgstr "Përditësim për {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" -msgstr "" +msgstr "Çaktivizo" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" -msgstr "" +msgstr "Aktivizo" #: js/apps.js:71 msgid "Please wait...." -msgstr "" +msgstr "Ju lutem prisni..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." -msgstr "" +msgstr "Duke përditësuar..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" -msgstr "" +msgstr "Gabim gjatë përditësimit të app" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" -msgstr "Veprim i gabuar" +msgstr "Gabim" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" -msgstr "Azhurno" +msgstr "Përditësim" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" -msgstr "" +msgstr "I përditësuar" #: js/personal.js:220 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/personal.js:287 msgid "Saving..." -msgstr "" +msgstr "Duke ruajtur..." #: js/users.js:47 msgid "deleted" -msgstr "" +msgstr "fshirë" #: js/users.js:47 msgid "undo" -msgstr "anulo" +msgstr "anullo veprimin" #: js/users.js:79 msgid "Unable to remove user" -msgstr "" +msgstr "E pamundur të fshiet përdoruesi" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" -msgstr "" +msgstr "Grupet" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" -msgstr "" +msgstr "Grupi Admin" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" -msgstr "Elimino" +msgstr "Fshi" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" -msgstr "" +msgstr "shto grup" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" -msgstr "" +msgstr "Duhet të jepni një emër të vlefshëm përdoruesi" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" -msgstr "" +msgstr "Gabim gjatë krijimit të përdoruesit" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" +msgstr "Duhet të jepni një fjalëkalim te vlefshëm" + +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" #: personal.php:45 personal.php:46 msgid "__language_name__" +msgstr "Shqip" + +#: 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:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" -msgstr "Paralajmërim sigurie" +msgstr "Njoftim për sigurinë" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" -msgstr "" +msgstr "Lajmërim konfigurimi" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar." +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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "Mungon moduli 'fileinfo'" -#: templates/admin.php:47 +#: templates/admin.php:68 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:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:58 +#: templates/admin.php:93 msgid "Locale not working" +msgstr "Locale nuk është funksional" + +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" -msgstr "" +msgstr "Lidhja me internetin nuk është funksionale" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" -msgstr "" +msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Kryeni vetëm një veprim me secilën prej faqeve të ngarkuara" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" -msgstr "" +msgstr "Ndarje" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" -msgstr "" +msgstr "Aktivizo API për ndarjet" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Lejoni aplikacionet të përdorin share API" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" -msgstr "" +msgstr "Lejo lidhjet" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Lejoni përdoruesit të ndajnë elementët publikisht nëpermjet lidhjeve" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" -msgstr "" +msgstr "Lejo ngarkimin publik" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "Lejo përdoruesit të mundësojnë të tjerët që të ngarkojnë materiale në dosjen e tyre publike" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" -msgstr "" +msgstr "Lejo ri-ndarjen" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Lejoni përdoruesit të ndjanë dhe ata elementë të ndarë më parë ngë të tjerë" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Lejo përdoruesit të ndajnë me cilindo" -#: templates/admin.php:163 +#: templates/admin.php:206 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:213 +msgid "Allow mail notification" msgstr "" -#: templates/admin.php:170 -msgid "Security" +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:221 +msgid "Security" +msgstr "Siguria" + +#: templates/admin.php:234 msgid "Enforce HTTPS" -msgstr "" +msgstr "Detyro HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" -msgstr "" +msgstr "Historik aktiviteti" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" -msgstr "" +msgstr "Niveli i Historikut" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" -msgstr "" +msgstr "Më tepër" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" -msgstr "" +msgstr "Versioni" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the AGPL." -msgstr "" +msgstr "Zhvilluar nga Komuniteti OwnCloud, gjithashtu source code është licensuar me anë të AGPL." #: templates/apps.php:13 msgid "Add your App" -msgstr "" +msgstr "Shtoni apliakcionin tuaj" #: templates/apps.php:28 msgid "More Apps" -msgstr "" +msgstr "Apliakcione të tjera" #: templates/apps.php:33 msgid "Select an App" -msgstr "" +msgstr "Zgjidhni një Aplikacion" #: templates/apps.php:39 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Shihni faqen e aplikacionit tek apps.owncloud.com" #: templates/apps.php:41 msgid "-licensed by " -msgstr "" +msgstr "-licensuar nga " #: templates/help.php:4 msgid "User Documentation" -msgstr "" +msgstr "Dokumentacion përdoruesi" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "" +msgstr "Dokumentacion administratori" #: templates/help.php:9 msgid "Online Documentation" -msgstr "" +msgstr "Dokumentacion online" #: templates/help.php:11 msgid "Forum" -msgstr "" +msgstr "Forumi" #: templates/help.php:14 msgid "Bugtracker" -msgstr "" +msgstr "Bugtracker - ndjekja e problemeve" #: templates/help.php:17 msgid "Commercial Support" -msgstr "" +msgstr "Suport komercial" #: templates/personal.php:8 msgid "Get the apps to sync your files" -msgstr "Merrni app-et për sinkronizimin e skedarëve tuaj" +msgstr "Bëni që aplikacionet të sinkronizojnë skedarët tuaj" #: templates/personal.php:19 msgid "Show First Run Wizard again" -msgstr "" +msgstr "Rishfaq përsëri fazat për hapjen e herës së parë" #: templates/personal.php:27 #, php-format msgid "You have used %s of the available %s" -msgstr "" +msgstr "Ju keni përdorur %s nga %s të mundshme " #: templates/personal.php:39 templates/users.php:23 templates/users.php:89 msgid "Password" -msgstr "Kodi" +msgstr "Fjalëkalim" #: templates/personal.php:40 msgid "Your password was changed" -msgstr "" +msgstr "fjalëkalimi juaj u ndryshua" #: templates/personal.php:41 msgid "Unable to change your password" -msgstr "" +msgstr "Nuk është e mundur të ndryshohet fjalëkalimi" #: templates/personal.php:42 msgid "Current password" -msgstr "" +msgstr "Fjalëkalimi aktual" #: templates/personal.php:44 msgid "New password" -msgstr "Kodi i ri" +msgstr "Fjalëkalimi i ri" #: templates/personal.php:46 msgid "Change password" -msgstr "" +msgstr "Ndrysho fjalëkalimin" #: templates/personal.php:58 templates/users.php:88 -msgid "Display Name" +msgid "Full Name" msgstr "" #: templates/personal.php:73 msgid "Email" -msgstr "Email-i" +msgstr "Email" #: templates/personal.php:75 msgid "Your email address" -msgstr "" +msgstr "Adresa juaj email" #: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" -msgstr "" +msgstr "Jepni një adresë email për të aktivizuar rigjetjen e fjalëkalimit" #: templates/personal.php:86 msgid "Profile picture" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Upload new" msgstr "" -#: templates/personal.php:92 +#: templates/personal.php:93 msgid "Select new from Files" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "Remove image" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:95 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" #: templates/personal.php:97 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:101 msgid "Abort" msgstr "" -#: templates/personal.php:98 +#: templates/personal.php:102 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:106 templates/personal.php:107 +#: templates/personal.php:110 templates/personal.php:111 msgid "Language" -msgstr "" +msgstr "Gjuha" -#: templates/personal.php:119 +#: templates/personal.php:130 msgid "Help translate" -msgstr "" +msgstr "Ndihmoni në përkthim" -#: templates/personal.php:125 +#: templates/personal.php:137 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:139 #, php-format msgid "" -"Use this address to access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" #: templates/users.php:21 msgid "Login Name" -msgstr "" +msgstr "Emri i Përdoruesit" #: templates/users.php:30 msgid "Create" -msgstr "" +msgstr "Krijo" #: templates/users.php:36 msgid "Admin Recovery Password" -msgstr "" +msgstr "Rigjetja e fjalëkalimit të Admin" #: templates/users.php:37 templates/users.php:38 msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Jepni fjalëkalimin e rigjetjes për të rigjetur skedarët e përdoruesit gjatë ndryshimit të fjalëkalimit" #: templates/users.php:42 msgid "Default Storage" +msgstr "Vendruajtje e paracaktuar/Default Storage" + +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" -msgstr "" +msgstr "E pakufizuar" #: templates/users.php:66 templates/users.php:163 msgid "Other" -msgstr "Të tjera" +msgstr "Tjetër" #: templates/users.php:87 msgid "Username" @@ -586,16 +653,16 @@ msgstr "Përdoruesi" #: templates/users.php:94 msgid "Storage" -msgstr "" +msgstr "Vendruajtja/Storage" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 msgid "set new password" -msgstr "" +msgstr "vendos fjalëkalim të ri" #: templates/users.php:143 msgid "Default" -msgstr "" +msgstr "Paracaktuar" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 89615eb99c3f072bfdf03dcf65050b7a5c1515a2..89b59666e1910d31ba852810d4fbd5403096679a 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,320 +19,431 @@ msgstr "" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." -msgstr "" +msgstr "dështoi së pastruari planifikimet" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "dështoi fshirjen e konfigurimit të serverit" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "Konfigurimi është i vlefshem dhe lidhja mund të kryhet" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "" +msgstr "Konfigurimi është i saktë por lidhja dështoi. Kontrolloni konfigurimete serverit dhe kredencialet." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 -msgid "Deletion failed" +#: ajax/wizard.php:32 +msgid "No action specified" msgstr "" -#: js/settings.js:82 -msgid "Take over settings from recent server configuration?" +#: 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 "Fshirja dështoi" + #: js/settings.js:83 +msgid "Take over settings from recent server configuration?" +msgstr "Doni të rivini konfigurmet më të fundit të serverit?" + +#: js/settings.js:84 msgid "Keep settings?" -msgstr "" +msgstr "Doni të mbani konfigurimet?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" -msgstr "" +msgstr "E pamundur të shtohen konfigurimet në server" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" -msgstr "" +msgstr "planifikimi u fshi" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" -msgstr "" +msgstr "Sukses" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" -msgstr "Veprim i gabuar" +msgstr "Gabim" -#: js/settings.js:141 -msgid "Connection test succeeded" +#: js/settings.js:837 +msgid "Configuration OK" msgstr "" -#: js/settings.js:146 -msgid "Connection test failed" +#: js/settings.js:846 +msgid "Configuration incorrect" msgstr "" -#: js/settings.js:156 -msgid "Do you really want to delete the current Server Configuration?" +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" msgstr "" -#: js/settings.js:157 +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 +msgid "Connection test succeeded" +msgstr "Prova e lidhjes përfundoi me sukses" + +#: js/settings.js:912 +msgid "Connection test failed" +msgstr "Prova e lidhjes dështoi" + +#: js/settings.js:921 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "Jeni vërtetë të sigurt të fshini konfigurimet aktuale të serverit?" + +#: js/settings.js:922 msgid "Confirm Deletion" +msgstr "Konfirmoni Fshirjen" + +#: 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:778 lib/wizard.php:790 +msgid "Invalid Host" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:951 +msgid "Could not find the desired feature" msgstr "" -#: templates/settings.php:12 -msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Ruaj" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Provoni konfigurimet" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Ndihmë" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: 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 "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" msgstr "" -#: templates/settings.php:44 -msgid "User DN" +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" msgstr "" -#: templates/settings.php:46 +#: 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 "Shtoni konfigurimet e serverit" + +#: templates/part.wizard-server.php:30 +msgid "Host" +msgstr "Pritësi" + +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "Ju mund të mos vendosni protokollin ,vetëm nëse ju nevojitet SSL. atherë filloni me ldaps://" + +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Porta" + +#: templates/part.wizard-server.php:44 +msgid "User DN" +msgstr "Përdoruesi DN" + +#: 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 "" +msgstr "DN -ja e klientit për përdoruesin që kërkon të lidhet duhet të jetë si psh,uid=agent,dc=example,dc=com. Për lidhjet anonime lini boshe hapsirat e DN dhe fjalëkalim " -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" -msgstr "Kodi" +msgstr "fjalëkalim" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "Për tu lidhur në mënyre anonime, lini bosh hapsirat e DN dhe fjalëkalim" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Një baze DN për rrjesht" + +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Ju mund të specifikoni Bazen DN për përdorues dhe grupe në butonin 'Të Përparuara'" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" msgstr "" -#: templates/settings.php:54 +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Njoftim: moduli PHP LDAP nuk është instaluar, motori nuk do të funksionojë.Kontaktoni me administratorin e sistemit." + +#: templates/settings.php:20 msgid "Connection Settings" -msgstr "" +msgstr "Të dhënat e lidhjes" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" -msgstr "" +msgstr "Konfigurimi Aktiv" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "Nëse nuk është i zgjedhur, ky konfigurim do të anashkalohet." -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" -msgstr "" +msgstr "Pritësi rezervë (Replika)" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "Jepni një pritës rezervë. Duhet të jetë replikimi i serverit AD/LDAP kryesor." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" -msgstr "" +msgstr "Porta rezervë (Replika)" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" -msgstr "" +msgstr "Ç'aktivizoni serverin kryesor" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr " Server LDAP i pavëmëndshëm ndaj gërmëzimit të madh apo jo (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "Ç'aktivizoni kontrollin e certifikatës SSL." -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Cache Time-To-Live" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "në sekonda Ndryshimi boshatis 'cache'-n." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" -msgstr "" +msgstr "Konfigurimet e Dosjeve" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" -msgstr "" +msgstr "Hapsira e Emrit të Përdoruesit" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" -msgstr "" +msgstr "Struktura bazë e përdoruesit" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" -msgstr "" +msgstr "Një përdorues baze DN për rrjesht" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" -msgstr "" +msgstr "Atributet e kërkimit të përdoruesëve" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" -msgstr "" +msgstr "Opsionale; një atribut për rrjesht" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" -msgstr "" +msgstr "Hapsira e Emrit të Grupit" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" -msgstr "" +msgstr "Struktura bazë e grupit" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" -msgstr "" +msgstr "Një grup baze DN për rrjesht" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" -msgstr "" +msgstr "Atributet e kërkimit të grupit" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" -msgstr "" +msgstr "Pjestar Grup-Përdorues " -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" -msgstr "" +msgstr "Atribute të veçanta" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" -msgstr "" +msgstr "Hapsira e Kuotës" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" -msgstr "" +msgstr "Kuota e paracaktuar" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" -msgstr "" +msgstr "në byte" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" -msgstr "" +msgstr "Hapsira e Postës Elektronike" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Rregulli i emërimit të dosjes së përdoruesit" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "Lëreni bosh për emrin e përdoruesit (I Paracaktuar). Ose, përcaktoni një atribut LDAP/AD." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" -msgstr "" +msgstr "Emër i brëndshëm i përdoruesit" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" -msgstr "" +msgstr "Atributet e emrit të përdoruesit të brëndshëm" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" -msgstr "" +msgstr "Mbivendosni gjetjen e UUID" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:104 -msgid "Username-LDAP User Mapping" +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:58 +msgid "Username-LDAP User Mapping" +msgstr "Emri përdoruesit-LAPD përcaktues përdoruesi" + +#: templates/settings.php:59 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. " @@ -389,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" -msgstr "" +msgstr "Fshini Emër përdoruesi-LAPD Përcaktues përdoruesi" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" -msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Ndihmë" +msgstr "Fshini Emër Grupi-LADP Përcaktues grupi" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index b0063f1a94260114ea27cefad7d98b6f9763df30..a30a77a7c9f7d2883915f1eae6cb7aa1eba02bf3 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,14 +17,15 @@ 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/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" -msgstr "група" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Врста категорије није унет." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Додати још неку категорију?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Врста објекта није унета." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ИД нису унети." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Грешка приликом додавања %s у омиљене." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Ни једна категорија није означена за брисање." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Грешка приликом уклањања %s из омиљених" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -186,63 +148,63 @@ msgstr "Новембар" msgid "December" msgstr "Децембар" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Поставке" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "пре неколико секунди" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "данас" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "јуче" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "прошлог месеца" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "месеци раније" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "прошле године" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "година раније" @@ -311,155 +273,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Врста објекта није подешена." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Грешка" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Име програма није унето." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Потребна датотека {file} није инсталирана." - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Дели" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Грешка" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Грешка у дељењу" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Грешка код искључења дељења" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Грешка код промене дозвола" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Дељено са вама и са групом {group}. Поделио {owner}." -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Поделио са вама {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Подели са" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "Подели линк" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Заштићено лозинком" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Лозинка" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Пошаљи" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Постави датум истека" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Датум истека" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Подели поштом:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Особе нису пронађене." -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "група" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Поновно дељење није дозвољено" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Подељено унутар {item} са {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Укини дељење" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "може да мења" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "права приступа" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "направи" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "ажурирај" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "обриши" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "подели" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Заштићено лозинком" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Грешка код поништавања датума истека" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Грешка код постављања датума истека" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Шаљем..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "Порука је послата" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Добићете везу за ресетовање лозинке путем е-поште." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Корисничко име" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -508,13 +498,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Захтевај ресетовање" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -540,7 +530,7 @@ msgstr "Лично" msgid "Users" msgstr "Корисници" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Апликације" @@ -552,6 +542,34 @@ msgstr "Администратор" 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 "Забрањен приступ" @@ -568,108 +586,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Измени категорије" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Додај" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Сигурносно упозорење" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Поуздан генератор случајних бројева није доступан, предлажемо да укључите PHP проширење OpenSSL." -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Направи административни налог" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Напредно" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Фацикла података" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Подешавање базе" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "ће бити коришћен" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Корисник базе" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Лозинка базе" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Име базе" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Радни простор базе података" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Домаћин базе" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Заврши подешавање" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Одјава" @@ -687,19 +716,27 @@ msgstr "Ако ускоро не промените лозинку ваш нал msgid "Please change your password to secure your account again." msgstr "Промените лозинку да бисте обезбедили налог." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Изгубили сте лозинку?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "упамти" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Пријава" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -707,10 +744,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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 "Надоградња ownCloud-а на верзију %s, сачекајте тренутак." + +#: 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/sr/files.po b/l10n/sr/files.po index 58518b339beadfd160960c6550a2de45780ee87a..5aee2a258b5d9d8cb5ff3e611052e06e0d556eea 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -27,223 +27,289 @@ msgstr "Не могу да преместим %s – датотека с ови msgid "Could not move %s" msgstr "Не могу да преместим %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Име датотеке не може бити празно." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Ниједна датотека није отпремљена услед непознате грешке" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Није дошло до грешке. Датотека је успешно отпремљена." -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Отпремљена датотека прелази смерницу upload_max_filesize у датотеци php.ini:" -#: ajax/upload.php:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Датотека је делимично отпремљена" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Датотека није отпремљена" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Недостаје привремена фасцикла" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Не могу да пишем на диск" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Нема довољно простора" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "неисправна фасцикла." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Датотеке" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Нема довољно простора" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Отпремање је прекинуто." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање." -#: js/file-upload.js:520 -msgid "URL cannot be empty." -msgstr "Адреса не може бити празна." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Грешка" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} већ постоји" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" -#: js/fileactions.js:119 +#: js/fileactions.js:125 msgid "Share" msgstr "Дели" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Обриши за стално" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Преименуј" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "На чекању" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} већ постоји" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "замени" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "предложи назив" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "откажи" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "замењено {new_name} са {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "опозови" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "Датотека „.“ је неисправног имена." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Име датотеке не може бити празно." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ваше складиште је пуно. Датотеке више не могу бити ажуриране ни синхронизоване." -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ваше складиште је скоро па пуно ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Припремам преузимање. Ово може да потраје ако су датотеке велике." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Грешка" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Име" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Величина" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Измењено" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Отпреми" @@ -279,65 +345,69 @@ msgstr "Највећа величина ZIP датотека" msgid "Save" msgstr "Сачувај" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Нова" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "текстуална датотека" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "фасцикла" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Са везе" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Обрисане датотеке" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Прекини отпремање" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Овде немате дозволу за писање." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Овде нема ничег. Отпремите нешто!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Преузми" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Укини дељење" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Обриши" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Датотека је превелика" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Датотеке које желите да отпремите прелазе ограничење у величини." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Скенирам датотеке…" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Тренутно скенирање" diff --git a/l10n/sr/files_encryption.po b/l10n/sr/files_encryption.po index 04b3da34ccd8c0b57b6f7c12fb8370512c401584..4eb2ca4e3da942efc9f6bef92784048990d78c79 100644 --- a/l10n/sr/files_encryption.po +++ b/l10n/sr/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:41 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Чување у току..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Шифровање" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index 3ae0a9272fc3ebeb8516eae27bf367d13ca8df91..97c2ec3dbc1e78d579594f536f1b0a46dd7ce90e 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ 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" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index db4a7eeb22e5ee6432a7b4f4f8b96b5fc3fc9fcd..cc5d524fb09ba7ffdba78734327f216afd8f2e6a 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "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" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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/authenticate.php:9 -msgid "Submit" -msgstr "Пошаљи" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Преузми" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Отпреми" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Прекини отпремање" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 9fed460b7d4ccd1b78cb3b07cf3aea08cc1118de..e0b12d92e3e1205277ee3f1d6f882f30390f1cd9 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -27,57 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "врати у претходно стање" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Грешка" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Обриши за стално" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Име" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "Обрисано" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Овде нема ништа. Корпа за отпатке је празна." -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Име" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Врати" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Обрисано" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Обриши" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 60393d5c2a634f53eeff0e8813fe6f429b374e87..1e2a625e31eda87815978eafe62e7352d59a74cd 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,322 +17,321 @@ 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" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Помоћ" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Лично" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Поставке" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Корисници" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Администратор" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "веб сервиси под контролом" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Преузимање ZIP-а је искључено." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Датотеке морате преузимати једну по једну." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Назад на датотеке" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Изабране датотеке су превелике да бисте направили ZIP датотеку." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Апликација није омогућена" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Грешка при провери идентитета" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Жетон је истекао. Поново учитајте страницу." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Датотеке" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Текст" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Слике" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Погледајте водиче за инсталацију." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Не могу да пронађем категорију „%s“." + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "пре неколико секунди" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "данас" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "јуче" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "прошлог месеца" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "прошле године" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "година раније" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Не могу да пронађем категорију „%s“." diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index ee77f11fb6ea3ce106d7d6c13f2f8e44c8402ded..fae3f55113757c04ad2c132a86d63f33faa571f6 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -27,12 +27,12 @@ msgid "Authentication error" msgstr "Грешка при провери идентитета" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Не могу да променим име за приказ" +msgid "Unable to change full name" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "Ажурирај на {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Искључи" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Омогући" @@ -129,31 +129,31 @@ msgstr "Омогући" msgid "Please wait...." msgstr "Сачекајте…" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Ажурирам…" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Грешка при ажурирању апликације" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Грешка" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Ажурирај" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Ажурирано" @@ -161,7 +161,7 @@ msgstr "Ажурирано" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "опозови" msgid "Unable to remove user" msgstr "Не могу да уклоним корисника" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Групе" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Управник групе" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Обриши" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "додај групу" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "Морате унети исправно корисничко име" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "Грешка при прављењу корисника" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "Морате унети исправну лозинку" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "Сигурносно упозорење" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Упозорење о подешавању" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Недостаје модул „fileinfo“" -#: templates/admin.php:47 +#: templates/admin.php:68 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:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "Локализација не ради" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Веза с интернетом не ради" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Изврши један задатак са сваком учитаном страницом" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Дељење" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Омогући API Share" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Дозвољава апликацијама да користе API Share" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Дозволи везе" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Дозволи корисницима да деле ставке с другима путем веза" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Дозволи поновно дељење" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Дозволи корисницима да поновно деле ставке с другима" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Дозволи корисницима да деле са било ким" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Дозволи корисницима да деле само са корисницима у њиховим групама" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "Безбедност" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Наметни HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "Бележење" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Ниво бележења" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Више" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Мање" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Верзија" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Шифровање" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "Подразумевано складиште" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Неограничено" @@ -589,8 +656,8 @@ msgid "Storage" msgstr "Складиште" #: templates/users.php:108 -msgid "change display name" -msgstr "промени име за приказ" +msgid "change full name" +msgstr "" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 57813276079fdef71d2e2042d04eef05aba2a271..e4b50474c19231a3145cb910c1538ba7be79b209 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,427 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Грешка" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" msgstr "" -#: templates/settings.php:12 +#: lib/wizard.php:951 +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 "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +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/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Домаћин" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Можете да изоставите протокол, осим ако захтевате SSL. У том случају почните са ldaps://." -#: templates/settings.php:40 -msgid "Base DN" -msgstr "База DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Порт" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "Корисник DN" -#: templates/settings.php:46 +#: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "DN корисника клијента са којим треба да се успостави веза, нпр. uid=agent,dc=example,dc=com. За анониман приступ, оставите поља DN и лозинка празним." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Лозинка" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "За анониман приступ, оставите поља DN и лозинка празним." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Филтер за пријаву корисника" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Филтер за списак корисника" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Назад" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Филтер групе" +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "Порт" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Користи TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "LDAP сервер осетљив на велика и мала слова (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Искључите потврду SSL сертификата." -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "у секундама. Промена испражњава кеш меморију." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Име приказа корисника" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Основно стабло корисника" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Име приказа групе" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Основна стабло група" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Придруживање чланова у групу" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "у бајтовима" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +461,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +480,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +506,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Помоћ" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index da5af6328b4d647a97d5f2920238d0c83dd2d7c8..14e62f885d16f960f7272e49fadaac90724e38a9 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:22+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" @@ -18,13 +18,14 @@ 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/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -52,45 +53,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Tip kategorije nije zadan." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Bez dodavanja kategorije?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Kategorija već postoji: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Tip objekta nije zadan." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID nije zadan." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Greška u dodavanju %s u omiljeno." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Kategorije za brisanje nisu izabrane." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Greška u uklanjanju %s iz omiljeno." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -187,63 +149,63 @@ msgstr "Novembar" msgid "December" msgstr "Decembar" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "Pre par sekundi" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "Danas" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "juče" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "prošlog meseca" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "pre nekoliko meseci" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "prošle godine" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "pre nekoliko godina" @@ -312,155 +274,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Tip objekta nije zadan." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Greška" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Ime aplikacije nije precizirano." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Potreban fajl {file} nije instaliran!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Deljeno" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Podeli" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Greška" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Greška pri deljenju" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Greška u uklanjanju deljenja" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Greška u promeni dozvola" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} podelio sa Vama i grupom {group} " -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Sa vama podelio {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Podeli sa" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "Podeli koristei link" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Zaštita lozinkom" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Lozinka" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Pošalji link e-mailom" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Pošalji" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Datum isteka" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Datum isteka" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Deli putem e-maila" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Nema pronađenih ljudi" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Dalje deljenje nije dozvoljeno" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Deljeno u {item} sa {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Ukljoni deljenje" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "dozvoljene izmene" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "kontrola pristupa" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "napravi" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "ažuriranje" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "brisanje" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "deljenje" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Zaštćeno lozinkom" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Greška u uklanjanju datuma isteka" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Greška u postavljanju datuma isteka" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Slanje..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "Email poslat" +#: js/share.js:769 +msgid "Warning" +msgstr "" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Tip objekta nije zadan." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Obriši" + +#: js/tags.js:31 +msgid "Add" +msgstr "Dodaj" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Dobićete vezu za resetovanje lozinke putem e-pošte." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Korisničko ime" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -509,13 +499,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Zahtevaj resetovanje" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -541,7 +531,7 @@ msgstr "Lično" msgid "Users" msgstr "Korisnici" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Programi" @@ -553,6 +543,34 @@ msgstr "Adninistracija" msgid "Help" msgstr "Pomoć" +#: 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 "Pristup zabranjen" @@ -569,108 +587,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Izmena kategorija" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Dodaj" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Bezbednosno upozorenje" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Vaša PHP verzija je ranjiva na " -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Nije dostupan generator slučajnog broja, molimo omogućite PHP OpenSSL ekstenziju." -#: templates/installation.php:33 +#: 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 "Bez generatora slučajnog broja napadač može predvideti token za reset lozinke i preuzeti Vaš nalog." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Vaši podaci i direktorijumi su verovatno dostupni sa interneta jer .htaccess fajl ne funkcioniše." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Napravi administrativni nalog" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Napredno" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Fascikla podataka" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Podešavanje baze" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "će biti korišćen" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Korisnik baze" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Lozinka baze" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Ime baze" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "tablespace baze" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Domaćin baze" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Završi podešavanje" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Odjava" @@ -688,19 +717,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Izgubili ste lozinku?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "upamti" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -708,10 +745,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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/sr@latin/files.po b/l10n/sr@latin/files.po index 72c25ecb2ed0b3f017cf18be4693315b834e3048..04a77944ebc2d5c5d0825b2be3244978b818efe1 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -27,223 +27,289 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Nema greške, fajl je uspešno poslat" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Poslati fajl je samo delimično otpremljen!" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Nijedan fajl nije poslat" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Nedostaje privremena fascikla" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Fajlovi" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Greška" - -#: js/fileactions.js:119 -msgid "Share" -msgstr "Podeli" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" -#: js/fileactions.js:131 -msgid "Delete permanently" +#: js/file-upload.js:595 +msgid "Could not create file" msgstr "" -#: js/fileactions.js:197 -msgid "Rename" +#: js/file-upload.js:611 +msgid "Could not create folder" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 -msgid "Pending" +#: js/file-upload.js:661 +msgid "Error fetching URL" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/fileactions.js:125 +msgid "Share" +msgstr "Podeli" + +#: js/fileactions.js:137 +msgid "Delete permanently" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" +#: js/fileactions.js:194 +msgid "Rename" msgstr "" -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Greška" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Ime" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Veličina" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Zadnja izmena" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Pošalji" @@ -279,65 +345,69 @@ msgstr "" msgid "Save" msgstr "Snimi" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Ovde nema ničeg. Pošaljite nešto!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Preuzmi" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Ukljoni deljenje" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Obriši" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Pošiljka je prevelika" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fajlovi koje želite da pošaljete prevazilaze ograničenje maksimalne veličine pošiljke na ovom serveru." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/sr@latin/files_encryption.po b/l10n/sr@latin/files_encryption.po index 2f15da5caaee7abe466b170289cc7d98fd92177f..08e33ab99d230eac7ab29090be3752efa32d1f8f 100644 --- a/l10n/sr@latin/files_encryption.po +++ b/l10n/sr@latin/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:44 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 -msgid "Saving..." +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." +#: js/settings-admin.js:13 +msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index cf5df4bfa849fde31026c239f65030ae44946de1..d2e140796dd191faf370497a6a77593396f012d7 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ 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" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index 875bfffa7f314a54aa1b0cb3e1ffc92cd0247559..5b0b5a4f172dd870313e3f689f452f5cfe4b0a37 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "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" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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 "Lozinka" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Pošalji" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Preuzmi" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Pošalji" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 0c52072bbaadffd70f27d85ad221c54e51e9d3a9..54363eaf89b220fc34ce6c494ffeafd0c23a5f28 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 07:30+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -27,57 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Greška" -#: js/trash.js:37 -msgid "delete file permanently" +#: lib/trashbin.php:815 lib/trashbin.php:817 +msgid "restored" msgstr "" -#: js/trash.js:129 -msgid "Delete permanently" +#: templates/index.php:8 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:190 templates/index.php:21 +#: templates/index.php:22 msgid "Name" msgstr "Ime" -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: lib/trash.php:814 lib/trash.php:816 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:25 templates/index.php:27 +msgid "Restore" msgstr "" -#: templates/index.php:24 templates/index.php:26 -msgid "Restore" +#: templates/index.php:33 +msgid "Deleted" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Obriši" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index afa426b476b94c1e2456c1012e25db4c7604d480..2a2686d0fb942dc94870c7d7715ff433e5a8afe8 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 07:30+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,322 +17,321 @@ 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" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Pomoć" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Lično" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Podešavanja" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Korisnici" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Adninistracija" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Greška pri autentifikaciji" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Fajlovi" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Tekst" -#: search/provider/file.php:30 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "Pre par sekundi" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "Danas" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "juče" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "prošlog meseca" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "prošle godine" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "pre nekoliko godina" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index eaddf7af119678029c6420d06353320f43027c9d..e0cefa221d989f6c8726659d35f885ff7574ac3d 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "Greška pri autentifikaciji" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,31 +129,31 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Greška" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupe" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Obriši" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "Bezbednosno upozorenje" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index 32f10400a2cdc7ed29b39804287e657590500823..425b935c3c11d9feca69dc3b76e09cf1d5247f08 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 07:30+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,427 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Greška" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" msgstr "" -#: templates/settings.php:12 +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Snimi" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Pomoć" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Lozinka" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +461,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +480,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +506,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Pomoć" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 3d94872f70d4df2a081a446bc5a2fcca057aebb9..8d95db7552041118ff6d66f76733bf02677973c9 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -5,16 +5,18 @@ # Translators: # Daniel Sandman , 2013 # Gunnar Norin , 2013 +# Gustav Smedberg , 2013 # medialabs, 2013 +# kallemooo , 2013 # Magnus Höglund , 2013 # medialabs, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-29 00:02-0400\n" -"PO-Revision-Date: 2013-09-28 02:02+0000\n" -"Last-Translator: Daniel Sandman \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,14 +24,15 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s delade »%s« med dig" -#: ajax/share.php:227 -msgid "group" -msgstr "Grupp" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Gick inte att skicka e-post till följande användare: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -56,45 +59,6 @@ msgstr "Uppdaterade filcache" msgid "... %d%% done ..." msgstr "... %d%% klart ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Kategorityp inte angiven." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Ingen kategori att lägga till?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Denna kategori finns redan: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Objekttyp inte angiven." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID inte angiven." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Fel vid tillägg av %s till favoriter." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Inga kategorier valda för radering." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Fel vid borttagning av %s från favoriter." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Ingen bild eller fil har tillhandahållits" @@ -191,59 +155,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Inställningar" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut sedan" msgstr[1] "%n minuter sedan" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n timme sedan" msgstr[1] "%n timmar sedan" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "i dag" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "i går" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag sedan" msgstr[1] "%n dagar sedan" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "förra månaden" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sedan" msgstr[1] "%n månader sedan" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "månader sedan" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "förra året" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "år sedan" @@ -311,155 +275,183 @@ msgstr "({count} valda)" msgid "Error loading file exists template" msgstr "Fel uppstod filmall existerar" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Objekttypen är inte specificerad." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 -msgid "Error" -msgstr "Fel" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr " Namnet på appen är inte specificerad." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Den nödvändiga filen {file} är inte installerad!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Delad" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Dela" -#: js/share.js:131 js/share.js:696 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Fel" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Fel vid delning" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Fel när delning skulle avslutas" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Fel vid ändring av rättigheter" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Delad med dig och gruppen {group} av {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Delad med dig av {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Delad med" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Dela med användare eller grupp..." -#: js/share.js:188 -msgid "Share with link" -msgstr "Delad med länk" +#: js/share.js:219 +msgid "Share link" +msgstr "Dela länk" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Lösenordsskydda" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Lösenord" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Tillåt publik uppladdning" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "E-posta länk till person" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Skicka" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Sätt utgångsdatum" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Utgångsdatum" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Dela via e-post:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Hittar inga användare" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "Grupp" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Dela vidare är inte tillåtet" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Delad i {item} med {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Sluta dela" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "informera via e-post" + +#: js/share.js:408 msgid "can edit" msgstr "kan redigera" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "åtkomstkontroll" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "skapa" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "uppdatera" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "radera" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "dela" -#: js/share.js:400 js/share.js:643 +#: js/share.js:694 msgid "Password protected" msgstr "Lösenordsskyddad" -#: js/share.js:656 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Fel vid borttagning av utgångsdatum" -#: js/share.js:668 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Fel vid sättning av utgångsdatum" -#: js/share.js:683 +#: js/share.js:734 msgid "Sending ..." msgstr "Skickar ..." -#: js/share.js:694 +#: js/share.js:745 msgid "Email sent" msgstr "E-post skickat" +#: js/share.js:769 +msgid "Warning" +msgstr "Varning" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Objekttypen är inte specificerad." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Skriv nytt" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Radera" + +#: js/tags.js:31 +msgid "Add" +msgstr "Lägg till" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Editera taggar" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "Fel under laddning utav dialog mall: {fel}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Inga taggar valda för borttagning." + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Länken för att återställa ditt lösenorden har skickats till din e-postadress
    Om du inte har erhållit meddelandet inom kort, vänligen kontrollera din skräppost-mapp
    Om den inte finns där, vänligen kontakta din administratör." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Begäran misslyckades!
    Är du helt säker på att din e-postadress/användarnamn är korrekt?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Du får en länk att återställa ditt lösenord via e-post." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Användarnamn" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -508,13 +500,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "Dina filer är krypterade. Om du inte har aktiverat återställningsnyckeln kommer det inte att finnas någon möjlighet att få tillbaka dina filer efter att ditt lösenord har återställts. Om du är osäker, kontakta din systemadministratör innan du fortsätter. Är du verkligen säker på att fortsätta?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "Ja, jag vill verkligen återställa mitt lösenord nu" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Begär återställning" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Återställ" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -540,7 +532,7 @@ msgstr "Personligt" msgid "Users" msgstr "Användare" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Program" @@ -552,6 +544,34 @@ msgstr "Admin" msgid "Help" msgstr "Hjälp" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "Fel vid laddning utav taggar" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "Tagg existerar redan" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "Fel vid borttagning utav tagg(ar)" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "Fel taggning" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "Fel av taggning" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "Fel favorisering" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "Fel av favorisering " + #: templates/403.php:12 msgid "Access forbidden" msgstr "Åtkomst förbjuden" @@ -568,108 +588,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hej där,⏎\n⏎\nville bara meddela dig att %s delade %s med dig.⏎\nTitta på den: %s⏎\n⏎\nVi hörs!" +msgstr "Hej där,⏎\n⏎\nville bara meddela dig att %s delade %s med dig.⏎\nTitta på den: %s⏎\n⏎\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Editera kategorier" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "Utdelningen kommer att upphöra %s." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Lägg till" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Vi höres!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Säkerhetsvarning" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Din version av PHP är sårbar för NULL byte attack (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "Var god uppdatera din PHP-installation för att använda %s säkert." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Ingen säker slumptalsgenerator finns tillgänglig. Du bör aktivera PHP OpenSSL-tillägget." -#: templates/installation.php:33 +#: 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 "Utan en säker slumptalsgenerator kan angripare få möjlighet att förutsäga lösenordsåterställningar och ta över ditt konto." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Din datakatalog och filer är förmodligen tillgängliga från Internet, eftersom .htaccess-filen inte fungerar." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "För information hur du korrekt konfigurerar din servern, se ownCloud dokumentationen." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Skapa ett administratörskonto" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Avancerad" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Datamapp" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Konfigurera databasen" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "kommer att användas" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Databasanvändare" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Lösenord till databasen" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Databasnamn" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Databas tabellutrymme" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Databasserver" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Avsluta installation" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Avslutar ..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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 "%s är tillgänglig. Få mer information om hur du går tillväga för att uppdatera." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Logga ut" @@ -687,19 +718,27 @@ msgstr "Om du inte har ändrat ditt lösenord nyligen så kan ditt konto vara ma msgid "Please change your password to secure your account again." msgstr "Ändra genast lösenord för att säkra ditt konto." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "Servern misslyckades med autentisering!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Kontakta din administratör." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Glömt ditt lösenord?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "kom ihåg" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Logga in" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Alternativa inloggningar" @@ -707,10 +746,37 @@ msgstr "Alternativa inloggningar" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "Hej där,

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

    Hörs!" +"href=\"%s\">View it!

    " +msgstr "Hej där,

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

    " + +#: 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/update.php:3 +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "Hör av dig till din system administratör ifall detta meddelande fortsätter eller visas oväntat." + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "Tack för ditt tålamod." + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "Uppdaterar ownCloud till version %s, detta kan ta en stund." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "Denna ownCloud instans håller på att uppdatera, vilket kan ta ett tag." + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "Var god och ladda om denna sida efter en kort stund för att fortsätta använda ownCloud." diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 3fe12b46d57223948dd35ebc24f1f1fe491d3082..19f5324e9c584c14089b58fd901abece10e60e46 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -3,16 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# DanielMalmgren , 2013 +# Daniel Sandman , 2013 # Gunnar Norin , 2013 +# Gustav Smedberg , 2013 # medialabs, 2013 +# kallemooo , 2013 # Magnus Höglund , 2013 # medialabs, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -31,220 +35,286 @@ msgstr "Kunde inte flytta %s - Det finns redan en fil med detta namn" msgid "Could not move %s" msgstr "Kan inte flytta %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Filnamn kan inte vara tomt." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "Filnamnet får ej innehålla \"/\". Välj ett annat namn." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "Namnet %s används redan i katalogen %s. Välj ett annat namn." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "Inte en giltig källa" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Fel under nerladdning från %s till %s" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Fel under skapande utav filen" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "Katalognamn kan ej vara tomt." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "Katalog namnet får ej innehålla \"/\". Välj ett annat namn." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Fel under skapande utav en katalog" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Kan inte sätta mapp för uppladdning." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "Ogiltig token" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil uppladdad. Okänt fel" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Inga fel uppstod. Filen laddades upp utan problem." -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Den uppladdade filen var endast delvis uppladdad" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Ingen fil laddades upp" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "En temporär mapp saknas" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Misslyckades spara till disk" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Inte tillräckligt med lagringsutrymme tillgängligt" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Uppladdning misslyckades. Gick inte att hämta filinformation." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Uppladdning misslyckades. Kunde inte hitta den uppladdade filen" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Felaktig mapp." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Filer" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "Kan inte ladda upp {filename} eftersom den antingen är en mapp eller har 0 bytes." -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Inte tillräckligt med utrymme tillgängligt" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Uppladdning avbruten." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "" +msgstr "Gick inte att hämta resultat från server." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "URL kan inte vara tom." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "URL kan ej vara tomt" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Ogiltigt mappnamn. Användning av 'Shared' är reserverad av ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "I hemma katalogen 'Delat' är ett reserverat filnamn" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Fel" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} finns redan" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Kunde ej skapa fil" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Kunde ej skapa katalog" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "Dela" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Radera permanent" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Byt namn" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Väntar" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} finns redan" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "ersätt" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Kan ej byta filnamn" -#: js/filelist.js:416 -msgid "suggest name" -msgstr "föreslå namn" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "avbryt" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "ersatt {new_name} med {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "ångra" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Kunde inte ta bort filen." + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapp" msgstr[1] "%n mappar" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} och {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laddar upp %n fil" msgstr[1] "Laddar upp %n filer" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' är ett ogiltigt filnamn." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Filnamn kan inte vara tomt." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ditt lagringsutrymme är fullt, filer kan inte längre uppdateras eller synkroniseras!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ditt lagringsutrymme är nästan fullt ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "Krypteringsprogrammet är aktiverat men dina nycklar är inte initierade. Vänligen logga ut och in igen" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "Ogiltig privat nyckel i krypteringsprogrammet. Vänligen uppdatera lösenordet till din privata nyckel under dina personliga inställningar för att återfå tillgång till dina krypterade filer." + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Kryptering inaktiverades men dina filer är fortfarande krypterade. Vänligen gå till sidan för dina personliga inställningar för att dekryptera dina filer." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Din nedladdning förbereds. Det kan ta tid om det är stora filer." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" -msgstr "" +msgstr "Fel uppstod vid flyttning av fil" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Fel" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Namn" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Storlek" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Ändrad" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s kunde inte namnändras" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Ladda upp" @@ -280,65 +350,69 @@ msgstr "Största tillåtna storlek för ZIP-filer" msgid "Save" msgstr "Spara" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Ny" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "Textfil" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Ny mapp" + +#: templates/index.php:10 msgid "Folder" msgstr "Mapp" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Från länk" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Raderade filer" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Du saknar skrivbehörighet här." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "Du har ej tillåtelse att ladda upp eller skapa filer här" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Ingenting här. Ladda upp något!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Ladda ner" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Sluta dela" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Radera" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "För stor uppladdning" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Filer skannas, var god vänta" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Aktuell skanning" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index c5524af8443b327a6633e588316749ae977d4891..170e14d7fe3cc4ed309d3ccaa1763fc3628ef0e3 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -3,17 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Daniel Sandman , 2013 +# Gustav Smedberg , 2013 # medialabs, 2013 +# kallemooo , 2013 # Magnus Höglund , 2013 # medialabs, 2013 # Stefan Gagner , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: Magnus Höglund \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:09+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,134 +50,159 @@ msgstr "Ändringen av lösenordet lyckades." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Kunde inte ändra lösenordet. Kanske det gamla lösenordet inte var rätt." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "Den privata lösenordsnyckeln uppdaterades utan problem." +msgstr "Den privata nyckelns lösenord uppdaterades utan problem." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "Kunde inte uppdatera den privata lösenordsnyckeln. Kanske var det gamla lösenordet fel." +msgstr "Kunde inte uppdatera lösenordet för den privata nyckeln. Kanske var det gamla lösenordet fel." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "Din privata lösenordsnyckel är inte giltig! Troligen har ditt lösenord ändrats utanför ownCloud (t.ex. i företagets katalogtjänst). Du kan uppdatera den privata lösenordsnyckeln under dina personliga inställningar för att återfå tillgång till dina filer." +"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 "Krypteringsprogrammet kunde inte initieras! Möjligen blev krypteringsprogrammet återaktiverad under din session. Försök med att logga ut och in igen för att initiera krypteringsprogrammet." -#: hooks/hooks.php:41 +#: 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 "Din privata lösenordsnyckel är inte giltig! Troligen har ditt lösenord ändrats utanför %s (t.ex. i företagets katalogtjänst). Du kan uppdatera den privata lösenordsnyckeln under dina personliga inställningar för att återfå tillgång till dina filer." + +#: 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 "Kan ej dekryptera denna fil, förmodligen är det en delad fil. Be ägaren av filen att dela den med dig." + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Oväntat fel, kolla dina system inställningar eller kontakta din administratör" + +#: hooks/hooks.php:59 msgid "Missing requirements." msgstr "Krav som saknas" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och korrekt konfigurerad. Kryptering är tillsvidare inaktiverad." -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "Följande användare har inte aktiverat kryptering:" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Sparar..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Din privata lösenordsnyckel är inte giltig! Kanske byttes ditt lösenord från utsidan." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Du kan låsa upp din privata nyckel i dina" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Gå direkt till din" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "personliga inställningar" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Kryptering" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "Aktivera lösenordsnyckel (för att kunna återfå användarens filer vid glömt eller förlorat lösenord):" +msgstr "Aktivera återställningsnyckel (för att kunna återfå användarens filer vid glömt eller förlorat lösenord):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" -msgstr "Lösenordsnyckel" +msgstr "Lösenord för återställningsnyckel" + +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Upprepa återställningsnyckelns lösenord" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Aktiverad" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Inaktiverad" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "Ändra lösenordsnyckel:" +msgstr "Ändra lösenord för återställningsnyckel:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" -msgstr "Gammal lösenordsnyckel" +msgstr "Gammalt lösenord för återställningsnyckel" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" -msgstr "Ny lösenordsnyckel" +msgstr "Nytt lösenord för återställningsnyckel" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "Upprepa lösenord för ny återställningsnyckel" + +#: templates/settings-admin.php:58 msgid "Change Password" msgstr "Byt lösenord" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" -msgstr "Din privata lösenordsnyckel stämmer inte längre överrens med ditt inloggningslösenord:" +msgstr "Lösenordet till din privata nyckel stämmer inte längre överens med ditt inloggningslösenord:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." -msgstr "Ställ in din gamla privata lösenordsnyckel till ditt aktuella inloggningslösenord." +msgstr "Använd din gamla privata nyckels lösenord som ditt aktuella inloggningslösenord." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Om du inte kommer ihåg ditt gamla lösenord kan du be din administratör att återställa dina filer." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "Gammalt inloggningslösenord" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "Nuvarande inloggningslösenord" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" -msgstr "Uppdatera den privata lösenordsnyckeln" +msgstr "Uppdatera lösenordet för din privata nyckel" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "Aktivera lösenordsåterställning" -#: templates/settings-personal.php:47 +#: 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 "Genom att aktivera detta alternativ kommer du kunna återfå tillgång till dina krypterade filer om du skulle förlora/glömma ditt lösenord" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Inställningarna för filåterställning har uppdaterats" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Kunde inte uppdatera filåterställning" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index af1c578869d242719634c82a919b6c0305868e4a..db436300c6b7f4cfa47901d7bb95e8f2f0578fc5 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Åtkomst beviljad" @@ -26,7 +26,7 @@ msgstr "Åtkomst beviljad" msgid "Error configuring Dropbox storage" msgstr "Fel vid konfigurering av Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Bevilja åtkomst" @@ -34,24 +34,24 @@ msgstr "Bevilja åtkomst" msgid "Please provide a valid Dropbox app key and secret." msgstr "Ange en giltig Dropbox nyckel och hemlighet." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Fel vid konfigurering av Google Drive" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varning: \"smb-klienten\" är inte installerad. Montering av CIFS/SMB delningar är inte möjligt. Kontakta din systemadministratör för att få den installerad." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Varning: Stöd för FTP i PHP är inte aktiverat eller installerat. Montering av FTP-delningar är inte möjligt. Kontakta din systemadministratör för att få det installerat." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 2716b5f204cca7e4d0df4b5950bb73dd476b3377..1f268c83f9bbe4e0210937a40ef1e784edab46e5 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Gustav Smedberg , 2013 # Magnus Höglund , 2013 # Stefan Gagner , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: Magnus Höglund \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"Last-Translator: Gustav Smedberg \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,17 +21,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "Den här delningen är lösenordsskyddad" + +#: templates/authenticate.php:7 msgid "The password is wrong. Try again." msgstr "Lösenordet är fel. Försök igen." -#: templates/authenticate.php:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "Lösenord" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Skicka" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "Tyvärr, denna länk verkar inte fungera längre." @@ -55,28 +56,32 @@ msgstr "delning är inaktiverat" msgid "For more info, please ask the person who sent this link." msgstr "För mer information, kontakta den person som skickade den här länken." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delade mappen %s med dig" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s delade filen %s med dig" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Ladda ner" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Ladda upp" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Ingen förhandsgranskning tillgänglig för" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Direkt länk" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index eafab03a7d979a58047813c8e17b6de34d8f565b..b0e25cc1dfd57f0ff8b93f845825e21980ed39f0 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-18 08:40+0000\n" -"Last-Translator: medialabs\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,55 +29,31 @@ msgstr "Kunde inte radera %s permanent" msgid "Couldn't restore %s" msgstr "Kunde inte återställa %s" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "utför återställning" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Fel" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "radera filen permanent" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Radera permanent" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Namn" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "Raderad" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n mapp" -msgstr[1] "%n mappar" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n fil" -msgstr[1] "%n filer" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "återställd" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Ingenting här. Din papperskorg är tom!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Namn" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Återskapa" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Raderad" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Radera" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 8865b3f1d8d84a0451d56b530c8a76dda0106f73..54927d685c20a1030cd926d2d6308323de2686aa 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -3,15 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Daniel Sandman , 2013 # medialabs, 2013 +# kallemooo , 2013 # Magnus Höglund , 2013 # medialabs, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -20,318 +22,317 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Appen \"%s\" kan inte installeras eftersom att den inte är kompatibel med denna version av ownCloud." -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "Inget appnamn angivet" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Hjälp" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Personligt" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Inställningar" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Användare" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Misslyckades med att uppgradera \"%s\"." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Okänd filtyp" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Ogiltig bild" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "webbtjänster under din kontroll" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "Kan inte öppna \"%s\"" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Nerladdning av ZIP är avstängd." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Filer laddas ner en åt gången." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Tillbaka till Filer" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Valda filer är för stora för att skapa zip-fil." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "Ladda ner filerna i mindre bitar, separat eller fråga din administratör." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Ingen källa angiven vid installation av app " -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Ingen href angiven vid installation av app från http" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Ingen sökväg angiven vid installation av app från lokal fil" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Arkiv av typen %s stöds ej" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Kunde inte öppna arkivet när appen skulle installeras" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "Appen har ingen info.xml fil" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "Appen kan inte installeras eftersom att den innehåller otillåten kod" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Appen kan inte installeras eftersom att den inte är kompatibel med denna version av ownCloud" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Appen kan inte installeras eftersom att den innehåller etiketten true vilket inte är tillåtet för icke inkluderade appar" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Appen kan inte installeras eftersom versionen i info.xml inte är samma som rapporteras från app store" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Appens mapp finns redan" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Kan inte skapa appens mapp. Var god åtgärda rättigheterna. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Applikationen är inte aktiverad" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Fel vid autentisering" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Ogiltig token. Ladda om sidan." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Filer" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Text" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Bilder" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s ange databasanvändare." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s ange databasnamn" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s du får inte använda punkter i databasnamnet" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL-användaren och/eller lösenordet var inte giltigt: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Du måste antingen ange ett befintligt konto eller administratör." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL-användarnamnet och/eller lösenordet är felaktigt" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "DB error: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Det felaktiga kommandot var: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL-användaren '%s'@'localhost' existerar redan." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Radera denna användare från MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQl-användare '%s'@'%%' existerar redan" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Radera denna användare från MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Oracle-anslutning kunde inte etableras" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Oracle-användarnamnet och/eller lösenordet är felaktigt" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Det felande kommandot var: \"%s\", name: %s, password: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL-användarnamnet och/eller lösenordet är felaktigt" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Ange ett användarnamn för administratören." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Ange ett administratörslösenord." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din webbserver är inte korrekt konfigurerad för att tillåta filsynkronisering eftersom WebDAV inte verkar fungera." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Var god kontrollera installationsguiden." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Kunde inte hitta kategorin \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "sekunder sedan" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut sedan" msgstr[1] "%n minuter sedan" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n timme sedan" msgstr[1] "%n timmar sedan" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "i dag" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "i går" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n dag sedan" msgstr[1] "%n dagar sedan" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "förra månaden" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sedan" msgstr[1] "%n månader sedan" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "förra året" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "år sedan" - -#: template.php:297 -msgid "Caused by:" -msgstr "Orsakad av:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Kunde inte hitta kategorin \"%s\"" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index a0a193043a0c7532be27fe0a995c208f1f6fb267..eb3d26c3c0b643c95a7f0edebca0e555309f2c12 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -5,18 +5,20 @@ # Translators: # Daniel Sandman , 2013 # Gunnar Norin , 2013 +# Gustav Smedberg , 2013 # Jan Busk, 2013 # Jan Busk, 2013 # medialabs, 2013 +# kallemooo , 2013 # Magnus Höglund , 2013 # medialabs, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-29 00:02-0400\n" -"PO-Revision-Date: 2013-09-28 01:44+0000\n" -"Last-Translator: Daniel Sandman \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,12 +36,12 @@ msgid "Authentication error" msgstr "Fel vid autentisering" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Ditt visningsnamn har ändrats." +msgid "Your full name has been changed." +msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Kan inte ändra visningsnamn" +msgid "Unable to change full name" +msgstr "Kunde inte ändra hela namnet" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -164,7 +166,7 @@ msgstr "Uppdatera" msgid "Updated" msgstr "Uppdaterad" -#: js/personal.js:221 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "Välj en profilbild" @@ -172,7 +174,7 @@ msgstr "Välj en profilbild" msgid "Decrypting files... Please wait, this can take some time." msgstr "Dekrypterar filer... Vänligen vänta, detta kan ta en stund." -#: js/personal.js:288 +#: js/personal.js:287 msgid "Saving..." msgstr "Sparar..." @@ -188,44 +190,75 @@ msgstr "ångra" msgid "Unable to remove user" msgstr "Kan inte ta bort användare" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grupper" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Gruppadministratör" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Radera" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "lägg till grupp" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "Ett giltigt användarnamn måste anges" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "Fel vid skapande av användare" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "Ett giltigt lösenord måste anges" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Varning: Hem katalogen för varje användare \"{användare}\" finns redan" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "Säkerhetsvarning" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -234,48 +267,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:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Installationsvarning" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Vänligen dubbelkolla igenom installationsguiden." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Modulen \"fileinfo\" saknas" -#: templates/admin.php:47 +#: templates/admin.php:68 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:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "Locale fungerar inte" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "Systemets språk kan inte sättas till %s. Detta innebär att det kan vara problem med vissa tecken i filnamn. Det är starkt rekommenderat att installera nödvändiga paket så att systemet får stöd för %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Internetförbindelsen fungerar inte" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -284,110 +337,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Servern har ingen fungerande internetanslutning. Detta innebär att en del av de funktioner som montering av extern lagring, notifieringar om uppdateringar eller installation av 3: e part appar inte fungerar. Åtkomst till filer och skicka e-postmeddelanden fungerar troligen inte heller. Vi rekommenderar starkt att aktivera en internetuppkoppling för denna server om du vill ha alla funktioner." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Exekvera en uppgift vid varje sidladdning" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php är registrerad som en webcron-tjänst för att anropa cron.php varje minut över http." +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Använd system-tjänsten cron för att anropa cron.php varje minut." +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Dela" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Aktivera delat API" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Tillåt applikationer att använda delat API" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Tillåt länkar" -#: templates/admin.php:135 +#: templates/admin.php:178 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:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Tillåt offentlig uppladdning" -#: templates/admin.php:144 +#: templates/admin.php:187 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:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Tillåt vidaredelning" -#: templates/admin.php:153 +#: templates/admin.php:196 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:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Tillåt delning med alla" -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Tillåt e-post notifikation" + +#: templates/admin.php:214 +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:221 msgid "Security" msgstr "Säkerhet" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Kräv HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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:191 +#: templates/admin.php:242 #, 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:203 +#: templates/admin.php:254 msgid "Log" msgstr "Logg" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Nivå på loggning" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Mer" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Mindre" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Version" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "Använd denna adress för att komma åt dina filer via WebDAV" +"Use this address to access your Files via " +"WebDAV" +msgstr "Använd denna adress till nå dina Filer via WebDAV" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Kryptering" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "Appen för kryptering är inte längre aktiverad, dekryptera alla dina filer" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Inloggningslösenord" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "Dekryptera alla filer" @@ -579,6 +644,10 @@ msgstr "Enter the recovery password in order to recover the users files during p msgid "Default Storage" msgstr "Förvald lagring" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Obegränsad" @@ -596,8 +665,8 @@ msgid "Storage" msgstr "Lagring" #: templates/users.php:108 -msgid "change display name" -msgstr "ändra visningsnamn" +msgid "change full name" +msgstr "ändra hela namnet" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 48d8dddb418961bf77797590c90e943fba482198..9ccf06aa4babb6adb6ad2216237d31ba8a090365 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -3,16 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# DanielMalmgren , 2013 +# Gustav Smedberg , 2013 # Jan Busk, 2013 +# Jonas Erlandsson , 2013 +# kallemooo , 2013 # Magnus Höglund , 2013 # medialabs, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" -"Last-Translator: Magnus Höglund \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,314 +32,425 @@ msgstr "Fel vid rensning av mappningar" msgid "Failed to delete the server configuration" msgstr "Misslyckades med att radera serverinställningen" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Inställningen är giltig och anslutningen kunde upprättas!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Konfigurationen är riktig, men Bind felade. Var vänlig och kontrollera serverinställningar och logininformation." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "Inställningen är ogiltig. Vänligen se ownCloud-loggen för fler detaljer." -#: js/settings.js:66 +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "Ingen åtgärd har angetts" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "Ingen konfiguration har angetts" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "Ingen data har angetts" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "Kunde inte sätta inställning %s" + +#: js/settings.js:67 msgid "Deletion failed" msgstr "Raderingen misslyckades" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Ta över inställningar från tidigare serverkonfiguration?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Behåll inställningarna?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Kunde inte lägga till serverinställning" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "mappningar rensade" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Lyckat" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Fel" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "Konfigurationen är OK" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "Felaktig konfiguration" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "Konfigurationen är ej komplett" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Välj grupper" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "Välj Objekt-klasser" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "Välj attribut" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Anslutningstestet lyckades" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Anslutningstestet misslyckades" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Vill du verkligen radera den nuvarande serverinställningen?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Bekräfta radering" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "Varning: Apps user_ldap och user_webdavauth är inkompatibla. Oväntade problem kan uppstå. Be din systemadministratör att inaktivera en av dom." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "%s grupp hittad" +msgstr[1] "%s grupper hittade" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "%s användare hittad" +msgstr[1] "%s användare hittade" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "Felaktig Host" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "Det gick inte hitta den önskade funktionen" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Spara" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Testa konfigurationen" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Hjälp" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "Begränsa åtkomsten till %s till grupper som möter följande kriterie:" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "Endast de objekt-klasserna:" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "endast ifrån de här grupperna:" + +#: 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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Varning: PHP LDAP - modulen är inte installerad, serversidan kommer inte att fungera. Kontakta din systemadministratör för installation." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "Filtret specifierar vilka LDAD-grupper som ska ha åtkomst till %s instans" -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Serverinställning" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "grupper hittade" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "Vilket attribut ska användas som login namn:" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "LDAP användarnamn:" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "LDAP e-postadress:" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "Övriga attribut:" + +#: 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 "Definierar filter som tillämpas vid inloggning. %%uid ersätter användarnamn vid inloggningen. Exempel: \"uid=%%uid\"" + +#: templates/part.wizard-server.php:18 msgid "Add Server Configuration" msgstr "Lägg till serverinställning" -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Server" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Du behöver inte ange protokoll förutom om du använder SSL. Starta då med ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Start DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Ett Start DN per rad" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Du kan ange start DN för användare och grupper under fliken Avancerat" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Port" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "Användare DN" -#: templates/settings.php:46 +#: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "DN för användaren som skall användas, t.ex. uid=agent, dc=example, dc=com. För anonym åtkomst, lämna DN och lösenord tomt." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Lösenord" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "För anonym åtkomst, lämna DN och lösenord tomt." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Filter logga in användare" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Ett Start DN per rad" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Du kan ange start DN för användare och grupper under fliken Avancerat" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "Begränsa åtkomsten till %s till användare som möter följande kriterie:" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "Definierar filter som tillämpas vid inloggning. %%uid ersätter användarnamn vid inloggningen. Exempel: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "Filtret specifierar vilka LDAP-användare som skall ha åtkomst till %s instans" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Filter lista användare" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "användare funna" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "Definierar filter som tillämpas vid sökning efter användare (inga platshållare). Exempel: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Tillbaka" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Gruppfilter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Fortsätt" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "Varning: Apps user_ldap och user_webdavauth är inkompatibla. Oväntade problem kan uppstå. Be din systemadministratör att inaktivera en av dom." -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "Definierar filter som tillämpas vid sökning efter grupper (inga platshållare). Exempel: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Varning: PHP LDAP - modulen är inte installerad, serversidan kommer inte att fungera. Kontakta din systemadministratör för installation." -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Uppkopplingsinställningar" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Konfiguration aktiv" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Ifall denna är avbockad så kommer konfigurationen att skippas." -#: templates/settings.php:69 -msgid "Port" -msgstr "Port" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Säkerhetskopierings-värd (Replika)" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Ange en valfri värd för säkerhetskopiering. Den måste vara en replika av den huvudsakliga LDAP/AD-servern" -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Säkerhetskopierins-port (Replika)" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Inaktivera huvudserver" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "Anslut endast till replikaservern." -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Använd TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Använd inte för LDAPS-anslutningar, det kommer inte att fungera." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "LDAP-servern är okänslig för gemener och versaler (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Stäng av verifiering av SSL-certifikat." -#: templates/settings.php:75 +#: 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 "Rekommenderas inte, använd endast för test! Om anslutningen bara fungerar med denna inställning behöver du importera LDAP-serverns SSL-certifikat till din %s server." -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Cache Time-To-Live" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "i sekunder. En förändring tömmer cache." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Mappinställningar" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Attribut för användarnamn" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "LDAP-attributet som ska användas för att generera användarens visningsnamn." -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Bas för användare i katalogtjänst" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "En Användare start DN per rad" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "Användarsökningsattribut" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Valfritt; ett attribut per rad" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Attribut för gruppnamn" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "LDAP-attributet som ska användas för att generera gruppens visningsnamn." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Bas för grupper i katalogtjänst" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "En Grupp start DN per rad" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Gruppsökningsattribut" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Attribut för gruppmedlemmar" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Specialattribut" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Kvotfält" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Datakvot standard" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "i bytes" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "E-postfält" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "Namnregel för hemkatalog" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Lämnas tomt för användarnamn (standard). Ange annars ett LDAP/AD-attribut." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "Internt Användarnamn" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -351,15 +466,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Som standard skapas det interna användarnamnet från UUID-attributet. Det säkerställer att användarnamnet är unikt och tecken inte behöver konverteras. Det interna användarnamnet har restriktionerna att endast följande tecken är tillåtna: [ a-zA-Z0-9_.@- ]. Andra tecken blir ersatta av deras motsvarighet i ASCII eller utelämnas helt. En siffra kommer att läggas till eller ökas på vid en kollision. Det interna användarnamnet används för att identifiera användaren internt. Det är även förvalt som användarens användarnamn i ownCloud. Det är även en port för fjärråtkomst, t.ex. för alla *DAV-tjänster. Med denna inställning kan det förvalda beteendet åsidosättas. För att uppnå ett liknande beteende som innan ownCloud 5, ange attributet för användarens visningsnamn i detta fält. Lämna det tomt för förvalt beteende. Ändringarna kommer endast att påverka nyligen mappade (tillagda) LDAP-användare" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "Internt Användarnamn Attribut:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "Åsidosätt UUID detektion" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -370,15 +485,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Som standard upptäcker ownCloud automatiskt UUID-attributet. Det UUID-attributet används för att utan tvivel identifiera LDAP-användare och grupper. Dessutom kommer interna användarnamn skapas baserat på detta UUID, om inte annat anges ovan. Du kan åsidosätta inställningen och passera ett attribut som du själv väljer. Du måste se till att attributet som du väljer kan hämtas för både användare och grupper och att det är unikt. Lämna det tomt för standard beteende. Förändringar kommer endast att påverka nyligen mappade (tillagda) LDAP-användare och grupper." -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID Attribut:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "UUID Attribut för Användare:" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "UUID Attribut för Grupper:" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "Användarnamn-LDAP User Mapping" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -392,18 +511,10 @@ msgid "" "experimental stage." msgstr "ownCloud använder sig av användarnamn för att lagra och tilldela (meta) data. För att exakt kunna identifiera och känna igen användare, kommer varje LDAP-användare ha ett internt användarnamn. Detta kräver en mappning från ownCloud-användarnamn till LDAP-användare. Det skapade användarnamnet mappas till UUID för LDAP-användaren. Dessutom cachas DN samt minska LDAP-interaktionen, men den används inte för identifiering. Om DN förändras, kommer förändringarna hittas av ownCloud. Det interna ownCloud-namnet används överallt i ownCloud. Om du rensar/raderar mappningarna kommer att lämna referenser överallt i systemet. Men den är inte konfigurationskänslig, den påverkar alla LDAP-konfigurationer! Rensa/radera aldrig mappningarna i en produktionsmiljö. Utan gör detta endast på i testmiljö!" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "Rensa Användarnamn-LDAP User Mapping" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Rensa Gruppnamn-LDAP Group Mapping" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Testa konfigurationen" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Hjälp" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index 7b0e7105489c579feadf7968b9c0af01c5588bbf..0c54b43c28ddd443e009b8ea839233800e72e697 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-08 03:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,14 @@ msgstr "" "Language: sw_KE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -190,55 +152,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:866 +#: js/js.js:858 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:861 msgid "today" msgstr "" -#: js/js.js:870 +#: js/js.js:862 msgid "yesterday" msgstr "" -#: js/js.js:871 +#: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:864 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:866 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:867 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:868 msgid "years ago" msgstr "" @@ -306,155 +268,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" +#: js/share.js:213 +msgid "Share with user or group …" msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -503,12 +493,12 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" msgstr "" #: lostpassword/templates/resetpassword.php:4 @@ -535,7 +525,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "" @@ -547,6 +537,34 @@ msgstr "" 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 "" @@ -563,108 +581,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -682,19 +711,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -702,10 +739,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " msgstr "" -#: templates/update.php:3 +#: 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/sw_KE/files.po b/l10n/sw_KE/files.po index b12e3fb13dcd62be84232ccd513c97028d7faa24..c62ef3629002769132db6241685ae01b345a37ff 100644 --- a/l10n/sw_KE/files.po +++ b/l10n/sw_KE/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06: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" @@ -27,220 +27,286 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" msgstr "" -#: js/fileactions.js:119 -msgid "Share" +#: js/file-upload.js:595 +msgid "Could not create file" msgstr "" -#: js/fileactions.js:131 -msgid "Delete permanently" +#: js/file-upload.js:611 +msgid "Could not create folder" msgstr "" -#: js/fileactions.js:197 -msgid "Rename" +#: js/file-upload.js:661 +msgid "Error fetching URL" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 -msgid "Pending" +#: js/fileactions.js:125 +msgid "Share" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/fileactions.js:137 +msgid "Delete permanently" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" +#: js/fileactions.js:194 +msgid "Rename" msgstr "" -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "" @@ -276,65 +342,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/sw_KE/files_encryption.po b/l10n/sw_KE/files_encryption.po index 44bd37d47a128cc6d74a119476a4a32052f63636..268e020ef0f53733a45ac88a36e12b81ccf63bbe 100644 --- a/l10n/sw_KE/files_encryption.po +++ b/l10n/sw_KE/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:44 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 -msgid "Saving..." +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." +#: js/settings-admin.js:13 +msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/sw_KE/files_sharing.po b/l10n/sw_KE/files_sharing.po index 0cf4663cb99b2cd07f51c2c15f72fad0dfbd94a6..443e8a546ac0fc02b10a15f8af2ab10bcd397998 100644 --- a/l10n/sw_KE/files_sharing.po +++ b/l10n/sw_KE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-10-21 13:01-0400\n" +"PO-Revision-Date: 2013-10-21 17:02+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" @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:88 +#: templates/public.php:28 templates/public.php:94 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:85 +#: templates/public.php:91 msgid "No preview available for" msgstr "" + +#: templates/public.php:98 +msgid "Direct link" +msgstr "" diff --git a/l10n/sw_KE/files_trashbin.po b/l10n/sw_KE/files_trashbin.po index 3edc43234c3a18b342939e88c5cb7d3ac3b45f1c..c05cce48dea494732f1d29a4360c59001e43be72 100644 --- a/l10n/sw_KE/files_trashbin.po +++ b/l10n/sw_KE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:814 lib/trashbin.php:816 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:23 msgid "Name" msgstr "" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:26 templates/index.php:28 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:34 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index 1c9b03e91746b9fcfed38d9fa689055f1157d976..ea6aa2ed1c045691a5157432b23d663cd0495158 100644 --- a/l10n/sw_KE/lib.po +++ b/l10n/sw_KE/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,317 @@ msgstr "" "Language: sw_KE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po index da40717273393e1717897c7d65dcd0cecae11adc..c4d98fec5d5d5feb2ddbae964c04e9f81bde86ef 100644 --- a/l10n/sw_KE/settings.po +++ b/l10n/sw_KE/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,31 +129,31 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/sw_KE/user_ldap.po b/l10n/sw_KE/user_ldap.po index e51b2fcb6f1dbeafe1c362479aa9ae1dc60205e2..998150bf16b3d12a0f8abb774a643962d0136792 100644 --- a/l10n/sw_KE/user_ldap.po +++ b/l10n/sw_KE/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-27 17:09+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" @@ -25,314 +25,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "" -#: js/settings.js:141 +#: js/settings.js:777 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:786 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:795 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:812 js/settings.js:821 +msgid "Select groups" +msgstr "" + +#: js/settings.js:815 js/settings.js:824 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:818 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:845 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:852 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:861 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:862 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:779 lib/wizard.php:791 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:952 +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 "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 85ae869a75217733d1859cc847155701990a56bb..925e3c1f42ae295c5a512dd6672f67d595b3babd 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,14 +17,15 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" -msgstr "குழு" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "பிரிவு வகைகள் வழங்கப்படவில்லை" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "சேர்ப்பதற்கான வகைகள் இல்லையா?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "பொருள் வகை வழங்கப்படவில்லை" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID வழங்கப்படவில்லை" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "விருப்பங்களுக்கு %s ஐ சேர்ப்பதில் வழு" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "நீக்குவதற்கு எந்தப் பிரிவும் தெரிவுசெய்யப்படவில்லை." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "விருப்பத்திலிருந்து %s ஐ அகற்றுவதில் வழு.உஇஇ" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -186,59 +148,59 @@ msgstr "கார்த்திகை" msgid "December" msgstr "மார்கழி" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "இன்று" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "நேற்று" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "கடந்த மாதம்" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "மாதங்களுக்கு முன்" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "கடந்த வருடம்" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "வருடங்களுக்கு முன்" @@ -306,155 +268,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "பொருள் வகை குறிப்பிடப்படவில்லை." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "வழு" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "செயலி பெயர் குறிப்பிடப்படவில்லை." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "தேவைப்பட்ட கோப்பு {கோப்பு} நிறுவப்படவில்லை!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "பகிர்வு" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "வழு" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "பகிரும் போதான வழு" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "பகிராமல் உள்ளப்போதான வழு" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "அனுமதிகள் மாறும்போதான வழு" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "உங்களுடனும் குழுவுக்கிடையிலும் {குழு} பகிரப்பட்டுள்ளது {உரிமையாளர்}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "உங்களுடன் பகிரப்பட்டுள்ளது {உரிமையாளர்}" -#: js/share.js:183 -msgid "Share with" -msgstr "பகிர்தல்" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "இணைப்புடன் பகிர்தல்" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "கடவுச்சொல்லை பாதுகாத்தல்" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "கடவுச்சொல்" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "காலாவதி தேதியை குறிப்பிடுக" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "காலவதியாகும் திகதி" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "மின்னஞ்சலினூடான பகிர்வு: " -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "நபர்கள் யாரும் இல்லை" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "குழு" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "மீள்பகிர்வதற்கு அனுமதி இல்லை " -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "{பயனாளர்} உடன் {உருப்படி} பகிரப்பட்டுள்ளது" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "பகிரப்படாதது" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "தொகுக்க முடியும்" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "கட்டுப்பாடான அணுகல்" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "உருவவாக்கல்" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "இற்றைப்படுத்தல்" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "நீக்குக" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "பகிர்தல்" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "கடவுச்சொல் பாதுகாக்கப்பட்டது" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடாமைக்கான வழு" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடுவதில் வழு" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "நீங்கள் மின்னஞ்சல் மூலம் உங்களுடைய கடவுச்சொல்லை மீளமைப்பதற்கான இணைப்பை பெறுவீர்கள். " -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "பயனாளர் பெயர்" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -503,13 +493,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "கோரிக்கை மீளமைப்பு" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -535,7 +525,7 @@ msgstr "தனிப்பட்ட" msgid "Users" msgstr "பயனாளர்" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "செயலிகள்" @@ -547,6 +537,34 @@ msgstr "நிர்வாகம்" 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 "அணுக தடை" @@ -563,108 +581,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "வகைகளை தொகுக்க" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "சேர்க்க" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "பாதுகாப்பு எச்சரிக்கை" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "குறிப்பிட்ட எண்ணிக்கை பாதுகாப்பான புறப்பாக்கி / உண்டாக்கிகள் இல்லை, தயவுசெய்து PHP OpenSSL நீட்சியை இயலுமைப்படுத்துக. " -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr " நிர்வாக கணக்கொன்றை உருவாக்குக" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "உயர்ந்த" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "தரவு கோப்புறை" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "தரவுத்தளத்தை தகவமைக்க" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "பயன்படுத்தப்படும்" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "தரவுத்தள பயனாளர்" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "தரவுத்தள கடவுச்சொல்" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "தரவுத்தள பெயர்" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "தரவுத்தள அட்டவணை" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "தரவுத்தள ஓம்புனர்" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "அமைப்பை முடிக்க" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "விடுபதிகை செய்க" @@ -682,19 +711,27 @@ msgstr "உங்களுடைய கடவுச்சொல்லை அண msgid "Please change your password to secure your account again." msgstr "உங்களுடைய கணக்கை மீண்டும் பாதுகாக்க தயவுசெய்து உங்களுடைய கடவுச்சொல்லை மாற்றவும்." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "உங்கள் கடவுச்சொல்லை தொலைத்துவிட்டீர்களா?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "ஞாபகப்படுத்துக" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "புகுபதிகை" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -702,10 +739,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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/ta_LK/files.po b/l10n/ta_LK/files.po index dd4a7dcf141cd56b51dec91eaab208e1d5c62914..2677f36e594e04cf483e9e780769f929b0158817 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -27,220 +27,286 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "இங்கு வழு இல்லை, கோப்பு வெற்றிகரமாக பதிவேற்றப்பட்டது" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "பதிவேற்றப்பட்ட கோப்பானது பகுதியாக மட்டுமே பதிவேற்றப்பட்டுள்ளது" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "எந்த கோப்பும் பதிவேற்றப்படவில்லை" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "ஒரு தற்காலிகமான கோப்புறையை காணவில்லை" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "வட்டில் எழுத முடியவில்லை" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "கோப்புகள்" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்." -#: js/file-upload.js:520 -msgid "URL cannot be empty." -msgstr "URL வெறுமையாக இருக்கமுடியாது." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "வழு" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} ஏற்கனவே உள்ளது" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "பகிர்வு" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "பெயர்மாற்றம்" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "நிலுவையிலுள்ள" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} ஏற்கனவே உள்ளது" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "மாற்றிடுக" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "பெயரை பரிந்துரைக்க" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "இரத்து செய்க" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ஆனது {old_name} இனால் மாற்றப்பட்டது" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "முன் செயல் நீக்கம் " -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "வழு" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "பெயர்" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "அளவு" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "மாற்றப்பட்டது" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "பதிவேற்றுக" @@ -276,65 +342,69 @@ msgstr "ZIP கோப்புகளுக்கான ஆகக்கூடி msgid "Save" msgstr "சேமிக்க " -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "புதிய" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "கோப்பு உரை" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "கோப்புறை" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "இணைப்பிலிருந்து" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "பதிவேற்றலை இரத்து செய்க" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "இங்கு ஒன்றும் இல்லை. ஏதாவது பதிவேற்றுக!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "பகிரப்படாதது" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "நீக்குக" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "பதிவேற்றல் மிகப்பெரியது" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "நீங்கள் பதிவேற்ற முயற்சிக்கும் கோப்புகளானது இந்த சேவையகத்தில் கோப்பு பதிவேற்றக்கூடிய ஆகக்கூடிய அளவிலும் கூடியது." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "கோப்புகள் வருடப்படுகின்றன, தயவுசெய்து காத்திருங்கள்." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "தற்போது வருடப்படுபவை" diff --git a/l10n/ta_LK/files_encryption.po b/l10n/ta_LK/files_encryption.po index 6c36776c8a3b498ae5544d51d16a190f76482b68..3916599a56aaa238fe20c798fb8b18f0f9e49038 100644 --- a/l10n/ta_LK/files_encryption.po +++ b/l10n/ta_LK/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:41 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "சேமிக்கப்படுகிறது..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "மறைக்குறியீடு" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 510a8d15dccbaa17c0a52ba1950f4ffa4f7ccaa1..cffd95fe908335941ddb7fa20637a88796f816ac 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "அனுமதி வழங்கப்பட்டது" @@ -25,7 +25,7 @@ msgstr "அனுமதி வழங்கப்பட்டது" msgid "Error configuring Dropbox storage" msgstr "Dropbox சேமிப்பை தகவமைப்பதில் வழு" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "அனுமதியை வழங்கல்" @@ -33,24 +33,24 @@ msgstr "அனுமதியை வழங்கல்" msgid "Please provide a valid Dropbox app key and secret." msgstr "தயவுசெய்து ஒரு செல்லுபடியான Dropbox செயலி சாவி மற்றும் இரகசியத்தை வழங்குக. " -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Google இயக்க சேமிப்பகத்தை தகமைப்பதில் வழு" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index 73a4ffdeae2216a3af721432b985fbdf192806bc..f57532365829cb55e6e33af2ba676d8c588481f8 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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/authenticate.php:9 -msgid "Submit" -msgstr "சமர்ப்பிக்குக" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s கோப்புறையானது %s உடன் பகிரப்பட்டது" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s கோப்பானது %s உடன் பகிரப்பட்டது" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "பதிவேற்றுக" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "பதிவேற்றலை இரத்து செய்க" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "அதற்கு முன்னோக்கு ஒன்றும் இல்லை" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 6cf36b94cdef9bcd231fea597fb9b5889e603273..357812b35130328755cf0dd41c93850ec9f0d8a4 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "வழு" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:815 lib/trashbin.php:817 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:8 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:22 msgid "Name" msgstr "பெயர்" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:25 templates/index.php:27 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:33 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "நீக்குக" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 13095e3d78d5e693921bb875b2cac3fa9564c1b8..0a623df524a45034d491dc19358c53e3eff3febb 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,318 +17,317 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "உதவி" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "தனிப்பட்ட" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "அமைப்புகள்" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "பயனாளர்" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "நிர்வாகம்" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "வீசொலிப் பூட்டு பதிவிறக்கம் நிறுத்தப்பட்டுள்ளது." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "கோப்புகள்ஒன்றன் பின் ஒன்றாக பதிவிறக்கப்படவேண்டும்." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "கோப்புகளுக்கு செல்க" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "வீ சொலிக் கோப்புகளை உருவாக்குவதற்கு தெரிவுசெய்யப்பட்ட கோப்புகள் மிகப்பெரியவை" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "செயலி இயலுமைப்படுத்தப்படவில்லை" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "அத்தாட்சிப்படுத்தலில் வழு" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "அடையாளவில்லை காலாவதியாகிவிட்டது. தயவுசெய்து பக்கத்தை மீள் ஏற்றுக." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "கோப்புகள்" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "உரை" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "படங்கள்" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "பிரிவு \"%s\" ஐ கண்டுப்பிடிக்க முடியவில்லை" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "இன்று" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "நேற்று" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "கடந்த மாதம்" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "கடந்த வருடம்" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "வருடங்களுக்கு முன்" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "பிரிவு \"%s\" ஐ கண்டுப்பிடிக்க முடியவில்லை" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index cafed635ec952f37241968237c860b8077005bd1..2bfc1b80e901c68eca78b9dcb9136755bd40bd9b 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "அத்தாட்சிப்படுத்தலில் வழு" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "இயலுமைப்ப" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "இயலுமைப்படுத்துக" @@ -129,31 +129,31 @@ msgstr "இயலுமைப்படுத்துக" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "வழு" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "இற்றைப்படுத்தல்" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "முன் செயல் நீக்கம் " msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "குழுக்கள்" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "குழு நிர்வாகி" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "நீக்குக" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "_மொழி_பெயர்_" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "பாதுகாப்பு எச்சரிக்கை" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "மேலதிக" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "குறைவான" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "மறைக்குறியீடு" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 3df1b0da627ecdea4e62a9bc573600ef5760034e..d30912db7e6972528573bc3fec433967dcad380b 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "வழு" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:778 lib/wizard.php:790 +msgid "Invalid Host" msgstr "" -#: templates/settings.php:12 +#: lib/wizard.php:951 +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 "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +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/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "ஓம்புனர்" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "நீங்கள் SSL சேவையை தவிர உடன்படு வரைமுறையை தவிர்க்க முடியும். பிறகு ldaps:.// உடன் ஆரம்பிக்கவும்" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "தள DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "நீங்கள் பயனாளர்களுக்கும் மேன்மை தத்தலில் உள்ள குழுவிற்கும் தள DN ஐ குறிப்பிடலாம் " +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "துறை " -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "பயனாளர் DN" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "கடவுச்சொல்" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "நீங்கள் பயனாளர்களுக்கும் மேன்மை தத்தலில் உள்ள குழுவிற்கும் தள DN ஐ குறிப்பிடலாம் " + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "பின்னுக்கு" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "துறை " - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "TLS ஐ பயன்படுத்தவும்" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "உணர்ச்சியான LDAP சேவையகம் (சாளரங்கள்)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "SSL சான்றிதழின் செல்லுபடியை நிறுத்திவிடவும்" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "செக்கன்களில். ஒரு மாற்றம் இடைமாற்றுநினைவகத்தை வெற்றிடமாக்கும்." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "பயனாளர் காட்சிப்பெயர் புலம்" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "தள பயனாளர் மரம்" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "குழுவின் காட்சி பெயர் புலம் " -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "தள குழு மரம்" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "குழு உறுப்பினர் சங்கம்" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "bytes களில் " -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "பயனாளர் பெயரிற்கு வெற்றிடமாக விடவும் (பொது இருப்பு). இல்லாவிடின் LDAP/AD பண்புக்கூறை குறிப்பிடவும்." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "உதவி" diff --git a/l10n/te/core.po b/l10n/te/core.po index fa997fc7fcc78ca010d5fce75850acc805d1b601..4ba4480ce1c0d045b62a894683cd7b546cde532d 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,13 +17,14 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "ఈ వర్గం ఇప్పటికే ఉంది: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -186,59 +148,59 @@ msgstr "నవంబర్" msgid "December" msgstr "డిసెంబర్" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "అమరికలు" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "ఈరోజు" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "నిన్న" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "పోయిన నెల" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "నెలల క్రితం" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "సంవత్సరాల క్రితం" @@ -306,155 +268,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "పొరపాటు" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "పొరపాటు" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" +#: js/share.js:213 +msgid "Share with user or group …" msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "సంకేతపదం" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "పంపించు" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "కాలం చెల్లు తేదీ" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "తొలగించు" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "వాడుకరి పేరు" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -503,12 +493,12 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" msgstr "" #: lostpassword/templates/resetpassword.php:4 @@ -535,7 +525,7 @@ msgstr "" msgid "Users" msgstr "వాడుకరులు" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "" @@ -547,6 +537,34 @@ msgstr "" 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 "" @@ -563,108 +581,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "చేర్చు" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "నిష్క్రమించు" @@ -682,19 +711,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "మీ సంకేతపదం పోయిందా?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -702,10 +739,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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.php:3 +#: 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/te/files.po b/l10n/te/files.po index 6c0c87d21816ce534a684316f4fc30a196507f20..f1746363e6830bb27ff686567ad8c311efea8b2d 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -27,220 +27,286 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "పొరపాటు" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" -#: js/fileactions.js:119 +#: js/fileactions.js:125 msgid "Share" msgstr "" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "శాశ్వతంగా తొలగించు" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:416 -msgid "suggest name" -msgstr "" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "రద్దుచేయి" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "పొరపాటు" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "పేరు" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "పరిమాణం" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "" @@ -276,65 +342,69 @@ msgstr "" msgid "Save" msgstr "భద్రపరచు" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "కొత్త సంచయం" + +#: templates/index.php:10 msgid "Folder" msgstr "సంచయం" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "తొలగించు" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/te/files_encryption.po b/l10n/te/files_encryption.po index c592c5b12d8ac6ef2d46b44c27d44d6bfb87da44..b9488099d4fcdc41b0a50c63c0ddc68e31083ce1 100644 --- a/l10n/te/files_encryption.po +++ b/l10n/te/files_encryption.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# వీవెన్ , 2013 +# వీవెన్ వీరపనేని , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -44,75 +44,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:44 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 -msgid "Saving..." +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." +#: js/settings-admin.js:13 +msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "వ్యక్తిగత అమరికలు" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -120,58 +141,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 91be85d763577701d25f30f32acbbe6959e8c3d3..8cd62f867f29adff4a34ff638c213052a8e3461b 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/te/files_sharing.po b/l10n/te/files_sharing.po index 3e0c6d01743ab4c0b835e46676df25064db880b4..b03f8b85761433a477f27d723effd18f0c406bfb 100644 --- a/l10n/te/files_sharing.po +++ b/l10n/te/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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/authenticate.php:9 -msgid "Submit" -msgstr "" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index b4d02b2255831d6c7152717403df9f3a02bc793b..a8ea979cc3bec14c8c1d47c86a42d5a9a3d6c7a9 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "పొరపాటు" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:815 lib/trashbin.php:817 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "శాశ్వతంగా తొలగించు" +#: templates/index.php:8 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:22 msgid "Name" msgstr "పేరు" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:25 templates/index.php:27 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:33 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "తొలగించు" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 6bea113344d111d175a518dc14b4dd426ccdfa95..3490c68acb266cae82b96ace3bddd70f7ae4469b 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,318 +17,317 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "సహాయం" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "అమరికలు" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "వాడుకరులు" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "ఈరోజు" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "నిన్న" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "పోయిన నెల" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "సంవత్సరాల క్రితం" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index b9bb6933e6add143469768a37ceec63ef384e2a4..475d990c39d6fac8d8585b07f5716204501dca5d 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,31 +129,31 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "పొరపాటు" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "తొలగించు" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "మరిన్ని" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index f187c04b451425b5703ca92087e63f5819a919be..8aa5f5df8bdda1c90ac44a9959cc04fb7c9a580d 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "పొరపాటు" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:778 lib/wizard.php:790 +msgid "Invalid Host" msgstr "" -#: templates/settings.php:12 +#: lib/wizard.php:951 +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 "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "సంకేతపదం" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "సహాయం" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 687b168209c8d5070bd04c13b193d92345c73db8..3bd1bd9070923bef2c28e7edd40fd936cbbdffad 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" +"POT-Creation-Date: 2014-01-08 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,13 +18,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -52,45 +53,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -187,59 +149,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "" -#: js/js.js:866 +#: js/js.js:872 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:873 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:874 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:875 msgid "today" msgstr "" -#: js/js.js:870 +#: js/js.js:876 msgid "yesterday" msgstr "" -#: js/js.js:871 +#: js/js.js:877 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:878 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:879 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:880 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:881 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:882 msgid "years ago" msgstr "" @@ -307,155 +269,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 -msgid "Error" -msgstr "" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:696 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" +#: js/share.js:213 +msgid "Share with user or group …" msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:643 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:656 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:668 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:683 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:694 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -504,12 +494,12 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" msgstr "" #: lostpassword/templates/resetpassword.php:4 @@ -536,7 +526,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "" @@ -548,6 +538,34 @@ msgstr "" 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 "" @@ -564,108 +582,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -683,19 +712,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -703,10 +740,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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/templates/files.pot b/l10n/templates/files.pot index 5a5cf056beb95345b3f102aca16096d3c40f6617..5396110aede460a741eee2a414394f7e5e4f5924 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-09-30 10:14-0400\n" +"POT-Creation-Date: 2014-01-08 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -28,62 +28,106 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" @@ -91,157 +135,177 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" msgstr "" -#: js/fileactions.js:119 -msgid "Share" +#: js/file-upload.js:595 +msgid "Could not create file" msgstr "" -#: js/fileactions.js:131 -msgid "Delete permanently" +#: js/file-upload.js:611 +msgid "Could not create folder" msgstr "" -#: js/fileactions.js:197 -msgid "Rename" +#: js/file-upload.js:661 +msgid "Error fetching URL" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 -msgid "Pending" +#: js/fileactions.js:125 +msgid "Share" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/fileactions.js:137 +msgid "Delete permanently" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" +#: js/fileactions.js:194 +msgid "Rename" msgstr "" -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "" @@ -277,65 +341,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 312f7f29bb0e6b1072fd30fb41faf9d0844adbe5..31232e16fb3f718b0246258e6bc3b77f17236eef 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-09-30 10:15-0400\n" +"POT-Creation-Date: 2014-01-08 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -42,75 +42,95 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private " -"key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:53 +#: 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:62 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:54 +#: hooks/hooks.php:63 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:255 +#: hooks/hooks.php:281 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 -msgid "Saving..." +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." +#: js/settings-admin.js:13 +msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -118,58 +138,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 0ec2c070912ef82fb275d28310360758cc17d338..b8ac9956fa444596f1a878424cb41883c200a672 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" +"POT-Creation-Date: 2014-01-08 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -37,20 +37,20 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: lib/config.php:467 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:457 +#: lib/config.php:471 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting " "of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:460 +#: lib/config.php:474 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 77c296c9a7c49a3c554cef885caea5e5b0bdf409..d0daf4154b18c7a86244111e082915ce6bc530a8 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" +"POT-Creation-Date: 2014-01-08 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,15 +18,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +msgid "This share is password-protected" msgstr "" #: templates/authenticate.php:7 -msgid "Password" +msgid "The password is wrong. Try again." msgstr "" -#: templates/authenticate.php:9 -msgid "Submit" +#: templates/authenticate.php:10 +msgid "Password" msgstr "" #: templates/part.404.php:3 @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index b379edf9e9310d38f1a6affa8f582b368ab787cd..eadcdd9d3e29d6d611ce9ff4f0a6021187cf792e 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" +"POT-Creation-Date: 2014-01-08 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,70 +16,45 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:63 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:43 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 msgid "Error" msgstr "" -#: js/trash.js:37 -msgid "delete file permanently" +#: lib/trashbin.php:905 lib/trashbin.php:907 +msgid "restored" msgstr "" -#: js/trash.js:129 -msgid "Delete permanently" +#: templates/index.php:7 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:190 templates/index.php:21 +#: templates/index.php:20 msgid "Name" msgstr "" -#: js/trash.js:191 templates/index.php:31 -msgid "Deleted" -msgstr "" - -#: js/trash.js:199 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:205 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trashbin.php:814 lib/trashbin.php:816 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:23 templates/index.php:25 +msgid "Restore" msgstr "" -#: templates/index.php:24 templates/index.php:26 -msgid "Restore" +#: templates/index.php:31 +msgid "Deleted" msgstr "" #: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 4d7bff6e8b69a372cec83c842b494d1bfd536ff8..8ba48805bac0ce3cf40b581e8c521043263fb7ab 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" +"POT-Creation-Date: 2014-01-08 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -22,22 +22,22 @@ msgstr "" msgid "Could not revert: %s" msgstr "" -#: js/versions.js:7 +#: js/versions.js:14 msgid "Versions" msgstr "" -#: js/versions.js:53 +#: js/versions.js:60 msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: js/versions.js:79 +#: js/versions.js:86 msgid "More versions..." msgstr "" -#: js/versions.js:116 +#: js/versions.js:123 msgid "No other versions available" msgstr "" -#: js/versions.js:145 +#: js/versions.js:154 msgid "Restore" msgstr "" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index cdaf465ab302912b24aea53c00e7da465514ed12..29ab50202bf86be90996b16f45fed9e6e98a65e8 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" +"POT-Creation-Date: 2014-01-08 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,318 +18,317 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: app.php:237 +#: private/app.php:245 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version " "of ownCloud." msgstr "" -#: app.php:248 +#: private/app.php:257 msgid "No app name specified" msgstr "" -#: app.php:352 +#: private/app.php:362 msgid "Help" msgstr "" -#: app.php:365 +#: private/app.php:375 msgid "Personal" msgstr "" -#: app.php:376 +#: private/app.php:386 msgid "Settings" msgstr "" -#: app.php:388 +#: private/app.php:398 msgid "Users" msgstr "" -#: app.php:401 +#: private/app.php:411 msgid "Admin" msgstr "" -#: app.php:832 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:254 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:30 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: tags.php:194 +#: private/tags.php:194 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: template/functions.php:96 +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot new file mode 100644 index 0000000000000000000000000000000000000000..fd5e0fded54f29d4db04f56f324c4d4aadcec496 --- /dev/null +++ b/l10n/templates/private.pot @@ -0,0 +1,327 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ownCloud Core 6.0.0\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-08 01:55-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + +#: app.php:245 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version " +"of ownCloud." +msgstr "" + +#: app.php:257 +msgid "No app name specified" +msgstr "" + +#: app.php:362 +msgid "Help" +msgstr "" + +#: app.php:375 +msgid "Personal" +msgstr "" + +#: app.php:386 +msgid "Settings" +msgstr "" + +#: app.php:398 +msgid "Users" +msgstr "" + +#: app.php:411 +msgid "Admin" +msgstr "" + +#: app.php:875 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "" + +#: avatar.php:66 +msgid "Unknown filetype" +msgstr "" + +#: avatar.php:71 +msgid "Invalid image" +msgstr "" + +#: defaults.php:34 +msgid "web services under your control" +msgstr "" + +#: files.php:66 files.php:98 +#, php-format +msgid "cannot open \"%s\"" +msgstr "" + +#: files.php:226 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:227 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:228 files.php:256 +msgid "Back to Files" +msgstr "" + +#: files.php:253 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: files.php:254 +msgid "" +"Please download the files separately in smaller chunks or kindly ask your " +"administrator." +msgstr "" + +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:125 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:131 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:140 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:146 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:159 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:169 +msgid "App directory already exists" +msgstr "" + +#: installer.php:182 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:62 json.php:73 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: search/provider/file.php:18 search/provider/file.php:36 +msgid "Files" +msgstr "" + +#: search/provider/file.php:27 search/provider/file.php:34 +msgid "Text" +msgstr "" + +#: search/provider/file.php:30 +msgid "Images" +msgstr "" + +#: setup/abstractdatabase.php:26 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: setup/abstractdatabase.php:29 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: setup/abstractdatabase.php:32 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 +#: setup/postgresql.php:24 setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: setup/mysql.php:12 +msgid "MySQL username and/or password not valid" +msgstr "" + +#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:144 +#: setup/oci.php:151 setup/oci.php:162 setup/oci.php:169 setup/oci.php:178 +#: setup/oci.php:186 setup/oci.php:195 setup/oci.php:201 +#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 +#: setup/postgresql.php:125 setup/postgresql.php:134 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:145 +#: setup/oci.php:152 setup/oci.php:163 setup/oci.php:179 setup/oci.php:187 +#: setup/oci.php:196 setup/postgresql.php:90 setup/postgresql.php:99 +#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "" + +#: setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: setup/mysql.php:92 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: setup/oci.php:41 setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: setup/oci.php:170 setup/oci.php:202 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: setup/postgresql.php:23 setup/postgresql.php:69 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: setup.php:195 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: setup.php:196 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: template/functions.php:130 +msgid "seconds ago" +msgstr "" + +#: template/functions.php:131 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: template/functions.php:132 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: template/functions.php:133 +msgid "today" +msgstr "" + +#: template/functions.php:134 +msgid "yesterday" +msgstr "" + +#: template/functions.php:136 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: template/functions.php:138 +msgid "last month" +msgstr "" + +#: template/functions.php:139 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: template/functions.php:141 +msgid "last year" +msgstr "" + +#: template/functions.php:142 +msgid "years ago" +msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index af2b7236802602fb44637ae239db1678b694dcf5..a25543919ada8ca4062bf8343c708564f1437433 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-09-30 10:17-0400\n" +"POT-Creation-Date: 2014-01-08 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -156,7 +156,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:221 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" @@ -164,7 +164,7 @@ msgstr "" msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:288 +#: js/personal.js:287 msgid "Saving..." msgstr "" @@ -180,44 +180,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "" +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -226,48 +257,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -276,109 +327,117 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -570,6 +633,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -587,7 +654,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index ca738710f5cd80ee3485cdef0b33cde76b1202d5..5e79d17a11a1e45d806d68eaff4a9515051e9e3c 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" +"POT-Creation-Date: 2014-01-08 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." @@ -25,312 +26,423 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may " -"experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:778 lib/wizard.php:790 +msgid "Invalid Host" msgstr "" -#: templates/settings.php:12 +#: lib/wizard.php:951 +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 "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may " +"experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -346,15 +458,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute " "is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -365,15 +477,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -387,18 +503,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index d3a899a1fe57978a0223a9adf4a9b13077b839a3..acf94225f59bde5e108d1b3a0b6649f40a3c3885 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" +"POT-Creation-Date: 2014-01-08 01:55-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 8700d149b0f036ee45fb7f2b4ca827ac72ef71d8..0539d2cd29363364b912085f360f3e7fbb9404c6 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,14 +17,15 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" -msgstr "กลุ่มผู้ใช้งาน" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "ยังไม่ได้ระบุชนิดของหมวดหมู่" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "ไม่มีหมวดหมู่ที่ต้องการเพิ่ม?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "ชนิดของวัตถุยังไม่ได้ถูกระบุ" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "ยังไม่ได้ระบุรหัส %s" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "เกิดข้อผิดพลาดในการเพิ่ม %s เข้าไปยังรายการโปรด" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "ยังไม่ได้เลือกหมวดหมู่ที่ต้องการลบ" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "เกิดข้อผิดพลาดในการลบ %s ออกจากรายการโปรด" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -186,55 +148,55 @@ msgstr "พฤศจิกายน" msgid "December" msgstr "ธันวาคม" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "วันนี้" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "เมื่อวานนี้" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "เดือนที่แล้ว" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "เดือน ที่ผ่านมา" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "ปีที่แล้ว" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "ปี ที่ผ่านมา" @@ -301,155 +263,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "ชนิดของวัตถุยังไม่ได้รับการระบุ" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "ข้อผิดพลาด" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "ชื่อของแอปยังไม่ได้รับการระบุชื่อ" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "ไฟล์ {file} ซึ่งเป็นไฟล์ที่จำเป็นต้องได้รับการติดตั้งไว้ก่อน ยังไม่ได้ถูกติดตั้ง" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "แชร์แล้ว" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "แชร์" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "ข้อผิดพลาด" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "เกิดข้อผิดพลาดในการยกเลิกการแชร์ข้อมูล" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "เกิดข้อผิดพลาดในการเปลี่ยนสิทธิ์การเข้าใช้งาน" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "ได้แชร์ให้กับคุณ และกลุ่ม {group} โดย {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "ถูกแชร์ให้กับคุณโดย {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "แชร์ให้กับ" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "แชร์ด้วยลิงก์" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "รหัสผ่าน" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "ส่งลิงก์ให้ทางอีเมล" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "ส่ง" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "กำหนดวันที่หมดอายุ" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "วันที่หมดอายุ" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "แชร์ผ่านทางอีเมล" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "ไม่พบบุคคลที่ต้องการ" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "กลุ่มผู้ใช้งาน" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "ไม่อนุญาตให้แชร์ข้อมูลซ้ำได้" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "ได้แชร์ {item} ให้กับ {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "ยกเลิกการแชร์" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "สามารถแก้ไข" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "ระดับควบคุมการเข้าใช้งาน" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "สร้าง" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "อัพเดท" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "ลบ" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "แชร์" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "เกิดข้อผิดพลาดในการยกเลิกการตั้งค่าวันที่หมดอายุ" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "เกิดข้อผิดพลาดในการตั้งค่าวันที่หมดอายุ" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "กำลังส่ง..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "ส่งอีเมล์แล้ว" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "คุณจะได้รับลิงค์เพื่อกำหนดรหัสผ่านใหม่ทางอีเมล์" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "ชื่อผู้ใช้งาน" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -498,13 +488,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "ขอเปลี่ยนรหัสใหม่" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -530,7 +520,7 @@ msgstr "ส่วนตัว" msgid "Users" msgstr "ผู้ใช้งาน" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "แอปฯ" @@ -542,6 +532,34 @@ msgstr "ผู้ดูแล" 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 "การเข้าถึงถูกหวงห้าม" @@ -558,108 +576,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "แก้ไขหมวดหมู่" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "เพิ่ม" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "คำเตือนเกี่ยวกับความปลอดภัย" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "ยังไม่มีตัวสร้างหมายเลขแบบสุ่มให้ใช้งาน, กรุณาเปิดใช้งานส่วนเสริม PHP OpenSSL" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "สร้าง บัญชีผู้ดูแลระบบ" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "ขั้นสูง" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "โฟลเดอร์เก็บข้อมูล" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "กำหนดค่าฐานข้อมูล" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "จะถูกใช้" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "ชื่อผู้ใช้งานฐานข้อมูล" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "รหัสผ่านฐานข้อมูล" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "ชื่อฐานข้อมูล" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "พื้นที่ตารางในฐานข้อมูล" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Database host" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "ติดตั้งเรียบร้อยแล้ว" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "ออกจากระบบ" @@ -677,19 +706,27 @@ msgstr "หากคุณยังไม่ได้เปลี่ยนรห msgid "Please change your password to secure your account again." msgstr "กรุณาเปลี่ยนรหัสผ่านของคุณอีกครั้ง เพื่อป้องกันบัญชีของคุณให้ปลอดภัย" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "ลืมรหัสผ่าน?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "จำรหัสผ่าน" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "เข้าสู่ระบบ" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -697,10 +734,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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 "กำลังอัพเดท ownCloud ไปเป็นรุ่น %s, กรุณารอสักครู่" + +#: 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/th_TH/files.po b/l10n/th_TH/files.po index c6f593331857e1658d9a3afde500bde8c6339bdc..f0b7289c8d85218f20ad5955ef460feb0611ecd3 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -27,217 +27,283 @@ msgstr "ไม่สามารถย้าย %s ได้ - ไฟล์ท msgid "Could not move %s" msgstr "ไม่สามารถย้าย %s ได้" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "ชื่อไฟล์ไม่สามารถเว้นว่างได้" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "ไม่พบข้อผิดพลาดใดๆ, ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini" -#: ajax/upload.php:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "ไฟล์ถูกอัพโหลดได้เพียงบางส่วนเท่านั้น" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "ไม่มีไฟล์ที่ถูกอัพโหลด" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "โฟลเดอร์ชั่วคราวเกิดการสูญหาย" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้มเหลว" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "เหลือพื้นที่ไม่เพียงสำหรับใช้งาน" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "ไดเร็กทอรี่ไม่ถูกต้อง" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "ไฟล์" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "มีพื้นที่เหลือไม่เพียงพอ" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "การอัพโหลดถูกยกเลิก" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" -#: js/file-upload.js:520 -msgid "URL cannot be empty." -msgstr "URL ไม่สามารถเว้นว่างได้" +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "ข้อผิดพลาด" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} มีอยู่แล้วในระบบ" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "แชร์" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "เปลี่ยนชื่อ" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} มีอยู่แล้วในระบบ" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "แทนที่" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "แนะนำชื่อ" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "ยกเลิก" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "แทนที่ {new_name} ด้วย {old_name} แล้ว" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "เลิกทำ" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' เป็นชื่อไฟล์ที่ไม่ถูกต้อง" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "ชื่อไฟล์ไม่สามารถเว้นว่างได้" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง, '\\', '/', '<', '>', ':', '\"', '|', '?' และ '*' ไม่ได้รับอนุญาตให้ใช้งานได้" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "พื้นที่จัดเก็บข้อมูลของคุณเต็มแล้ว ไม่สามารถอัพเดทหรือผสานไฟล์ต่างๆได้อีกต่อไป" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "พื้นที่จัดเก็บข้อมูลของคุณใกล้เต็มแล้ว ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "กำลังเตรียมดาวน์โหลดข้อมูล หากไฟล์มีขนาดใหญ่ อาจใช้เวลาสักครู่" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "ข้อผิดพลาด" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "ชื่อ" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "ขนาด" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "แก้ไขแล้ว" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "อัพโหลด" @@ -273,65 +339,69 @@ msgstr "ขนาดไฟล์ ZIP สูงสุด" msgid "Save" msgstr "บันทึก" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "อัพโหลดไฟล์ใหม่" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "ไฟล์ข้อความ" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "แฟ้มเอกสาร" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "จากลิงก์" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "ยกเลิกการแชร์" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "ลบ" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "ไฟล์ที่กำลังสแกนอยู่ขณะนี้" diff --git a/l10n/th_TH/files_encryption.po b/l10n/th_TH/files_encryption.po index 84ab71bdb0733ebb2aa8aa4739d235a88402b2dc..062615989141225012c0876b34e56619a9336824 100644 --- a/l10n/th_TH/files_encryption.po +++ b/l10n/th_TH/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:41 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "กำลังบันทึกข้อมูล..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "การเข้ารหัส" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 3036782c91db0d238ce00cc57002e54b19eceddb..eef3790b5be423018278810fdd82c4806ff9a772 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "การเข้าถึงได้รับอนุญาตแล้ว" @@ -25,7 +25,7 @@ msgstr "การเข้าถึงได้รับอนุญาตแล msgid "Error configuring Dropbox storage" msgstr "เกิดข้อผิดพลาดในการกำหนดค่าพื้นที่จัดเก็บข้อมูล Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "อนุญาตให้เข้าถึงได้" @@ -33,24 +33,24 @@ msgstr "อนุญาตให้เข้าถึงได้" msgid "Please provide a valid Dropbox app key and secret." msgstr "กรุณากรอกรหัส app key ของ Dropbox และรหัสลับ" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "เกิดข้อผิดพลาดในการกำหนดค่าการจัดเก็บข้อมูลในพื้นที่ของ Google Drive" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "คำเตือน: \"smbclient\" ยังไม่ได้ถูกติดตั้ง. การชี้ CIFS/SMB เพื่อแชร์ข้อมูลไม่สามารถกระทำได้ กรุณาสอบถามข้อมูลเพิ่มเติมจากผู้ดูแลระบบเพื่อติดตั้ง." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "คำเตือน: การสนับสนุนการใช้งาน FTP ในภาษา PHP ยังไม่ได้ถูกเปิดใช้งานหรือถูกติดตั้ง. การชี้ FTP เพื่อแชร์ข้อมูลไม่สามารถดำเนินการได้ กรุณาสอบถามข้อมูลเพิ่มเติมจากผู้ดูแลระบบเพื่อติดตั้ง" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 467e3de3d83265550e0b8a6db3a32d7775407809..25147a511cc6842247eb1a1854f882178ee866b9 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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/authenticate.php:9 -msgid "Submit" -msgstr "ส่ง" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ได้แชร์โฟลเดอร์ %s ให้กับคุณ" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s ได้แชร์ไฟล์ %s ให้กับคุณ" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "อัพโหลด" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "ไม่สามารถดูตัวอย่างได้สำหรับ" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index d4723ca5dc7d833201a20202d1133dc2cb473c62..658dfef49d448fad6151f5510a7fc3d36fd0a5a7 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -27,53 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "ดำเนินการคืนค่า" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "ข้อผิดพลาด" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "ชื่อ" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "ลบแล้ว" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "ไม่มีอะไรอยู่ในนี้ ถังขยะของคุณยังว่างอยู่" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "ชื่อ" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "คืนค่า" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "ลบแล้ว" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "ลบ" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 0866886c95a29db613736faf3c0ae8288acbe72a..62f6738438ebd05586778ed59b51d50ecaba191f 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,314 +17,313 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "ช่วยเหลือ" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "ส่วนตัว" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "ตั้งค่า" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "ผู้ใช้งาน" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "ผู้ดูแล" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "คุณสมบัติการดาวน์โหลด zip ถูกปิดการใช้งานไว้" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "ไฟล์สามารถดาวน์โหลดได้ทีละครั้งเท่านั้น" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "กลับไปที่ไฟล์" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "ไฟล์ที่เลือกมีขนาดใหญ่เกินกว่าที่จะสร้างเป็นไฟล์ zip" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "แอพพลิเคชั่นดังกล่าวยังไม่ได้เปิดใช้งาน" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "เกิดข้อผิดพลาดในสิทธิ์การเข้าใช้งาน" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "รหัสยืนยันความถูกต้องหมดอายุแล้ว กรุณาโหลดหน้าเว็บใหม่อีกครั้ง" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "ไฟล์" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "ข้อความ" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "รูปภาพ" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "ไม่พบหมวดหมู่ \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "วันนี้" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "เมื่อวานนี้" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "เดือนที่แล้ว" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "ปีที่แล้ว" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "ปี ที่ผ่านมา" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "ไม่พบหมวดหมู่ \"%s\"" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 1b369b9b75b0adf00a42a51f8f80971badac2a1e..6713c82ea433f67c24ddd0fb10066d081ff8a889 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "เกิดข้อผิดพลาดในสิทธิ์การเข้าใช้งาน" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "อัพเดทไปเป็นรุ่น {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "ปิดใช้งาน" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "เปิดใช้งาน" @@ -129,31 +129,31 @@ msgstr "เปิดใช้งาน" msgid "Please wait...." msgstr "กรุณารอสักครู่..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "กำลังอัพเดทข้อมูล..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "เกิดข้อผิดพลาดในระหว่างการอัพเดทแอปฯ" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "ข้อผิดพลาด" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "อัพเดท" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "อัพเดทแล้ว" @@ -161,7 +161,7 @@ msgstr "อัพเดทแล้ว" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "เลิกทำ" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "กลุ่ม" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "ผู้ดูแลกลุ่ม" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "ลบ" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "ภาษาไทย" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "คำเตือนเกี่ยวกับความปลอดภัย" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "การแชร์ข้อมูล" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "อนุญาตให้ใช้งานลิงก์ได้" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "อนุญาตให้ผู้ใช้งานสามารถแชร์ข้อมูลรายการต่างๆไปให้สาธารณะชนเป็นลิงก์ได้" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "อนุญาตให้แชร์ข้อมูลซ้ำใหม่ได้" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลรายการต่างๆที่ถูกแชร์มาให้ตัวผู้ใช้งานได้เท่านั้น" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลถึงใครก็ได้" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลได้เฉพาะกับผู้ใช้งานที่อยู่ในกลุ่มเดียวกันเท่านั้น" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "บันทึกการเปลี่ยนแปลง" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "ระดับการเก็บบันทึก log" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "มาก" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "น้อย" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "รุ่น" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "การเข้ารหัส" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "พื้นที่จำกัดข้อมูลเริ่มต้น" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "ไม่จำกัดจำนวน" @@ -589,8 +656,8 @@ msgid "Storage" msgstr "พื้นที่จัดเก็บข้อมูล" #: templates/users.php:108 -msgid "change display name" -msgstr "เปลี่ยนชื่อที่ต้องการให้แสดง" +msgid "change full name" +msgstr "" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index f1de28b8322e47778a326306ea5015c8e2f67ccc..084d3ca8bdca64e9229d6c5c3a1a52a1bc0a2328 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,423 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "การลบการกำหนดค่าเซิร์ฟเวอร์ล้มเหลว" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "การกำหนดค่าถูกต้องและการเชื่อมต่อสามารถเชื่อมต่อได้!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "การกำหนดค่าถูกต้อง, แต่การผูกข้อมูลล้มเหลว, กรุณาตรวจสอบการตั้งค่าเซิร์ฟเวอร์และข้อมูลการเข้าใช้งาน" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "การกำหนดค่าไม่ถูกต้อง กรุณาดูรายละเอียดจากบันทึกการเปลี่ยนแปลงของ ownCloud สำหรับรายละเอียดเพิ่มเติม" +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 "" -#: js/settings.js:66 +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 msgid "Deletion failed" msgstr "การลบทิ้งล้มเหลว" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "รักษาการตั้งค่าไว้?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "ไม่สามารถเพิ่มค่ากำหนดเซิร์ฟเวอร์ได้" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "เสร็จสิ้น" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "ข้อผิดพลาด" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "เลือกกลุ่ม" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "ทดสอบการเชื่อมต่อสำเร็จ" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "ทดสอบการเชื่อมต่อล้มเหลว" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "คุณแน่ใจแล้วหรือว่าต้องการลบการกำหนดค่าเซิร์ฟเวอร์ปัจจุบันทิ้งไป?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "ยืนยันการลบทิ้ง" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" msgstr "" -#: templates/settings.php:12 +#: 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 "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "คำเตือน: โมดูล PHP LDAP ยังไม่ได้ถูกติดตั้ง, ระบบด้านหลังจะไม่สามารถทำงานได้ กรุณาติดต่อผู้ดูแลระบบของคุณเพื่อทำการติดตั้งโมดูลดังกล่าว" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "การกำหนดค่าเซิร์ฟเวอร์" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +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/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "โฮสต์" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "คุณสามารถปล่อยช่องโปรโตคอลเว้นไว้ได้, ยกเว้นกรณีที่คุณต้องการใช้ SSL จากนั้นเริ่มต้นด้วย ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "DN ฐาน" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "หนึ่ง Base DN ต่อบรรทัด" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "คุณสามารถระบุ DN หลักสำหรับผู้ใช้งานและกลุ่มต่างๆในแท็บขั้นสูงได้" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "พอร์ต" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "DN ของผู้ใช้งาน" -#: templates/settings.php:46 +#: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "DN ของผู้ใช้งานที่เป็นลูกค้าอะไรก็ตามที่ผูกอยู่ด้วย เช่น uid=agent, dc=example, dc=com, สำหรับการเข้าถึงโดยบุคคลนิรนาม, ให้เว้นว่าง DN และ รหัสผ่านเอาไว้" -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "รหัสผ่าน" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "สำหรับการเข้าถึงโดยบุคคลนิรนาม ให้เว้นว่าง DN และรหัสผ่านไว้" -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "ตัวกรองข้อมูลการเข้าสู่ระบบของผู้ใช้งาน" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "หนึ่ง Base DN ต่อบรรทัด" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "คุณสามารถระบุ DN หลักสำหรับผู้ใช้งานและกลุ่มต่างๆในแท็บขั้นสูงได้" + +#: templates/part.wizard-userfilter.php:4 #, php-format -msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +msgid "Limit the access to %s to users meeting this criteria:" msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "ตัวกรองข้อมูลรายชื่อผู้ใช้งาน" - -#: templates/settings.php:58 +#: templates/part.wizard-userfilter.php:31 +#, php-format msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "ตัวกรองข้อมูลกลุ่ม" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" -#: templates/settings.php:62 +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "ย้อนกลับ" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "คำเตือน: โมดูล PHP LDAP ยังไม่ได้ถูกติดตั้ง, ระบบด้านหลังจะไม่สามารถทำงานได้ กรุณาติดต่อผู้ดูแลระบบของคุณเพื่อทำการติดตั้งโมดูลดังกล่าว" + +#: templates/settings.php:20 msgid "Connection Settings" msgstr "ตั้งค่าการเชื่อมต่อ" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "พอร์ต" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "ปิดใช้งานเซิร์ฟเวอร์หลัก" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "ใช้ TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "เซิร์ฟเวอร์ LDAP ประเภท Case insensitive (วินโดวส์)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "ปิดใช้งานการตรวจสอบความถูกต้องของใบรับรองความปลอดภัย SSL" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "ในอีกไม่กี่วินาที ระบบจะเปลี่ยนแปลงข้อมูลในแคชให้ว่างเปล่า" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "ตั้งค่าไดเร็กทอรี่" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "ช่องแสดงชื่อผู้ใช้งานที่ต้องการ" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "รายการผู้ใช้งานหลักแบบ Tree" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "หนึ่ง User Base DN ต่อบรรทัด" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "คุณลักษณะการค้นหาชื่อผู้ใช้" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "ตัวเลือกเพิ่มเติม; หนึ่งคุณลักษณะต่อบรรทัด" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "ช่องแสดงชื่อกลุ่มที่ต้องการ" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "รายการกลุ่มหลักแบบ Tree" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "หนึ่ง Group Base DN ต่อบรรทัด" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "คุณลักษณะการค้นหาแบบกลุ่ม" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "ความสัมพันธ์ของสมาชิกในกลุ่ม" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "คุณลักษณะพิเศษ" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "ในหน่วยไบต์" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "เว้นว่างไว้สำหรับ ชื่อผู้ใช้ (ค่าเริ่มต้น) หรือไม่กรุณาระบุคุณลักษณะของ LDAP/AD" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +457,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +476,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +502,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "ช่วยเหลือ" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 286f827c66c9b51ac36004a643c7817035094fc8..8a80ed98df10342d25425eae609025b1645fbadc 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -6,13 +6,14 @@ # Fatih Aşıcı , 2013 # ismail yenigül , 2013 # tridinebandim, 2013 +# volkangezer , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-05 01:55-0500\n" +"PO-Revision-Date: 2014-01-04 20:50+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,14 +21,15 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" -msgstr "%s sizinle »%s« paylaşımında bulundu" +msgstr "%s sizinle »%s« paylaşımında bulundu" -#: ajax/share.php:227 -msgid "group" -msgstr "grup" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Şu kullanıcılara posta gönderilemedi: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -54,64 +56,25 @@ msgstr "Dosya önbelleği güncellendi" msgid "... %d%% done ..." msgstr "%%%d tamamlandı ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Kategori türü girilmedi." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Eklenecek kategori yok?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Bu kategori zaten mevcut: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Nesne türü desteklenmemektedir." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID belirtilmedi." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "%s favorilere eklenirken hata oluştu" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Silmek için bir kategori seçilmedi" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "%s favorilere çıkarılırken hata oluştu" - #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "Resim veya dosya belirtilmedi" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Bilinmeyen dosya türü" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Geçersiz resim" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "Kullanılabilir geçici profil resmi yok, tekrar deneyin" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "Kesme verisi sağlanmamış" #: js/config.php:32 msgid "Sunday" @@ -189,59 +152,59 @@ msgstr "Kasım" msgid "December" msgstr "Aralık" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "saniye önce" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n dakika önce" msgstr[1] "%n dakika önce" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n saat önce" msgstr[1] "%n saat önce" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "bugün" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "dün" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n gün önce" msgstr[1] "%n gün önce" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "geçen ay" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n ay önce" msgstr[1] "%n ay önce" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "ay önce" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "geçen yıl" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "yıl önce" @@ -251,7 +214,7 @@ msgstr "seç" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Dosya seçici şablonu yüklenirken hata: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -267,27 +230,27 @@ msgstr "Tamam" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "İleti şablonu yüklenirken hata: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{count} dosya çakışması" +msgstr[1] "{count} dosya çakışması" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Bir dosya çakışması" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Hangi dosyaları saklamak istiyorsunuz?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Eğer iki sürümü de seçerseniz, kopyalanan dosya ismine eklenmiş bir sayı içerecektir." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -295,168 +258,196 @@ msgstr "İptal" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Devam et" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(tümü seçildi)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} seçildi)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" - -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Nesne türü belirtilmemiş." +msgstr "Dosya mevcut şablonu yüklenirken hata" -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Hata" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "uygulama adı belirtilmedi." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "İhtiyaç duyulan {file} dosyası kurulu değil." - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Paylaşılan" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Paylaş" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Hata" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Paylaşım sırasında hata " -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" -msgstr "Paylaşım iptal ediliyorken hata" +msgstr "Paylaşım iptal edilirken hata" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "İzinleri değiştirirken hata oluştu" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" -msgstr " {owner} tarafından sizinle ve {group} ile paylaştırılmış" +msgstr "{owner} tarafından sizinle ve {group} ile paylaştırılmış" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" -msgstr "{owner} trafından sizinle paylaştırıldı" +msgstr "{owner} tarafından sizinle paylaşıldı" -#: js/share.js:183 -msgid "Share with" -msgstr "ile Paylaş" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Kullanıcı veya grup ile paylaş.." -#: js/share.js:188 -msgid "Share with link" -msgstr "Bağlantı ile paylaş" +#: js/share.js:219 +msgid "Share link" +msgstr "Paylaşma bağlantısı" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" -msgstr "Şifre korunması" +msgstr "Parola koruması" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Parola" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" -msgstr "Herkes tarafından yüklemeye izin ver" +msgstr "Genel Gönderime İzin Ver" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" -msgstr "Kişiye e-posta linki" +msgstr "Bağlantıyı e-posta ile gönder" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Gönder" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Son kullanma tarihini ayarla" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Son kullanım tarihi" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" -msgstr "Eposta ile paylaş" +msgstr "E-posta ile paylaş" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Kişi bulunamadı" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "grup" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Tekrar paylaşmaya izin verilmiyor" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" -msgstr " {item} içinde {user} ile paylaşılanlarlar" +msgstr "{item} içinde {user} ile paylaşılanlar" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Paylaşılmayan" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "e-posta ile bildir" + +#: js/share.js:408 msgid "can edit" msgstr "düzenleyebilir" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "erişim kontrolü" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "oluştur" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "güncelle" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "sil" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "paylaş" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" -msgstr "Paralo korumalı" +msgstr "Parola korumalı" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Geçerlilik tarihi tanımlama kaldırma hatası" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Geçerlilik tarihi tanımlama hatası" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Gönderiliyor..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" -msgstr "Eposta gönderildi" +msgstr "E-posta gönderildi" + +#: js/share.js:769 +msgid "Warning" +msgstr "Uyarı" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Nesne türü belirtilmemiş." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "Yeni girin" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Sil" + +#: js/tags.js:31 +msgid "Add" +msgstr "Ekle" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "Etiketleri düzenle" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "İletişim şablonu yüklenirken hata: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "Silmek için bir etiket seçilmedi." + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "Lütfen sayfayı yeniden yükleyin." #: js/update.js:17 msgid "" @@ -476,43 +467,43 @@ msgstr "%s parola sıfırlama" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Bu bağlantıyı kullanarak parolanızı sıfırlayın: {link}" +msgstr "Parolanızı sıfırlamak için bu bağlantıyı kullanın: {link}" -#: lostpassword/templates/lostpassword.php:4 +#: lostpassword/templates/lostpassword.php:7 msgid "" "The link to reset your password has been sent to your email.
    If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." -msgstr "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.
    I Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk dizinini kontrol ediniz.
    Eğer orada da bulamazsanız sistem yöneticinize sorunuz." +msgstr "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.
    Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk dizinini kontrol ediniz.
    Eğer orada da bulamazsanız sistem yöneticinize sorunuz." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" -msgstr "Isteği başarısız oldu!
    E-posta / kullanıcı adınızı doğru olduğundan emin misiniz?" +msgstr "İstek başarısız!
    E-posta ve/veya kullanıcı adınızın doğru olduğundan emin misiniz?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." -msgstr "Parolanızı sıfırlamak için bir bağlantı Eposta olarak gönderilecek." +msgstr "Parolanızı sıfırlamak için bir bağlantıyı e-posta olarak alacaksınız." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Kullanıcı Adı" -#: lostpassword/templates/lostpassword.php:22 +#: 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 "Dosyalarınız şifrelenmiş. Eğer kurtarma anahtarını aktif etmediyseniz parola sıfırlama işleminden sonra verilerinize erişmeniz imkansız olacak. Eğer ne yaptığınızdan emin değilseniz, devam etmeden önce sistem yöneticiniz ile irtibata geçiniz. Gerçekten devam etmek istiyor musunuz?" +msgstr "Dosyalarınız şifrelenmiş. Eğer kurtarma anahtarını etkinleştirmediyseniz parola sıfırlama işleminden sonra verilerinize erişmeniz imkansız olacak. Eğer ne yaptığınızdan emin değilseniz, devam etmeden önce sistem yöneticiniz ile irtibata geçiniz. Gerçekten devam etmek istiyor musunuz?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" -msgstr "Evet,Şu anda parolamı sıfırlamak istiyorum." +msgstr "Evet, gerçekten parolamı şimdi sıfırlamak istiyorum" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Sıfırlama iste" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Sıfırla" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -538,7 +529,7 @@ msgstr "Kişisel" msgid "Users" msgstr "Kullanıcılar" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Uygulamalar" @@ -550,6 +541,34 @@ msgstr "Yönetici" msgid "Help" msgstr "Yardım" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "Etiketler yüklenirken hata" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "Etiket zaten mevcut" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "Etiket(ler) silinirken hata" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "Etiketleme hatası" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "Etiket kaldırılırken hata" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "Beğenilirken hata" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "Beğeniden kaldırılırken hata" + #: templates/403.php:12 msgid "Access forbidden" msgstr "Erişim yasaklı" @@ -566,108 +585,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Merhaba\n\n%s sizinle %s dosyasını paylaştığı\nPaylaşımı gör:%s\n\nİyi günler!" +msgstr "Merhaba,\n\nSadece %s sizinle %s paylaşımını yaptığını bildiriyoruz.\nBuradan bakabilirsiniz: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Kategorileri düzenle" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "Bu paylaşım %s tarihinde sona erecek." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Ekle" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Şerefe!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" -msgstr "Güvenlik Uyarisi" +msgstr "Güvenlik Uyarısı" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "PHP sürümünüz NULL Byte saldırısına açık (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "%s güvenli olarak kullanmak için, lütfen PHP kurulumunuzu güncelleyin." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Güvenli rasgele sayı üreticisi bulunamadı. Lütfen PHP OpenSSL eklentisini etkinleştirin." +msgstr "Güvenli rastgele sayı üreticisi bulunamadı. Lütfen PHP OpenSSL eklentisini etkinleştirin." -#: templates/installation.php:33 +#: 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 "Güvenli rasgele sayı üreticisi olmadan saldırganlar parola sıfırlama simgelerini tahmin edip hesabınızı ele geçirebilir." +msgstr "Güvenli rastgele sayı üreticisi olmadan saldırganlar parola sıfırlama simgelerini tahmin edip hesabınızı ele geçirebilir." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Veri klasörünüz ve dosyalarınız .htaccess dosyası çalışmadığı için internet'ten erişime açık." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Server'ınızı nasıl ayarlayacağınıza dair bilgi için, lütfen dokümantasyon sayfasını ziyaret edin." +msgstr "Sunucunuzu nasıl ayarlayacağınıza dair bilgi için, lütfen belgelendirme sayfasını ziyaret edin." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Bir yönetici hesabı oluşturun" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Gelişmiş" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Veri klasörü" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Veritabanını ayarla" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "kullanılacak" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Veritabanı kullanıcı adı" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Veritabanı parolası" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Veritabanı adı" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Veritabanı tablo alanı" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Veritabanı sunucusu" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Kurulumu tamamla" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Tamamlanıyor .." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "Uygulama, doğru çalışabilmesi için JavaScript'in etkinleştirilmesini gerektiriyor. Lütfen JavaScript'i etkinleştirin ve bu arayüzü yeniden yükleyin." + +#: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "%s mevcuttur. Güncelleştirme hakkında daha fazla bilgi alın." +msgstr "%s mevcut. Güncelleştirme hakkında daha fazla bilgi alın." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Çıkış yap" @@ -679,25 +709,33 @@ msgstr "Otomatik oturum açma reddedildi!" msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Yakın zamanda parolanızı değiştirmedi iseniz hesabınız riske girebilir." +msgstr "Yakın zamanda parolanızı değiştirmediyseniz hesabınız tehlikede olabilir!" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Hesabınızı korumak için lütfen parolanızı değiştirin." +msgstr "Hesabınızı tekrar güvene almak için lütfen parolanızı değiştirin." + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "Sunucu taraflı yetkilendirme başarısız!" -#: templates/login.php:32 +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Lütfen sistem yöneticisi ile iletişime geçin." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Parolanızı mı unuttunuz?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "hatırla" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Giriş yap" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Alternatif Girişler" @@ -705,10 +743,37 @@ msgstr "Alternatif Girişler" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " msgstr "Merhaba,

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

    İyi günler!" -#: templates/update.php:3 +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "Bu ownCloud örneği şu anda tek kullanıcı kipinde." + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "Bu, örneği sadece yöneticiler kullanabilir demektir." + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "Eğer bu ileti görünmeye devam ederse veya beklenmedik şekilde ortaya çıkmışsa sistem yöneticinizle iletişime geçin." + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "Sabrınız için teşekkür ederiz." + +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Owncloud %s versiyonuna güncelleniyor. Biraz zaman alabilir." +msgstr "Owncloud %s sürümüne güncelleniyor. Biraz zaman alabilir." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "Bu ownCloud örneği şu anda güncelleniyor, bu biraz zaman alabilir." + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "ownCloud kullanmaya devam etmek için kısa bir süre sonra lütfen sayfayı yenileyin." diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 05c4ef5679771fad7e4c26343816fa53a84daa7a..966906608b3878f20986b2b6700ea61e8eca5db0 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -6,13 +6,14 @@ # alicanbatur , 2013 # ismail yenigül , 2013 # tridinebandim, 2013 +# volkangezer , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"PO-Revision-Date: 2014-01-05 16:40+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,233 +24,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "%s taşınamadı. Bu isimde dosya zaten var." +msgstr "%s taşınamadı - Bu isimde dosya zaten var" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" msgstr "%s taşınamadı" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Dosya adı boş olamaz." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "Dosya adı \"/\" içermemelidir. Lütfen farklı bir isim seçin." + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "%s ismi zaten %s klasöründe kullanılıyor. Lütfen farklı bir isim seçin." + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "Geçerli bir kaynak değil" + +#: ajax/newfile.php:86 +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:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "%s, %s içine indirilirken hata" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "Dosya oluşturulurken hata" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "Klasör adı boş olamaz." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "Klasör adı \"/\" içermemelidir. Lütfen farklı bir isim seçin." + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "Klasör oluşturulurken hata" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Yükleme dizini tanımlanamadı." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" -msgstr "Geçeriz simge" +msgstr "Geçersiz Simge" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Dosya yüklenmedi. Bilinmeyen hata" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Dosya başarıyla yüklendi, hata oluşmadı" -#: ajax/upload.php:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Dosya kısmen karşıya yüklenebildi" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Hiç dosya gönderilmedi" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Geçici dizin eksik" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Diske yazılamadı" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Yeterli disk alanı yok" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Yükleme başarısız. Dosya bilgisi alınamadı." -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Yükleme başarısız. Yüklenen dosya bulunamadı" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Geçersiz dizin." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Dosyalar" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "Bir dizin veya 0 bayt olduğundan {filename} yüklenemedi" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Yeterli disk alanı yok" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Yükleme iptal edildi." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "" +msgstr "Sunucudan sonuç alınamadı." -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "URL boş olamaz." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "URL boş olamaz" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Geçersiz dizin adı. 'Shared' dizin ismi kullanımı ownCloud tarafından rezerve edilmiştir." +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "Ev klasöründeki 'Paylaşılan', ayrılmış bir dosya adıdır" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Hata" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} zaten mevcut" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Dosya oluşturulamadı" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Klasör oluşturulamadı" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "Adres getirilirken hata" + +#: js/fileactions.js:125 msgid "Share" msgstr "Paylaş" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Kalıcı olarak sil" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "İsim değiştir." -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Bekliyor" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} zaten mevcut" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "değiştir" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "Öneri ad" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Dosya adlandırılamadı" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "iptal" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ismi {old_name} ile değiştirildi" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "geri al" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "Dosya silinirken hata." + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dizin" msgstr[1] "%n dizin" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n dosya" msgstr[1] "%n dosya" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" -msgstr "" +msgstr "{dirs} ve {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n dosya yükleniyor" msgstr[1] "%n dosya yükleniyor" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." -msgstr "'.' geçersiz dosya adı." +msgstr "'.' geçersiz bir dosya adı." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Dosya adı boş olamaz." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Depolama alanınız dolu, artık dosyalar güncellenmeyecek yada senkronizasyon edilmeyecek." +msgstr "Depolama alanınız dolu, artık dosyalar güncellenmeyecek veya eşitlenmeyecek." -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Depolama alanınız neredeyse dolu ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "Şifreleme Uygulaması etkin ancak anahtarlarınız başlatılmamış. Lütfen oturumu kapatıp yeniden açın" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "Şifreleme Uygulaması için geçersiz özel anahtar. Lütfen şifreli dosyalarınıza erişimi tekrar kazanabilmek için kişisel ayarlarınızdan özel anahtar parolanızı güncelleyin." + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." -msgstr "Şifreleme işlemi durduruldu ancak dosyalarınız şifreli. Dosyalarınızın şifresini kaldırmak için lütfen kişisel ayarlar kısmına geçiniz." +msgstr "Şifreleme işlemi durduruldu ancak dosyalarınız şifreli. Dosyalarınızın şifresini kaldırmak için lütfen kişisel ayarlar kısmına geçin." -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "İndirmeniz hazırlanıyor. Dosya büyük ise biraz zaman alabilir." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" -msgstr "" +msgstr "Dosya taşıma hatası" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Hata" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "İsim" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Boyut" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Değiştirilme" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "Geçersiz dizin adı. 'Shared' ismi ayrılmıştır." + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s yeniden adlandırılamadı" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Yükle" #: templates/admin.php:5 msgid "File handling" -msgstr "Dosya taşıma" +msgstr "Dosya işlemleri" #: templates/admin.php:7 msgid "Maximum upload size" @@ -265,7 +332,7 @@ msgstr "Çoklu dosya ve dizin indirmesi için gerekli." #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "ZIP indirmeyi aktif et" +msgstr "ZIP indirmeyi etkinleştir" #: templates/admin.php:20 msgid "0 is unlimited" @@ -273,71 +340,75 @@ msgstr "0 limitsiz demektir" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "ZIP dosyaları için en fazla girdi sayısı" +msgstr "ZIP dosyaları için en fazla girdi boyutu" #: templates/admin.php:26 msgid "Save" msgstr "Kaydet" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Yeni" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "Yeni metin dosyası" + +#: templates/index.php:8 msgid "Text file" msgstr "Metin dosyası" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Yeni klasör" + +#: templates/index.php:10 msgid "Folder" msgstr "Klasör" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Bağlantıdan" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" -msgstr "Dosyalar silindi" +msgstr "Silinmiş dosyalar" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Yüklemeyi iptal et" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Buraya erişim hakkınız yok." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "Buraya dosya yükleme veya oluşturma izniniz yok" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" -msgstr "Burada hiçbir şey yok. Birşeyler yükleyin!" +msgstr "Burada hiçbir şey yok. Bir şeyler yükleyin!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "İndir" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Paylaşılmayan" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Sil" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Yükleme çok büyük" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Yüklemeye çalıştığınız dosyalar bu sunucudaki maksimum yükleme boyutunu aşıyor." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Dosyalar taranıyor, lütfen bekleyin." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Güncel tarama" diff --git a/l10n/tr/files_encryption.po b/l10n/tr/files_encryption.po index 9bd94afdb89c72eff254685d1ce5700c38b85186..6195623c1a38713ba65fb9231d4d9d70eb558e6d 100644 --- a/l10n/tr/files_encryption.po +++ b/l10n/tr/files_encryption.po @@ -4,13 +4,14 @@ # # Translators: # ismail yenigül , 2013 +# volkangezer , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-02 17:27-0500\n" +"PO-Revision-Date: 2013-11-30 01:40+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,140 +39,165 @@ msgstr "Kurtarma anahtarı devre dışı bırakılamadı. Lütfen kurtarma anaht #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "Şifreniz başarıyla değiştirildi." +msgstr "Parola başarıyla değiştirildi." #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "Parola değiştirilemedi. Eski parolanız doğru olmayabilir" +msgstr "Parola değiştirilemedi. Eski parolanız doğru olmayabilir." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "" +msgstr "Gizli anahtar parolası başarıyla güncellendi" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "Gizli anahtar parolası güncellenemedi. Eski parola hatalı olabilir." -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "" +"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 "Şifreleme uygulaması başlatılamadı! Oturumunuz sırasında şifreleme uygulaması tekrar etkinleştirilmiş olabilir. Lütfen şifreleme uygulamasını başlatmak için oturumu kapatıp yeniden oturum açmayı deneyin." + +#: 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 "Gizli anahtarınız geçerli değil! Muhtemelen parolanız ownCloud sistemi %s dışarısında değiştirildi (örn. şirket dizininde). Gizli anahtar parolanızı kişisel ayarlarınızda güncelleyerek şifreli dosyalarınıza erişimi kurtarabilirsiniz." -#: hooks/hooks.php:41 +#: 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 "Bu dosya muhtemelen bir paylaşılan dosya olduğundan şifresi çözülemiyor. Lütfen dosyayı sizinle bir daha paylaşması için dosya sahibi ile iletişime geçin." + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "Bilinmeyen hata. Lütfen sistem ayarlarınızı denetleyin veya yöneticiniz ile iletişime geçin" + +#: hooks/hooks.php:59 msgid "Missing requirements." -msgstr "" +msgstr "Gereklilikler eksik." -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "PHP 5.3.3 veya daha sürümü ile birlikte OpenSSL ve OpenSSL PHP uzantısının birlikte etkin olduğunu ve doğru bir şekilde yapılandırıldığından emin olun. Şimdilik şifreleme uygulaması devre dışı bırakıldı" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Aşağıdaki kullanıcılar şifreleme için ayarlanmadılar:" + +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "İlk şifreleme başladı... Bu biraz zaman alabilir. Lütfen bekleyin." -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Kaydediliyor..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Doğrudan şuraya gidin:" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "" - -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" -msgstr "" +msgstr "kişisel ayarlar" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Şifreleme" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Kurtarma anahtarını etkinleştir (parola kaybı durumunda kullanıcı dosyalarının kurtarılmasına izin verir):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" -msgstr "" +msgstr "Kurtarma anahtarı parolası" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "Kurtarma anahtarı parolasını yenileyin" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Etkinleştirildi" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Devre dışı" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Kurtarma anahtarı parolasını değiştir:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" -msgstr "" +msgstr "Eski Kurtarma anahtar parolası" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" -msgstr "" +msgstr "Yeni Kurtarma anahtar parolası" #: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "Yeni Kurtarma anahtarı parolasını yenileyin" + +#: templates/settings-admin.php:58 msgid "Change Password" -msgstr "Parola değiştir" +msgstr "Parola Değiştir" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Özel anahtar parolanız artık oturum açma parolanızla eşleşmiyor:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Eski özel anahtar parolanızı geçerli oturum açma parolanız olarak ayarlayın." -#: templates/settings-personal.php:16 +#: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Eğer eski parolanızı hatırlamıyorsanız, yöneticinizden dosyalarınızı kurtarmasını talep edebilirsiniz." -#: templates/settings-personal.php:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" -msgstr "" +msgstr "Eski oturum açma parolası" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" -msgstr "" +msgstr "Geçerli oturum açma parolası" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" -msgstr "" +msgstr "Özel Anahtar Parolasını Güncelle" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" -msgstr "" +msgstr "Parola kurtarmayı etkinleştir:" -#: templates/settings-personal.php:47 +#: 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 "" +msgstr "Bu seçeneği etkinleştirmek, parola kaybı durumunda şifrelenmiş dosyalarınıza erişimi yeniden kazanmanızı sağlayacaktır" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "Dosya kurtarma ayarları güncellendi" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "Dosya kurtarma güncellenemedi" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index c2e5f4c34162ab8bb233c5b86da7cd8804ea159c..849b5469543f1c061622ee1a0276c086edd70fa2 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# volkangezer , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,7 +18,7 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Giriş kabul edildi" @@ -25,7 +26,7 @@ msgstr "Giriş kabul edildi" msgid "Error configuring Dropbox storage" msgstr "Dropbox depo yapılandırma hatası" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Erişim sağlandı" @@ -33,29 +34,29 @@ msgstr "Erişim sağlandı" msgid "Please provide a valid Dropbox app key and secret." msgstr "Lütfen Dropbox app key ve secret temin ediniz" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Google Drive depo yapılandırma hatası" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Uyari.''smbclient''yüklü değil. Mont etme CIFS/SMB hissenin mümkün değildir. Lutfen kullanici sistemin sormak onu yuklemek ici, " +msgstr "Uyarı: \"smbclient\" kurulu değil. CIFS/SMB paylaşımlarını bağlama işlemi mümkün olmadı. Lütfen kurulumu için sistem yöneticinize danışın." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr ". Sistem FTP PHPden aktif degil veya yuklemedi. Monte etme hissenin FTP mumkun degildir. Lutfen kullaniici sistemin sormak onu yuklemek icin." +msgstr "Uyarı: PHP içerisinde FTP desteği etkin veya yüklü değil. FTP paylaşımlarını bağlama işlemi mümkün olmadı. Lütfen kurulumu için sistem yöneticinize danışın." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr " Ihbar . Dayanma Curl PHPden aktif veya yuklemedi degil. Monte ownClouden/WebDay veya GoogleDrive mumkun degil. Lutfen sistm yonetici sormak yuklemek icin. " +msgstr "Uyarı: PHP içerisinde Curl desteği etkin veya yüklü değil. OwnCloud / WebDAV veya GoogleDrive bağlama işlemi mümkün olmadı. Lütfen kurulumu için sistem yöneticinizde danışın." #: templates/settings.php:3 msgid "External Storage" @@ -67,7 +68,7 @@ msgstr "Dizin ismi" #: templates/settings.php:10 msgid "External storage" -msgstr "Harici Depolama" +msgstr "Harici depolama" #: templates/settings.php:11 msgid "Configuration" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index eea57d4dbd17455db191603b02c73da0f6b9023c..f8e734d644e5532440517d04b75f8cccb3074726 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# volkangezer , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-13 14:43-0500\n" +"PO-Revision-Date: 2013-12-13 19:00+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,63 +19,67 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." -msgstr "" +msgid "This share is password-protected" +msgstr "Bu paylaşım parola korumalı" #: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "Parola hatalı. Yeniden deneyin." + +#: templates/authenticate.php:10 msgid "Password" msgstr "Parola" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Gönder" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Üzgünüz, bu bağlantı artık çalışıyor gibi görünmüyor" #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Sebepleri şunlar olabilir:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "öge kaldırılmış" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "bağlantı süresi dolmuş" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "paylaşım devre dışı" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Daha fazla bilgi için bu bağlantıyı aldığınız kişi ile iletişime geçin." -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s sizinle paylaşılan %s klasör" +msgstr "%s, %s klasörünü sizinle paylaştı" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" -msgstr "%s sizinle paylaşılan %s klasör" +msgstr "%s, %s dosyasını sizinle paylaştı" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "İndir" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Yükle" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Yüklemeyi iptal et" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Kullanılabilir önizleme yok" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Doğrudan bağlantı" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index f46712fc9f499b437ba9391cfd2a3fa902006f1a..261cd7d30ce3abcd08589903a5512f20227ef389 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -4,13 +4,14 @@ # # Translators: # tridinebandim, 2013 +# volkangezer , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-16 01:29-0400\n" -"PO-Revision-Date: 2013-08-15 10:20+0000\n" -"Last-Translator: tridinebandim\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,62 +22,38 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "%s Kalıcı olarak silinemedi" +msgstr "%s alıcı olarak silinemedi" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "%s Geri yüklenemedi" +msgstr "%s eri yüklenemedi" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "Geri yükleme işlemini gerçekleştir" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Hata" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "Dosyayı kalıcı olarak sil" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Kalıcı olarak sil" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "İsim" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "Silindi" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "%n dizin" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "%n dosya" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "geri yüklendi" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Burası boş. Çöp kutun tamamen boş." +msgstr "Burada hiçbir şey yok. Çöp kutunuz tamamen boş!" + +#: templates/index.php:22 +msgid "Name" +msgstr "İsim" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Geri yükle" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Silindi" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Sil" diff --git a/l10n/tr/files_versions.po b/l10n/tr/files_versions.po index 57a5449a0149597444c14eb7b5a1ee9527629764..b6fd8395583ef083e4b1b9422f488bcdebccdff7 100644 --- a/l10n/tr/files_versions.po +++ b/l10n/tr/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# volkangezer , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 19:10+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,16 +29,16 @@ msgstr "Sürümler" #: js/versions.js:53 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "{file} dosyası {timestamp} gözden geçirmesine geri alınamadı." #: js/versions.js:79 msgid "More versions..." -msgstr "" +msgstr "Daha fazla sürüm..." #: js/versions.js:116 msgid "No other versions available" -msgstr "" +msgstr "Başka sürüm mevcut değil" -#: js/versions.js:149 +#: js/versions.js:147 msgid "Restore" msgstr "Geri yükle" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 7eadae253b4cf078dd3a613252170c34543cb254..3237785ad4664f38681251f54aca6880694bb45e 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -3,15 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Caner BAŞARAN , 2013 # ismail yenigül , 2013 # tridinebandim, 2013 +# volkangezer , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"PO-Revision-Date: 2014-01-05 16:40+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,318 +21,317 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:239 +#: private/app.php:245 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." -msgstr "Owncloud yazılımının bu sürümü ile uyumlu olmadığı için \"%s\" uygulaması kurulamaz." +msgstr "ownCloud yazılımının bu sürümü ile uyumlu olmadığı için \"%s\" uygulaması kurulamaz." -#: app.php:250 +#: private/app.php:257 msgid "No app name specified" msgstr "Uygulama adı belirtimedli" -#: app.php:361 +#: private/app.php:362 msgid "Help" msgstr "Yardım" -#: app.php:374 +#: private/app.php:375 msgid "Personal" msgstr "Kişisel" -#: app.php:385 +#: private/app.php:386 msgid "Settings" msgstr "Ayarlar" -#: app.php:397 +#: private/app.php:398 msgid "Users" msgstr "Kullanıcılar" -#: app.php:410 +#: private/app.php:411 msgid "Admin" msgstr "Yönetici" -#: app.php:839 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "\"%s\" yükseltme başarısız oldu." -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Bilinmeyen dosya türü" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Geçersiz resim" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" -msgstr "Bilgileriniz güvenli ve şifreli" +msgstr "kontrolünüzün altındaki web hizmetleri" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "\"%s\" açılamıyor" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." -msgstr "ZIP indirmeleri kapatılmıştır." +msgstr "ZIP indirmeleri kapatıldı." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Dosyaların birer birer indirilmesi gerekmektedir." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Dosyalara dön" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." -msgstr "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyüktür." +msgstr "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyük." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Dosyaları ayrı ayrı, küçük parçalar halinde indirin ya da yöneticinizden yardım isteyin. " +msgstr "Dosyaları ayrı ayrı, küçük parçalar halinde indirin veya yöneticinizden yardım isteyin. " -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Uygulama kurulurken bir kaynak belirtilmedi" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" -msgstr "Uygulama kuruluyorken http'de href belirtilmedi." +msgstr "Uygulama kuruluyorken http'de href belirtilmedi" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" -msgstr "Uygulama yerel dosyadan kuruluyorken dosya yolu belirtilmedi" +msgstr "Uygulama yerel dosyadan kurulurken dosya yolu belirtilmedi" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" -msgstr "%s arşiv tipi desteklenmiyor" +msgstr "%s arşiv türü desteklenmiyor" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Uygulama kuruluyorken arşiv dosyası açılamadı" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "Uygulama info.xml dosyası sağlamıyor" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" -msgstr "Uygulamada izin verilmeyeden kodlar olduğu için kurulamıyor." +msgstr "Uygulama, izin verilmeyen kodlar barındırdığından kurulamıyor." -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" -msgstr "Owncloud versiyonunuz ile uyumsuz olduğu için uygulama kurulamıyor." +msgstr "ownCloud sürümünüz ile uyumsuz olduğu için uygulama kurulamıyor." -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" -msgstr "Uygulama kurulamıyor. Çünkü \"non shipped\" uygulamalar için true tag içermektedir." +msgstr "Uygulama kurulamıyor. Çünkü \"birlikte gelmeyen\" uygulamalar için true etiketi içeriyor" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "Uygulama kurulamıyor çünkü info.xml/version ile uygulama marketde belirtilen sürüm aynı değil." +msgstr "Uygulama kurulamıyor çünkü info.xml/version ile uygulama markette belirtilen sürüm aynı değil" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" -msgstr "App dizini zaten mevcut" +msgstr "Uygulama dizini zaten mevcut" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "app dizini oluşturulamıyor. Lütfen izinleri düzeltin. %s" +msgstr "Uygulama dizini oluşturulamıyor. Lütfen izinleri düzeltin. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Uygulama etkinleştirilmedi" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Kimlik doğrulama hatası" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Jetonun süresi geçti. Lütfen sayfayı yenileyin." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Dosyalar" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Metin" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Resimler" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." -msgstr "%s veritabanı kullanıcı adını gir." +msgstr "%s veritabanı kullanıcı adını girin." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." -msgstr "%s veritabanı adını gir." +msgstr "%s veritabanı adını girin." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s veritabanı adında nokta kullanamayabilirsiniz" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL kullanıcı adı ve/veya parolası geçersiz: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Bir konto veya kullanici birlemek ihtiyacin. " -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL kullanıcı adı ve/veya parolası geçerli değil" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Hata: ''%s''" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Komut rahasiz ''%s''. " -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL kullanici '%s @local host zatan var. " -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Bu kullanici MySQLden list disari koymak. " -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL kullanici '%s @ % % zaten var (zaten yazili)" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." -msgstr "Bu kulanıcıyı MySQL veritabanından kaldır" +msgstr "Bu kullanıcıyı MySQL veritabanından kaldır" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Oracle bağlantısı kurulamadı" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Adi klullanici ve/veya parola Oracle mantikli değildir. " -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Hatalı komut: \"%s\", ad: %s, parola: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL adi kullanici ve/veya parola yasal degildir. " -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Bir adi kullanici vermek. " -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Parola yonetici birlemek. " -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Lütfen kurulum kılavuzlarını iki kez kontrol edin." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "\"%s\" kategorisi bulunamadı" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "saniye önce" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n dakika önce" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n saat önce" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "bugün" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "dün" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n gün önce" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "geçen ay" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n ay önce" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "geçen yıl" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "yıl önce" - -#: template.php:297 -msgid "Caused by:" -msgstr "Neden olan:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "\"%s\" kategorisi bulunamadı" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 8d168dd065d7db93937376c52b29e97d2cb47d56..80560004a5e6a70742457ec720dde4ddec16dcd9 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -6,14 +6,14 @@ # DeeJaVu , 2013 # ismail yenigül , 2013 # tridinebandim, 2013 -# volkangezer , 2013 +# volkangezer , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-06 01:55-0500\n" +"PO-Revision-Date: 2014-01-05 16:40+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,12 +31,12 @@ msgid "Authentication error" msgstr "Kimlik doğrulama hatası" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "Görüntülenen isminiz değiştirildi." +msgid "Your full name has been changed." +msgstr "Tam adınız değiştirildi." #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Ekran adı değiştirilemiyor" +msgid "Unable to change full name" +msgstr "Tam adınız değiştirilirken hata" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -48,11 +48,11 @@ msgstr "Gruba eklenemiyor" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Eposta kaydedildi" +msgstr "E-posta kaydedildi" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Geçersiz eposta" +msgstr "Geçersiz e-posta" #: ajax/removegroup.php:13 msgid "Unable to delete group" @@ -90,42 +90,42 @@ msgstr "Uygulama güncellenemedi." #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "Hatalı parola" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "Kullanıcı girilmedi" #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "Lütfen bir yönetici kurtarma parolası girin, aksi takdirde tüm kullanıcı verisi kaybedilecek" #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "Hatalı yönetici kurtarma parolası. Lütfen parolayı denetleyip yeniden deneyin." #: changepassword/controller.php:87 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "Arka uç parola değişimini desteklemiyor ancak kullanıcı şifreleme anahtarı başarıyla güncellendi." #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" -msgstr "" +msgstr "Parola değiştirilemiyor" #: js/apps.js:43 msgid "Update to {appversion}" msgstr "{appversion} Güncelle" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" -msgstr "Etkin değil" +msgstr "Devre dışı bırak" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Etkinleştir" @@ -133,39 +133,39 @@ msgstr "Etkinleştir" msgid "Please wait...." msgstr "Lütfen bekleyin...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Uygulama devre dışı bırakılırken hata" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Uygulama etkinleştirilirken hata" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Güncelleniyor...." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Uygulama güncellenirken hata" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Hata" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Güncelleme" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Güncellendi" #: js/personal.js:220 msgid "Select a profile picture" -msgstr "" +msgstr "Bir profil fotoğrafı seçin" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dosyaların şifresi çözülüyor... Lütfen bekleyin, bu biraz zaman alabilir." @@ -185,44 +185,75 @@ msgstr "geri al" msgid "Unable to remove user" msgstr "Kullanıcı kaldırılamıyor" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Gruplar" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Yönetici Grubu " -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Sil" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "grup ekle" -#: js/users.js:436 +#: js/users.js:454 msgid "A valid username must be provided" msgstr "Geçerli bir kullanıcı adı mutlaka sağlanmalı" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:455 js/users.js:461 js/users.js:476 msgid "Error creating user" msgstr "Kullanıcı oluşturulurken hata" -#: js/users.js:442 +#: js/users.js:460 msgid "A valid password must be provided" msgstr "Geçerli bir parola mutlaka sağlanmalı" +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "Uyarı: \"{user}\" kullanıcısı için zaten bir Ev dizini mevcut" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "Türkçe" -#: templates/admin.php:15 +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "Her şey (Ölümcül konular, hatalar, uyarılar, bilgi, hata ayıklama)" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "Bilgi, uyarılar, hatalar ve ölümcül konular" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "Uyarılar, hatalar ve ölümcül konular" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "Hatalar ve ölümcül konular" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "Sadece ölümcül konular" + +#: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" -msgstr "Güvenlik Uyarisi" +msgstr "Güvenlik Uyarısı" + +#: templates/admin.php:25 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "%s konumuna HTTP aracılığıyla erişiyorsunuz. Sunucunuzu HTTPS kullanımını zorlaması üzere yapılandırmanızı şiddetle öneririz." -#: templates/admin.php:18 +#: templates/admin.php:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -231,48 +262,68 @@ msgid "" "root." msgstr "data dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden erişilebilir. .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak data dizinine erişimi kapatmanızı veya data dizinini web sunucu döküman dizini dışına almanızı şiddetle tavsiye ederiz." -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Kurulum Uyarısı" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor." -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "Lütfen kurulum kılavuzlarını tekrar kontrol edin." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Modül 'fileinfo' kayıp" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP modülü 'fileinfo' kayıp. MIME-tip tanıma ile en iyi sonuçları elde etmek için bu modülü etkinleştirmenizi öneririz." -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "PHP sürümünüz eski" + +#: templates/admin.php:82 +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 sürümünüz eski. Eski sürümlerde sorun olduğundan 5.3.8 veya daha yeni bir sürüme güncellemenizi şiddetle tavsiye ederiz. Bu kurulumun da doğru çalışmaması da olasıdır." + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Locale çalışmıyor." -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "Sistem yereli, UTF-8 destekleyenlerden biri olarak ayarlanamadı" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "Bu, dosya adlarında belirli karakterlerde problem olabileceği anlamına gelir." + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "Sistem yereli %s olarak değiştirilemedi. Bu, dosya adlarındaki bazı karakterlerde sorun olabileceği anlamına gelir. %s desteklemek için gerekli paketleri kurmanızı şiddetle öneririz." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "Şu dillerden birini desteklemesi için sisteminize gerekli paketleri kurmanızı şiddetle tavsiye ederiz: %s." -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "İnternet bağlantısı çalışmıyor" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -281,110 +332,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Bu sunucunun çalışan bir internet bağlantısı yok. Bu, harici depolama alanı bağlama, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacak demektir. Uzak dosyalara erişim ve e-posta ile bildirim gönderme de çalışmayacaktır. Eğer bu özelliklerin tamamını kullanmak istiyorsanız, sunucu için internet bağlantısını etkinleştirmenizi öneriyoruz." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Yüklenen her sayfa ile bir görev çalıştır" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "Http üzerinden dakikada bir çalıştırılmak üzere, cron.php bir webcron hizmetine kaydedildi." +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "cron.php dosyasını dakikada bir çağırmak için sistemin cron hizmetini kullan. " +#: templates/admin.php:158 +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:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Paylaşım" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" -msgstr "Paylaşım API'sini etkinleştir." +msgstr "Paylaşım API'sini etkinleştir" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Uygulamaların paylaşım API'sini kullanmasına izin ver" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" -msgstr "Bağlantıları izin ver." +msgstr "Bağlantılara izin ver" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" -msgstr "Kullanıcıların nesneleri paylaşımı için herkese açık bağlantılara izin ver" +msgstr "Kullanıcıların ögeleri paylaşması için herkese açık bağlantılara izin ver" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Herkes tarafından yüklemeye izin ver" -#: templates/admin.php:144 +#: templates/admin.php:187 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." +msgstr "Kullanıcıların, herkese açık dizinlerine, başkalarının dosya yüklemelerini etkinleştirmelerine izin ver" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Paylaşıma izin ver" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" -msgstr "Kullanıcıların kendileri ile paylaşılan öğeleri yeniden paylaşmasına izin ver" +msgstr "Kullanıcıların kendileri ile paylaşılan ögeleri yeniden paylaşmasına izin ver" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" -msgstr "Kullanıcıların herşeyi paylaşmalarına izin ver" +msgstr "Kullanıcıların her şeyi paylaşmalarına izin ver" -#: templates/admin.php:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "Posta bilgilendirmesine izin ver" + +#: templates/admin.php:214 +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:221 msgid "Security" msgstr "Güvenlik" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "HTTPS bağlantısına zorla" -#: templates/admin.php:185 +#: templates/admin.php:236 #, 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." +msgstr "İstemcileri %s'a şifreli bir bağlantı ile bağlanmaya zorlar." -#: templates/admin.php:191 +#: templates/admin.php:242 #, 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." +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:203 +#: templates/admin.php:254 msgid "Log" -msgstr "Kayıtlar" +msgstr "Günlük" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Günlük seviyesi" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Daha fazla" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Az" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Sürüm" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the AGPL." -msgstr "Geliştirilen TarafownCloud community, the source code is altında lisanslanmıştır AGPL." +msgstr "ownCloud topluluğu tarafından geliştirilmiş olup, kaynak kodu, AGPL altında lisanslanmıştır." #: templates/apps.php:13 msgid "Add your App" -msgstr "Uygulamanı Ekle" +msgstr "Uygulamanızı Ekleyin" #: templates/apps.php:28 msgid "More Apps" -msgstr "Daha fazla uygulama" +msgstr "Daha Fazla Uygulama" #: templates/apps.php:33 msgid "Select an App" -msgstr "Bir uygulama seçin" +msgstr "Bir Uygulama Seçin" #: templates/apps.php:39 msgid "See application page at apps.owncloud.com" @@ -440,7 +499,7 @@ msgstr "Ticari Destek" #: templates/personal.php:8 msgid "Get the apps to sync your files" -msgstr "Dosyalarınızı senkronize etmek için uygulamayı indirin" +msgstr "Dosyalarınızı eşitlemek için uygulamayı indirin" #: templates/personal.php:19 msgid "Show First Run Wizard again" @@ -449,7 +508,7 @@ msgstr "İlk Çalıştırma Sihirbazını yeniden göster" #: templates/personal.php:27 #, php-format msgid "You have used %s of the available %s" -msgstr "Kullandığınız:%s seçilebilecekler: %s" +msgstr "Kullandığınız: %s. Kullanılabilir alan: %s" #: templates/personal.php:39 templates/users.php:23 templates/users.php:89 msgid "Password" @@ -476,83 +535,87 @@ msgid "Change password" msgstr "Parola değiştir" #: templates/personal.php:58 templates/users.php:88 -msgid "Display Name" -msgstr "Ekran Adı" +msgid "Full Name" +msgstr "Tam Adı" #: templates/personal.php:73 msgid "Email" -msgstr "Eposta" +msgstr "E-posta" #: templates/personal.php:75 msgid "Your email address" -msgstr "Eposta adresiniz" +msgstr "E-posta adresiniz" #: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" -msgstr "Parola kurtarmayı etkinleştirmek için bir eposta adresi girin" +msgstr "Parola kurtarmayı etkinleştirmek için bir e-posta adresi girin" #: templates/personal.php:86 msgid "Profile picture" msgstr "Profil resmi" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Upload new" -msgstr "" +msgstr "Yeni yükle" -#: templates/personal.php:92 +#: templates/personal.php:93 msgid "Select new from Files" -msgstr "" +msgstr "Dosyalardan seç" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "Remove image" -msgstr "" +msgstr "Resmi kaldır" -#: templates/personal.php:94 +#: templates/personal.php:95 msgid "Either png or jpg. Ideally square but you will be able to crop it." -msgstr "" +msgstr "PNG veya JPG. Genellikle karedir ancak kesebileceksiniz." #: templates/personal.php:97 +msgid "Your avatar is provided by your original account." +msgstr "Görüntü resminiz, özgün hesabınız tarafından sağlanıyor." + +#: templates/personal.php:101 msgid "Abort" -msgstr "" +msgstr "İptal Et" -#: templates/personal.php:98 +#: templates/personal.php:102 msgid "Choose as profile image" -msgstr "" +msgstr "Profil resmi olarak seç" -#: templates/personal.php:106 templates/personal.php:107 +#: templates/personal.php:110 templates/personal.php:111 msgid "Language" msgstr "Dil" -#: templates/personal.php:119 +#: templates/personal.php:130 msgid "Help translate" msgstr "Çevirilere yardım edin" -#: templates/personal.php:125 +#: templates/personal.php:137 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:139 #, php-format msgid "" -"Use this address to access your Files via WebDAV" -msgstr " Dosyalarınıza WebDAV üzerinen erişme için bu adresi kullanın" +"Use this address to access your Files via " +"WebDAV" +msgstr "Dosyalarınıza WebDAV aracılığıyla erişmek için bu adresi kullanın" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Şifreleme" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "Şifreleme uygulaması artık etkin değil, tüm dosyanın şifresini çöz" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "Şifreleme uygulaması artık etkin değil, tüm dosyalarınızın şifrelemesini kaldırın" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "Oturum açma parolası" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" -msgstr "Tüm dosyaların şifresini çözme" +msgstr "Tüm dosyaların şifresini çöz" #: templates/users.php:21 msgid "Login Name" @@ -564,7 +627,7 @@ msgstr "Oluştur" #: templates/users.php:36 msgid "Admin Recovery Password" -msgstr "Yönetici kurtarma parolası" +msgstr "Yönetici Kurtarma Parolası" #: templates/users.php:37 templates/users.php:38 msgid "" @@ -576,6 +639,10 @@ msgstr "Parola değiştirme sırasında kullanıcı dosyalarını kurtarmak içi msgid "Default Storage" msgstr "Varsayılan Depolama" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "Lütfen disk alanı kotasını girin (örnek: \"512MB\" veya \"12GB\")" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Limitsiz" @@ -593,8 +660,8 @@ msgid "Storage" msgstr "Depolama" #: templates/users.php:108 -msgid "change display name" -msgstr "ekran adını değiştir" +msgid "change full name" +msgstr "tam adı değiştir" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 69f083c6084d9693ea62dfd15787b8e8035b941b..1a6e57acd8630c7d63dd7bd152aff706ce4c8e5a 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -4,14 +4,15 @@ # # Translators: # ismail yenigül , 2013 +# volkangezer , 2013 # KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,320 +22,431 @@ msgstr "" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." -msgstr "" +msgstr "Eşleştirmeler temizlenirken hata oluştu." #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" msgstr "Sunucu yapılandırmasını silme başarısız oldu" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Yapılandırma geçerli ve bağlantı kuruldu!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "Yapılandırma geçerli fakat bağlanma(bind) başarısız. Lütfen Sunucu ayarları ve kimlik bilgilerini kontrol ediniz." +msgstr "Yapılandırma geçerli fakat bağlama (bind) başarısız. Lütfen Sunucu ayarları ve kimlik bilgilerini kontrol edin." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "Yapılandırma geçersiz. Daha fazla detay için lütfen ownCloud günlüklerine bakınız." +msgstr "Yapılandırma geçersiz. Lütfen ayrıntılar için günlüklere bakın." + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "Eylem belirtilmedi" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "Yapılandırma belirtilmemiş" -#: js/settings.js:66 +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "Veri belirtilmemiş" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "Yapılandırma %s olarak ayarlanamadı" + +#: js/settings.js:67 msgid "Deletion failed" msgstr "Silme başarısız oldu" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" -msgstr "Ayarları son sunucu yapılandırmalarından devral?" +msgstr "Ayarlar son sunucu yapılandırmalarından devralınsın mı?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Ayarlar kalsın mı?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Sunucu yapılandırması eklenemedi" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" -msgstr "" +msgstr "eşleştirmeler temizlendi" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" -msgstr "" +msgstr "Başarılı" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Hata" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "Yapılandırma tamam" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "Yapılandırma geçersiz" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "Yapılandırma tamamlanmamış" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Grupları seç" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "Nesne sınıflarını seç" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "Nitelikleri seç" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Bağlantı testi başarılı oldu" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Bağlantı testi başarısız oldu" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Şu anki sunucu yapılandırmasını silmek istediğinizden emin misiniz?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Silmeyi onayla" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "" +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "%s grup bulundu" +msgstr[1] "%s grup bulundu" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "%s kullanıcı bulundu" +msgstr[1] "%s kullanıcı bulundu" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "Geçersiz Makine" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "İstenen özellik bulunamadı" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Kaydet" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "Test Yapılandırması" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Yardım" -#: templates/settings.php:12 +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +msgstr "%s erişimini, şu kriterle eşleşen gruplara sınırla:" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "sadece bu nesne sınıflarına:" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "sadece bu gruplardan:" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "Bunun yerine ham filtreyi düzenle" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "Ham LDAP filtresi" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Ihbar Modulu PHP LDAP yuklemdi degil, backend calismacak. Lutfen sistem yonetici sormak yuklemek icin." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "Filtre, %s örneğine erişmesi gereken LDAP gruplarını belirtir." -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Sunucu uyunlama " +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "grup bulundu" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +msgstr "Oturum ismi olarak hangi nitelik kullanılmalı:" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "LDAP Kullanıcı Adı:" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "LDAP E-posta Adresi:" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "Diğer Nitelikler" + +#: 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 "Oturum açma girişimi olduğunda uygulanacak filtreyi tanımlar. %%uid, oturum işleminde kullanıcı adı ile değiştirilir. Örneğin: \"uid=%%uid\"" + +#: templates/part.wizard-server.php:18 msgid "Add Server Configuration" msgstr "Sunucu Uyunlama birlemek " -#: templates/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Sunucu" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Protokol atlamak edesin, sadece SSL istiyorsaniz. O zaman, idapsile baslamak. " -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Ana DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Bir Tabani DN herbir dizi. " - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Base DN kullanicileri ve kaynaklari icin tablosu Advanced tayin etmek ederiz. " +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Port" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "Kullanıcı DN" -#: templates/settings.php:46 +#: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "DN musterinin, kimle baglamaya yapacagiz,meselâ uid=agent.dc mesela, dc=com Gecinme adisiz ici, DN ve Parola bos birakmak. " -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Parola" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Anonim erişim için DN ve Parola alanlarını boş bırakın." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Kullanıcı Oturum Filtresi" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Bir Tabani DN herbir dizi. " -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Base DN kullanicileri ve kaynaklari icin tablosu Advanced tayin etmek ederiz. " + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "%s erişimini, şu kriterle eşleşen kullanıcılara sınırla:" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "Filtre, %s örneğine erişmesi gereken LDAP kullanıcılarını belirtir." -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Kullanıcı Liste Filtresi" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "kullanıcı bulundu" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Geri" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Grup Süzgeci" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Devam et" -#: templates/settings.php:62 +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "Uyarı: user_ldap ve user_webdavauth uygulamaları uyumlu değil. Beklenmedik bir davranışla karşılaşabilirsiniz. Lütfen ikisinden birini devre dışı bırakmak için sistem yöneticinizle iletişime geçin." -#: templates/settings.php:66 +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Ihbar Modulu PHP LDAP yuklemdi degil, backend calismacak. Lutfen sistem yonetici sormak yuklemek icin." + +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Bağlantı ayarları" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" -msgstr "" +msgstr "Yapılandırma Etkin" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Ne zaman iptal, bu uynnlama isletici " -#: templates/settings.php:69 -msgid "Port" -msgstr "Port" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Sigorta Kopya Cephe " -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Bir kopya cevre vermek, kopya sunucu onemli olmali. " -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Kopya Port " -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Ana sunucuyu devredışı birak" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." -msgstr "" - -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "TLS kullan" +msgstr "Sadece kopya sunucuya bağlan." -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Bu LDAPS baglama icin kullamaminiz, basamacak. " - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Dusme sunucu LDAP zor degil. (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "SSL sertifika doğrulamasını kapat." -#: templates/settings.php:75 +#: 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 "" +msgstr "Önerilmez, sadece test için kullanın! Eğer bağlantı sadece bu seçenekle çalışıyorsa %s sunucunuza LDAP sunucusunun SSL sertifikasını ekleyin." -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Cache Time-To-Live " -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "saniye cinsinden. Bir değişiklik önbelleği temizleyecektir." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Parametrar Listesin Adresinin " -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Ekran Adi Kullanici, (Alan Adi Kullanici Ekrane)" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "Kullanıcının görünen adını oluşturmak için kullanılacak LDAP niteliği." -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Temel Kullanıcı Ağacı" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "Bir Temel Kullanici DN her dizgi " -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "Kategorii Arama Kullanici " -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" -msgstr "" +msgstr "Tercihe bağlı; her bir satırda bir öznitelik" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Grub Ekrane Alani Adi" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "Grubun görünen adını oluşturmak için kullanılacak LDAP niteliği." -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Temel Grup Ağacı" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "Bir Grubu Tabani DN her dizgi. " -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Kategorii Arama Grubu" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Grup-Üye işbirliği" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" -msgstr "" +msgstr "Özel Öznitelikler" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" -msgstr "" +msgstr "Kota Alanı" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" -msgstr "" +msgstr "Öntanımlı Kota" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "byte cinsinden" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" -msgstr "" +msgstr "E-posta Alanı" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Kullanıcı Ana Dizini İsimlendirme Kuralı" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Kullanıcı adı bölümünü boş bırakın (varsayılan). " -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" -msgstr "" +msgstr "Dahili Kullanıcı Adı" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,17 +460,17 @@ msgid "" "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 "" +msgstr "Öntanımlı olarak UUID niteliğinden dahili bir kullanıcı adı oluşturulacak. Bu, kullanıcı adının benzersiz ve karakterlerinin dönüştürme gereksinimini ortadan kaldırır. Dahili kullanıcı adı, sadece bu karakterlerin izin verildiği kısıtlamaya sahip: [ a-zA-Z0-9_.@- ]. Diğer karakterler ise ASCII karşılıkları ile yer değiştirilir veya basitçe yoksayılır. Çakışmalar olduğunda ise bir numara eklenir veya arttırılır. Dahili kullanıcı adı, bir kullanıcıyı dahili olarak tanımlamak için kullanılır. Ayrıca kullanıcı ev klasörü için öntanımlı bir isimdir. Bu ayrıca uzak adreslerin (örneğin tüm *DAV hizmetleri) bir parçasıdır. Bu yar ise, öntanımlı davranışın üzerine yazılabilir. ownCloud 5'ten önce benzer davranışı yapabilmek için aşağıdaki alana bir kullanıcı görünen adı niteliği girin. Öntanımlı davranış için boş bırakın. Değişiklikler, sadece yeni eşleştirilen (eklenen) LDAP kullanıcılarında etkili olacaktır." -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" -msgstr "" +msgstr "Dahili Kullanıcı Adı Özniteliği:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" -msgstr "" +msgstr "UUID tespitinin üzerine yaz" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,17 +479,21 @@ msgid "" "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 "" +msgstr "Öntanımlı olarak, UUID niteliği otomatik olarak tespit edilmez. UUID niteliği LDAP kullanıcılarını ve gruplarını şüphesiz biçimde tanımlamak için kullanılır. Ayrıca yukarıda belirtilmemişse, bu UUID'ye bağlı olarak dahili bir kullanıcı adı oluşturulacaktır. Bu ayarın üzerine yazabilir ve istediğiniz bir nitelik belirtebilirsiniz. Ancak istediğiniz niteliğin benzersiz olduğundan ve hem kullanıcı hem de gruplar tarafından getirilebileceğinden emin olmalısınız. Öntanımlı davranış için boş bırakın. Değişiklikler sadece yeni eşleştirilen (eklenen) LDAP kullanıcı ve gruplarında etkili olacaktır." -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "Kullanıcılar için UUID Özniteliği:" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "Gruplar için UUID Özniteliği:" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" -msgstr "" +msgstr "Kullanıcı Adı-LDAP Kullanıcısı Eşleştirme" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,20 +505,12 @@ msgid "" " 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 "" +msgstr "Kullanıcı adları, (üst) veri depolaması ve ataması için kullanılır. Kullanıcıları kesin olarak tanımlamak ve algılamak için, her LDAP kullanıcısı bir dahili kullanıcı adına sahip olacak. Bu kullanıcı adı ile LDAP kullanıcısı arasında bir eşleşme gerektirir. Oluşturulan kullanıcı adı LDAP kullanıcısının UUID'si ile eşleştirilir. Ek olarak LDAP etkileşimini azaltmak için DN de önbelleğe alınır ancak bu kimlik tanıma için kullanılmaz. Eğer DN değişirse, değişiklikler tespit edilir. Dahili kullanıcı her yerde kullanılır. Eşleştirmeleri temizlemek, her yerde kalıntılar bırakacaktır. Eşleştirmeleri temizlemek yapılandırmaya hassas bir şekilde bağlı değildir, tüm LDAP yapılandırmalarını etkiler! Üretim ortamında eşleştirmeleri asla temizlemeyin, sadece sınama veya deneysel aşamada kullanın." -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" -msgstr "" +msgstr "Kullanıcı Adı-LDAP Kullanıcısı Eşleştirmesini Temizle" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" -msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Yardım" +msgstr "Grup Adı-LDAP Grubu Eşleştirme" diff --git a/l10n/tr/user_webdavauth.po b/l10n/tr/user_webdavauth.po index d138eeec59280d9cb94588b3630435a53e15726e..0844a027bc5490ed172b381c4f300f5e77578f7b 100644 --- a/l10n/tr/user_webdavauth.po +++ b/l10n/tr/user_webdavauth.po @@ -6,14 +6,15 @@ # alpere , 2012 # Necdet Yücel , 2012 # atakan96 , 2013 +# volkangezer , 2013 # KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 16:30+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,11 +28,11 @@ msgstr "WebDAV Kimlik doğrulaması" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Adres:" #: 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 "" +msgstr "Kullanıcı kimlik bilgileri bu adrese gönderilecek. Bu eklenti yanıtı kontrol edecek ve 401 ile 403 HTTP durum kodlarını geçersiz kimlik bilgileri olarak, diğer yanıtları ise doğru kimlik bilgileri olarak algılayacaktır." diff --git a/l10n/tzm/core.po b/l10n/tzm/core.po new file mode 100644 index 0000000000000000000000000000000000000000..def46cc5d7afe414d42b2c93a0bdf5c6721a3f9d --- /dev/null +++ b/l10n/tzm/core.po @@ -0,0 +1,775 @@ +# 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: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-08 03:26+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tzm\n" +"Plural-Forms: nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 1;\n" + +#: ajax/share.php:119 ajax/share.php:198 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: ajax/share.php:169 +#, 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 "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +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:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:33 +msgid "Monday" +msgstr "" + +#: js/config.php:34 +msgid "Tuesday" +msgstr "" + +#: js/config.php:35 +msgid "Wednesday" +msgstr "" + +#: js/config.php:36 +msgid "Thursday" +msgstr "" + +#: js/config.php:37 +msgid "Friday" +msgstr "" + +#: js/config.php:38 +msgid "Saturday" +msgstr "" + +#: js/config.php:43 +msgid "January" +msgstr "" + +#: js/config.php:44 +msgid "February" +msgstr "" + +#: js/config.php:45 +msgid "March" +msgstr "" + +#: js/config.php:46 +msgid "April" +msgstr "" + +#: js/config.php:47 +msgid "May" +msgstr "" + +#: js/config.php:48 +msgid "June" +msgstr "" + +#: js/config.php:49 +msgid "July" +msgstr "" + +#: js/config.php:50 +msgid "August" +msgstr "" + +#: js/config.php:51 +msgid "September" +msgstr "" + +#: js/config.php:52 +msgid "October" +msgstr "" + +#: js/config.php:53 +msgid "November" +msgstr "" + +#: js/config.php:54 +msgid "December" +msgstr "" + +#: js/js.js:387 +msgid "Settings" +msgstr "" + +#: js/js.js:858 +msgid "seconds ago" +msgstr "" + +#: js/js.js:859 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:860 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:861 +msgid "today" +msgstr "" + +#: js/js.js:862 +msgid "yesterday" +msgstr "" + +#: js/js.js:863 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:864 +msgid "last month" +msgstr "" + +#: js/js.js:865 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:866 +msgid "months ago" +msgstr "" + +#: js/js.js:867 +msgid "last year" +msgstr "" + +#: js/js.js:868 +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/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:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 +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:187 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:189 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:219 +msgid "Share link" +msgstr "" + +#: js/share.js:222 +msgid "Password protect" +msgstr "" + +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +msgid "Password" +msgstr "" + +#: js/share.js:229 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:233 +msgid "Email link to person" +msgstr "" + +#: js/share.js:234 +msgid "Send" +msgstr "" + +#: js/share.js:239 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:240 +msgid "Expiration date" +msgstr "" + +#: js/share.js:275 +msgid "Share via email:" +msgstr "" + +#: js/share.js:278 +msgid "No people found" +msgstr "" + +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:375 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:397 +msgid "Unshare" +msgstr "" + +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 +msgid "can edit" +msgstr "" + +#: js/share.js:410 +msgid "access control" +msgstr "" + +#: js/share.js:413 +msgid "create" +msgstr "" + +#: js/share.js:416 +msgid "update" +msgstr "" + +#: js/share.js:419 +msgid "delete" +msgstr "" + +#: js/share.js:422 +msgid "share" +msgstr "" + +#: js/share.js:694 +msgid "Password protected" +msgstr "" + +#: js/share.js:707 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:719 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:734 +msgid "Sending ..." +msgstr "" + +#: js/share.js:745 +msgid "Email sent" +msgstr "" + +#: js/share.js:769 +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 ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:62 +#, php-format +msgid "%s password reset" +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.
    If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
    If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
    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:52 +#: templates/login.php:31 +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 "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:111 +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 documentation." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:67 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:74 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:86 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 +msgid "will be used" +msgstr "" + +#: templates/installation.php:149 +msgid "Database user" +msgstr "" + +#: templates/installation.php:156 +msgid "Database password" +msgstr "" + +#: templates/installation.php:161 +msgid "Database name" +msgstr "" + +#: templates/installation.php:169 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:176 +msgid "Database host" +msgstr "" + +#: templates/installation.php:185 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:72 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:44 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:49 +msgid "remember" +msgstr "" + +#: templates/login.php:52 +msgid "Log in" +msgstr "" + +#: templates/login.php:58 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    " +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/tzm/files.po b/l10n/tzm/files.po new file mode 100644 index 0000000000000000000000000000000000000000..86d9e057db06a9aa1151c81ba9677e61731873bb --- /dev/null +++ b/l10n/tzm/files.po @@ -0,0 +1,413 @@ +# 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: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06: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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tzm\n" +"Plural-Forms: nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 1;\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:27 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:64 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:71 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:72 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:74 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:75 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:76 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:77 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:78 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:96 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:127 ajax/upload.php:154 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:144 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:172 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 +msgid "Files" +msgstr "" + +#: js/file-upload.js:228 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:239 +msgid "Not enough space available" +msgstr "" + +#: js/file-upload.js:306 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:344 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:436 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 +msgid "Share" +msgstr "" + +#: js/fileactions.js:137 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:194 +msgid "Rename" +msgstr "" + +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" +msgstr "" + +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:539 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:539 +msgid "undo" +msgstr "" + +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:617 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:828 js/filelist.js:866 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:72 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:81 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:93 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:97 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:349 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error moving file" +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 +msgid "Name" +msgstr "" + +#: js/files.js:614 templates/index.php:68 +msgid "Size" +msgstr "" + +#: js/files.js:615 templates/index.php:70 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:11 templates/index.php:16 +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:5 +msgid "New" +msgstr "" + +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 +msgid "Text file" +msgstr "" + +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From link" +msgstr "" + +#: templates/index.php:29 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:34 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:45 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:62 +msgid "Download" +msgstr "" + +#: templates/index.php:73 templates/index.php:74 +msgid "Delete" +msgstr "" + +#: templates/index.php:86 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:88 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:93 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:96 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/tzm/files_encryption.po b/l10n/tzm/files_encryption.po new file mode 100644 index 0000000000000000000000000000000000000000..cf815c5e40eba737321da98af4241c1714855a04 --- /dev/null +++ b/l10n/tzm/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: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tzm\n" +"Plural-Forms: nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 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:59 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:60 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "" + +#: hooks/hooks.php:273 +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/settings-admin.js:13 +msgid "Saving..." +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/tzm/files_external.po b/l10n/tzm/files_external.po new file mode 100644 index 0000000000000000000000000000000000000000..9c55bb693c10c364c3715aeaa743e990750acc9f --- /dev/null +++ b/l10n/tzm/files_external.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-03 12:38-0500\n" +"PO-Revision-Date: 2013-11-02 11:38+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tzm\n" +"Plural-Forms: nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 1;\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:86 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:42 js/google.js:121 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:461 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:465 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:468 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/tzm/files_sharing.po b/l10n/tzm/files_sharing.po new file mode 100644 index 0000000000000000000000000000000000000000..5cc2cdcf4899ef76e723d8d96ddfdcaccabe8c0b --- /dev/null +++ b/l10n/tzm/files_sharing.po @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-03 12:38-0500\n" +"PO-Revision-Date: 2013-11-02 11:38+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tzm\n" +"Plural-Forms: nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 1;\n" + +#: 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 "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:20 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:28 templates/public.php:94 +msgid "Download" +msgstr "" + +#: templates/public.php:45 templates/public.php:48 +msgid "Upload" +msgstr "" + +#: templates/public.php:58 +msgid "Cancel upload" +msgstr "" + +#: templates/public.php:91 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:98 +msgid "Direct link" +msgstr "" diff --git a/l10n/tzm/files_trashbin.po b/l10n/tzm/files_trashbin.po new file mode 100644 index 0000000000000000000000000000000000000000..4a5d58092ea55c938f7ba8989a59ae87042ed92c --- /dev/null +++ b/l10n/tzm/files_trashbin.po @@ -0,0 +1,60 @@ +# 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: 2013-11-03 12:38-0500\n" +"PO-Revision-Date: 2013-11-02 11:38+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tzm\n" +"Plural-Forms: nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 1;\n" + +#: ajax/delete.php:42 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:42 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +msgid "Error" +msgstr "" + +#: lib/trashbin.php:814 lib/trashbin.php:816 +msgid "restored" +msgstr "" + +#: templates/index.php:8 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:22 +msgid "Name" +msgstr "" + +#: templates/index.php:25 templates/index.php:27 +msgid "Restore" +msgstr "" + +#: templates/index.php:33 +msgid "Deleted" +msgstr "" + +#: templates/index.php:36 templates/index.php:37 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/tzm/files_versions.po b/l10n/tzm/files_versions.po new file mode 100644 index 0000000000000000000000000000000000000000..80b606d0888d7a1e25fe4e676ad5bd31b781251c --- /dev/null +++ b/l10n/tzm/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: 2013-11-03 12:38-0500\n" +"PO-Revision-Date: 2013-11-02 11:38+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tzm\n" +"Plural-Forms: nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 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:86 +msgid "More versions..." +msgstr "" + +#: js/versions.js:123 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:154 +msgid "Restore" +msgstr "" diff --git a/l10n/tzm/lib.po b/l10n/tzm/lib.po new file mode 100644 index 0000000000000000000000000000000000000000..643ca395d1247e491a03fc8d32e692967a36a0d9 --- /dev/null +++ b/l10n/tzm/lib.po @@ -0,0 +1,333 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tzm\n" +"Plural-Forms: nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 1;\n" + +#: private/app.php:243 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:255 +msgid "No app name specified" +msgstr "" + +#: private/app.php:360 +msgid "Help" +msgstr "" + +#: private/app.php:373 +msgid "Personal" +msgstr "" + +#: private/app.php:384 +msgid "Settings" +msgstr "" + +#: private/app.php:396 +msgid "Users" +msgstr "" + +#: private/app.php:409 +msgid "Admin" +msgstr "" + +#: private/app.php:873 +#, 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:34 +msgid "web services under your control" +msgstr "" + +#: private/files.php:66 private/files.php:98 +#, php-format +msgid "cannot open \"%s\"" +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:63 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:125 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:131 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:140 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:146 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:159 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:169 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:182 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:39 private/json.php:62 private/json.php:73 +msgid "Authentication error" +msgstr "" + +#: private/json.php:51 +msgid "Token expired. Please reload page." +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:24 +#: private/setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL 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:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#, 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL." +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:23 private/setup/postgresql.php:69 +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:195 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:196 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:131 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:132 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:133 +msgid "today" +msgstr "" + +#: private/template/functions.php:134 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:136 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:138 +msgid "last month" +msgstr "" + +#: private/template/functions.php:139 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:141 +msgid "last year" +msgstr "" + +#: private/template/functions.php:142 +msgid "years ago" +msgstr "" diff --git a/l10n/tzm/settings.po b/l10n/tzm/settings.po new file mode 100644 index 0000000000000000000000000000000000000000..eec7cdcf9264576b5712bc4d79412fd6c24e0d8c --- /dev/null +++ b/l10n/tzm/settings.po @@ -0,0 +1,668 @@ +# 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: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tzm\n" +"Plural-Forms: nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 1;\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 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/apps.js:43 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +msgid "Disable" +msgstr "" + +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +msgid "Enable" +msgstr "" + +#: js/apps.js:71 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:125 +msgid "Updating...." +msgstr "" + +#: js/apps.js:128 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:128 +msgid "Error" +msgstr "" + +#: js/apps.js:129 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:132 +msgid "Updated" +msgstr "" + +#: js/personal.js:220 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:266 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/personal.js:287 +msgid "Saving..." +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:95 templates/users.php:26 templates/users.php:90 +#: templates/users.php:118 +msgid "Groups" +msgstr "" + +#: js/users.js:100 templates/users.php:92 templates/users.php:130 +msgid "Group Admin" +msgstr "" + +#: js/users.js:123 templates/users.php:170 +msgid "Delete" +msgstr "" + +#: js/users.js:284 +msgid "add group" +msgstr "" + +#: js/users.js:451 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:452 js/users.js:458 js/users.js:473 +msgid "Error creating user" +msgstr "" + +#: js/users.js:457 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:45 personal.php:46 +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:22 templates/admin.php:36 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:25 +#, 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:39 +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:50 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:53 +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:54 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:65 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:68 +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:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 +#, 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:118 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:121 +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:135 +msgid "Cron" +msgstr "" + +#: templates/admin.php:142 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:150 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:163 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:169 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:170 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:177 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:178 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:186 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:187 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:195 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:196 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:203 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:206 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 +msgid "Security" +msgstr "" + +#: templates/admin.php:234 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:236 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:242 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:254 +msgid "Log" +msgstr "" + +#: templates/admin.php:255 +msgid "Log level" +msgstr "" + +#: templates/admin.php:287 +msgid "More" +msgstr "" + +#: templates/admin.php:288 +msgid "Less" +msgstr "" + +#: templates/admin.php:294 templates/personal.php:173 +msgid "Version" +msgstr "" + +#: templates/admin.php:298 templates/personal.php:176 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:13 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:28 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:33 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:39 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:41 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +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 %s of the available %s" +msgstr "" + +#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +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:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:44 +msgid "New password" +msgstr "" + +#: templates/personal.php:46 +msgid "Change password" +msgstr "" + +#: templates/personal.php:58 templates/users.php:88 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:73 +msgid "Email" +msgstr "" + +#: templates/personal.php:75 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:76 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:86 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:91 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:93 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:94 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:95 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:97 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:101 +msgid "Abort" +msgstr "" + +#: templates/personal.php:102 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:110 templates/personal.php:111 +msgid "Language" +msgstr "" + +#: templates/personal.php:130 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:137 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:139 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "" + +#: templates/personal.php:150 +msgid "Encryption" +msgstr "" + +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:158 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:163 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:21 +msgid "Login Name" +msgstr "" + +#: templates/users.php:30 +msgid "Create" +msgstr "" + +#: templates/users.php:36 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:48 templates/users.php:148 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:66 templates/users.php:163 +msgid "Other" +msgstr "" + +#: templates/users.php:87 +msgid "Username" +msgstr "" + +#: templates/users.php:94 +msgid "Storage" +msgstr "" + +#: templates/users.php:108 +msgid "change full name" +msgstr "" + +#: templates/users.php:112 +msgid "set new password" +msgstr "" + +#: templates/users.php:143 +msgid "Default" +msgstr "" diff --git a/l10n/tzm/user_ldap.po b/l10n/tzm/user_ldap.po new file mode 100644 index 0000000000000000000000000000000000000000..ea49db54ae05919c3d134ae8c96f3760bf8b6230 --- /dev/null +++ b/l10n/tzm/user_ldap.po @@ -0,0 +1,513 @@ +# 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: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-27 17:09+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tzm\n" +"Plural-Forms: nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 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:37 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:40 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:44 +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:777 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:786 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:795 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:812 js/settings.js:821 +msgid "Select groups" +msgstr "" + +#: js/settings.js:815 js/settings.js:824 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:818 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:845 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:852 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:861 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:862 +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:779 lib/wizard.php:791 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:952 +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 "Limit the access to %s to groups meeting this criteria:" +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 "What attribute shall be used as login name:" +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 the access to %s to users meeting this 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 "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php: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:40 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:42 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:43 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:43 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:44 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:45 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:45 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:51 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:52 +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:53 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:54 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:55 +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:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:58 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:59 +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:60 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:60 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/tzm/user_webdavauth.po b/l10n/tzm/user_webdavauth.po new file mode 100644 index 0000000000000000000000000000000000000000..fcff72cb40a4b5ebdef555f530fcda8c540cac8e --- /dev/null +++ b/l10n/tzm/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: 2013-11-03 12:38-0500\n" +"PO-Revision-Date: 2013-11-02 11:38+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tzm\n" +"Plural-Forms: nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 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/ug/core.po b/l10n/ug/core.po index 2550b6d4ad0ba11e62acfd78fee13390a2dc6af6..9de922dadc67837029e172625dfd9114fcfcd62e 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -6,25 +6,26 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" -"Language-Team: Uighur \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" -msgstr "گۇرۇپپا" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -186,55 +148,55 @@ msgstr "ئوغلاق" msgid "December" msgstr "كۆنەك" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "تەڭشەكلەر" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "بۈگۈن" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "تۈنۈگۈن" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "" @@ -301,155 +263,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "خاتالىق" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "ھەمبەھىر" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "خاتالىق" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" -msgstr "ھەمبەھىر" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" +#: js/share.js:219 +msgid "Share link" msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "ئىم" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "يوللا" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "گۇرۇپپا" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "ھەمبەھىرلىمە" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "ئۆچۈر" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "ھەمبەھىر" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "ئىشلەتكۈچى ئاتى" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -498,12 +488,12 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" msgstr "" #: lostpassword/templates/resetpassword.php:4 @@ -530,7 +520,7 @@ msgstr "شەخسىي" msgid "Users" msgstr "ئىشلەتكۈچىلەر" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "ئەپلەر" @@ -542,6 +532,34 @@ msgstr "" 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 "" @@ -558,108 +576,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "تۈر تەھرىر" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "قوش" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "بىخەتەرلىك ئاگاھلاندۇرۇش" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "ئالىي" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "تەڭشەك تامام" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "تىزىمدىن چىق" @@ -677,19 +706,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -697,10 +734,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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.php:3 +#: 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/ug/files.po b/l10n/ug/files.po index c029562d869208d4b0bce0e2e0e4215bb5a1c4f3..d510267975806e3209347c22cdc0ca4b36154c5f 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -6,11 +6,11 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" -"Language-Team: Uighur \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -27,217 +27,283 @@ msgstr "" msgid "Could not move %s" msgstr "%s يۆتكىيەلمەيدۇ" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "ھېچقانداق ھۆججەت يۈكلەنمىدى. يوچۇن خاتالىق" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "ھېچقانداق ھۆججەت يۈكلەنمىدى" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "ۋاقىتلىق قىسقۇچ كەم." -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "دىسكىغا يازالمىدى" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "يېتەرلىك ساقلاش بوشلۇقى يوق" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "ھۆججەتلەر" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "يېتەرلىك بوشلۇق يوق" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "يۈكلەشتىن ۋاز كەچتى." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "خاتالىق" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} مەۋجۇت" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "ھەمبەھىر" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "مەڭگۈلۈك ئۆچۈر" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "ئات ئۆزگەرت" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "كۈتۈۋاتىدۇ" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} مەۋجۇت" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "ئالماشتۇر" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "تەۋسىيە ئات" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "ۋاز كەچ" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "يېنىۋال" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "خاتالىق" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "ئاتى" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "چوڭلۇقى" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "ئۆزگەرتكەن" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "يۈكلە" @@ -273,65 +339,69 @@ msgstr "" msgid "Save" msgstr "ساقلا" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "يېڭى" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "تېكىست ھۆججەت" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "يېڭى قىسقۇچ" + +#: templates/index.php:10 msgid "Folder" msgstr "قىسقۇچ" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "ئۆچۈرۈلگەن ھۆججەتلەر" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "يۈكلەشتىن ۋاز كەچ" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "بۇ جايدا ھېچنېمە يوق. Upload something!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "چۈشۈر" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "ھەمبەھىرلىمە" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "ئۆچۈر" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "يۈكلەندىغىنى بەك چوڭ" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/ug/files_encryption.po b/l10n/ug/files_encryption.po index d2941695a8daa7fe99fd55a9dc2b1a26a8011169..81b13d3fefe845d78d62fbf54b16827fbd04e8a8 100644 --- a/l10n/ug/files_encryption.po +++ b/l10n/ug/files_encryption.po @@ -6,11 +6,11 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+0000\n" "Last-Translator: I Robot \n" -"Language-Team: Uighur \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:41 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "ساقلاۋاتىدۇ…" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "شىفىرلاش" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index ed4e95513c8d1a0709e3be2ee8bcb6e3aa2c2589..013bb4e3bbc2b7b46c72e1a241105edfd3ccc70e 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -6,18 +6,18 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Abduqadir Abliz \n" -"Language-Team: Uighur \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index b1dd5be96431f8c3c289a6677d49f844799da575..7a99ab9d73220cf3642ab68ca16d0b47ef71ccc9 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" -"Language-Team: Uighur \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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/authenticate.php:9 -msgid "Submit" -msgstr "تاپشۇر" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -54,28 +54,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "چۈشۈر" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "يۈكلە" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "يۈكلەشتىن ۋاز كەچ" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index df0057cd76b445b8712239b125d777a9c306951f..47ee2874918a1490f2d966ef8a141b5c6975dc03 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -6,11 +6,11 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" -"Language-Team: Uighur \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -27,53 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "خاتالىق" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "مەڭگۈلۈك ئۆچۈر" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "ئاتى" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "ئۆچۈرۈلدى" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "بۇ جايدا ھېچنېمە يوق. Your trash bin is empty!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "ئاتى" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "ئۆچۈرۈلدى" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "ئۆچۈر" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 27e9f375db1c396768f3d3eec1a09e1c43cea266..92d05caf931853b7fd2d46884668cef3c0d1960a 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -6,325 +6,324 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" -"Language-Team: Uighur \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "ياردەم" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "شەخسىي" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "تەڭشەكلەر" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "ئىشلەتكۈچىلەر" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "سالاھىيەت دەلىللەش خاتالىقى" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "ھۆججەتلەر" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "قىسقا ئۇچۇر" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "سۈرەتلەر" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "سىزنىڭ تور مۇلازىمېتىرىڭىز ھۆججەت قەدەمداشلاشقا يول قويىدىغان قىلىپ توغرا تەڭشەلمەپتۇ، چۈنكى WebDAV نىڭ ئېغىزى بۇزۇلغاندەك تۇرىدۇ." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "بۈگۈن" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "تۈنۈگۈن" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 84bd5ebb2a5f004221150ef074cfafed9931b8f9..e4fba698bd3e7f6e48ab5fce27c3a5e172787262 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" -"Language-Team: Uighur \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -28,12 +28,12 @@ msgid "Authentication error" msgstr "سالاھىيەت دەلىللەش خاتالىقى" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "كۆرسىتىدىغان ئىسمىڭىز ئۆزگەردى." +msgid "Your full name has been changed." +msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "كۆرسىتىدىغان ئىسىمنى ئۆزگەرتكىلى بولمايدۇ" +msgid "Unable to change full name" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -118,11 +118,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "{appversion} غا يېڭىلايدۇ" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "چەكلە" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "قوزغات" @@ -130,31 +130,31 @@ msgstr "قوزغات" msgid "Please wait...." msgstr "سەل كۈتۈڭ…" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "يېڭىلاۋاتىدۇ…" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "ئەپنى يېڭىلاۋاتقاندا خاتالىق كۆرۈلدى" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "خاتالىق" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "يېڭىلا" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "يېڭىلاندى" @@ -162,7 +162,7 @@ msgstr "يېڭىلاندى" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -182,44 +182,75 @@ msgstr "يېنىۋال" msgid "Unable to remove user" msgstr "ئىشلەتكۈچىنى چىقىرىۋېتەلمەيدۇ" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "گۇرۇپپا" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "گۇرۇپپا باشقۇرغۇچى" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "ئۆچۈر" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "گۇرۇپپا قوش" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "چوقۇم ئىناۋەتلىك ئىشلەتكۈچى ئىسمىدىن بىرنى تەمىنلەش كېرەك" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "ئىشلەتكۈچى قۇرۇۋاتقاندا خاتالىق كۆرۈلدى" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "چوقۇم ئىناۋەتلىك ئىم تەمىنلەش كېرەك" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "ئۇيغۇرچە" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "بىخەتەرلىك ئاگاھلاندۇرۇش" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -228,48 +259,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "ئاگاھلاندۇرۇش تەڭشەك" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "بۆلەك «ھۆججەت ئۇچۇرى» يوقالغان" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -278,110 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "ھەمبەھىر" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "بىخەتەرلىك" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "خاتىرە" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "خاتىرە دەرىجىسى" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "تېخىمۇ كۆپ" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "ئاز" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "نەشرى" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "شىفىرلاش" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -573,6 +636,10 @@ msgstr "" msgid "Default Storage" msgstr "كۆڭۈلدىكى ساقلىغۇچ" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "چەكسىز" @@ -590,8 +657,8 @@ msgid "Storage" msgstr "ساقلىغۇچ" #: templates/users.php:108 -msgid "change display name" -msgstr "كۆرسىتىدىغان ئىسىمنى ئۆزگەرت" +msgid "change full name" +msgstr "" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index ad88262b4408b7769642bf47f73a452f0484688f..781e2e7cbbe97b8de66942b59ee0b1d1bb48f8d9 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -6,11 +6,11 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" -"Language-Team: Uighur \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -25,314 +25,423 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "خاتالىق" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" msgstr "" -#: templates/settings.php:12 -msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +#: lib/wizard.php:951 +msgid "Could not find the desired feature" msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "ساقلا" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "ياردەم" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" msgstr "" -#: templates/settings.php:37 -msgid "Host" -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/settings.php:39 +#: templates/part.wizard-groupfilter.php:31 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" msgstr "" -#: templates/settings.php:44 +#: 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/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "ئىم" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "ئىشلەتكۈچى تىزىمغا كىرىش سۈزگۈچى" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "ئىشلەتكۈچى تىزىم سۈزگۈچى" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "گۇرۇپپا سۈزگۈچ" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:20 msgid "Connection Settings" msgstr "باغلىنىش تەڭشىكى" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "سەپلىمە ئاكتىپ" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "ئېغىز" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "TLS ئىشلەت" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +457,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +476,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +502,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "ياردەم" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 2deda9a93d507fa45b638bfb94b84ef6927176c9..dd19baeb3b99702683a58389f73ff001b565aca7 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# volodya327 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -17,98 +18,60 @@ 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/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s розподілено »%s« з тобою" -#: ajax/share.php:227 -msgid "group" -msgstr "група" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Неможливо надіслати пошту наступним користувачам: %s " #: ajax/update.php:11 msgid "Turned on maintenance mode" -msgstr "" +msgstr "Увімкнено захищений режим" #: ajax/update.php:14 msgid "Turned off maintenance mode" -msgstr "" +msgstr "Вимкнено захищений режим" #: ajax/update.php:17 msgid "Updated database" -msgstr "" +msgstr "Базу даних оновлено" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "" +msgstr "Оновлення файлового кешу, це може тривати доволі довго..." #: ajax/update.php:23 msgid "Updated filecache" -msgstr "" +msgstr "Файловий кеш оновлено" #: ajax/update.php:26 #, php-format msgid "... %d%% done ..." -msgstr "" - -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Не вказано тип категорії." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Відсутні категорії для додавання?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Ця категорія вже існує: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Не вказано тип об'єкту." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID не вказано." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Помилка при додаванні %s до обраного." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Жодної категорії не обрано для видалення." - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Помилка при видалені %s із обраного." +msgstr "... %d%% виконано ..." #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +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" -msgstr "" +msgstr "Немає доступного тимчасового профілю для малюнків, спробуйте ще раз" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "Немає інформації щодо обрізки даних" #: js/config.php:32 msgid "Sunday" @@ -186,63 +149,63 @@ msgstr "Листопад" msgid "December" msgstr "Грудень" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Налаштування" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "%n хвилину тому" +msgstr[1] "%n хвилини тому" +msgstr[2] "%n хвилин тому" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "%n годину тому" +msgstr[1] "%n години тому" +msgstr[2] "%n годин тому" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "сьогодні" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "вчора" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "%n день тому" +msgstr[1] "%n дні тому" +msgstr[2] "%n днів тому" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "минулого місяця" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "%n місяць тому" +msgstr[1] "%n місяці тому" +msgstr[2] "%n місяців тому" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "місяці тому" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "минулого року" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "роки тому" @@ -252,7 +215,7 @@ msgstr "Обрати" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Помилка при завантаженні шаблону вибору: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -268,28 +231,28 @@ msgstr "Ok" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Помилка при завантаженні шаблону повідомлення: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "{count} файловий конфлікт" +msgstr[1] "{count} файлових конфліктів" +msgstr[2] "{count} файлових конфліктів" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Один файловий конфлікт" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Які файли ви хочете залишити?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Якщо ви оберете обидві версії, скопійований файл буде мати номер, доданий у його ім'я." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -297,169 +260,197 @@ msgstr "Відмінити" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Продовжити" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(все вибрано)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} вибрано)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" - -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Не визначено тип об'єкту." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Помилка" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Не визначено ім'я програми." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Необхідний файл {file} не встановлено!" +msgstr "Помилка при завантаженні файлу існуючого шаблону" -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Опубліковано" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Поділитися" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Помилка" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Помилка під час публікації" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Помилка під час відміни публікації" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Помилка при зміні повноважень" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr " {owner} опублікував для Вас та для групи {group}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "{owner} опублікував для Вас" -#: js/share.js:183 -msgid "Share with" -msgstr "Опублікувати для" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "Поділитися з користувачем або групою ..." -#: js/share.js:188 -msgid "Share with link" -msgstr "Опублікувати через посилання" +#: js/share.js:219 +msgid "Share link" +msgstr "Опублікувати посилання" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Захистити паролем" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Пароль" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" -msgstr "" +msgstr "Дозволити Публічне Завантаження" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Ел. пошта належить Пану" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Надіслати" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Встановити термін дії" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Термін дії" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Опублікувати через Ел. пошту:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Жодної людини не знайдено" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "група" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Пере-публікація не дозволяється" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Опубліковано {item} для {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Закрити доступ" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "повідомити по Email" + +#: js/share.js:408 msgid "can edit" msgstr "може редагувати" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "контроль доступу" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "створити" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "оновити" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "видалити" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "опублікувати" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Захищено паролем" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Помилка при відміні терміна дії" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Помилка при встановленні терміна дії" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Надсилання..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "Ел. пошта надіслана" +#: js/share.js:769 +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 "Помилка при завантаженні шаблону діалогу: {error}" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." -msgstr "" +msgstr "Посилання для того, щоб скинути ваш пароль було надіслано на ваший Email.
    Якщо ви не отримали його найближчим часом, перевірте ваший спам каталог.
    Якщо і там немає, спитайте вашого місцевого Адміністратора." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" -msgstr "" +msgstr "Запит завершився невдало !
    Ви переконані, що ваша адреса Email/ім'я користувача вірні ?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Ви отримаєте посилання для скидання вашого паролю на Ел. пошту." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Ім'я користувача" -#: lostpassword/templates/lostpassword.php:22 +#: 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 "" +msgstr "Ваші файли зашифровані. Якщо ви не зробили придатний ключ відновлення, не буде ніякої можливості отримати дані назад після того, як ваш пароль буде скинутий. Якщо ви не знаєте, що робити, будь ласка, зверніться до адміністратора, щоб продовжити. Ви дійсно хочете продовжити?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Так, я справді бажаю скинути мій пароль зараз" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Запит скидання" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "Перевстановити" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -540,7 +531,7 @@ msgstr "Особисте" msgid "Users" msgstr "Користувачі" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Додатки" @@ -552,6 +543,34 @@ msgstr "Адмін" 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 "Доступ заборонено" @@ -568,108 +587,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "" +msgstr "Агов,\n\nпросто щоб ви знали, що %s поділився %s з вами.\nПодивіться: %s\n\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Редагувати категорії" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "Доступ до спільних даних вичерпається %s." -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Додати" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "Будьмо!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Попередження про небезпеку" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Ваша версія PHP вразлива для атак NULL Byte (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Будь ласка, оновіть вашу інсталяцію PHP для використання %s безпеки." -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Не доступний безпечний генератор випадкових чисел, будь ласка, активуйте PHP OpenSSL додаток." -#: templates/installation.php:33 +#: 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:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Ваші дані каталогів і файлів, ймовірно, доступні з інтернету, тому що .htaccess файл не працює." -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." -msgstr "" +msgstr "Для отримання інформації, як правильно налаштувати сервер, див. документацію." -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Створити обліковий запис адміністратора" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Додатково" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Каталог даних" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Налаштування бази даних" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "буде використано" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Користувач бази даних" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Пароль для бази даних" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Назва бази даних" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Таблиця бази даних" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Хост бази даних" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Завершити налаштування" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "Завершується ..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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 "" +msgstr "%s доступний. Отримай більше інформації про те, як оновити." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Вихід" @@ -687,19 +717,27 @@ msgstr "Якщо Ви не міняли пароль останнім часом msgid "Please change your password to secure your account again." msgstr "Будь ласка, змініть свій пароль, щоб знову захистити Ваш обліковий запис." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "Помилка аутентифікації на боці Сервера !" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "Будь ласка, зверніться до вашого Адміністратора." + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Забули пароль?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "запам'ятати" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Вхід" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Альтернативні Логіни" @@ -707,10 +745,37 @@ msgstr "Альтернативні Логіни" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "" +"href=\"%s\">View it!

    " +msgstr "Агов,

    просто щоб ви знали, що %s поділився »%s« з вами.
    Подивіться на це !

    " + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "Цей екземпляр OwnCloud зараз працює в монопольному режимі одного користувача" -#: templates/update.php:3 +#: 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 "Оновлення ownCloud до версії %s, це може зайняти деякий час." + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "Цей ownCloud зараз оновлюється, це може тривати певний час." + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "Будь ласка, перезавантажте незабаром цю сторінку, щоб продовжити користуватися OwnCloud." diff --git a/l10n/uk/files.po b/l10n/uk/files.po index d269f620d94b4d1e90b3029694630190c18c5ba5..61871c27be1e959b87a03bf9c2db9241d99f4a64 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-29 00:02-0400\n" -"PO-Revision-Date: 2013-09-27 19:42+0000\n" -"Last-Translator: zubr139 \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,62 +28,107 @@ msgstr "Не вдалося перемістити %s - Файл з таким msgid "Could not move %s" msgstr "Не вдалося перемістити %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr " Ім'я файлу не може бути порожнім." + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "Ім'я теки не може бути порожнім." + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "Не вдалося встановити каталог завантаження." -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "Не завантажено жодного файлу. Невідома помилка" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "Файл успішно вивантажено без помилок." -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Розмір звантаження перевищує upload_max_filesize параметра в php.ini: " -#: ajax/upload.php:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "Файл відвантажено лише частково" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Не відвантажено жодного файлу" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Відсутній тимчасовий каталог" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Невдалося записати на диск" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Місця більше немає" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Невірний каталог." @@ -91,160 +136,181 @@ msgstr "Невірний каталог." msgid "Files" msgstr "Файли" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Місця більше немає" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Завантаження перервано." -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження." -#: js/file-upload.js:520 -msgid "URL cannot be empty." -msgstr "URL не може бути пустим." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "URL не може бути порожнім" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Неправильне ім'я теки. Використання 'Shared' зарезервовано ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Помилка" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} вже існує" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "Не вдалося створити файл" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "Не вдалося створити теку" -#: js/fileactions.js:119 +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "Поділитися" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Видалити назавжди" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Перейменувати" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Очікування" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} вже існує" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "заміна" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "Неможливо перейменувати файл" -#: js/filelist.js:416 -msgid "suggest name" -msgstr "запропонуйте назву" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "відміна" - -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "замінено {new_name} на {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "відмінити" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n тека" msgstr[1] "%n тека" msgstr[2] "%n теки" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "%n файл" +msgstr[1] "%n файлів" +msgstr[2] "%n файли" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' це невірне ім'я файлу." -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr " Ім'я файлу не може бути порожнім." - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Невірне ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не дозволені." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ваше сховище переповнене, файли більше не можуть бути оновлені або синхронізовані !" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ваше сховище майже повне ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ваше завантаження готується. Це може зайняти деякий час, якщо файли завеликі." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" -msgstr "" +msgstr "Помилка переміщення файлу" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Помилка" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Ім'я" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Розмір" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Змінено" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s не може бути перейменований" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Вивантажити" @@ -280,65 +346,69 @@ msgstr "Максимальний розмір завантажуємого ZIP msgid "Save" msgstr "Зберегти" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Створити" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "Текстовий файл" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Нова тека" + +#: templates/index.php:10 msgid "Folder" msgstr "Тека" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "З посилання" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "Видалено файлів" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Перервати завантаження" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "У вас тут немає прав на запис." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Тут нічого немає. Відвантажте що-небудь!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Завантажити" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Закрити доступ" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Видалити" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Файл занадто великий" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файли,що ви намагаєтесь відвантажити перевищують максимальний дозволений розмір файлів на цьому сервері." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Файли скануються, зачекайте, будь-ласка." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Поточне сканування" diff --git a/l10n/uk/files_encryption.po b/l10n/uk/files_encryption.po index 6957679f93fe75c85f37f8971a466db769359286..6f9b8b6f19e0321b42c5e3dff06ad09075af58eb 100644 --- a/l10n/uk/files_encryption.po +++ b/l10n/uk/files_encryption.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-29 00:02-0400\n" -"PO-Revision-Date: 2013-09-27 19:12+0000\n" -"Last-Translator: zubr139 \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,75 +44,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:53 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:54 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:255 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Зберігаю..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "особисті налаштування" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Шифрування" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -120,58 +141,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index e5332acadba86340826cd48cfaf3a6ba768afa39..09086c8728d3618582a4463a6baab8705e9ff2ac 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-08-01 03:10+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Soul Kim \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -38,20 +38,20 @@ msgstr "Будь ласка, надайте дійсний ключ та пар msgid "Error configuring Google Drive storage" msgstr "Помилка при налаштуванні сховища Google Drive" -#: lib/config.php:448 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Попередження: Клієнт \"smbclient\" не встановлено. Під'єднанатися до CIFS/SMB тек неможливо. Попрохайте системного адміністратора встановити його." -#: lib/config.php:451 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Попередження: Підтримка FTP в PHP не увімкнута чи не встановлена. Під'єднанатися до FTP тек неможливо. Попрохайте системного адміністратора встановити її." -#: lib/config.php:454 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index c12dc78801e6908db1f52d7e7ec5c484f05e852c..2f9913608fe938100df10e23932b77080f6063db 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# volodya327 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-28 14:30+0000\n" +"Last-Translator: volodya327 \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,63 +19,67 @@ msgstr "" "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" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." -msgstr "" +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/authenticate.php:9 -msgid "Submit" -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:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s опублікував каталог %s для Вас" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s опублікував файл %s для Вас" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Завантажити" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Вивантажити" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Перервати завантаження" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Попередній перегляд недоступний для" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "Пряме посилання" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 617e1276bfd7cb1e4910b3cfd74f44661af71491..786eb3db3075ba821f1a091b6d3c09ea685ac159 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -28,57 +28,31 @@ msgstr "Неможливо видалити %s назавжди" msgid "Couldn't restore %s" msgstr "Неможливо відновити %s" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "виконати операцію відновлення" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Помилка" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "видалити файл назавжди" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Видалити назавжди" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Ім'я" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "Видалено" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "відновлено" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Нічого немає. Ваший кошик для сміття пустий!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Ім'я" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Відновити" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Видалено" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Видалити" diff --git a/l10n/uk/files_versions.po b/l10n/uk/files_versions.po index a24eb68f6b5e4a948324bda72557b5af738aa58d..78b4867c2fb5fa1af4edc995267875866e0ad1b4 100644 --- a/l10n/uk/files_versions.po +++ b/l10n/uk/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# volodya327 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-28 14:10+0000\n" +"Last-Translator: volodya327 \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,22 +23,22 @@ msgstr "" msgid "Could not revert: %s" msgstr "Не вдалося відновити: %s" -#: js/versions.js:7 +#: js/versions.js:14 msgid "Versions" msgstr "Версії" -#: js/versions.js:53 +#: js/versions.js:60 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "Не вдалося повернути {file} до ревізії {timestamp}." -#: js/versions.js:79 +#: js/versions.js:86 msgid "More versions..." -msgstr "" +msgstr "Більше версій ..." -#: js/versions.js:116 +#: js/versions.js:123 msgid "No other versions available" -msgstr "" +msgstr "Інші версії недоступні" -#: js/versions.js:149 +#: js/versions.js:154 msgid "Restore" msgstr "Відновити" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index af53a22d88cb9fd219bc28c5c38d289bc92e9b64..09e55936d2de027df9333de5762b4a476162a2fe 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -17,322 +17,321 @@ 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" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Допомога" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Особисте" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Налаштування" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Користувачі" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Адмін" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Невідомий тип файлу" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Невірне зображення" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "підконтрольні Вам веб-сервіси" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP завантаження вимкнено." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Файли повинні бути завантаженні послідовно." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Повернутися до файлів" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Вибрані фали завеликі для генерування zip файлу." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Додаток не увімкнений" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Помилка автентифікації" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Строк дії токена скінчився. Будь ласка, перезавантажте сторінку." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Файли" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Текст" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Зображення" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s введіть ім'я користувача бази даних." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s введіть назву бази даних." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s не можна використовувати крапки в назві бази даних" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL ім'я користувача та/або пароль не дійсні: %s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "Вам потрібно ввести або існуючий обліковий запис або administrator." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL ім'я користувача та/або пароль не дійсні" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "Помилка БД: \"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "Команда, що викликала проблему: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Користувач MySQL '%s'@'localhost' вже існує." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Видалити цього користувача з MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Користувач MySQL '%s'@'%%' вже існує" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Видалити цього користувача з MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Oracle ім'я користувача та/або пароль не дійсні" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Команда, що викликала проблему: \"%s\", ім'я: %s, пароль: %s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL ім'я користувача та/або пароль не дійсні" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Встановіть ім'я адміністратора." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Встановіть пароль адміністратора." -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш Web-сервер ще не налаштований належним чином для того, щоб дозволити синхронізацію файлів, через те що інтерфейс WebDAV, здається, зламаний." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Будь ласка, перевірте інструкції по встановленню." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Не вдалося знайти категорію \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "секунди тому" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -msgstr[2] "" +msgstr[2] "%n хвилин тому" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -msgstr[2] "" +msgstr[2] "%n годин тому" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "сьогодні" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "вчора" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -msgstr[2] "" +msgstr[2] "%n днів тому" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "минулого місяця" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -msgstr[2] "" +msgstr[2] "%n місяців тому" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "минулого року" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "роки тому" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Не вдалося знайти категорію \"%s\"" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 912467cac901b92e2f7c63bb138375394e55ea6d..f941a9e46c366b73e1f33617a1bc08c0c19bc982 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-29 00:02-0400\n" -"PO-Revision-Date: 2013-09-27 19:43+0000\n" -"Last-Translator: zubr139 \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,12 +28,12 @@ msgid "Authentication error" msgstr "Помилка автентифікації" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Не вдалося змінити ім'я" +msgid "Unable to change full name" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -158,7 +158,7 @@ msgstr "Оновити" msgid "Updated" msgstr "Оновлено" -#: js/personal.js:221 +#: js/personal.js:220 msgid "Select a profile picture" msgstr "" @@ -166,7 +166,7 @@ msgstr "" msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:288 +#: js/personal.js:287 msgid "Saving..." msgstr "Зберігаю..." @@ -182,44 +182,75 @@ msgstr "відмінити" msgid "Unable to remove user" msgstr "Неможливо видалити користувача" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Групи" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Адміністратор групи" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Видалити" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "додати групу" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "Потрібно задати вірне ім'я користувача" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "Помилка при створенні користувача" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "Потрібно задати вірний пароль" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "Попередження про небезпеку" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -228,48 +259,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "Попередження при Налаштуванні" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "Модуль 'fileinfo' відсутній" -#: templates/admin.php:47 +#: templates/admin.php:68 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:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "Локалізація не працює" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Інтернет-з'єднання не працює" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -278,110 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Виконати одне завдання для кожної завантаженої сторінки " -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Спільний доступ" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Увімкнути API спільного доступу" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Дозволити програмам використовувати API спільного доступу" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Дозволити посилання" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Дозволити користувачам відкривати спільний доступ до елементів за допомогою посилань" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Дозволити перевідкривати спільний доступ" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Дозволити користувачам знову відкривати спільний доступ до елементів, які вже відкриті для доступу" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Дозволити користувачам відкривати спільний доступ для всіх" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Дозволити користувачам відкривати спільний доступ лише для користувачів з їхньої групи" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "Безпека" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Примусове застосування HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "Протокол" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "Рівень протоколювання" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "Більше" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "Менше" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Версія" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Шифрування" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -573,6 +636,10 @@ msgstr "" msgid "Default Storage" msgstr "сховище за замовчуванням" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Необмежено" @@ -590,8 +657,8 @@ msgid "Storage" msgstr "Сховище" #: templates/users.php:108 -msgid "change display name" -msgstr "змінити ім'я" +msgid "change full name" +msgstr "" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index db0bfc141d0820d12cc2c7b998b3530946ed537d..4077c9fcbfc55265809032d7e79900b1ce45564f 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,427 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "Не вдалося видалити конфігурацію сервера" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Конфігурація вірна і зв'язок може бути встановлений ​​!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Конфігурація вірна, але встановити зв'язок не вдалося. Будь ласка, перевірте налаштування сервера і облікові дані." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "Конфігурація невірна. Подробиці подивіться, будь ласка, в журналі ownCloud." +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 "" -#: js/settings.js:66 +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 msgid "Deletion failed" msgstr "Видалення не було виконано" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "Застосувати налаштування з останньої конфігурації сервера ?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "Зберегти налаштування ?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "Неможливо додати конфігурацію сервера" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Успіх" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Помилка" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Оберіть групи" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Перевірка з'єднання пройшла успішно" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Перевірка з'єднання завершилась неуспішно" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Ви дійсно бажаєте видалити поточну конфігурацію сервера ?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Підтвердіть Видалення" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" msgstr "" -#: templates/settings.php:12 +#: 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 "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "Увага: Потрібний модуль PHP LDAP не встановлено, базова програма працювати не буде. Будь ласка, зверніться до системного адміністратора, щоб встановити його." +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "Налаштування Сервера" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +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/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Хост" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Можна не вказувати протокол, якщо вам не потрібен SSL. Тоді почніть з ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Базовий DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "Один Base DN на одній строчці" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Ви можете задати Базовий DN для користувачів і груп на вкладинці Додатково" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Порт" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "DN Користувача" -#: templates/settings.php:46 +#: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "DN клієнтського користувача для прив'язки, наприклад: uid=agent,dc=example,dc=com. Для анонімного доступу, залиште DN і Пароль порожніми." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Пароль" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Для анонімного доступу, залиште DN і Пароль порожніми." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Фільтр Користувачів, що під'єднуються" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "Один Base DN на одній строчці" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Ви можете задати Базовий DN для користувачів і груп на вкладинці Додатково" + +#: templates/part.wizard-userfilter.php:4 #, php-format -msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +msgid "Limit the access to %s to users meeting this criteria:" msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Фільтр Списку Користувачів" - -#: templates/settings.php:58 +#: templates/part.wizard-userfilter.php:31 +#, php-format msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Фільтр Груп" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Назад" -#: templates/settings.php:62 +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "Продовжити" + +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "Увага: Потрібний модуль PHP LDAP не встановлено, базова програма працювати не буде. Будь ласка, зверніться до системного адміністратора, щоб встановити його." + +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Налаштування З'єднання" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "Налаштування Активне" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "Якщо \"галочка\" знята, ця конфігурація буде пропущена." -#: templates/settings.php:69 -msgid "Port" -msgstr "Порт" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "Сервер для резервних копій" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Вкажіть додатковий резервний сервер. Він повинен бути копією головного LDAP/AD сервера." -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Порт сервера для резервних копій" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Вимкнути Головний Сервер" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Використовуйте TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Не використовуйте це додатково для під'єднання до LDAP, бо виконано не буде." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Нечутливий до регістру LDAP сервер (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Вимкнути перевірку SSL сертифіката." -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "Час актуальності Кеша" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "в секундах. Зміна очищує кеш." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Налаштування Каталога" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Поле, яке відображає Ім'я Користувача" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Основне Дерево Користувачів" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "Один Користувач Base DN на одній строчці" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "Пошукові Атрибути Користувача" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Додатково; один атрибут на строчку" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Поле, яке відображає Ім'я Групи" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Основне Дерево Груп" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "Одна Група Base DN на одній строчці" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Пошукові Атрибути Групи" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Асоціація Група-Член" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Спеціальні Атрибути" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "Поле Квоти" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "Квота за замовчанням" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "в байтах" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "Поле Ел. пошти" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "Правило іменування домашньої теки користувача" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Залиште порожнім для імені користувача (за замовчанням). Інакше, вкажіть атрибут LDAP/AD." -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +461,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +480,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +506,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "Тестове налаштування" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Допомога" diff --git a/l10n/uk/user_webdavauth.po b/l10n/uk/user_webdavauth.po index 7f61f7a3e37c105655cc118c4ab4f2f510de1493..f58610af2dfd4af17df64c1a626343f42e9a151c 100644 --- a/l10n/uk/user_webdavauth.po +++ b/l10n/uk/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:04+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-15 15:10+0000\n" "Last-Translator: zubr139 \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -34,4 +34,4 @@ 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 "" +msgstr "Облікові дані користувача буде надіслано на цю адресу. Цей плагін перевіряє відповідь і буде інтерпретувати коди статусу HTTP 401 і 403, як неправильні облікові дані, а всі інші відповіді, вважатимуться правильними." diff --git a/l10n/ur/core.po b/l10n/ur/core.po new file mode 100644 index 0000000000000000000000000000000000000000..862ab145c305805157393c879b7061030e241f3a --- /dev/null +++ b/l10n/ur/core.po @@ -0,0 +1,775 @@ +# 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-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 23:45+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:119 ajax/share.php:198 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: ajax/share.php:169 +#, 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 "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +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:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:33 +msgid "Monday" +msgstr "" + +#: js/config.php:34 +msgid "Tuesday" +msgstr "" + +#: js/config.php:35 +msgid "Wednesday" +msgstr "" + +#: js/config.php:36 +msgid "Thursday" +msgstr "" + +#: js/config.php:37 +msgid "Friday" +msgstr "" + +#: js/config.php:38 +msgid "Saturday" +msgstr "" + +#: js/config.php:43 +msgid "January" +msgstr "" + +#: js/config.php:44 +msgid "February" +msgstr "" + +#: js/config.php:45 +msgid "March" +msgstr "" + +#: js/config.php:46 +msgid "April" +msgstr "" + +#: js/config.php:47 +msgid "May" +msgstr "" + +#: js/config.php:48 +msgid "June" +msgstr "" + +#: js/config.php:49 +msgid "July" +msgstr "" + +#: js/config.php:50 +msgid "August" +msgstr "" + +#: js/config.php:51 +msgid "September" +msgstr "" + +#: js/config.php:52 +msgid "October" +msgstr "" + +#: js/config.php:53 +msgid "November" +msgstr "" + +#: js/config.php:54 +msgid "December" +msgstr "" + +#: js/js.js:398 +msgid "Settings" +msgstr "" + +#: js/js.js:872 +msgid "seconds ago" +msgstr "" + +#: js/js.js:873 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:874 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:875 +msgid "today" +msgstr "" + +#: js/js.js:876 +msgid "yesterday" +msgstr "" + +#: js/js.js:877 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:878 +msgid "last month" +msgstr "" + +#: js/js.js:879 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:880 +msgid "months ago" +msgstr "" + +#: js/js.js:881 +msgid "last year" +msgstr "" + +#: js/js.js:882 +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/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:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 +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:187 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:189 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:219 +msgid "Share link" +msgstr "" + +#: js/share.js:222 +msgid "Password protect" +msgstr "" + +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +msgid "Password" +msgstr "" + +#: js/share.js:229 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:233 +msgid "Email link to person" +msgstr "" + +#: js/share.js:234 +msgid "Send" +msgstr "" + +#: js/share.js:239 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:240 +msgid "Expiration date" +msgstr "" + +#: js/share.js:275 +msgid "Share via email:" +msgstr "" + +#: js/share.js:278 +msgid "No people found" +msgstr "" + +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:375 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:397 +msgid "Unshare" +msgstr "" + +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 +msgid "can edit" +msgstr "" + +#: js/share.js:410 +msgid "access control" +msgstr "" + +#: js/share.js:413 +msgid "create" +msgstr "" + +#: js/share.js:416 +msgid "update" +msgstr "" + +#: js/share.js:419 +msgid "delete" +msgstr "" + +#: js/share.js:422 +msgid "share" +msgstr "" + +#: js/share.js:694 +msgid "Password protected" +msgstr "" + +#: js/share.js:707 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:719 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:734 +msgid "Sending ..." +msgstr "" + +#: js/share.js:745 +msgid "Email sent" +msgstr "" + +#: js/share.js:769 +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 ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:62 +#, php-format +msgid "%s password reset" +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.
    If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
    If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
    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:52 +#: templates/login.php:31 +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 "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:111 +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 documentation." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:67 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:74 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:86 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 +msgid "will be used" +msgstr "" + +#: templates/installation.php:149 +msgid "Database user" +msgstr "" + +#: templates/installation.php:156 +msgid "Database password" +msgstr "" + +#: templates/installation.php:161 +msgid "Database name" +msgstr "" + +#: templates/installation.php:169 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:176 +msgid "Database host" +msgstr "" + +#: templates/installation.php:185 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:72 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:44 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:49 +msgid "remember" +msgstr "" + +#: templates/login.php:52 +msgid "Log in" +msgstr "" + +#: templates/login.php:58 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    " +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/ur/files.po b/l10n/ur/files.po new file mode 100644 index 0000000000000000000000000000000000000000..ecfa86976365a89c991f290e41c962890a92fb0a --- /dev/null +++ b/l10n/ur/files.po @@ -0,0 +1,413 @@ +# 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-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 23:45+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:27 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:64 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:71 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:72 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:74 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:75 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:76 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:77 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:78 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:96 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:127 ajax/upload.php:154 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:144 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:172 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 +msgid "Files" +msgstr "" + +#: js/file-upload.js:228 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:239 +msgid "Not enough space available" +msgstr "" + +#: js/file-upload.js:306 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:344 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:436 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 +msgid "Share" +msgstr "" + +#: js/fileactions.js:137 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:194 +msgid "Rename" +msgstr "" + +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" +msgstr "" + +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:539 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:539 +msgid "undo" +msgstr "" + +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:617 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:828 js/filelist.js:866 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:72 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:81 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:93 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:97 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:349 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error moving file" +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 +msgid "Name" +msgstr "" + +#: js/files.js:614 templates/index.php:68 +msgid "Size" +msgstr "" + +#: js/files.js:615 templates/index.php:70 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:11 templates/index.php:16 +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:5 +msgid "New" +msgstr "" + +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 +msgid "Text file" +msgstr "" + +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From link" +msgstr "" + +#: templates/index.php:29 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:34 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:45 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:62 +msgid "Download" +msgstr "" + +#: templates/index.php:73 templates/index.php:74 +msgid "Delete" +msgstr "" + +#: templates/index.php:86 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:88 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:93 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:96 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/ur/files_encryption.po b/l10n/ur/files_encryption.po new file mode 100644 index 0000000000000000000000000000000000000000..3e4b7ec4a7d49f920296783ba4db1d0d4138e7d9 --- /dev/null +++ b/l10n/ur/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-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 23:45+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\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:62 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:63 +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:281 +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/settings-admin.js:13 +msgid "Saving..." +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/ur/files_external.po b/l10n/ur/files_external.po new file mode 100644 index 0000000000000000000000000000000000000000..480a799b4e4a2da7aa8172819cc46a79ef075954 --- /dev/null +++ b/l10n/ur/files_external.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 23:45+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:86 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:42 js/google.js:121 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:467 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:471 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:474 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/ur/files_sharing.po b/l10n/ur/files_sharing.po new file mode 100644 index 0000000000000000000000000000000000000000..1dd85cf47f22543075c234353e2b956cd0efa2d6 --- /dev/null +++ b/l10n/ur/files_sharing.po @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 23:45+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: 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:18 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:21 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:29 templates/public.php:95 +msgid "Download" +msgstr "" + +#: templates/public.php:46 templates/public.php:49 +msgid "Upload" +msgstr "" + +#: templates/public.php:59 +msgid "Cancel upload" +msgstr "" + +#: templates/public.php:92 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/ur/files_trashbin.po b/l10n/ur/files_trashbin.po new file mode 100644 index 0000000000000000000000000000000000000000..d1b08db59f1b1e0f8a3a62ef0e8920e578df7347 --- /dev/null +++ b/l10n/ur/files_trashbin.po @@ -0,0 +1,60 @@ +# 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-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 23:45+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:63 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:43 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 +msgid "Error" +msgstr "" + +#: lib/trashbin.php:905 lib/trashbin.php:907 +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/ur/files_versions.po b/l10n/ur/files_versions.po new file mode 100644 index 0000000000000000000000000000000000000000..377d24db42ba84e7363f6932800e1c8f8cd463fa --- /dev/null +++ b/l10n/ur/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-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 23:45+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\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:86 +msgid "More versions..." +msgstr "" + +#: js/versions.js:123 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:154 +msgid "Restore" +msgstr "" diff --git a/l10n/ur/lib.po b/l10n/ur/lib.po new file mode 100644 index 0000000000000000000000000000000000000000..ba1af659a1c91db03950b34640615ceaa7363d2a --- /dev/null +++ b/l10n/ur/lib.po @@ -0,0 +1,333 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 23:45+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: private/app.php:245 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:257 +msgid "No app name specified" +msgstr "" + +#: private/app.php:362 +msgid "Help" +msgstr "" + +#: private/app.php:375 +msgid "Personal" +msgstr "" + +#: private/app.php:386 +msgid "Settings" +msgstr "" + +#: private/app.php:398 +msgid "Users" +msgstr "" + +#: private/app.php:411 +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:34 +msgid "web services under your control" +msgstr "" + +#: private/files.php:66 private/files.php:98 +#, php-format +msgid "cannot open \"%s\"" +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:63 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:125 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:131 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:140 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:146 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:159 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:169 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:182 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:39 private/json.php:62 private/json.php:73 +msgid "Authentication error" +msgstr "" + +#: private/json.php:51 +msgid "Token expired. Please reload page." +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:24 +#: private/setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL 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:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#, 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL." +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:23 private/setup/postgresql.php:69 +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:195 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:196 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:131 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:132 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:133 +msgid "today" +msgstr "" + +#: private/template/functions.php:134 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:136 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:138 +msgid "last month" +msgstr "" + +#: private/template/functions.php:139 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:141 +msgid "last year" +msgstr "" + +#: private/template/functions.php:142 +msgid "years ago" +msgstr "" diff --git a/l10n/ur/settings.po b/l10n/ur/settings.po new file mode 100644 index 0000000000000000000000000000000000000000..f068880aa5843f23baca6824048139be9b195f41 --- /dev/null +++ b/l10n/ur/settings.po @@ -0,0 +1,668 @@ +# 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-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 23:45+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 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/apps.js:43 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +msgid "Disable" +msgstr "" + +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +msgid "Enable" +msgstr "" + +#: js/apps.js:71 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:125 +msgid "Updating...." +msgstr "" + +#: js/apps.js:128 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:128 +msgid "Error" +msgstr "" + +#: js/apps.js:129 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:132 +msgid "Updated" +msgstr "" + +#: js/personal.js:220 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:266 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/personal.js:287 +msgid "Saving..." +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:95 templates/users.php:26 templates/users.php:90 +#: templates/users.php:118 +msgid "Groups" +msgstr "" + +#: js/users.js:100 templates/users.php:92 templates/users.php:130 +msgid "Group Admin" +msgstr "" + +#: js/users.js:123 templates/users.php:170 +msgid "Delete" +msgstr "" + +#: js/users.js:284 +msgid "add group" +msgstr "" + +#: js/users.js:454 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:455 js/users.js:461 js/users.js:476 +msgid "Error creating user" +msgstr "" + +#: js/users.js:460 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:484 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:45 personal.php:46 +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:22 templates/admin.php:36 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:25 +#, 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:39 +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:50 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:53 +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:54 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:65 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:68 +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:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 +#, 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:118 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:121 +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:135 +msgid "Cron" +msgstr "" + +#: templates/admin.php:142 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:150 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:163 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:169 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:170 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:177 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:178 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:186 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:187 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:195 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:196 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:203 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:206 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 +msgid "Security" +msgstr "" + +#: templates/admin.php:234 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:236 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:242 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:254 +msgid "Log" +msgstr "" + +#: templates/admin.php:255 +msgid "Log level" +msgstr "" + +#: templates/admin.php:287 +msgid "More" +msgstr "" + +#: templates/admin.php:288 +msgid "Less" +msgstr "" + +#: templates/admin.php:294 templates/personal.php:173 +msgid "Version" +msgstr "" + +#: templates/admin.php:298 templates/personal.php:176 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:13 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:28 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:33 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:39 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:41 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +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 %s of the available %s" +msgstr "" + +#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +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:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:44 +msgid "New password" +msgstr "" + +#: templates/personal.php:46 +msgid "Change password" +msgstr "" + +#: templates/personal.php:58 templates/users.php:88 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:73 +msgid "Email" +msgstr "" + +#: templates/personal.php:75 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:76 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:86 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:91 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:93 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:94 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:95 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:97 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:101 +msgid "Abort" +msgstr "" + +#: templates/personal.php:102 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:110 templates/personal.php:111 +msgid "Language" +msgstr "" + +#: templates/personal.php:130 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:137 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:139 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "" + +#: templates/personal.php:150 +msgid "Encryption" +msgstr "" + +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:158 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:163 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:21 +msgid "Login Name" +msgstr "" + +#: templates/users.php:30 +msgid "Create" +msgstr "" + +#: templates/users.php:36 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:48 templates/users.php:148 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:66 templates/users.php:163 +msgid "Other" +msgstr "" + +#: templates/users.php:87 +msgid "Username" +msgstr "" + +#: templates/users.php:94 +msgid "Storage" +msgstr "" + +#: templates/users.php:108 +msgid "change full name" +msgstr "" + +#: templates/users.php:112 +msgid "set new password" +msgstr "" + +#: templates/users.php:143 +msgid "Default" +msgstr "" diff --git a/l10n/ur/user_ldap.po b/l10n/ur/user_ldap.po new file mode 100644 index 0000000000000000000000000000000000000000..8d5790eea9f047109efe0bd3a28aefed148df14d --- /dev/null +++ b/l10n/ur/user_ldap.po @@ -0,0 +1,513 @@ +# 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-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 23:45+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\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:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:912 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:921 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:922 +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:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +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 "Limit the access to %s to groups meeting this criteria:" +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 "What attribute shall be used as login name:" +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 the access to %s to users meeting this 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 "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php: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:40 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:42 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:43 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:43 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:44 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:45 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:45 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:51 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:52 +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:53 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:54 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:55 +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:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:58 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:59 +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:60 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:60 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/ur/user_webdavauth.po b/l10n/ur/user_webdavauth.po new file mode 100644 index 0000000000000000000000000000000000000000..8db54c86db4ffd7cee2018e06306c2e42fee3afb --- /dev/null +++ b/l10n/ur/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-01-07 01:55-0500\n" +"PO-Revision-Date: 2014-01-06 23:45+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\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/ur_PK/core.po b/l10n/ur_PK/core.po index ab9aac58cff8ec3981eaad50151935bc3524b535..c91328a17a9a593fb1b816e4892ce7707bde85df 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -17,13 +17,14 @@ msgstr "" "Language: ur_PK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "شامل کرنے کے لیے کوئی زمرہ نہیں؟" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "ختم کرنے کے لیے کسی زمرہ جات کا انتخاب نہیں کیا گیا۔" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -186,59 +148,59 @@ msgstr "نومبر" msgid "December" msgstr "دسمبر" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "سیٹینگز" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "" @@ -306,155 +268,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "ایرر" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "ایرر" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "شئیرنگ کے دوران ایرر" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "شئیرنگ ختم کرنے کے دوران ایرر" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "اختیارات کو تبدیل کرنے کے دوران ایرر" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 -msgid "Share with" -msgstr "اس کے ساتھ شئیر کریں" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "لنک کے ساتھ شئیر کریں" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "پاسورڈ سے محفوظ کریں" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "پاسورڈ" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "تاریخ معیاد سیٹ کریں" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "تاریخ معیاد" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "کوئی لوگ نہیں ملے۔" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "دوبارہ شئیر کرنے کی اجازت نہیں" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "شئیرنگ ختم کریں" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "ایڈٹ کر سکے" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "اسیس کنٹرول" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "نیا بنائیں" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "اپ ڈیٹ" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "ختم کریں" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "شئیر کریں" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "پاسورڈ سے محفوظ کیا گیا ہے" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "آپ ای میل کے ذریعے اپنے پاسورڈ ری سیٹ کا لنک موصول کریں گے" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "یوزر نیم" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -503,13 +493,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "ری سیٹ کی درخواست کریں" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -535,7 +525,7 @@ msgstr "ذاتی" msgid "Users" msgstr "یوزرز" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "ایپز" @@ -547,6 +537,34 @@ msgstr "ایڈمن" 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 "پہنچ کی اجازت نہیں" @@ -563,108 +581,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "زمرہ جات کی تدوین کریں" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "شامل کریں" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "ایک ایڈمن اکاؤنٹ بنائیں" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "ایڈوانسڈ" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "ڈیٹا فولڈر" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "ڈیٹا بیس کونفگر کریں" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "استعمال ہو گا" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "ڈیٹابیس یوزر" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "ڈیٹابیس پاسورڈ" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "ڈیٹابیس کا نام" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "ڈیٹابیس ٹیبل سپیس" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "ڈیٹابیس ہوسٹ" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "سیٹ اپ ختم کریں" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "لاگ آؤٹ" @@ -682,19 +711,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "کیا آپ پاسورڈ بھول گئے ہیں؟" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "یاد رکھیں" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "لاگ ان" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -702,10 +739,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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.php:3 +#: 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/ur_PK/files.po b/l10n/ur_PK/files.po index 2efc8cf7473f0759276ae4f143c6882a4124985d..53afc26e5457b584f0af50c0e8232ec68eb2a042 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06: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" @@ -27,220 +27,286 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "ایرر" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" -#: js/fileactions.js:119 -msgid "Share" +#: js/file-upload.js:595 +msgid "Could not create file" msgstr "" -#: js/fileactions.js:131 -msgid "Delete permanently" +#: js/file-upload.js:611 +msgid "Could not create folder" msgstr "" -#: js/fileactions.js:197 -msgid "Rename" +#: js/file-upload.js:661 +msgid "Error fetching URL" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 -msgid "Pending" +#: js/fileactions.js:125 +msgid "Share" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/fileactions.js:137 +msgid "Delete permanently" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" +#: js/fileactions.js:194 +msgid "Rename" msgstr "" -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "ایرر" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "" @@ -276,65 +342,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "شئیرنگ ختم کریں" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/ur_PK/files_encryption.po b/l10n/ur_PK/files_encryption.po index 9bf9cd875cb94d39206d43f0208e53f00782f028..c233b6408d9e7cbcdb2699872766c88edd1829d1 100644 --- a/l10n/ur_PK/files_encryption.po +++ b/l10n/ur_PK/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:44 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 -msgid "Saving..." +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." +#: js/settings-admin.js:13 +msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/ur_PK/files_sharing.po b/l10n/ur_PK/files_sharing.po index 0d12edb3665e285b629c75f93f6e3b74a6c61bf5..7f9353d72ed961a36416fc5f765f5b6968f6306e 100644 --- a/l10n/ur_PK/files_sharing.po +++ b/l10n/ur_PK/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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/authenticate.php:9 -msgid "Submit" -msgstr "" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 7ccb9117fbdffe29bada7ac2d2200a1395ae53bd..3673a0eda0e500f393ce8792a7a0e8d656fde55e 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-10 22:26-0400\n" +"PO-Revision-Date: 2013-10-11 02:27+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -27,55 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "ایرر" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:814 lib/trashbin.php:816 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:23 msgid "Name" msgstr "" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:26 templates/index.php:28 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:34 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:37 templates/index.php:38 msgid "Delete" msgstr "" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index a5cf0b44cdd18161b7c33329cd10e221934c0281..68279cb5bfd73a85d1484be9fd9f8344124a7f20 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,317 @@ msgstr "" "Language: ur_PK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "مدد" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "ذاتی" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "سیٹینگز" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "یوزرز" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "ایڈمن" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "آپ کے اختیار میں ویب سروسیز" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 2893f058698b459184db1abe193bf36800b79e67..616f657a6f447c1ff6e6e2c7efaed2bd2ccaee9a 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,31 +129,31 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "ایرر" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index fd54d8167be69059178e9dae354e051f6118616f..b42df7fedfa70c42a11da097266f5a21635a392e 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-27 17:09+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" @@ -25,314 +25,425 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "ایرر" -#: js/settings.js:141 +#: js/settings.js:777 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:786 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:795 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:812 js/settings.js:821 +msgid "Select groups" +msgstr "" + +#: js/settings.js:815 js/settings.js:824 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:818 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:845 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:852 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:861 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:862 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: 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:779 lib/wizard.php:791 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:952 +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 "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "پاسورڈ" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "مدد" diff --git a/l10n/uz/core.po b/l10n/uz/core.po new file mode 100644 index 0000000000000000000000000000000000000000..88fdaf0459c90ee99eb4a0cda96465849989ca0f --- /dev/null +++ b/l10n/uz/core.po @@ -0,0 +1,770 @@ +# 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: 2013-12-07 22:26-0500\n" +"PO-Revision-Date: 2013-12-08 03:26+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uz\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/share.php:119 ajax/share.php:198 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: ajax/share.php:169 +#, 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 "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +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:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:33 +msgid "Monday" +msgstr "" + +#: js/config.php:34 +msgid "Tuesday" +msgstr "" + +#: js/config.php:35 +msgid "Wednesday" +msgstr "" + +#: js/config.php:36 +msgid "Thursday" +msgstr "" + +#: js/config.php:37 +msgid "Friday" +msgstr "" + +#: js/config.php:38 +msgid "Saturday" +msgstr "" + +#: js/config.php:43 +msgid "January" +msgstr "" + +#: js/config.php:44 +msgid "February" +msgstr "" + +#: js/config.php:45 +msgid "March" +msgstr "" + +#: js/config.php:46 +msgid "April" +msgstr "" + +#: js/config.php:47 +msgid "May" +msgstr "" + +#: js/config.php:48 +msgid "June" +msgstr "" + +#: js/config.php:49 +msgid "July" +msgstr "" + +#: js/config.php:50 +msgid "August" +msgstr "" + +#: js/config.php:51 +msgid "September" +msgstr "" + +#: js/config.php:52 +msgid "October" +msgstr "" + +#: js/config.php:53 +msgid "November" +msgstr "" + +#: js/config.php:54 +msgid "December" +msgstr "" + +#: js/js.js:387 +msgid "Settings" +msgstr "" + +#: js/js.js:858 +msgid "seconds ago" +msgstr "" + +#: js/js.js:859 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" + +#: js/js.js:860 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" + +#: js/js.js:861 +msgid "today" +msgstr "" + +#: js/js.js:862 +msgid "yesterday" +msgstr "" + +#: js/js.js:863 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" + +#: js/js.js:864 +msgid "last month" +msgstr "" + +#: js/js.js:865 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" + +#: js/js.js:866 +msgid "months ago" +msgstr "" + +#: js/js.js:867 +msgid "last year" +msgstr "" + +#: js/js.js:868 +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] "" + +#: 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/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:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:747 +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:187 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:189 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:219 +msgid "Share link" +msgstr "" + +#: js/share.js:222 +msgid "Password protect" +msgstr "" + +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +msgid "Password" +msgstr "" + +#: js/share.js:229 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:233 +msgid "Email link to person" +msgstr "" + +#: js/share.js:234 +msgid "Send" +msgstr "" + +#: js/share.js:239 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:240 +msgid "Expiration date" +msgstr "" + +#: js/share.js:275 +msgid "Share via email:" +msgstr "" + +#: js/share.js:278 +msgid "No people found" +msgstr "" + +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:375 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:397 +msgid "Unshare" +msgstr "" + +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 +msgid "can edit" +msgstr "" + +#: js/share.js:410 +msgid "access control" +msgstr "" + +#: js/share.js:413 +msgid "create" +msgstr "" + +#: js/share.js:416 +msgid "update" +msgstr "" + +#: js/share.js:419 +msgid "delete" +msgstr "" + +#: js/share.js:422 +msgid "share" +msgstr "" + +#: js/share.js:694 +msgid "Password protected" +msgstr "" + +#: js/share.js:707 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:719 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:734 +msgid "Sending ..." +msgstr "" + +#: js/share.js:745 +msgid "Email sent" +msgstr "" + +#: js/share.js:769 +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 ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:62 +#, php-format +msgid "%s password reset" +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.
    If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
    If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
    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:52 +#: templates/login.php:31 +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 "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:111 +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 documentation." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:67 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:74 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:86 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 +msgid "will be used" +msgstr "" + +#: templates/installation.php:149 +msgid "Database user" +msgstr "" + +#: templates/installation.php:156 +msgid "Database password" +msgstr "" + +#: templates/installation.php:161 +msgid "Database name" +msgstr "" + +#: templates/installation.php:169 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:176 +msgid "Database host" +msgstr "" + +#: templates/installation.php:185 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:72 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:44 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:49 +msgid "remember" +msgstr "" + +#: templates/login.php:52 +msgid "Log in" +msgstr "" + +#: templates/login.php:58 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

    " +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/uz/files.po b/l10n/uz/files.po new file mode 100644 index 0000000000000000000000000000000000000000..4e49c02a55bf219d3d96de189518e22a81962ba8 --- /dev/null +++ b/l10n/uz/files.po @@ -0,0 +1,410 @@ +# 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: 2013-12-19 01:55-0500\n" +"PO-Revision-Date: 2013-12-19 06: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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uz\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:27 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:64 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:71 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:72 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:74 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:75 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:76 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:77 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:78 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:96 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:127 ajax/upload.php:154 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:144 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:172 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 +msgid "Files" +msgstr "" + +#: js/file-upload.js:228 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:239 +msgid "Not enough space available" +msgstr "" + +#: js/file-upload.js:306 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:344 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:436 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 +msgid "Share" +msgstr "" + +#: js/fileactions.js:137 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:194 +msgid "Rename" +msgstr "" + +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" +msgstr "" + +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:539 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:539 +msgid "undo" +msgstr "" + +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" + +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" + +#: js/filelist.js:617 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:828 js/filelist.js:866 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" + +#: js/files.js:72 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:81 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:93 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:97 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:349 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error moving file" +msgstr "" + +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "" + +#: js/files.js:613 templates/index.php:56 +msgid "Name" +msgstr "" + +#: js/files.js:614 templates/index.php:68 +msgid "Size" +msgstr "" + +#: js/files.js:615 templates/index.php:70 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:11 templates/index.php:16 +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:5 +msgid "New" +msgstr "" + +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 +msgid "Text file" +msgstr "" + +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From link" +msgstr "" + +#: templates/index.php:29 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:34 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:45 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:62 +msgid "Download" +msgstr "" + +#: templates/index.php:73 templates/index.php:74 +msgid "Delete" +msgstr "" + +#: templates/index.php:86 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:88 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:93 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:96 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/uz/files_encryption.po b/l10n/uz/files_encryption.po new file mode 100644 index 0000000000000000000000000000000000000000..5b96117b2650689df53a89b6817f063d44965009 --- /dev/null +++ b/l10n/uz/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: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uz\n" +"Plural-Forms: nplurals=1; plural=0;\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:59 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:60 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "" + +#: hooks/hooks.php:273 +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/settings-admin.js:13 +msgid "Saving..." +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/uz/files_external.po b/l10n/uz/files_external.po new file mode 100644 index 0000000000000000000000000000000000000000..1df26fb07d212c13746ea9bdc8861eadf733c939 --- /dev/null +++ b/l10n/uz/files_external.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-09 01:44-0500\n" +"PO-Revision-Date: 2013-11-07 08:41+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uz\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:86 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:42 js/google.js:121 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:461 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:465 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:468 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/uz/files_sharing.po b/l10n/uz/files_sharing.po new file mode 100644 index 0000000000000000000000000000000000000000..2215fc5052b65ae19152821555e78377979c5142 --- /dev/null +++ b/l10n/uz/files_sharing.po @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-09 01:44-0500\n" +"PO-Revision-Date: 2013-11-07 08:41+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uz\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: 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 "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:20 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:28 templates/public.php:94 +msgid "Download" +msgstr "" + +#: templates/public.php:45 templates/public.php:48 +msgid "Upload" +msgstr "" + +#: templates/public.php:58 +msgid "Cancel upload" +msgstr "" + +#: templates/public.php:91 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:98 +msgid "Direct link" +msgstr "" diff --git a/l10n/uz/files_trashbin.po b/l10n/uz/files_trashbin.po new file mode 100644 index 0000000000000000000000000000000000000000..f1f40775ea1e598e6c394005489ac08840e2374f --- /dev/null +++ b/l10n/uz/files_trashbin.po @@ -0,0 +1,60 @@ +# 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: 2013-11-09 01:44-0500\n" +"PO-Revision-Date: 2013-11-07 08:41+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uz\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/delete.php:42 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:42 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +msgid "Error" +msgstr "" + +#: lib/trashbin.php:814 lib/trashbin.php:816 +msgid "restored" +msgstr "" + +#: templates/index.php:8 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:22 +msgid "Name" +msgstr "" + +#: templates/index.php:25 templates/index.php:27 +msgid "Restore" +msgstr "" + +#: templates/index.php:33 +msgid "Deleted" +msgstr "" + +#: templates/index.php:36 templates/index.php:37 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/uz/files_versions.po b/l10n/uz/files_versions.po new file mode 100644 index 0000000000000000000000000000000000000000..85a32514710c4f9f2b6c578db90a17822a8d9c3c --- /dev/null +++ b/l10n/uz/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: 2013-11-09 01:44-0500\n" +"PO-Revision-Date: 2013-11-07 08:41+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uz\n" +"Plural-Forms: nplurals=1; plural=0;\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:86 +msgid "More versions..." +msgstr "" + +#: js/versions.js:123 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:154 +msgid "Restore" +msgstr "" diff --git a/l10n/uz/lib.po b/l10n/uz/lib.po new file mode 100644 index 0000000000000000000000000000000000000000..185fc1265c85f9baed3f05b969567fe60a86e192 --- /dev/null +++ b/l10n/uz/lib.po @@ -0,0 +1,329 @@ +# 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: 2013-12-17 06:45-0500\n" +"PO-Revision-Date: 2013-12-17 11:45+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uz\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: private/app.php:243 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:255 +msgid "No app name specified" +msgstr "" + +#: private/app.php:360 +msgid "Help" +msgstr "" + +#: private/app.php:373 +msgid "Personal" +msgstr "" + +#: private/app.php:384 +msgid "Settings" +msgstr "" + +#: private/app.php:396 +msgid "Users" +msgstr "" + +#: private/app.php:409 +msgid "Admin" +msgstr "" + +#: private/app.php:873 +#, 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:34 +msgid "web services under your control" +msgstr "" + +#: private/files.php:66 private/files.php:98 +#, php-format +msgid "cannot open \"%s\"" +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:63 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:125 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:131 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:140 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:146 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:159 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:169 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:182 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:39 private/json.php:62 private/json.php:73 +msgid "Authentication error" +msgstr "" + +#: private/json.php:51 +msgid "Token expired. Please reload page." +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:24 +#: private/setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL 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:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#, 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL." +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:23 private/setup/postgresql.php:69 +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:195 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:196 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:131 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" + +#: private/template/functions.php:132 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" + +#: private/template/functions.php:133 +msgid "today" +msgstr "" + +#: private/template/functions.php:134 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:136 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" + +#: private/template/functions.php:138 +msgid "last month" +msgstr "" + +#: private/template/functions.php:139 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" + +#: private/template/functions.php:141 +msgid "last year" +msgstr "" + +#: private/template/functions.php:142 +msgid "years ago" +msgstr "" diff --git a/l10n/uz/settings.po b/l10n/uz/settings.po new file mode 100644 index 0000000000000000000000000000000000000000..85917efc0ba01f90bd4ffbab21920345a6bced80 --- /dev/null +++ b/l10n/uz/settings.po @@ -0,0 +1,668 @@ +# 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: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uz\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 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/apps.js:43 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +msgid "Disable" +msgstr "" + +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +msgid "Enable" +msgstr "" + +#: js/apps.js:71 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:125 +msgid "Updating...." +msgstr "" + +#: js/apps.js:128 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:128 +msgid "Error" +msgstr "" + +#: js/apps.js:129 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:132 +msgid "Updated" +msgstr "" + +#: js/personal.js:220 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:266 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/personal.js:287 +msgid "Saving..." +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:95 templates/users.php:26 templates/users.php:90 +#: templates/users.php:118 +msgid "Groups" +msgstr "" + +#: js/users.js:100 templates/users.php:92 templates/users.php:130 +msgid "Group Admin" +msgstr "" + +#: js/users.js:123 templates/users.php:170 +msgid "Delete" +msgstr "" + +#: js/users.js:284 +msgid "add group" +msgstr "" + +#: js/users.js:451 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:452 js/users.js:458 js/users.js:473 +msgid "Error creating user" +msgstr "" + +#: js/users.js:457 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:45 personal.php:46 +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:22 templates/admin.php:36 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:25 +#, 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:39 +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:50 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:53 +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:54 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:65 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:68 +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:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 +#, 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:118 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:121 +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:135 +msgid "Cron" +msgstr "" + +#: templates/admin.php:142 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:150 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:163 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:169 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:170 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:177 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:178 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:186 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:187 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:195 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:196 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:203 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:206 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 +msgid "Security" +msgstr "" + +#: templates/admin.php:234 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:236 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:242 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:254 +msgid "Log" +msgstr "" + +#: templates/admin.php:255 +msgid "Log level" +msgstr "" + +#: templates/admin.php:287 +msgid "More" +msgstr "" + +#: templates/admin.php:288 +msgid "Less" +msgstr "" + +#: templates/admin.php:294 templates/personal.php:173 +msgid "Version" +msgstr "" + +#: templates/admin.php:298 templates/personal.php:176 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:13 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:28 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:33 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:39 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:41 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +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 %s of the available %s" +msgstr "" + +#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +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:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:44 +msgid "New password" +msgstr "" + +#: templates/personal.php:46 +msgid "Change password" +msgstr "" + +#: templates/personal.php:58 templates/users.php:88 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:73 +msgid "Email" +msgstr "" + +#: templates/personal.php:75 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:76 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:86 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:91 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:93 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:94 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:95 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:97 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:101 +msgid "Abort" +msgstr "" + +#: templates/personal.php:102 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:110 templates/personal.php:111 +msgid "Language" +msgstr "" + +#: templates/personal.php:130 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:137 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:139 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "" + +#: templates/personal.php:150 +msgid "Encryption" +msgstr "" + +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:158 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:163 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:21 +msgid "Login Name" +msgstr "" + +#: templates/users.php:30 +msgid "Create" +msgstr "" + +#: templates/users.php:36 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:48 templates/users.php:148 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:66 templates/users.php:163 +msgid "Other" +msgstr "" + +#: templates/users.php:87 +msgid "Username" +msgstr "" + +#: templates/users.php:94 +msgid "Storage" +msgstr "" + +#: templates/users.php:108 +msgid "change full name" +msgstr "" + +#: templates/users.php:112 +msgid "set new password" +msgstr "" + +#: templates/users.php:143 +msgid "Default" +msgstr "" diff --git a/l10n/uz/user_ldap.po b/l10n/uz/user_ldap.po new file mode 100644 index 0000000000000000000000000000000000000000..bad631e44a1922b1f94fd964b5d2ed8ba5d36b78 --- /dev/null +++ b/l10n/uz/user_ldap.po @@ -0,0 +1,511 @@ +# 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: 2013-11-27 12:08-0500\n" +"PO-Revision-Date: 2013-11-27 17:09+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uz\n" +"Plural-Forms: nplurals=1; plural=0;\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:37 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:40 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:44 +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:777 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:786 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:795 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:812 js/settings.js:821 +msgid "Select groups" +msgstr "" + +#: js/settings.js:815 js/settings.js:824 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:818 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:845 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:852 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:861 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:862 +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] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" + +#: lib/wizard.php:779 lib/wizard.php:791 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:952 +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 "Limit the access to %s to groups meeting this criteria:" +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 "What attribute shall be used as login name:" +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 the access to %s to users meeting this 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 "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php: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:40 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:42 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:43 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:43 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:44 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:45 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:45 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:51 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:52 +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:53 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:54 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:55 +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:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:58 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:59 +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:60 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:60 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/uz/user_webdavauth.po b/l10n/uz/user_webdavauth.po new file mode 100644 index 0000000000000000000000000000000000000000..e68a01f1941bf399c34ef2f69b96ca1e28cf0226 --- /dev/null +++ b/l10n/uz/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: 2013-11-09 01:44-0500\n" +"PO-Revision-Date: 2013-11-07 08:41+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uz\n" +"Plural-Forms: nplurals=1; plural=0;\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/vi/core.po b/l10n/vi/core.po index d2f455e39e96e78cee3081683b7bf3fcb8a4d1aa..0c0eabbd17a2233accf62af538dd12f4b1b7bed8 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -18,14 +18,15 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" -msgstr "nhóm" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -52,45 +53,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "Kiểu hạng mục không được cung cấp." - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "Không có danh mục được thêm?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "Danh mục này đã tồn tại: %s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "Loại đối tượng không được cung cấp." - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID không được cung cấp." - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "Lỗi thêm %s vào mục yêu thích." - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "Bạn chưa chọn mục để xóa" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "Lỗi xóa %s từ mục yêu thích." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -187,55 +149,55 @@ msgstr "Tháng 11" msgid "December" msgstr "Tháng 12" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "hôm nay" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "tháng trước" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "tháng trước" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "năm trước" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "năm trước" @@ -302,155 +264,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "Loại đối tượng không được chỉ định." - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "Lỗi" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "Tên ứng dụng không được chỉ định." - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "Tập tin cần thiết {file} không được cài đặt!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Được chia sẻ" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Chia sẻ" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "Lỗi" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Lỗi trong quá trình chia sẻ" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "Lỗi trong quá trình gỡ chia sẻ" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "Lỗi trong quá trình phân quyền" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "Đã được chia sẽ với bạn và nhóm {group} bởi {owner}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "Đã được chia sẽ bởi {owner}" -#: js/share.js:183 -msgid "Share with" -msgstr "Chia sẻ với" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "Chia sẻ với liên kết" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "Mật khẩu bảo vệ" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "Mật khẩu" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "Liên kết email tới cá nhân" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "Gởi" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "Đặt ngày kết thúc" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "Ngày kết thúc" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "Chia sẻ thông qua email" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "Không tìm thấy người nào" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "nhóm" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Chia sẻ lại không được cho phép" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Đã được chia sẽ trong {item} với {user}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "Bỏ chia sẻ" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "có thể chỉnh sửa" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "quản lý truy cập" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "tạo" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "cập nhật" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "xóa" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "chia sẻ" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "Mật khẩu bảo vệ" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Lỗi không thiết lập ngày kết thúc" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Lỗi cấu hình ngày kết thúc" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "Đang gởi ..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "Email đã được gửi" +#: js/share.js:769 +msgid "Warning" +msgstr "Cảnh báo" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "Loại đối tượng không được chỉ định." + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Xóa" + +#: js/tags.js:31 +msgid "Add" +msgstr "Thêm" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "Liên kết tạo lại mật khẩu đã được gửi tới hộp thư của bạn.
    Nếu bạn không thấy nó sau một khoảng thời gian, vui lòng kiểm tra trong thư mục Spam/Rác.
    Nếu vẫn không thấy, vui lòng hỏi người quản trị hệ thống." -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "Yêu cầu thất bại!
    Bạn có chắc là email/tên đăng nhập của bạn chính xác?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Vui lòng kiểm tra Email để khôi phục lại mật khẩu." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "Tên đăng nhập" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -499,13 +489,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "Yêu cầu thiết lập lại " +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -531,7 +521,7 @@ msgstr "Cá nhân" msgid "Users" msgstr "Người dùng" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "Ứng dụng" @@ -543,6 +533,34 @@ msgstr "Quản trị" msgid "Help" msgstr "Giúp đỡ" +#: 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 "Truy cập bị cấm" @@ -559,108 +577,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "Sửa chuyên mục" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Thêm" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "Cảnh bảo bảo mật" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Phiên bản PHP của bạn có lỗ hổng NULL Byte attack (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "Không an toàn ! chức năng random number generator đã có sẵn ,vui lòng bật PHP OpenSSL extension." -#: templates/installation.php:33 +#: 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 "Nếu không có random number generator , Hacker có thể thiết lập lại mật khẩu và chiếm tài khoản của bạn." -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "Thư mục và file dữ liệu của bạn có thể được truy cập từ internet bởi vì file .htaccess không hoạt động" -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "Tạo một tài khoản quản trị" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "Nâng cao" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "Thư mục dữ liệu" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "Cấu hình cơ sở dữ liệu" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "được sử dụng" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "Người dùng cơ sở dữ liệu" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "Mật khẩu cơ sở dữ liệu" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "Tên cơ sở dữ liệu" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "Cơ sở dữ liệu tablespace" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "Database host" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "Cài đặt hoàn tất" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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 "%s còn trống. Xem thêm thông tin cách cập nhật." -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "Đăng xuất" @@ -678,19 +707,27 @@ msgstr "Nếu bạn không thay đổi mật khẩu gần đây của bạn, tà msgid "Please change your password to secure your account again." msgstr "Vui lòng thay đổi mật khẩu của bạn để đảm bảo tài khoản của bạn một lần nữa." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "Bạn quên mật khẩu ?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "ghi nhớ" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "Đăng nhập" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Đăng nhập khác" @@ -698,10 +735,37 @@ msgstr "Đăng nhập khác" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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 "Cập nhật ownCloud lên phiên bản %s, có thể sẽ mất thời gian" + +#: 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/vi/files.po b/l10n/vi/files.po index df0a42f78e5ce8bc4e8f8df7a873ab9a85941953..992a497b724bac83b004fe9e132c749290e61de3 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -28,217 +28,283 @@ msgstr "Không thể di chuyển %s - Đã có tên tập tin này trên hệ th msgid "Could not move %s" msgstr "Không thể di chuyển %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "Tên file không được rỗng" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 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:66 +#: ajax/upload.php:71 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:67 +#: ajax/upload.php:72 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:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 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:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "Chưa có file nào được tải lên" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "Không tìm thấy thư mục tạm" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "Không thể ghi " -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "Không đủ không gian lưu trữ" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "Thư mục không hợp lệ" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Tập tin" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "Không đủ chỗ trống cần thiết" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "Hủy tải lên" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 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:520 -msgid "URL cannot be empty." -msgstr "URL không được để trống." +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "Lỗi" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} đã tồn tại" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "Chia sẻ" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "Xóa vĩnh vễn" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "Sửa tên" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "Đang chờ" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} đã tồn tại" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "thay thế" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "tên gợi ý" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "hủy" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "đã thay thế {new_name} bằng {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "lùi lại" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' là một tên file không hợp lệ" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "Tên file không được rỗng" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Tên không hợp lệ, '\\', '/', '<', '>', ':', '\"', '|', '?' và '*' thì không được phép dùng." -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Your storage is full, files can not be updated or synced anymore!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Your storage is almost full ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Your download is being prepared. This might take some time if the files are big." -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "Lỗi" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "Tên" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "Thay đổi" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "Tải lên" @@ -274,65 +340,69 @@ msgstr "Kích thước tối đa cho các tập tin ZIP" msgid "Save" msgstr "Lưu" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "Mới" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "Tập tin văn bản" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "Tạo thư mục" + +#: templates/index.php:10 msgid "Folder" msgstr "Thư mục" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "Từ liên kết" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "File đã bị xóa" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "Hủy upload" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "Bạn không có quyền ghi vào đây." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "Không có gì ở đây .Hãy tải lên một cái gì đó !" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "Tải về" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "Bỏ chia sẻ" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "Xóa" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "Tập tin tải lên quá lớn" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Các tập tin bạn đang tải lên vượt quá kích thước tối đa cho phép trên máy chủ ." -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "Tập tin đang được quét ,vui lòng chờ." -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "Hiện tại đang quét" diff --git a/l10n/vi/files_encryption.po b/l10n/vi/files_encryption.po index aeea77799a94a0f79ba32aebd8954eabbb61e319..e6960f65bbbaf5aeb3c74216fc74aeef579e2427 100644 --- a/l10n/vi/files_encryption.po +++ b/l10n/vi/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:09+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" @@ -44,75 +44,96 @@ msgstr "Đã đổi mật khẩu." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Không thể đổi mật khẩu. Có lẽ do mật khẩu cũ không đúng." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:41 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Đang lưu..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "Mã hóa" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" msgstr "Bật" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "Tắt" @@ -120,58 +141,62 @@ msgstr "Tắt" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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 "Đổi Mật khẩu" -#: templates/settings-personal.php:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index 66d06e79b22243323c3d736c3cebe4ed4b77adc1..fed63a68611ff75a023b7d8b24ebed4bc70eec9c 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Đã cấp quyền truy cập" @@ -26,7 +26,7 @@ msgstr "Đã cấp quyền truy cập" msgid "Error configuring Dropbox storage" msgstr "Lỗi cấu hình lưu trữ Dropbox " -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Cấp quyền truy cập" @@ -34,24 +34,24 @@ msgstr "Cấp quyền truy cập" msgid "Please provide a valid Dropbox app key and secret." msgstr "Xin vui lòng cung cấp một ứng dụng Dropbox hợp lệ và mã bí mật." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Lỗi cấu hình lưu trữ Google Drive" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Cảnh báo: \"smbclient\" chưa được cài đặt. Mount CIFS/SMB shares là không thể thực hiện được. Hãy hỏi người quản trị hệ thống để cài đặt nó." -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Cảnh báo: FTP trong PHP chưa được cài đặt hoặc chưa được mở. Mount FTP shares là không thể. Xin hãy yêu cầu quản trị hệ thống của bạn cài đặt nó." -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index f370ab63c638bbcedf46b588a96cf960d7d03c40..b89ea054cf15561a3b5777f3721b448f214a2b7c 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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 "Mật khẩu" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "Xác nhận" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s đã chia sẻ thư mục %s với bạn" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s đã chia sẻ tập tin %s với bạn" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "Tải về" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "Tải lên" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "Hủy upload" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "Không có xem trước cho" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index c0a3d67ec4a82e0744553f9e65ca18300a599d82..92e604b2a5000a466dc49703d44231a8f0169fa3 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -27,53 +27,31 @@ msgstr "Không thể óa %s vĩnh viễn" msgid "Couldn't restore %s" msgstr "Không thể khôi phục %s" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "thực hiện phục hồi" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "Lỗi" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "xóa file vĩnh viễn" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "Xóa vĩnh vễn" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "Tên" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "Đã xóa" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Không có gì ở đây. Thùng rác của bạn rỗng!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "Tên" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Khôi phục" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "Đã xóa" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Xóa" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 7ad119bbb6f4c4e07e9b5dca4da105078be0a9a3..b91c21cfaa8dc3ff05a365472a5d4926a7541610 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -17,314 +17,313 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "Giúp đỡ" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "Cá nhân" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "Cài đặt" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "Người dùng" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "Quản trị" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "dịch vụ web dưới sự kiểm soát của bạn" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "Tải về ZIP đã bị tắt." -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "Tập tin cần phải được tải về từng người một." -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "Trở lại tập tin" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "Tập tin được chọn quá lớn để tạo tập tin ZIP." -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Ứng dụng không được BẬT" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "Lỗi xác thực" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Mã Token đã hết hạn. Hãy tải lại trang." -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Tập tin" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Văn bản" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Hình ảnh" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "không thể tìm thấy mục \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "vài giây trước" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "hôm nay" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "hôm qua" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "tháng trước" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "năm trước" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "năm trước" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "không thể tìm thấy mục \"%s\"" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index a34995956113d595aa5eba2caa252d06cd16a377..53de10b99ce182d1dcde769f6e065f256b1f8f6b 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+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" @@ -27,12 +27,12 @@ msgid "Authentication error" msgstr "Lỗi xác thực" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "Không thể thay đổi tên hiển thị" +msgid "Unable to change full name" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "Cập nhật lên {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Tắt" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Bật" @@ -129,31 +129,31 @@ msgstr "Bật" msgid "Please wait...." msgstr "Xin hãy đợi..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Đang cập nhật..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Lỗi khi cập nhật ứng dụng" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Lỗi" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Cập nhật" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Đã cập nhật" @@ -161,7 +161,7 @@ msgstr "Đã cập nhật" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "lùi lại" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Nhóm" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Nhóm quản trị" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Xóa" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "__Ngôn ngữ___" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "Cảnh bảo bảo mật" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 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:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "Chia sẻ" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Bật chia sẻ API" -#: templates/admin.php:127 +#: templates/admin.php:170 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:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "Cho phép liên kết" -#: templates/admin.php:135 +#: templates/admin.php:178 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:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Cho phép chia sẻ lại" -#: templates/admin.php:153 +#: templates/admin.php:196 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:160 +#: templates/admin.php:203 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:163 +#: templates/admin.php:206 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:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "Log" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "hơn" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "ít" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Phiên bản" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "Mã hóa" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "Bộ nhớ mặc định" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "Không giới hạn" @@ -589,8 +656,8 @@ msgid "Storage" msgstr "Bộ nhớ" #: templates/users.php:108 -msgid "change display name" -msgstr "Thay đổi tên hiển thị" +msgid "change full name" +msgstr "" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index e926fbc3d814a460c44c703901d495b2f86ca7e7..a5bce417eb79fb1f569ace0d0a6dbcd7db46bc21 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,423 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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 "Xóa thất bại" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "Thành công" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "Lỗi" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "Chọn nhóm" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Lưu" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "Giúp đỡ" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +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/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "Máy chủ" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Bạn có thể bỏ qua các giao thức, ngoại trừ SSL. Sau đó bắt đầu với ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "DN cơ bản" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Bạn có thể chỉ định DN cơ bản cho người dùng và các nhóm trong tab Advanced" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "Cổng" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "Người dùng DN" -#: templates/settings.php:46 +#: 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 "Các DN của người sử dụng đã được thực hiện, ví dụ như uid =agent , dc = example, dc = com. Để truy cập nặc danh ,DN và mật khẩu trống." -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "Mật khẩu" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "Cho phép truy cập nặc danh , DN và mật khẩu trống." -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "Lọc người dùng đăng nhập" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Bạn có thể chỉ định DN cơ bản cho người dùng và các nhóm trong tab Advanced" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "Lọc danh sách thành viên" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "Trở lại" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Bộ lọc nhóm" +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "Connection Settings" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "Cổng" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "Cổng sao lưu (Replica)" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "Tắt máy chủ chính" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "Sử dụng TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Do not use it additionally for LDAPS connections, it will fail." - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "Trường hợp insensitve LDAP máy chủ (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "Tắt xác thực chứng nhận SSL" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "trong vài giây. Một sự thay đổi bộ nhớ cache." -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "Directory Settings" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "Hiển thị tên người sử dụng" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Cây người dùng cơ bản" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "User Search Attributes" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "Optional; one attribute per line" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "Hiển thị tên nhóm" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Cây nhóm cơ bản" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Group Search Attributes" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Nhóm thành viên Cộng đồng" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "Special Attributes" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "Theo Byte" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Để trống tên người dùng (mặc định). Nếu không chỉ định thuộc tính LDAP/AD" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +457,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +476,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +502,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "Giúp đỡ" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index f321e4cfc4b406ee70a70195ab4b5ad7aba7bc3f..e5bde42b8b246ff7e8fdef96af836819cfe69b6b 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# hanfeng , 2013 # Xuetian Weng , 2013 # zhangmin , 2013 # zhangmin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -20,14 +21,15 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s 向您分享了 »%s«" -#: ajax/share.php:227 -msgid "group" -msgstr "组" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -54,56 +56,17 @@ msgstr "文件缓存已更新" msgid "... %d%% done ..." msgstr "...已完成 %d%% ..." -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "未提供分类类型。" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "没有可添加分类?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "此分类已存在:%s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "未提供对象类型。" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s ID未提供。" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "向收藏夹中新增%s时出错。" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "没有选择要删除的类别" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "从收藏夹中移除%s时出错。" - #: avatar/controller.php:62 msgid "No image or file provided" 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" @@ -189,55 +152,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "设置" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "秒前" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分钟前" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小时前" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "今天" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "昨天" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "上月" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 月前" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "月前" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "去年" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "年前" @@ -304,155 +267,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "未指定对象类型。" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "错误" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "未指定应用名称。" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "所需文件{file}未安装!" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "已共享" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "分享" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "错误" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "共享时出错" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "取消共享时出错" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "修改权限时出错" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} 共享给您及 {group} 组" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "{owner} 与您共享" -#: js/share.js:183 -msgid "Share with" -msgstr "分享之" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "共享链接" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "密码保护" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "密码" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "允许公开上传" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "发送链接到个人" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "发送" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "设置过期日期" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "过期日期" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "通过Email共享" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "未找到此人" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "组" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "不允许二次共享" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "在 {item} 与 {user} 共享。" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "取消共享" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "可以修改" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "访问控制" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "创建" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "更新" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "删除" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "共享" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "密码已受保护" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "取消设置过期日期时出错" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "设置过期日期时出错" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "正在发送..." -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "邮件已发送" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "重置密码的链接已发送到您的邮箱。
    如果您觉得在合理的时间内还未收到邮件,请查看 spam/junk 目录。
    如果没有在那里,请询问您的本地管理员。" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "请求失败
    您确定您的邮箱/用户名是正确的?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "您将会收到包含可以重置密码链接的邮件。" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "用户名" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -501,13 +492,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "您的文件已加密。如果您不启用恢复密钥,您将无法在重设密码后取回文件。如果您不太确定,请在继续前联系您的管理员。您真的要继续吗?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "使得,我真的要现在重设密码" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "请求重置" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "重置" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -533,7 +524,7 @@ msgstr "个人" msgid "Users" msgstr "用户" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "应用" @@ -545,6 +536,34 @@ msgstr "管理" 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 "访问禁止" @@ -561,108 +580,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "您好,\n\n%s 向您分享了 %s。\n查看: %s" +msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "编辑分类" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "增加" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "安全警告" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "你的PHP版本容易受到空字节攻击 (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "为保证安全使用 %s 请更新您的PHP。" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "随机数生成器无效,请启用PHP的OpenSSL扩展" -#: templates/installation.php:33 +#: 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:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "您的数据目录和文件可能可以直接被互联网访问,因为 .htaccess 并未正常工作。" -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "关于如何配置服务器,请参见 此文档。" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "创建管理员账号" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "高级" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "数据目录" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "配置数据库" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "将被使用" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "数据库用户" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "数据库密码" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "数据库名" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "数据库表空间" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "数据库主机" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "安装完成" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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 "%s 可用。获取更多关于如何升级的信息。" -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "注销" @@ -680,19 +710,27 @@ msgstr "如果您没有最近修改您的密码,您的帐户可能会受到影 msgid "Please change your password to secure your account again." msgstr "请修改您的密码,以保护您的账户安全。" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "忘记密码?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "记住" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "登录" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "其他登录方式" @@ -700,10 +738,37 @@ msgstr "其他登录方式" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "您好,

    %s 向您分享了 »%s«。
    查看" +"href=\"%s\">View it!

    " +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/update.php:3 +#: 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 "更新 ownCloud 到版本 %s,这可能需要一些时间。" + +#: 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/zh_CN/files.po b/l10n/zh_CN/files.po index 26678e7a4538a41164ae367dd0dd89bdab04bae3..102239c828a0c1839a4debb7f00e8204bd4a309c 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -30,217 +30,283 @@ msgstr "无法移动 %s - 同名文件已存在" msgid "Could not move %s" msgstr "无法移动 %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "文件名不能为空。" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "无法设置上传文件夹。" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "无效密匙" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "没有文件被上传。未知错误" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "文件上传成功,没有错误发生" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "上传文件大小已超过php.ini中upload_max_filesize所规定的值" -#: ajax/upload.php:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "已上传文件只上传了部分(不完整)" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "没有文件被上传" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "缺少临时目录" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "写入磁盘失败" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "没有足够的存储空间" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "无效文件夹。" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "文件" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "没有足够可用空间" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "上传已取消" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" -#: js/file-upload.js:520 -msgid "URL cannot be empty." -msgstr "URL不能为空" +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "无效的文件夹名。”Shared“ 是 Owncloud 预留的文件夹" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "错误" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} 已存在" -#: js/fileactions.js:119 +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "分享" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "永久删除" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "重命名" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "等待" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} 已存在" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "替换" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "建议名称" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "取消" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "已将 {old_name}替换成 {new_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "撤销" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 文件夹" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n个文件" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' 是一个无效的文件名。" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "文件名不能为空。" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "您的存储空间已满,文件将无法更新或同步!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "您的存储空间即将用完 ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "下载正在准备中。如果文件较大可能会花费一些时间。" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "错误" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "名称" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "大小" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "修改日期" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "%s 不能被重命名" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "上传" @@ -276,65 +342,69 @@ msgstr "ZIP 文件的最大输入大小" msgid "Save" msgstr "保存" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "新建" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "文本文件" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "添加文件夹" + +#: templates/index.php:10 msgid "Folder" msgstr "文件夹" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "来自链接" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "已删除文件" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "取消上传" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "您没有写权限" +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "这里还什么都没有。上传些东西吧!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "下载" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "取消共享" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "删除" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "上传文件过大" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "您正尝试上传的文件超过了此服务器可以上传的最大容量限制" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "文件正在被扫描,请稍候。" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "当前扫描" diff --git a/l10n/zh_CN/files_encryption.po b/l10n/zh_CN/files_encryption.po index fd619e23d55be759c08b2c81192dd3389b249ad2..bd66314a7c69ed8398f9cb41c86527b92ac728a3 100644 --- a/l10n/zh_CN/files_encryption.po +++ b/l10n/zh_CN/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:09+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" @@ -46,75 +46,96 @@ msgstr "密码修改成功。" msgid "Could not change the password. Maybe the old password was not correct." msgstr "不能修改密码。旧密码可能不正确。" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "私钥密码成功更新。" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "无法更新私钥密码。可能旧密码不正确。" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "您的私有密钥无效!也许是您在 ownCloud 系统外更改了密码 (比如,在您的公司目录)。您可以在个人设置里更新您的私钥密码来恢复访问你的加密文件。" +"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:41 +#: hooks/hooks.php:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/settings-admin.js:13 msgid "Saving..." msgstr "保存中" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "您的私钥不正确!可能您在别处更改了密码。" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "您可以在这里解锁您的私钥:" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "个人设置" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "加密" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "启用恢复密钥(允许你在密码丢失后恢复文件):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "恢复密钥密码" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "禁用" @@ -122,58 +143,62 @@ msgstr "禁用" msgid "Change recovery key password:" msgstr "更改恢复密钥密码" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "旧的恢复密钥密码" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "您的私钥密码不再匹配您的登录密码:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "讲您旧的私钥密码改为当前登录密码。" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "旧登录密码" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "当前登录密码" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "更新私钥密码" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "启用密码恢复:" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "文件恢复设置已更新" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "不能更新文件恢复" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 10f2bcf69e32dbcb43470990e2a5cc2ab6d28676..935872a3fc69da64532872ed468da2b84d375bc2 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "权限已授予。" @@ -25,7 +25,7 @@ msgstr "权限已授予。" msgid "Error configuring Dropbox storage" msgstr "配置Dropbox存储时出错" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "授权" @@ -33,24 +33,24 @@ msgstr "授权" msgid "Please provide a valid Dropbox app key and secret." msgstr "请提供有效的Dropbox应用key和secret" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "配置Google Drive存储时出错" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "警告:“smbclient” 尚未安装。CIFS/SMB 分享挂载无法实现。请咨询系统管理员进行安装。" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "警告:PHP中尚未启用或安装FTP。FTP 分享挂载无法实现。请咨询系统管理员进行安装。" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 5887baf02b772940017e9cd9541265a1dfbb96d0..94907e444cbaf46314b8f4032363e93edf67aa88 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: waterone \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: 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:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "密码" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "提交" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "抱歉,此链接已失效" @@ -54,28 +54,32 @@ msgstr "共享已禁用" msgid "For more info, please ask the person who sent this link." msgstr "欲知详情,请联系发给你链接的人。" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s与您共享了%s文件夹" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s与您共享了%s文件" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "下载" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "上传" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "取消上传" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "没有预览" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 3b1a2c820692a16580e2db674860b4be0cb4e5e3..07256e5e8c74c4ad5f11e4cc3c5bc3225d8dda20 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-16 16:20+0000\n" -"Last-Translator: waterone \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,53 +28,31 @@ msgstr "无法彻底删除文件%s" msgid "Couldn't restore %s" msgstr "无法恢复%s" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "执行恢复操作" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "错误" -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "彻底删除文件" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "永久删除" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "名称" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "已删除" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n 文件夹" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n个文件" - -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "已恢复" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "这里没有东西. 你的回收站是空的!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "名称" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "恢复" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "已删除" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "删除" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 6d3267bb037b7503b67651a12faacbc3a6001caf..8dd911abea1c1fb8c5006cf379d253469023b69b 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -20,314 +20,313 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "帮助" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "个人" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "设置" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "用户" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "管理" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "未知的文件类型" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "无效的图像" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "您控制的web服务" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP 下载已经关闭" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "需要逐一下载文件" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "回到文件" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "选择的文件太大,无法生成 zip 文件。" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "应用未提供 info.xml 文件" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "应用程序未启用" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "认证出错" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token 过期,请刷新页面。" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "文件" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "文本" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "图片" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s 输入数据库用户名。" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s 输入数据库名称。" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s 您不能在数据库名称中使用英文句号。" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL 用户名和/或密码无效:%s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "你需要输入一个数据库中已有的账户或管理员账户。" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL 数据库用户名和/或密码无效" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "数据库错误:\"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "冲突命令为:\"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL 用户 '%s'@'localhost' 已存在。" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "建议从 MySQL 数据库中丢弃 Drop 此用户" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL 用户 '%s'@'%%' 已存在" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "建议从 MySQL 数据库中丢弃 Drop 此用户。" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "不能建立甲骨文连接" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Oracle 数据库用户名和/或密码无效" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "冲突命令为:\"%s\",名称:%s,密码:%s" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL 数据库用户名和/或密码无效" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "请设置一个管理员用户名。" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "请设置一个管理员密码。" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏." -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "请认真检查安装指南." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "无法找到分类 \"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "秒前" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分钟前" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小时前" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "今天" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "昨天" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "上月" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 月前" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "去年" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "年前" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "无法找到分类 \"%s\"" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index fc3228827b0d9cd0f3a8ca14f14411619481a439..75e9691e0df9e5de7231114b8969148dbf1aa5a3 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -32,12 +32,12 @@ msgid "Authentication error" msgstr "认证出错" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "您的显示名字已经改变" +msgid "Your full name has been changed." +msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "无法修改显示名称" +msgid "Unable to change full name" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -122,11 +122,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "更新至 {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "禁用" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "开启" @@ -134,31 +134,31 @@ msgstr "开启" msgid "Please wait...." msgstr "请稍等...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "禁用 app 时出错" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "启用 app 时出错" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "正在更新...." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "更新 app 时出错" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "错误" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "更新" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "已更新" @@ -166,7 +166,7 @@ msgstr "已更新" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "正在解密文件... 请稍等,可能需要一些时间。" @@ -186,44 +186,75 @@ msgstr "撤销" msgid "Unable to remove user" msgstr "无法移除用户" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "组" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "组管理员" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "删除" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "添加组" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "必须提供合法的用户名" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "创建用户出错" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "必须提供合法的密码" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "简体中文" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "安全警告" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -232,48 +263,68 @@ msgid "" "root." msgstr "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器以外。" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "设置警告" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "请认真检查安装指南." -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "模块'文件信息'丢失" -#: templates/admin.php:47 +#: templates/admin.php:68 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:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "本地化无法工作" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "服务器无法设置系统本地化到%s. 这意味着可能文件名中有一些字符会引起问题. 我们强烈建议在你系统上安装所需的软件包来支持%s" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "因特网连接无法工作" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -282,110 +333,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "此服务器上没有可用的因特网连接. 这意味着某些特性将无法工作,例如挂载外部存储器, 提醒更新或安装第三方应用等. 从远程访问文件和发送提醒电子邮件也可能无法工作. 如果你想要ownCloud的所有特性, 我们建议启用此服务器的因特网连接." -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "计划任务" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "每个页面加载后执行一个任务" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php已被注册到网络定时任务服务。通过http每分钟调用owncloud根目录的cron.php网页。" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "使用系统定时任务服务。每分钟通过系统定时任务调用owncloud文件夹中的cron.php文件" +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "共享" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "启用共享API" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "允许应用软件使用共享API" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "允许链接" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "允许用户使用连接公开共享项目" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "允许公开上传" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "用户可让其他人上传到他的公开共享文件夹" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "允许再次共享" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "允许用户将共享给他们的项目再次共享" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "允许用户向任何人共享" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "允许用户只向同组用户共享" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "安全" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "强制使用 HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "强制客户端通过加密连接连接到%s。" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "请经由HTTPS连接到这个%s 实例来启用或禁用强制SSL." -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "日志" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "日志级别" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "更多" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "更少" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "版本" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "使用该链接 通过WebDAV访问你的文件" +"Use this address to access your Files via " +"WebDAV" +msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "加密" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "加密 app 未启用,将解密您所有文件" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "登录密码" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "解密所有文件" @@ -577,6 +640,10 @@ msgstr "输入恢复密码来在更改密码的时候恢复用户文件" msgid "Default Storage" msgstr "默认存储" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "无限" @@ -594,8 +661,8 @@ msgid "Storage" msgstr "存储" #: templates/users.php:108 -msgid "change display name" -msgstr "修改显示名称" +msgid "change full name" +msgstr "" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 22c5379e5583a28d4df5f7f74a25bc90ef38d22e..593b32a237203d6732cf0d1e69e091748d6eed83 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -26,314 +26,423 @@ msgstr "清除映射失败。" msgid "Failed to delete the server configuration" msgstr "未能删除服务器配置" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "配置有效,能够建立连接!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "配置有效但绑定失败。请检查服务器设置和认证信息。" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "配置无效。更多细节请查看 ownCloud 日志。" +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 "" -#: js/settings.js:66 +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 msgid "Deletion failed" msgstr "删除失败" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "从近期的服务器配置中导入设置?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "保留设置吗?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "无法添加服务器配置" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "清除映射" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "成功" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "错误" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "选择分组" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "连接测试成功" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "连接测试失败" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "您真的想要删除当前服务器配置吗?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "确认删除" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +msgid "Could not find the desired feature" msgstr "" -#: templates/settings.php:12 +#: 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 "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "警告: PHP LDAP 模块未安装,后端将无法工作。请请求您的系统管理员安装该模块。" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "服务器配置" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +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/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "主机" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "可以忽略协议,但如要使用SSL,则需以ldaps://开头" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Base DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "每行一个基本判别名" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "您可以在高级选项卡里为用户和组指定Base DN" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "端口" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "User DN" -#: templates/settings.php:46 +#: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "客户端使用的DN必须与绑定的相同,比如uid=agent,dc=example,dc=com\n如需匿名访问,将DN和密码保留为空" -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "密码" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "启用匿名访问,将DN和密码保留为空" -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "用户登录过滤" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "每行一个基本判别名" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "您可以在高级选项卡里为用户和组指定Base DN" + +#: templates/part.wizard-userfilter.php:4 #, php-format -msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +msgid "Limit the access to %s to users meeting this criteria:" msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "用户列表过滤" - -#: templates/settings.php:58 +#: templates/part.wizard-userfilter.php:31 +#, php-format msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "组过滤" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" -#: templates/settings.php:62 +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "返回" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "警告: PHP LDAP 模块未安装,后端将无法工作。请请求您的系统管理员安装该模块。" + +#: templates/settings.php:20 msgid "Connection Settings" msgstr "连接设置" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "现行配置" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "当反选后,此配置将被忽略。" -#: templates/settings.php:69 -msgid "Port" -msgstr "端口" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "备份 (镜像) 主机" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "给出一个可选的备份主机。它必须为主 LDAP/AD 服务器的一个镜像。" -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "备份 (镜像) 端口" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "禁用主服务器" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "使用TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "对于 LDAPS 连接不要额外启用它,连接必然失败。" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "大小写敏感LDAP服务器(Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "关闭SSL证书验证" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "缓存存活时间" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "以秒计。修改将清空缓存。" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "目录设置" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "用户显示名称字段" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "基础用户树" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "每行一个用户基准判别名" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "用户搜索属性" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "可选;每行一个属性" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "组显示名称字段" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "基础组树" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "每行一个群组基准判别名" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "群组搜索属性" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "组成员关联" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "特殊属性" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "配额字段" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "默认配额" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "字节数" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "电邮字段" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "用户主目录命名规则" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "将用户名称留空(默认)。否则指定一个LDAP/AD属性" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "内部用户名" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -349,15 +458,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "内部用户名属性:" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "超越UUID检测" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -368,15 +477,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "UUID属性:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" +msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "用户名-LDAP用户映射" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -390,18 +503,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "清除用户-LDAP用户映射" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "清除组用户-LDAP级映射" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "测试配置" - -#: templates/settings.php:108 -msgid "Help" -msgstr "帮助" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index b4aef3cc566c26c7df2f843445c8698d0166968d..09b9c5cfc6dc0ff01dbaf94e90d4741d46dc0a21 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,13 +17,14 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 -msgid "group" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" #: ajax/update.php:11 @@ -51,45 +52,6 @@ msgstr "" msgid "... %d%% done ..." msgstr "" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -186,55 +148,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "設定" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "今日" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "昨日" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "前一月" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "個月之前" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "" @@ -301,155 +263,183 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "錯誤" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "已分享" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "分享" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "錯誤" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "分享時發生錯誤" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "取消分享時發生錯誤" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "更改權限時發生錯誤" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner}與你及群組的分享" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "{owner}與你的分享" -#: js/share.js:183 -msgid "Share with" -msgstr "分享" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "" -#: js/share.js:188 -msgid "Share with link" -msgstr "以連結分享" +#: js/share.js:219 +msgid "Share link" +msgstr "" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "密碼保護" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "密碼" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "傳送" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "設定分享期限" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "分享期限" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "以電郵分享" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "找不到" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "取消分享" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "" + +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "新增" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "更新" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "刪除" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "分享" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "密碼保護" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "傳送中" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "郵件已傳" +#: js/share.js:769 +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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "你將收到一封電郵" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "用戶名稱" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -498,13 +488,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "重設" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -530,7 +520,7 @@ msgstr "個人" msgid "Users" msgstr "用戶" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "軟件" @@ -542,6 +532,34 @@ msgstr "管理" 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 "" @@ -558,108 +576,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "加入" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: 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:39 +#: 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:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "建立管理員帳戶" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "進階" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "設定資料庫" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "將被使用" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "資料庫帳戶" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "資料庫密碼" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "資料庫名稱" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "登出" @@ -677,19 +706,27 @@ msgstr "如果你近期未曾更改密碼, 你的帳號可能被洩露!" msgid "Please change your password to secure your account again." msgstr "請更改你的密碼以保護你的帳戶" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "忘記密碼" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "記住" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "登入" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "" @@ -697,10 +734,37 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

    " +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.php:3 +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "ownCloud (ver. %s)更新中, 請耐心等侯" + +#: 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/zh_HK/files.po b/l10n/zh_HK/files.po index 20aca3cb37e20ea744d09f020c050b6d9ecc1e11..cb68c72f40d88ac97a59360bf68a98e0eb1e7341 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -27,217 +27,283 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "文件" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 -msgid "URL cannot be empty." +#: js/file-upload.js:523 +msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "錯誤" - -#: js/fileactions.js:119 -msgid "Share" -msgstr "分享" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "" -#: js/fileactions.js:131 -msgid "Delete permanently" +#: js/file-upload.js:595 +msgid "Could not create file" msgstr "" -#: js/fileactions.js:197 -msgid "Rename" +#: js/file-upload.js:611 +msgid "Could not create folder" msgstr "" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 -msgid "Pending" +#: js/file-upload.js:661 +msgid "Error fetching URL" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" +#: js/fileactions.js:125 +msgid "Share" +msgstr "分享" + +#: js/fileactions.js:137 +msgid "Delete permanently" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" +#: js/fileactions.js:194 +msgid "Rename" msgstr "" -#: js/filelist.js:416 -msgid "suggest name" +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +msgid "Pending" msgstr "" -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" +#: js/filelist.js:405 +msgid "Could not rename file" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "錯誤" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "名稱" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "上傳" @@ -273,65 +339,69 @@ msgstr "" msgid "Save" msgstr "儲存" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "" + +#: templates/index.php:10 msgid "Folder" msgstr "" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 -msgid "You don’t have write permissions here." +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "下載" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "取消分享" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "刪除" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "" diff --git a/l10n/zh_HK/files_encryption.po b/l10n/zh_HK/files_encryption.po index f1049dc1eb636886e55471a5f6a782cd390c9ef0..7ae52b08cc17f01bedc4fcdce36b7a6cb4e95cba 100644 --- a/l10n/zh_HK/files_encryption.po +++ b/l10n/zh_HK/files_encryption.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:08+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" @@ -43,75 +43,96 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:12 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." +"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 "" -#: hooks/hooks.php:41 +#: 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:59 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 -msgid "Saving..." +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." +#: js/settings-admin.js:13 +msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "加密" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "" @@ -119,58 +140,62 @@ msgstr "" msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: 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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" msgstr "" -#: templates/settings-personal.php:47 +#: 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:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index 075e0e775319e523ceb8bb12fc8218481de8f782..5bd454412d0724ba5f2d764001c3784bb1e44958 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index 51163c90a96fc9d5a74c504f1953cc33cc6e1a61..2fceb799c3eb72901cc2a5a3343b4f40ffbed0e3 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -18,17 +18,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 -msgid "The password is wrong. Try again." +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/authenticate.php:9 -msgid "Submit" -msgstr "" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" @@ -53,28 +53,32 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "下載" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "上傳" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 31ad547f9b1d93c9ce4c47e4098df9fa6bcad404..173849a4d38f3530f769569ccf53b24d8cc463a3 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -27,53 +27,31 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "錯誤" -#: js/trash.js:36 -msgid "delete file permanently" +#: lib/trashbin.php:815 lib/trashbin.php:817 +msgid "restored" msgstr "" -#: js/trash.js:127 -msgid "Delete permanently" +#: templates/index.php:8 +msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: templates/index.php:22 msgid "Name" msgstr "名稱" -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" +#: templates/index.php:25 templates/index.php:27 +msgid "Restore" msgstr "" -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" +#: templates/index.php:33 +msgid "Deleted" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "刪除" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 22b7a3e57b444982c02df99d10fd597ec151f0e6..752cf5e22c532cc57cce7b0a25351cfbc2010976 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,314 +17,313 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "幫助" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "個人" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "設定" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "用戶" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "管理" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "文件" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "文字" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "今日" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "昨日" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "前一月" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 079b4a52ddfdca50a9f63c4996078552fefedf71..b11bddc20a9f3805a2e177f2dea84a4396453f1c 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ msgid "Authentication error" msgstr "" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." +msgid "Your full name has been changed." msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" +msgid "Unable to change full name" msgstr "" #: ajax/creategroup.php:10 @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,31 +129,31 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "錯誤" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -181,44 +181,75 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "群組" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "刪除" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -227,48 +258,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:53 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:68 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -277,110 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." msgstr "" -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" +"Use this address to access your Files via " +"WebDAV" msgstr "" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "加密" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "" @@ -572,6 +635,10 @@ msgstr "" msgid "Default Storage" msgstr "" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "" @@ -589,7 +656,7 @@ msgid "Storage" msgstr "" #: templates/users.php:108 -msgid "change display name" +msgid "change full name" msgstr "" #: templates/users.php:112 diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index ecd9fd8d4c154f9e1f70e3b65127f0bcd972b167..8ba0903b188683eb18382a9e071401e96ffc83a3 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -25,314 +25,423 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." msgstr "" -#: js/settings.js:66 +#: 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:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "成功" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "錯誤" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" msgstr "" -#: templates/settings.php:12 +#: lib/wizard.php:951 +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 "Limit the access to %s to groups meeting this criteria:" +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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." +"The filter specifies which LDAP groups shall have access to the %s instance." msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" msgstr "" -#: templates/settings.php:32 -msgid "Add Server Configuration" +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" msgstr "" -#: templates/settings.php:37 -msgid "Host" +#: 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/settings.php:39 +#: templates/part.wizard-loginfilter.php:38 +#, php-format msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/settings.php:40 -msgid "Base DN" +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:41 -msgid "One Base DN per line" +#: templates/part.wizard-server.php:30 +msgid "Host" msgstr "" -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "連接埠" + +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:46 +#: 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/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "密碼" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:51 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:54 +#: 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 the access to %s to users meeting this criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:14 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:20 msgid "Connection Settings" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:69 -msgid "Port" -msgstr "連接埠" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:70 +#: 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:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -348,15 +457,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -367,15 +476,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -389,18 +502,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "幫助" diff --git a/l10n/zh_HK/user_webdavauth.po b/l10n/zh_HK/user_webdavauth.po index 8751a8294aaf1d555ed4d32a5658a9dd64e7102c..bbbd941b97fa299a4f91824e4f8fc36bef66dafd 100644 --- a/l10n/zh_HK/user_webdavauth.po +++ b/l10n/zh_HK/user_webdavauth.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# sy6614 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-03 12:38-0500\n" +"PO-Revision-Date: 2013-11-03 05:40+0000\n" +"Last-Translator: sy6614 \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +20,15 @@ msgstr "" #: templates/settings.php:3 msgid "WebDAV Authentication" -msgstr "" +msgstr "WebDAV 認證" #: templates/settings.php:4 msgid "Address: " -msgstr "" +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 "" +msgstr "使用者憑證將會被傳送到此位址。此外掛程式將會檢查回應,HTTP狀態碼 401與403將會被理解為無效憑證,而所有其他的回應將會被理解為有效憑證。" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 4db9d316b844049b7a271b30b45e5247599050b6..6477db46c33bd6e425b699246e796a399f87a2ea 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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,14 +19,15 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" msgstr "%s 與您分享了 %s" -#: ajax/share.php:227 -msgid "group" -msgstr "群組" +#: ajax/share.php:169 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "無法寄送郵件給這些使用者:%s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -53,64 +54,25 @@ msgstr "已更新檔案快取" msgid "... %d%% done ..." msgstr "已完成 %d%%" -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "未提供分類類型。" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "沒有可增加的分類?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "分類已經存在:%s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "未指定物件類型" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "未提供 %s ID 。" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "加入 %s 到最愛時發生錯誤。" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "沒有選擇要刪除的分類。" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "從最愛移除 %s 時發生錯誤。" - #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +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" -msgstr "" +msgstr "沒有臨時用的大頭貼,請再試一次" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "未設定剪裁" #: js/config.php:32 msgid "Sunday" @@ -188,55 +150,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:387 +#: js/js.js:398 msgid "Settings" msgstr "設定" -#: js/js.js:866 +#: js/js.js:869 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:867 +#: js/js.js:870 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分鐘前" -#: js/js.js:868 +#: js/js.js:871 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小時前" -#: js/js.js:869 +#: js/js.js:872 msgid "today" msgstr "今天" -#: js/js.js:870 +#: js/js.js:873 msgid "yesterday" msgstr "昨天" -#: js/js.js:871 +#: js/js.js:874 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: js/js.js:872 +#: js/js.js:875 msgid "last month" msgstr "上個月" -#: js/js.js:873 +#: js/js.js:876 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 個月前" -#: js/js.js:874 +#: js/js.js:877 msgid "months ago" msgstr "幾個月前" -#: js/js.js:875 +#: js/js.js:878 msgid "last year" msgstr "去年" -#: js/js.js:876 +#: js/js.js:879 msgid "years ago" msgstr "幾年前" @@ -246,7 +208,7 @@ msgstr "選擇" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "載入檔案選擇器樣板出錯: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -262,26 +224,26 @@ msgstr "好" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "載入訊息樣板出錯: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" +msgstr[0] "{count} 個檔案衝突" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "一個檔案衝突" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "您要保留哪一個檔案?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "如果您同時選擇兩個版本,被複製的那個檔案名稱後面會加上編號" #: js/oc-dialogs.js:376 msgid "Cancel" @@ -289,169 +251,197 @@ msgstr "取消" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "繼續" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(已全選)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "(已選 {count} 項)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" - -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "未指定物件類型。" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 -msgid "Error" -msgstr "錯誤" +msgstr "載入檔案存在樣板出錯" -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "沒有指定 app 名稱。" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "沒有安裝所需的檔案 {file} !" - -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "已分享" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "分享" -#: js/share.js:131 js/share.js:685 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 templates/installation.php:10 +msgid "Error" +msgstr "錯誤" + +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "分享時發生錯誤" -#: js/share.js:142 +#: js/share.js:171 msgid "Error while unsharing" msgstr "取消分享時發生錯誤" -#: js/share.js:149 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "修改權限時發生錯誤" -#: js/share.js:158 +#: js/share.js:187 msgid "Shared with you and the group {group} by {owner}" msgstr "由 {owner} 分享給您和 {group}" -#: js/share.js:160 +#: js/share.js:189 msgid "Shared with you by {owner}" msgstr "{owner} 已經和您分享" -#: js/share.js:183 -msgid "Share with" -msgstr "分享給別人" +#: js/share.js:213 +msgid "Share with user or group …" +msgstr "與用戶或群組分享" -#: js/share.js:188 -msgid "Share with link" -msgstr "使用連結分享" +#: js/share.js:219 +msgid "Share link" +msgstr "分享連結" -#: js/share.js:191 +#: js/share.js:222 msgid "Password protect" msgstr "密碼保護" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "密碼" -#: js/share.js:198 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "允許任何人上傳" -#: js/share.js:202 +#: js/share.js:233 msgid "Email link to person" msgstr "將連結 email 給別人" -#: js/share.js:203 +#: js/share.js:234 msgid "Send" msgstr "寄出" -#: js/share.js:208 +#: js/share.js:239 msgid "Set expiration date" msgstr "指定到期日" -#: js/share.js:209 +#: js/share.js:240 msgid "Expiration date" msgstr "到期日" -#: js/share.js:242 +#: js/share.js:275 msgid "Share via email:" msgstr "透過電子郵件分享:" -#: js/share.js:245 +#: js/share.js:278 msgid "No people found" msgstr "沒有找到任何人" -#: js/share.js:283 +#: js/share.js:322 js/share.js:359 +msgid "group" +msgstr "群組" + +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "不允許重新分享" -#: js/share.js:319 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "已和 {user} 分享 {item}" -#: js/share.js:340 +#: js/share.js:397 msgid "Unshare" msgstr "取消分享" -#: js/share.js:352 +#: js/share.js:405 +msgid "notify by email" +msgstr "以 email 通知" + +#: js/share.js:408 msgid "can edit" msgstr "可編輯" -#: js/share.js:354 +#: js/share.js:410 msgid "access control" msgstr "存取控制" -#: js/share.js:357 +#: js/share.js:413 msgid "create" msgstr "建立" -#: js/share.js:360 +#: js/share.js:416 msgid "update" msgstr "更新" -#: js/share.js:363 +#: js/share.js:419 msgid "delete" msgstr "刪除" -#: js/share.js:366 +#: js/share.js:422 msgid "share" msgstr "分享" -#: js/share.js:400 js/share.js:632 +#: js/share.js:694 msgid "Password protected" msgstr "受密碼保護" -#: js/share.js:645 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "取消到期日設定失敗" -#: js/share.js:657 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "設定到期日發生錯誤" -#: js/share.js:672 +#: js/share.js:734 msgid "Sending ..." msgstr "正在傳送…" -#: js/share.js:683 +#: js/share.js:745 msgid "Email sent" msgstr "Email 已寄出" +#: js/share.js:769 +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 "載入對話樣板出錯:{error}" + +#: 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 If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
    If it is not there ask your local administrator ." msgstr "重設密碼的連結已經寄至您的電子郵件信箱,如果您過了一段時間還是沒有收到它,請檢查看看它是不是被歸為垃圾郵件了,如果還是沒有的話,請聯絡您的 ownCloud 系統管理員。" -#: lostpassword/templates/lostpassword.php:12 +#: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
    Did you make sure your email/username was right?" msgstr "請求失敗!
    您確定填入的電子郵件地址或是帳號名稱是正確的嗎?" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "重設密碼的連結將會寄到您的電子郵件信箱。" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 +#: templates/login.php:31 msgid "Username" msgstr "使用者名稱" -#: lostpassword/templates/lostpassword.php:22 +#: 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 " @@ -500,13 +490,13 @@ msgid "" "continue. Do you really want to continue?" msgstr "您的檔案已加密,如果您沒有設定還原金鑰,未來重設密碼後將無法取回您的資料。如果您不確定該怎麼做,請洽詢系統管理員後再繼續。您確定要現在繼續嗎?" -#: lostpassword/templates/lostpassword.php:24 +#: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" msgstr "對,我現在想要重設我的密碼。" -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "請求重設" +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "重設" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -532,7 +522,7 @@ msgstr "個人" msgid "Users" msgstr "使用者" -#: strings.php:7 templates/layout.user.php:108 +#: strings.php:7 templates/layout.user.php:111 msgid "Apps" msgstr "應用程式" @@ -544,6 +534,34 @@ msgstr "管理" 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 "存取被拒" @@ -560,108 +578,119 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "嗨,\n\n通知您一聲,%s 與您分享了 %s 。\n您可以到 %s 看看" +msgstr "嗨,\n\n%s 和你分享了 %s ,到這裡看它:%s\n" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "編輯分類" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "增加" +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "太棒了!" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "安全性警告" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "您的 PHP 版本無法抵抗 NULL Byte 攻擊 (CVE-2006-7243)" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "請更新 PHP 以安全地使用 %s。" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "沒有可用的亂數產生器,請啟用 PHP 中的 OpenSSL 擴充功能。" -#: templates/installation.php:33 +#: 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:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "您的資料目錄看起來可以被 Internet 公開存取,因為 .htaccess 設定並未生效。" -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the
    documentation." msgstr "請參考說明文件以瞭解如何正確設定您的伺服器。" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "建立一個管理者帳號" -#: templates/installation.php:65 +#: templates/installation.php:67 msgid "Advanced" msgstr "進階" -#: templates/installation.php:67 +#: templates/installation.php:74 msgid "Data folder" msgstr "資料儲存位置" -#: templates/installation.php:77 +#: templates/installation.php:86 msgid "Configure the database" msgstr "設定資料庫" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "將會使用" -#: templates/installation.php:140 +#: templates/installation.php:149 msgid "Database user" msgstr "資料庫使用者" -#: templates/installation.php:147 +#: templates/installation.php:156 msgid "Database password" msgstr "資料庫密碼" -#: templates/installation.php:152 +#: templates/installation.php:161 msgid "Database name" msgstr "資料庫名稱" -#: templates/installation.php:160 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "資料庫 tablespace" -#: templates/installation.php:167 +#: templates/installation.php:176 msgid "Database host" msgstr "資料庫主機" -#: templates/installation.php:175 +#: templates/installation.php:185 msgid "Finish setup" msgstr "完成設定" -#: templates/layout.user.php:41 +#: templates/installation.php:185 +msgid "Finishing …" +msgstr "即將完成…" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript 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 "%s 已經釋出,瞭解更多資訊以進行更新。" -#: templates/layout.user.php:69 +#: templates/layout.user.php:72 templates/singleuser.user.php:8 msgid "Log out" msgstr "登出" @@ -679,19 +708,27 @@ msgstr "如果您最近並未更改密碼,您的帳號可能已經遭到入侵 msgid "Please change your password to secure your account again." msgstr "請更改您的密碼以再次取得您帳戶的控制權。" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "伺服器端認證失敗!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "請聯絡系統管理員。" + +#: templates/login.php:44 msgid "Lost your password?" msgstr "忘記密碼?" -#: templates/login.php:37 +#: templates/login.php:49 msgid "remember" msgstr "記住" -#: templates/login.php:39 +#: templates/login.php:52 msgid "Log in" msgstr "登入" -#: templates/login.php:45 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "其他登入方法" @@ -699,10 +736,37 @@ msgstr "其他登入方法" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "嗨,

    通知您一聲,%s 與您分享了 %s ,
    看一下吧" +"href=\"%s\">View it!

    " +msgstr "嗨,

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

    " + +#: 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.php:3 +#: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." msgstr "正在將 ownCloud 升級至版本 %s ,這可能需要一點時間。" + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "ownCloud 正在升級,請稍待一會。" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "請稍後重新載入這個頁面就可以繼續使用 ownCloud" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 60f8fdf7a0d9e27f103383d652fdff47d1a645de..6ab2b48b568ab01e1d8b1383b2696258fd4359d8 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# sy6614 , 2013 # pellaeon , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-01-04 01:55-0500\n" +"PO-Revision-Date: 2014-01-03 12:00+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,217 +29,283 @@ msgstr "無法移動 %s ,同名的檔案已經存在" msgid "Could not move %s" msgstr "無法移動 %s" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/newfile.php:56 js/files.js:74 +msgid "File name cannot be empty." +msgstr "檔名不能為空" + +#: ajax/newfile.php:62 +msgid "File name must not contain \"/\". Please choose a different name." +msgstr "檔名不能包含 \"/\" ,請選其他名字" + +#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "%s 已經被使用於資料夾 %s ,請換一個名字" + +#: ajax/newfile.php:81 +msgid "Not a valid source" +msgstr "不是有效的來源" + +#: ajax/newfile.php:86 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:103 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "下載 %s 到 %s 失敗" + +#: ajax/newfile.php:140 +msgid "Error when creating the file" +msgstr "建立檔案失敗" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "資料夾名稱不能留空" + +#: ajax/newfolder.php:27 +msgid "Folder name must not contain \"/\". Please choose a different name." +msgstr "資料夾名稱不能包含 \"/\" ,請選其他名字" + +#: ajax/newfolder.php:56 +msgid "Error when creating the folder" +msgstr "建立資料夾失敗" + +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "無法設定上傳目錄" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "無效的 token" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "沒有檔案被上傳,原因未知" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "一切都順利,檔案上傳成功" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:" -#: ajax/upload.php:69 +#: ajax/upload.php:74 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:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "只有檔案的一部分被上傳" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "沒有檔案被上傳" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "找不到暫存資料夾" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "寫入硬碟失敗" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "儲存空間不足" -#: ajax/upload.php:120 ajax/upload.php:143 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "上傳失敗,無法取得檔案資訊" -#: ajax/upload.php:136 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "上傳失敗,找不到上傳的檔案" -#: ajax/upload.php:160 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "無效的資料夾" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "檔案" -#: js/file-upload.js:244 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "因為 {filename} 是個目錄或是大小為零,所以無法上傳" -#: js/file-upload.js:255 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "沒有足夠的可用空間" -#: js/file-upload.js:322 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "上傳已取消" -#: js/file-upload.js:356 +#: js/file-upload.js:344 msgid "Could not get result from server." -msgstr "" +msgstr "無法從伺服器取回結果" -#: js/file-upload.js:446 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "檔案上傳中,離開此頁面將會取消上傳。" -#: js/file-upload.js:520 -msgid "URL cannot be empty." -msgstr "URL 不能為空" +#: js/file-upload.js:523 +msgid "URL cannot be empty" +msgstr "URL 不能留空" -#: js/file-upload.js:525 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "無效的資料夾名稱,'Shared' 的使用被 ownCloud 保留" +#: js/file-upload.js:527 js/filelist.js:377 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "在家目錄中不能使用「共享」作為檔名" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 -msgid "Error" -msgstr "錯誤" +#: js/file-upload.js:529 js/filelist.js:379 +msgid "{new_name} already exists" +msgstr "{new_name} 已經存在" + +#: js/file-upload.js:595 +msgid "Could not create file" +msgstr "無法建立檔案" -#: js/fileactions.js:119 +#: js/file-upload.js:611 +msgid "Could not create folder" +msgstr "無法建立資料夾" + +#: js/file-upload.js:661 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:125 msgid "Share" msgstr "分享" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "永久刪除" -#: js/fileactions.js:197 +#: js/fileactions.js:194 msgid "Rename" msgstr "重新命名" -#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 msgid "Pending" msgstr "等候中" -#: js/filelist.js:416 js/filelist.js:418 -msgid "{new_name} already exists" -msgstr "{new_name} 已經存在" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "replace" -msgstr "取代" - -#: js/filelist.js:416 -msgid "suggest name" -msgstr "建議檔名" - -#: js/filelist.js:416 js/filelist.js:418 -msgid "cancel" -msgstr "取消" +#: js/filelist.js:405 +msgid "Could not rename file" +msgstr "無法重新命名" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "replaced {new_name} with {old_name}" msgstr "使用 {new_name} 取代 {old_name}" -#: js/filelist.js:463 +#: js/filelist.js:539 msgid "undo" msgstr "復原" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:591 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 個資料夾" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n 個檔案" -#: js/filelist.js:541 +#: js/filelist.js:617 msgid "{dirs} and {files}" msgstr "{dirs} 和 {files}" -#: js/filelist.js:731 js/filelist.js:769 +#: js/filelist.js:828 js/filelist.js:866 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n 個檔案正在上傳" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "'.' 是不合法的檔名" -#: js/files.js:29 -msgid "File name cannot be empty." -msgstr "檔名不能為空" - -#: js/files.js:37 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "檔名不合法,不允許 \\ / < > : \" | ? * 字元" -#: js/files.js:51 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "您的儲存空間已滿,沒有辦法再更新或是同步檔案!" -#: js/files.js:55 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "您的儲存空間快要滿了 ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:110 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "檔案加密已啓用,但是您的金鑰尚未初始化,請重新登入一次" + +#: js/files.js:114 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "無效的檔案加密私鑰,請在個人設定中更新您的私鑰密語以存取加密的檔案。" + +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "加密已經被停用,但是您的舊檔案還是處於已加密的狀態,請前往個人設定以解密這些檔案。" -#: js/files.js:296 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "正在準備您的下載,若您的檔案較大,將會需要更多時間。" -#: js/files.js:507 js/files.js:545 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" -msgstr "" +msgstr "移動檔案失敗" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:558 js/files.js:596 +msgid "Error" +msgstr "錯誤" + +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "名稱" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "大小" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "修改時間" -#: lib/app.php:73 +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:101 #, php-format msgid "%s could not be renamed" msgstr "無法重新命名 %s" -#: lib/helper.php:11 templates/index.php:17 +#: lib/helper.php:11 templates/index.php:16 msgid "Upload" msgstr "上傳" @@ -274,65 +341,69 @@ msgstr "ZIP 壓縮前的原始大小限制" msgid "Save" msgstr "儲存" -#: templates/index.php:6 +#: templates/index.php:5 msgid "New" msgstr "新增" -#: templates/index.php:9 +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:8 msgid "Text file" msgstr "文字檔" -#: templates/index.php:11 +#: templates/index.php:10 +msgid "New folder" +msgstr "新資料夾" + +#: templates/index.php:10 msgid "Folder" msgstr "資料夾" -#: templates/index.php:13 +#: templates/index.php:12 msgid "From link" msgstr "從連結" -#: templates/index.php:33 +#: templates/index.php:29 msgid "Deleted files" msgstr "回收桶" -#: templates/index.php:39 +#: templates/index.php:34 msgid "Cancel upload" msgstr "取消上傳" -#: templates/index.php:45 -msgid "You don’t have write permissions here." -msgstr "您在這裡沒有編輯權" +#: templates/index.php:40 +msgid "You don’t have permission to upload or create files here" +msgstr "您沒有權限在這裡上傳或建立檔案" -#: templates/index.php:50 +#: templates/index.php:45 msgid "Nothing in here. Upload something!" msgstr "這裡還沒有東西,上傳一些吧!" -#: templates/index.php:67 +#: templates/index.php:62 msgid "Download" msgstr "下載" -#: templates/index.php:80 templates/index.php:81 -msgid "Unshare" -msgstr "取消分享" - -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:73 templates/index.php:74 msgid "Delete" msgstr "刪除" -#: templates/index.php:100 +#: templates/index.php:86 msgid "Upload too large" msgstr "上傳過大" -#: templates/index.php:102 +#: templates/index.php:88 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "您試圖上傳的檔案大小超過伺服器的限制。" -#: templates/index.php:107 +#: templates/index.php:93 msgid "Files are being scanned, please wait." msgstr "正在掃描檔案,請稍等。" -#: templates/index.php:110 +#: templates/index.php:96 msgid "Current scanning" msgstr "正在掃描" diff --git a/l10n/zh_TW/files_encryption.po b/l10n/zh_TW/files_encryption.po index 2adbae532d964523dadd4a67bf13aea5c5da853b..c61687e7fe8e204ab08056a5d37d75a0b35f52f1 100644 --- a/l10n/zh_TW/files_encryption.po +++ b/l10n/zh_TW/files_encryption.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# akong , 2013 # pellaeon , 2013 # Flymok , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-29 14:08-0500\n" +"PO-Revision-Date: 2013-11-29 19:09+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" @@ -21,21 +22,21 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "" +msgstr "還原金鑰已成功開啟" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "無法啟用還原金鑰。請檢查您的還原金鑰密碼!" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "" +msgstr "還原金鑰已成功停用" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "無法停用還原金鑰。請檢查您的還原金鑰密碼!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." @@ -45,134 +46,159 @@ msgstr "成功變更密碼。" msgid "Could not change the password. Maybe the old password was not correct." msgstr "無法變更密碼,或許是輸入的舊密碼不正確。" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "" +msgstr "私人金鑰密碼已成功更新。" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +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 "您的私人金鑰不正確!可能您的密碼已經變更在外部的 %s (例如:您的企業目錄)。您可以在您的個人設定中更新私人金鑰密碼來還原存取您的加密檔案。" + +#: 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:7 +#: files/error.php:22 files/error.php:27 msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "您的私鑰不正確! 感覺像是密碼在 ownCloud 系統之外被改變(例:您的目錄)。 您可以在個人設定中更新私鑰密碼取回已加密的檔案。" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "未知錯誤請檢查您的系統設定或是聯絡您的管理員" -#: hooks/hooks.php:41 +#: hooks/hooks.php:59 msgid "Missing requirements." -msgstr "" +msgstr "遺失必要條件。" -#: hooks/hooks.php:42 +#: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "請確認已安裝 PHP 5.3.3 或是更新的版本以及 OpenSSL 也一併安裝在 PHP extension 裡面並啟用及設置完成。現在,加密功能是停用的。" -#: hooks/hooks.php:249 +#: hooks/hooks.php:273 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/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "儲存中..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "直接到您的" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" -msgstr "" +msgstr "個人設定" -#: templates/settings-admin.php:5 templates/settings-personal.php:4 +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "加密" -#: templates/settings-admin.php:10 +#: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "啟用還原金鑰 (因忘記密碼仍允許還原使用者檔案):" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:11 msgid "Recovery key password" -msgstr "" +msgstr "還原金鑰密碼" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: 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:62 +#: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" msgstr "已停用" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "變更還原金鑰密碼:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:40 msgid "Old Recovery key password" -msgstr "" +msgstr "舊的還原金鑰密碼" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:47 msgid "New Recovery key password" -msgstr "" +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:11 +#: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "您的私人金鑰密碼不符合您的登入密碼:" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "設定您的舊私人金鑰密碼到您現在的登入密碼。" -#: templates/settings-personal.php:16 +#: 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:24 +#: templates/settings-personal.php:22 msgid "Old log-in password" msgstr "舊登入密碼" -#: templates/settings-personal.php:30 +#: templates/settings-personal.php:28 msgid "Current log-in password" msgstr "目前的登入密碼" -#: templates/settings-personal.php:35 +#: templates/settings-personal.php:33 msgid "Update Private Key Password" -msgstr "" +msgstr "更新私人金鑰密碼" -#: templates/settings-personal.php:45 +#: templates/settings-personal.php:42 msgid "Enable password recovery:" -msgstr "" +msgstr "啟用密碼還原:" -#: templates/settings-personal.php:47 +#: 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 "" +msgstr "啟用這個選項將會允許您因忘記密碼但需要存取您的加密檔案" -#: templates/settings-personal.php:63 +#: templates/settings-personal.php:60 msgid "File recovery settings updated" msgstr "檔案還原設定已更新" -#: templates/settings-personal.php:64 +#: templates/settings-personal.php:61 msgid "Could not update file recovery" msgstr "無法更新檔案還原設定" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 8296c419b966e92ab33c051e8bb79bea873fdd52..16bf6056355a330f0e883ac78f5d0c439467dc65 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "允許存取" @@ -26,7 +26,7 @@ msgstr "允許存取" msgid "Error configuring Dropbox storage" msgstr "設定 Dropbox 儲存時發生錯誤" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "允許存取" @@ -34,24 +34,24 @@ msgstr "允許存取" msgid "Please provide a valid Dropbox app key and secret." msgstr "請提供有效的 Dropbox app key 和 app secret 。" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "設定 Google Drive 儲存時發生錯誤" -#: lib/config.php:447 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "警告:未安裝 \"smbclient\" ,因此無法掛載 CIFS/SMB 分享,請洽您的系統管理員將其安裝。" -#: lib/config.php:450 +#: lib/config.php:465 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "警告:PHP 並未啓用 FTP 的支援,因此無法掛載 FTP 分享,請洽您的系統管理員將其安裝並啓用。" -#: lib/config.php:453 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index c59207bb90f5153f16dd173ed0198a244f376717..a80b4b29c690c3a5302452c092e61cad848ad489 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"PO-Revision-Date: 2013-11-13 16:11+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -19,17 +19,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: 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:7 +#: templates/authenticate.php:10 msgid "Password" msgstr "密碼" -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "送出" - #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." msgstr "抱歉,此連結已經失效" @@ -54,28 +54,32 @@ msgstr "分享功能已停用" msgid "For more info, please ask the person who sent this link." msgstr "請詢問告訴您此連結的人以瞭解更多" -#: templates/public.php:15 +#: templates/public.php:18 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 和您分享了資料夾 %s " -#: templates/public.php:18 +#: templates/public.php:21 #, php-format msgid "%s shared the file %s with you" msgstr "%s 和您分享了檔案 %s" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:29 templates/public.php:95 msgid "Download" msgstr "下載" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:46 templates/public.php:49 msgid "Upload" msgstr "上傳" -#: templates/public.php:56 +#: templates/public.php:59 msgid "Cancel upload" msgstr "取消上傳" -#: templates/public.php:89 +#: templates/public.php:92 msgid "No preview available for" msgstr "無法預覽" + +#: templates/public.php:99 +msgid "Direct link" +msgstr "" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 57f79d287d91d5f7bffa65954787e19fc6c771cd..77074528dd9651b617a1c869403c69c159cd6fc1 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-01 13:27-0400\n" -"PO-Revision-Date: 2013-09-01 13:20+0000\n" -"Last-Translator: pellaeon \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,53 +28,31 @@ msgstr "無法永久刪除 %s" msgid "Couldn't restore %s" msgstr "無法還原 %s" -#: js/trash.js:7 js/trash.js:102 -msgid "perform restore operation" -msgstr "進行還原動作" - -#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 msgid "Error" msgstr "錯誤" -#: js/trash.js:37 -msgid "delete file permanently" -msgstr "永久刪除檔案" - -#: js/trash.js:129 -msgid "Delete permanently" -msgstr "永久刪除" - -#: js/trash.js:184 templates/index.php:17 -msgid "Name" -msgstr "名稱" - -#: js/trash.js:185 templates/index.php:27 -msgid "Deleted" -msgstr "已刪除" - -#: js/trash.js:193 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n 個資料夾" - -#: js/trash.js:199 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n 個檔案" - -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "已還原" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "您的回收桶是空的!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:22 +msgid "Name" +msgstr "名稱" + +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "還原" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:33 +msgid "Deleted" +msgstr "已刪除" + +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "刪除" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 93ad380deccaf74ddc2b3367432b2dad41a69807..00281d2b6d9770e5abf903c1998236d6d2a150de 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+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" @@ -18,314 +18,313 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:243 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "無法安裝應用程式 %s 因為它和此版本的 ownCloud 不相容。" -#: app.php:250 +#: private/app.php:255 msgid "No app name specified" msgstr "沒有指定應用程式名稱" -#: app.php:361 +#: private/app.php:360 msgid "Help" msgstr "說明" -#: app.php:374 +#: private/app.php:373 msgid "Personal" msgstr "個人" -#: app.php:385 +#: private/app.php:384 msgid "Settings" msgstr "設定" -#: app.php:397 +#: private/app.php:396 msgid "Users" msgstr "使用者" -#: app.php:410 +#: private/app.php:409 msgid "Admin" msgstr "管理" -#: app.php:839 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "升級失敗:%s" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "未知的檔案類型" -#: avatar.php:69 +#: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "無效的圖片" -#: defaults.php:35 +#: private/defaults.php:34 msgid "web services under your control" msgstr "由您控制的網路服務" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "無法開啓 %s" -#: files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP 下載已關閉。" -#: files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "檔案需要逐一下載。" -#: files.php:228 files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "回到檔案列表" -#: files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "選擇的檔案太大以致於無法產生壓縮檔。" -#: files.php:254 +#: private/files.php:259 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "以小分割下載您的檔案,請詢問您的系統管理員。" +msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "沒有指定應用程式安裝來源" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "從 http 安裝應用程式,找不到 href 屬性" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "從本地檔案安裝應用程式時沒有指定路徑" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "不支援 %s 格式的壓縮檔" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "安裝應用程式時無法開啓壓縮檔" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "應用程式沒有提供 info.xml 檔案" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "無法安裝應用程式因為在當中找到危險的代碼" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "無法安裝應用程式因為它和此版本的 ownCloud 不相容。" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "無法安裝應用程式,因為它包含了 true 標籤,在未發行的應用程式當中這是不允許的" -#: installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "無法安裝應用程式,因為它在 info.xml/version 宣告的版本與 app store 當中記載的版本不同" -#: installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "應用程式目錄已經存在" -#: installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "無法建立應用程式目錄,請檢查權限:%s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "應用程式未啟用" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "認證錯誤" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token 過期,請重新整理頁面。" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "檔案" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "文字" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "圖片" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s 輸入資料庫使用者名稱。" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s 輸入資料庫名稱。" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s 資料庫名稱不能包含小數點" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL 使用者和/或密碼無效:%s" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: 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 msgid "You need to enter either an existing account or the administrator." msgstr "您必須輸入一個現有的帳號或管理員帳號。" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL 用戶名和/或密碼無效" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: 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 #, php-format msgid "DB Error: \"%s\"" msgstr "資料庫錯誤:\"%s\"" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: 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:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "有問題的指令是:\"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL 使用者 '%s'@'localhost' 已經存在。" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "在 MySQL 移除這個使用者" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL 使用者 '%s'@'%%' 已經存在" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "在 MySQL 移除這個使用者。" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "無法建立 Oracle 資料庫連線" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "Oracle 用戶名和/或密碼無效" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "有問題的指令是:\"%s\" ,使用者:\"%s\",密碼:\"%s\"" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL 用戶名和/或密碼無效" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "設定管理員帳號。" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "設定管理員密碼。" -#: setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。" -#: setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "請參考安裝指南。" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "找不到分類:\"%s\"" + +#: private/template/functions.php:130 msgid "seconds ago" msgstr "幾秒前" -#: template/functions.php:97 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分鐘前" -#: template/functions.php:98 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小時前" -#: template/functions.php:99 +#: private/template/functions.php:133 msgid "today" msgstr "今天" -#: template/functions.php:100 +#: private/template/functions.php:134 msgid "yesterday" msgstr "昨天" -#: template/functions.php:101 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: template/functions.php:102 +#: private/template/functions.php:138 msgid "last month" msgstr "上個月" -#: template/functions.php:103 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 個月前" -#: template/functions.php:104 +#: private/template/functions.php:141 msgid "last year" msgstr "去年" -#: template/functions.php:105 +#: private/template/functions.php:142 msgid "years ago" msgstr "幾年前" - -#: template.php:297 -msgid "Caused by:" -msgstr "原因:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "找不到分類:\"%s\"" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 5c24961e5cb323bf56bf9d2263e11a5ac45e8f2a..05744d16b74a7516bed2983114a6b7aa91ef62c9 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+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" @@ -28,12 +28,12 @@ msgid "Authentication error" msgstr "認證錯誤" #: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "已更改顯示名稱" +msgid "Your full name has been changed." +msgstr "" #: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "無法更改顯示名稱" +msgid "Unable to change full name" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -87,42 +87,42 @@ msgstr "無法更新應用程式" #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "密碼錯誤" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "未提供使用者" #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "請提供管理者還原密碼,否則會遺失所有使用者資料" #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "錯誤的管理者還原密碼" #: changepassword/controller.php:87 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "後端不支援變更密碼,但成功更新使用者的加密金鑰" #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" -msgstr "" +msgstr "無法修改密碼" #: js/apps.js:43 msgid "Update to {appversion}" msgstr "更新至 {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "停用" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "啟用" @@ -130,39 +130,39 @@ msgstr "啟用" msgid "Please wait...." msgstr "請稍候..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "停用應用程式錯誤" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "啓用應用程式錯誤" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "更新中..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "更新應用程式錯誤" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "錯誤" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "更新" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "已更新" #: js/personal.js:220 msgid "Select a profile picture" -msgstr "" +msgstr "選擇大頭貼" -#: js/personal.js:265 +#: js/personal.js:266 msgid "Decrypting files... Please wait, this can take some time." msgstr "檔案解密中,請稍候。" @@ -182,44 +182,75 @@ msgstr "復原" msgid "Unable to remove user" msgstr "無法刪除用戶" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "群組" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "群組管理員" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "刪除" -#: js/users.js:277 +#: js/users.js:284 msgid "add group" msgstr "新增群組" -#: js/users.js:436 +#: js/users.js:451 msgid "A valid username must be provided" msgstr "必須提供一個有效的用戶名" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:452 js/users.js:458 js/users.js:473 msgid "Error creating user" msgstr "建立用戶時出現錯誤" -#: js/users.js:442 +#: js/users.js:457 msgid "A valid password must be provided" msgstr "一定要提供一個有效的密碼" +#: js/users.js:481 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "警告:使用者 {user} 的家目錄已經存在" + #: personal.php:45 personal.php:46 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: 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:22 templates/admin.php:36 msgid "Security Warning" msgstr "安全性警告" -#: templates/admin.php:18 +#: templates/admin.php:25 +#, 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:39 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -228,48 +259,68 @@ msgid "" "root." msgstr "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。" -#: templates/admin.php:29 +#: templates/admin.php:50 msgid "Setup Warning" msgstr "設定警告" -#: templates/admin.php:32 +#: templates/admin.php:53 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:33 +#: templates/admin.php:54 #, php-format msgid "Please double check the installation guides." msgstr "請參考安裝指南。" -#: templates/admin.php:44 +#: templates/admin.php:65 msgid "Module 'fileinfo' missing" msgstr "遺失 'fileinfo' 模組" -#: templates/admin.php:47 +#: templates/admin.php:68 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:58 +#: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +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:93 msgid "Locale not working" msgstr "語系無法運作" -#: templates/admin.php:63 +#: templates/admin.php:98 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:102 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:106 #, php-format msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "ownCloud 伺服器無法將系統語系設為 %s ,可能有一些檔名中的字元有問題,建議您安裝所有所需的套件以支援 %s 。" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "無網際網路存取" -#: templates/admin.php:78 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -278,110 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "這臺 ownCloud 伺服器沒有連接到網際網路,因此有些功能像是掛載外部儲存空間、更新 ownCloud 或應用程式的通知沒有辦法運作。透過網際網路存取檔案還有電子郵件通知可能也無法運作。如果想要 ownCloud 完整的功能,建議您將這臺伺服器連接至網際網路。" -#: templates/admin.php:92 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:99 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "當頁面載入時,執行" -#: templates/admin.php:107 +#: templates/admin.php:150 msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php 已經註冊 webcron 服務,webcron 每分鐘會呼叫 cron.php 一次。" +"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:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "使用系統的 cron 服務來呼叫 cron.php 每分鐘一次。" +#: templates/admin.php:158 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "使用系統的 cron 服務每15分鐘呼叫 cron.php 一次" -#: templates/admin.php:120 +#: templates/admin.php:163 msgid "Sharing" msgstr "分享" -#: templates/admin.php:126 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "啟用分享 API" -#: templates/admin.php:127 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "允許 apps 使用分享 API" -#: templates/admin.php:134 +#: templates/admin.php:177 msgid "Allow links" msgstr "允許連結" -#: templates/admin.php:135 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "允許使用者以結連公開分享檔案" -#: templates/admin.php:143 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "允許任何人上傳" -#: templates/admin.php:144 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "允許使用者將他們公開分享的資料夾設定為「任何人皆可上傳」" -#: templates/admin.php:152 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "允許轉貼分享" -#: templates/admin.php:153 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "允許使用者分享其他使用者分享給他的檔案" -#: templates/admin.php:160 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "允許使用者與任何人分享檔案" -#: templates/admin.php:163 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "僅允許使用者在群組內分享" -#: templates/admin.php:170 +#: templates/admin.php:213 +msgid "Allow mail notification" +msgstr "允許郵件通知" + +#: templates/admin.php:214 +msgid "Allow user to send mail notification for shared files" +msgstr "允許使用者分享檔案時寄出通知郵件" + +#: templates/admin.php:221 msgid "Security" msgstr "安全性" -#: templates/admin.php:183 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "強制啟用 HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "強迫用戶端使用加密連線連接到 %s" -#: templates/admin.php:191 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "請使用 HTTPS 連線到 %s 以啓用或停用強制 SSL 加密。" -#: templates/admin.php:203 +#: templates/admin.php:254 msgid "Log" msgstr "紀錄" -#: templates/admin.php:204 +#: templates/admin.php:255 msgid "Log level" msgstr "紀錄層級" -#: templates/admin.php:235 +#: templates/admin.php:287 msgid "More" msgstr "更多" -#: templates/admin.php:236 +#: templates/admin.php:288 msgid "Less" msgstr "更少" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "版本" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via WebDAV" -msgstr "以上的 WebDAV 位址可以讓您透過 WebDAV 協定存取檔案" +"Use this address to access your Files via " +"WebDAV" +msgstr "使用這個地址來透過 WebDAV 存取檔案" -#: templates/personal.php:138 +#: templates/personal.php:150 msgid "Encryption" msgstr "加密" -#: templates/personal.php:140 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "加密應用程式已經停用,請您解密您所有的檔案" +#: templates/personal.php:152 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" -#: templates/personal.php:146 +#: templates/personal.php:158 msgid "Log-in password" msgstr "登入密碼" -#: templates/personal.php:151 +#: templates/personal.php:163 msgid "Decrypt all Files" msgstr "解密所有檔案" @@ -573,6 +636,10 @@ msgstr "為了修改密碼時能夠取回使用者資料,請輸入另一組還 msgid "Default Storage" msgstr "預設儲存區" +#: templates/users.php:44 templates/users.php:139 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" msgstr "無限制" @@ -590,8 +657,8 @@ msgid "Storage" msgstr "儲存區" #: templates/users.php:108 -msgid "change display name" -msgstr "修改顯示名稱" +msgid "change full name" +msgstr "" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 50beca64ee57462303b741967abc63e8fd033ee8..5eca45754ed553974d68f491eb5edd30cd88a6c7 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" -"Last-Translator: pellaeon \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-12-20 01:55-0500\n" +"PO-Revision-Date: 2013-12-20 06:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,314 +27,423 @@ msgstr "清除映射失敗" msgid "Failed to delete the server configuration" msgstr "刪除伺服器設定時失敗" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "設定有效且連線可建立" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "設定有效但連線無法建立,請檢查伺服器設定與認證資料。" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:46 msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " +"The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "設定無效,更多細節請參閱 ownCloud 的記錄檔。" +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 "" -#: js/settings.js:66 +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 msgid "Deletion failed" msgstr "移除失敗" -#: js/settings.js:82 +#: js/settings.js:83 msgid "Take over settings from recent server configuration?" msgstr "要使用最近一次的伺服器設定嗎?" -#: js/settings.js:83 +#: js/settings.js:84 msgid "Keep settings?" msgstr "維持設定嗎?" -#: js/settings.js:97 +#: js/settings.js:99 msgid "Cannot add server configuration" msgstr "無法新增伺服器設定" -#: js/settings.js:111 +#: js/settings.js:127 msgid "mappings cleared" msgstr "映射已清除" -#: js/settings.js:112 +#: js/settings.js:128 msgid "Success" msgstr "成功" -#: js/settings.js:117 +#: js/settings.js:133 msgid "Error" msgstr "錯誤" -#: js/settings.js:141 +#: js/settings.js:837 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:846 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:855 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:872 js/settings.js:881 +msgid "Select groups" +msgstr "選擇群組" + +#: js/settings.js:875 js/settings.js:884 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:878 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "連線測試成功" -#: js/settings.js:146 +#: js/settings.js:912 msgid "Connection test failed" msgstr "連線測試失敗" -#: js/settings.js:156 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "您真的要刪除現在的伺服器設定嗎?" -#: js/settings.js:157 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "確認刪除" -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" + +#: lib/wizard.php:778 lib/wizard.php:790 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:951 +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 "Limit the access to %s to groups meeting this criteria:" +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/settings.php:12 +#: 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 "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "警告:沒有安裝 PHP LDAP 模組,後端系統將無法運作,請要求您的系統管理員安裝模組。" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "伺服器設定" +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" -#: templates/settings.php:32 +#: templates/part.wizard-loginfilter.php:4 +msgid "What attribute shall be used as login name:" +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/settings.php:37 +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "主機" -#: templates/settings.php:39 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "若您不需要 SSL 加密連線則不需輸入通訊協定,反之請輸入 ldaps://" -#: templates/settings.php:40 -msgid "Base DN" -msgstr "Base DN" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "一行一個 Base DN" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "您可以在進階標籤頁裡面指定使用者及群組的 Base DN" +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "連接埠" -#: templates/settings.php:44 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "User DN" -#: templates/settings.php:46 +#: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "客戶端使用者的DN與特定字詞的連結需要完善,例如:uid=agent,dc=example,dc=com。若是匿名連接,則將DN與密碼欄位留白。" -#: templates/settings.php:47 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "密碼" -#: templates/settings.php:50 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "匿名連接時請將 DN 與密碼欄位留白" -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "一行一個 Base DN" -#: templates/settings.php:54 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "您可以在進階標籤頁裡面指定使用者及群組的 Base DN" + +#: templates/part.wizard-userfilter.php:4 #, php-format -msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" +msgid "Limit the access to %s to users meeting this criteria:" msgstr "" -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "User List Filter" - -#: templates/settings.php:58 +#: templates/part.wizard-userfilter.php:31 +#, php-format msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "Group Filter" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" -#: templates/settings.php:62 +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "返回" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "繼續" + +#: templates/settings.php:11 msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" -#: templates/settings.php:66 +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "警告:沒有安裝 PHP LDAP 模組,後端系統將無法運作,請要求您的系統管理員安裝模組。" + +#: templates/settings.php:20 msgid "Connection Settings" msgstr "連線設定" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "Configuration Active" msgstr "設定使用中" -#: templates/settings.php:68 +#: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." msgstr "沒有被勾選時,此設定會被略過。" -#: templates/settings.php:69 -msgid "Port" -msgstr "連接埠" - -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "Backup (Replica) Host" msgstr "備用主機" -#: templates/settings.php:70 +#: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "可以選擇性設定備用主機,必須是 LDAP/AD 中央伺服器的複本。" -#: templates/settings.php:71 +#: templates/settings.php:24 msgid "Backup (Replica) Port" msgstr "備用(複本)連接埠" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Disable Main Server" msgstr "停用主伺服器" -#: templates/settings.php:72 +#: templates/settings.php:25 msgid "Only connect to the replica server." msgstr "" -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "使用 TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "不要同時與 LDAPS 使用,會有問題。" - -#: templates/settings.php:74 +#: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" msgstr "不區分大小寫的 LDAP 伺服器 (Windows)" -#: templates/settings.php:75 +#: templates/settings.php:27 msgid "Turn off SSL certificate validation." msgstr "關閉 SSL 憑證檢查" -#: templates/settings.php:75 +#: 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:76 +#: templates/settings.php:28 msgid "Cache Time-To-Live" msgstr "快取的存活時間" -#: templates/settings.php:76 +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "以秒為單位。變更後會清空快取。" -#: templates/settings.php:78 +#: templates/settings.php:30 msgid "Directory Settings" msgstr "目錄設定" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "User Display Name Field" msgstr "使用者顯示名稱欄位" -#: templates/settings.php:80 +#: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "Base User Tree" msgstr "Base User Tree" -#: templates/settings.php:81 +#: templates/settings.php:33 msgid "One User Base DN per line" msgstr "一行一個使用者 Base DN" -#: templates/settings.php:82 +#: templates/settings.php:34 msgid "User Search Attributes" msgstr "User Search Attributes" -#: templates/settings.php:82 templates/settings.php:85 +#: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" msgstr "非必要,一行一項屬性" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "Group Display Name Field" msgstr "群組顯示名稱欄位" -#: templates/settings.php:83 +#: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "Base Group Tree" msgstr "Base Group Tree" -#: templates/settings.php:84 +#: templates/settings.php:36 msgid "One Group Base DN per line" msgstr "一行一個 Group Base DN" -#: templates/settings.php:85 +#: templates/settings.php:37 msgid "Group Search Attributes" msgstr "Group Search Attributes" -#: templates/settings.php:86 +#: templates/settings.php:38 msgid "Group-Member association" msgstr "Group-Member association" -#: templates/settings.php:88 +#: templates/settings.php:40 msgid "Special Attributes" msgstr "特殊屬性" -#: templates/settings.php:90 +#: templates/settings.php:42 msgid "Quota Field" msgstr "配額欄位" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "Quota Default" msgstr "預設配額" -#: templates/settings.php:91 +#: templates/settings.php:43 msgid "in bytes" msgstr "以位元組為單位" -#: templates/settings.php:92 +#: templates/settings.php:44 msgid "Email Field" msgstr "電郵欄位" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "User Home Folder Naming Rule" msgstr "使用者家目錄的命名規則" -#: templates/settings.php:93 +#: templates/settings.php:45 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "使用者名稱請留白(預設)。若不留白請指定一個LDAP/AD屬性。" -#: templates/settings.php:98 +#: templates/settings.php:51 msgid "Internal Username" msgstr "內部使用者名稱" -#: templates/settings.php:99 +#: templates/settings.php:52 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 " @@ -350,15 +459,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:53 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:101 +#: templates/settings.php:54 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:102 +#: templates/settings.php:55 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -369,15 +478,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:103 -msgid "UUID Attribute:" +#: templates/settings.php:56 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:104 +#: templates/settings.php:58 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:105 +#: templates/settings.php:59 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. " @@ -391,18 +504,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:106 +#: templates/settings.php:60 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "測試此設定" - -#: templates/settings.php:108 -msgid "Help" -msgstr "說明" diff --git a/l10n/zh_TW/user_webdavauth.po b/l10n/zh_TW/user_webdavauth.po index 88132e1361ff66491d7831c065c8d7f4ea72e991..23fd438ba4a57c7ad869cca2bbf1ad6f2a2991a8 100644 --- a/l10n/zh_TW/user_webdavauth.po +++ b/l10n/zh_TW/user_webdavauth.po @@ -4,6 +4,7 @@ # # Translators: # Hydriz , 2013 +# sy6614 , 2013 # chenanyeh , 2013 # Hydriz , 2013 # pellaeon , 2013 @@ -11,10 +12,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-17 09:30+0000\n" -"Last-Translator: chenanyeh \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-03 12:38-0500\n" +"PO-Revision-Date: 2013-11-03 05:40+0000\n" +"Last-Translator: sy6614 \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,11 +29,11 @@ msgstr "WebDAV 認證" #: templates/settings.php:4 msgid "Address: " -msgstr "為址" +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 "使用者憑證將會被傳送到此位址。此外掛程式將會檢查回應,HTTP statuscodes 401與403將會被理解為無效憑證,而所有其他的回應將會被理解為有效憑證。" +msgstr "使用者憑證將會被傳送到此位址。此外掛程式將會檢查回應,HTTP狀態碼 401與403將會被理解為無效憑證,而所有其他的回應將會被理解為有效憑證。" diff --git a/lib/autoloader.php b/lib/autoloader.php index b5b58918372f563e844851255254b8abc617eeba..3451f799e18eb1b2e0dff099d360e7c516fcadef 100644 --- a/lib/autoloader.php +++ b/lib/autoloader.php @@ -15,6 +15,12 @@ class Autoloader { private $classPaths = array(); + /** + * Optional low-latency memory cache for class to path mapping. + * @var \OC\Memcache\Cache + */ + protected $memoryCache; + /** * Add a custom prefix to the autoloader * @@ -112,44 +118,39 @@ class Autoloader { * @param string $class * @return bool */ - protected $memoryCache = null; - protected $constructingMemoryCache = true; // hack to prevent recursion public function load($class) { - // Does this PHP have an in-memory cache? We cache the paths there - if ($this->constructingMemoryCache && !$this->memoryCache) { - $this->constructingMemoryCache = false; - try { - $this->memoryCache = \OC\Memcache\Factory::createLowLatency('Autoloader'); - } catch(\Exception $ex) { - // no caching then - fine with me - } - } + $pathsToRequire = null; if ($this->memoryCache) { $pathsToRequire = $this->memoryCache->get($class); - if (is_array($pathsToRequire)) { - foreach ($pathsToRequire as $path) { - require_once $path; - } - return false; - } } - // Use the normal class loading path - $paths = $this->findClass($class); - if (is_array($paths)) { + if (!is_array($pathsToRequire)) { + // No cache or cache miss $pathsToRequire = array(); - foreach ($paths as $path) { - if ($fullPath = stream_resolve_include_path($path)) { - require_once $fullPath; + foreach ($this->findClass($class) as $path) { + $fullPath = stream_resolve_include_path($path); + if ($fullPath) { $pathsToRequire[] = $fullPath; } } - // Save in our memory cache if ($this->memoryCache) { $this->memoryCache->set($class, $pathsToRequire, 60); // cache 60 sec } } + + foreach ($pathsToRequire as $fullPath) { + require_once $fullPath; + } + return false; } + + /** + * @brief Sets the optional low-latency cache for class to path mapping. + * @param \OC\Memcache\Cache $memoryCache Instance of memory cache. + */ + public function setMemoryCache(\OC\Memcache\Cache $memoryCache = null) { + $this->memoryCache = $memoryCache; + } } diff --git a/lib/base.php b/lib/base.php index 1246aee8110812c1c3a7ed0f573a5b0e21a605b8..0a890942c3b76a854d284be84c75d618b9314f29 100644 --- a/lib/base.php +++ b/lib/base.php @@ -57,6 +57,9 @@ class OC { * web path in 'url' */ public static $APPSROOTS = array(); + + public static $configDir; + /* * requested app */ @@ -69,8 +72,9 @@ class OC { * check if owncloud runs in cli mode */ public static $CLI = false; - /* - * OC router + + /** + * @var OC_Router */ protected static $router = null; @@ -99,6 +103,13 @@ class OC { get_include_path() ); + if(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/'; + } + OC_Config::$object = new \OC\Config(self::$configDir); + OC::$SUBURI = str_replace("\\", "/", substr(realpath($_SERVER["SCRIPT_FILENAME"]), strlen(OC::$SERVERROOT))); $scriptName = OC_Request::scriptName(); if (substr($scriptName, -1) == '/') { @@ -130,8 +141,8 @@ class OC { OC::$THIRDPARTYROOT = rtrim(dirname(OC::$SERVERROOT), '/'); } else { throw new Exception('3rdparty directory not found! Please put the ownCloud 3rdparty' - .' folder in the ownCloud folder or the folder above.' - .' You can also configure the location in the config.php file.'); + . ' folder in the ownCloud folder or the folder above.' + . ' You can also configure the location in the config.php file.'); } // search the apps folder $config_paths = OC_Config::getValue('apps_paths', array()); @@ -155,7 +166,7 @@ class OC { if (empty(OC::$APPSROOTS)) { throw new Exception('apps directory not found! Please put the ownCloud apps folder in the ownCloud folder' - .' or the folder above. You can also configure the location in the config.php file.'); + . ' or the folder above. You can also configure the location in the config.php file.'); } $paths = array(); foreach (OC::$APPSROOTS as $path) { @@ -174,14 +185,23 @@ class OC { } public static function checkConfig() { - if (file_exists(OC::$SERVERROOT . "/config/config.php") - and !is_writable(OC::$SERVERROOT . "/config/config.php")) { + if (file_exists(self::$configDir . "/config.php") + and !is_writable(self::$configDir . "/config.php") + ) { $defaults = new OC_Defaults(); - OC_Template::printErrorPage( - "Can't write into config directory!", - 'This can usually be fixed by ' - .'giving the webserver write access to the config directory.' - ); + if (self::$CLI) { + echo "Can't write into config directory!\n"; + echo "This can usually be fixed by giving the webserver write access to the config directory\n"; + echo "\n"; + echo "See " . \OC_Helper::linkToDocs('admin-dir_permissions') . "\n"; + exit; + } else { + OC_Template::printErrorPage( + "Can't write into config directory!", + 'This can usually be fixed by ' + . 'giving the webserver write access to the config directory.' + ); + } } } @@ -223,41 +243,73 @@ class OC { header('Retry-After: 120'); // render error page - OC_Template::printErrorPage('ownCloud is in maintenance mode'); + $tmpl = new OC_Template('', 'update.user', 'guest'); + $tmpl->printPage(); + die(); } } - public static function checkUpgrade($showTemplate = true) { + public static function checkSingleUserMode() { + $user = OC_User::getUserSession()->getUser(); + $group = OC_Group::getManager()->get('admin'); + if ($user && OC_Config::getValue('singleuser', false) && !$group->inGroup($user)) { + // send http status 503 + header('HTTP/1.1 503 Service Temporarily Unavailable'); + header('Status: 503 Service Temporarily Unavailable'); + header('Retry-After: 120'); + + // render error page + $tmpl = new OC_Template('', 'singleuser.user', 'guest'); + $tmpl->printPage(); + die(); + } + } + + /** + * check if the instance needs to preform an upgrade + * + * @return bool + */ + public static function needUpgrade() { if (OC_Config::getValue('installed', false)) { $installedVersion = OC_Config::getValue('version', '0.0.0'); $currentVersion = implode('.', OC_Util::getVersion()); - if (version_compare($currentVersion, $installedVersion, '>')) { - if ($showTemplate && !OC_Config::getValue('maintenance', false)) { - OC_Config::setValue('theme', ''); - $minimizerCSS = new OC_Minimizer_CSS(); - $minimizerCSS->clearCache(); - $minimizerJS = new OC_Minimizer_JS(); - $minimizerJS->clearCache(); - OC_Util::addscript('update'); - $tmpl = new OC_Template('', 'update', 'guest'); - $tmpl->assign('version', OC_Util::getVersionString()); - $tmpl->printPage(); - exit(); - } else { - return true; - } - } + return version_compare($currentVersion, $installedVersion, '>'); + } else { return false; } } + public static function checkUpgrade($showTemplate = true) { + if (self::needUpgrade()) { + if ($showTemplate && !OC_Config::getValue('maintenance', false)) { + OC_Config::setValue('theme', ''); + $minimizerCSS = new OC_Minimizer_CSS(); + $minimizerCSS->clearCache(); + $minimizerJS = new OC_Minimizer_JS(); + $minimizerJS->clearCache(); + OC_Util::addScript('config'); // needed for web root + OC_Util::addScript('update'); + $tmpl = new OC_Template('', 'update.admin', 'guest'); + $tmpl->assign('version', OC_Util::getVersionString()); + $tmpl->printPage(); + exit(); + } else { + return true; + } + } + return false; + } + public static function initTemplateEngine() { // Add the stuff we need always + // TODO: read from core/js/core.json OC_Util::addScript("jquery-1.10.0.min"); OC_Util::addScript("jquery-migrate-1.2.1.min"); OC_Util::addScript("jquery-ui-1.10.0.custom"); OC_Util::addScript("jquery-showpassword"); OC_Util::addScript("jquery.infieldlabel"); + OC_Util::addScript("jquery.placeholder"); OC_Util::addScript("jquery-tipsy"); OC_Util::addScript("compatibility"); OC_Util::addScript("jquery.ocdialog"); @@ -280,6 +332,7 @@ class OC { } OC_Util::addStyle("styles"); + OC_Util::addStyle("icons"); OC_Util::addStyle("apps"); OC_Util::addStyle("fixes"); OC_Util::addStyle("multiselect"); @@ -304,15 +357,9 @@ class OC { self::$session = new \OC\Session\Internal(OC_Util::getInstanceId()); // if session cant be started break with http 500 error } catch (Exception $e) { - OC_Log::write('core', 'Session could not be initialized', - OC_Log::ERROR); - - header('HTTP/1.1 500 Internal Server Error'); - OC_Util::addStyle("styles"); - $error = 'Session could not be initialized. Please contact your '; - $error .= 'system administrator'; - - OC_Template::printErrorPage($error); + //show the user a detailed error page + OC_Response::setStatus(OC_Response::STATUS_INTERNAL_SERVER_ERROR); + OC_Template::printExceptionErrorPage($e); } $sessionLifeTime = self::getSessionLifeTime(); @@ -344,6 +391,9 @@ class OC { return OC_Config::getValue('session_lifetime', 60 * 60 * 24); } + /** + * @return OC_Router + */ public static function getRouter() { if (!isset(OC::$router)) { OC::$router = new OC_Router(); @@ -372,8 +422,6 @@ class OC { self::$loader->registerPrefix('Doctrine\\DBAL', 'doctrine/dbal/lib'); self::$loader->registerPrefix('Symfony\\Component\\Routing', 'symfony/routing'); self::$loader->registerPrefix('Symfony\\Component\\Console', 'symfony/console'); - self::$loader->registerPrefix('Sabre\\VObject', '3rdparty'); - self::$loader->registerPrefix('Sabre_', '3rdparty'); self::$loader->registerPrefix('Patchwork', '3rdparty'); spl_autoload_register(array(self::$loader, 'load')); @@ -431,8 +479,22 @@ class OC { } self::initPaths(); + if (OC_Config::getValue('instanceid', false)) { + // \OC\Memcache\Cache has a hidden dependency on + // OC_Util::getInstanceId() for namespacing. See #5409. + try { + self::$loader->setMemoryCache(\OC\Memcache\Factory::createLowLatency('Autoloader')); + } catch (\Exception $ex) { + } + } OC_Util::isSetLocaleWorking(); + // setup 3rdparty autoloader + $vendorAutoLoad = OC::$THIRDPARTYROOT . '/3rdparty/autoload.php'; + if (file_exists($vendorAutoLoad)) { + require_once $vendorAutoLoad; + } + // set debug mode if an xdebug session is active if (!defined('DEBUG') || !DEBUG) { if (isset($_COOKIE['XDEBUG_SESSION'])) { @@ -471,7 +533,14 @@ class OC { $errors = OC_Util::checkServer(); if (count($errors) > 0) { - OC_Template::printGuestPage('', 'error', array('errors' => $errors)); + if (self::$CLI) { + foreach ($errors as $error) { + echo $error['error'] . "\n"; + echo $error['hint'] . "\n\n"; + } + } else { + OC_Template::printGuestPage('', 'error', array('errors' => $errors)); + } exit; } @@ -487,8 +556,13 @@ class OC { OC_User::useBackend(new OC_User_Database()); OC_Group::useBackend(new OC_Group_Database()); - if (isset($_SERVER['PHP_AUTH_USER']) && self::$session->exists('user_id') - && $_SERVER['PHP_AUTH_USER'] != self::$session->get('user_id')) { + if (isset($_SERVER['PHP_AUTH_USER']) && self::$session->exists('loginname') + && $_SERVER['PHP_AUTH_USER'] !== self::$session->get('loginname')) { + $sessionUser = self::$session->get('loginname'); + $serverUser = $_SERVER['PHP_AUTH_USER']; + OC_Log::write('core', + "Session loginname ($sessionUser) doesn't match SERVER[PHP_AUTH_USER] ($serverUser).", + OC_Log::WARN); OC_User::logout(); } @@ -496,7 +570,7 @@ class OC { // This includes plugins for users and filesystems as well global $RUNTIME_NOAPPS; global $RUNTIME_APPTYPES; - if (!$RUNTIME_NOAPPS) { + if (!$RUNTIME_NOAPPS && !self::checkUpgrade(false)) { if ($RUNTIME_APPTYPES) { OC_App::loadApps($RUNTIME_APPTYPES); } else { @@ -545,12 +619,6 @@ class OC { } } - // write error into log if locale can't be set - if (OC_Util::isSetLocaleWorking() == false) { - OC_Log::write('core', - 'setting locale to en_US.UTF-8/en_US.UTF8 failed. Support is probably not installed on your system', - OC_Log::ERROR); - } if (OC_Config::getValue('installed', false) && !self::checkUpgrade(false)) { if (OC_Appconfig::getValue('core', 'backgroundjobs_mode', 'ajax') == 'ajax') { OC_Util::addScript('backgroundjobs'); @@ -562,13 +630,9 @@ class OC { * register hooks for the cache */ public static function registerCacheHooks() { - if (OC_Config::getValue('installed', false)) { //don't try to do this before we are properly setup - // register cache cleanup jobs - try { //if this is executed before the upgrade to the new backgroundjob system is completed it will throw an exception - \OCP\BackgroundJob::registerJob('OC\Cache\FileGlobalGC'); - } catch (Exception $e) { + if (OC_Config::getValue('installed', false) && !self::needUpgrade()) { //don't try to do this before we are properly setup + \OCP\BackgroundJob::registerJob('OC\Cache\FileGlobalGC'); - } // NOTE: This will be replaced to use OCP $userSession = \OC_User::getUserSession(); $userSession->listen('postLogin', '\OC\Cache\File', 'loginListener'); @@ -579,14 +643,9 @@ class OC { * register hooks for the cache */ public static function registerLogRotate() { - if (OC_Config::getValue('installed', false) && OC_Config::getValue('log_rotate_size', false)) { + if (OC_Config::getValue('installed', false) && OC_Config::getValue('log_rotate_size', false) && !self::needUpgrade()) { //don't try to do this before we are properly setup - // register cache cleanup jobs - try { //if this is executed before the upgrade to the new backgroundjob system is completed it will throw an exception - \OCP\BackgroundJob::registerJob('OC\Log\Rotate', OC_Config::getValue("datadirectory", OC::$SERVERROOT.'/data').'/owncloud.log'); - } catch (Exception $e) { - - } + \OCP\BackgroundJob::registerJob('OC\Log\Rotate', OC_Config::getValue("datadirectory", OC::$SERVERROOT . '/data') . '/owncloud.log'); } } @@ -605,13 +664,15 @@ class OC { public static function registerPreviewHooks() { OC_Hook::connect('OC_Filesystem', 'post_write', 'OC\Preview', 'post_write'); OC_Hook::connect('OC_Filesystem', 'delete', 'OC\Preview', 'post_delete'); + OC_Hook::connect('\OCP\Versions', 'delete', 'OC\Preview', 'post_delete'); + OC_Hook::connect('\OCP\Trashbin', 'delete', 'OC\Preview', 'post_delete'); } /** * register hooks for sharing */ public static function registerShareHooks() { - if(\OC_Config::getValue('installed')) { + 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'); @@ -635,7 +696,7 @@ class OC { } $request = OC_Request::getPathInfo(); - if(substr($request, -3) !== '.js') {// we need these files during the upgrade + if (substr($request, -3) !== '.js') { // we need these files during the upgrade self::checkMaintenanceMode(); self::checkUpgrade(); } @@ -643,11 +704,12 @@ class OC { // Test it the user is already authenticated using Apaches AuthType Basic... very usable in combination with LDAP OC::tryBasicAuthLogin(); - if (!self::$CLI) { + if (!self::$CLI and (!isset($_GET["logout"]) or ($_GET["logout"] !== 'true'))) { try { if (!OC_Config::getValue('maintenance', false)) { OC_App::loadApps(); } + self::checkSingleUserMode(); OC::getRouter()->match(OC_Request::getRawPathInfo()); return; } catch (Symfony\Component\Routing\Exception\ResourceNotFoundException $e) { @@ -680,7 +742,11 @@ class OC { } // Handle WebDAV if ($_SERVER['REQUEST_METHOD'] == 'PROPFIND') { - header('location: ' . OC_Helper::linkToRemote('webdav')); + // not allowed any more to prevent people + // mounting this root directly. + // Users need to mount remote.php/webdav instead. + header('HTTP/1.1 405 Method Not Allowed'); + header('Status: 405 Method Not Allowed'); return; } @@ -744,12 +810,23 @@ class OC { protected static function handleLogin() { OC_App::loadApps(array('prelogin')); $error = array(); - // remember was checked after last login - if (OC::tryRememberLogin()) { + + // auth possible via apache module? + if (OC::tryApacheAuth()) { + $error[] = 'apacheauthfailed'; + } // remember was checked after last login + elseif (OC::tryRememberLogin()) { $error[] = 'invalidcookie'; - // Someone wants to log in : - } elseif (OC::tryFormLogin()) { + } // logon via web form + elseif (OC::tryFormLogin()) { $error[] = 'invalidpassword'; + if ( OC_Config::getValue('log_authfailip', false) ) { + OC_Log::write('core', 'Login failed: user \''.$_POST["user"].'\' , wrong password, IP:'.$_SERVER['REMOTE_ADDR'], + OC_Log::WARN); + } else { + OC_Log::write('core', 'Login failed: user \''.$_POST["user"].'\' , wrong password, IP:set log_authfailip=true in conf', + OC_Log::WARN); + } } OC_Util::displayLoginPage(array_unique($error)); @@ -766,6 +843,20 @@ class OC { } } + protected static function tryApacheAuth() { + $return = OC_User::handleApacheAuth(); + + // if return is true we are logged in -> redirect to the default page + if ($return === true) { + $_REQUEST['redirect_url'] = \OC_Request::requestUri(); + OC_Util::redirectToDefaultPage(); + exit; + } + + // in case $return is null apache based auth is not enabled + return is_null($return) ? false : true; + } + protected static function tryRememberLogin() { if (!isset($_COOKIE["oc_remember_login"]) || !isset($_COOKIE["oc_token"]) diff --git a/lib/private/l10n/ach.php b/lib/l10n/ach.php similarity index 100% rename from lib/private/l10n/ach.php rename to lib/l10n/ach.php diff --git a/lib/private/l10n/de_AT.php b/lib/l10n/ady.php similarity index 100% rename from lib/private/l10n/de_AT.php rename to lib/l10n/ady.php diff --git a/lib/private/l10n/es_MX.php b/lib/l10n/af.php similarity index 100% rename from lib/private/l10n/es_MX.php rename to lib/l10n/af.php diff --git a/lib/private/l10n/af_ZA.php b/lib/l10n/af_ZA.php similarity index 100% rename from lib/private/l10n/af_ZA.php rename to lib/l10n/af_ZA.php diff --git a/lib/l10n/ak.php b/lib/l10n/ak.php new file mode 100644 index 0000000000000000000000000000000000000000..4124ad0d88008cb519dd9be3e3c3babdab0be4e4 --- /dev/null +++ b/lib/l10n/ak.php @@ -0,0 +1,8 @@ + 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/private/l10n/ar.php b/lib/l10n/ar.php similarity index 98% rename from lib/private/l10n/ar.php rename to lib/l10n/ar.php index f626dcdfda6213e0238670a5d1a023fbc1ea7646..6870c549940a8183dda5a63c8ae4f6a83958693e 100644 --- a/lib/private/l10n/ar.php +++ b/lib/l10n/ar.php @@ -35,6 +35,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 installation guides." => "الرجاء التحقق من دليل التنصيب.", +"Could not find category \"%s\"" => "تعذر العثور على المجلد \"%s\"", "seconds ago" => "منذ ثواني", "_%n minute ago_::_%n minutes ago_" => array("","","","","",""), "_%n hour ago_::_%n hours ago_" => array("","","","","",""), @@ -44,7 +45,6 @@ $TRANSLATIONS = array( "last month" => "الشهر الماضي", "_%n month ago_::_%n months ago_" => array("","","","","",""), "last year" => "السنةالماضية", -"years ago" => "سنة مضت", -"Could not find category \"%s\"" => "تعذر العثور على المجلد \"%s\"" +"years ago" => "سنة مضت" ); $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/lib/private/l10n/km.php b/lib/l10n/az.php similarity index 100% rename from lib/private/l10n/km.php rename to lib/l10n/az.php diff --git a/lib/private/l10n/be.php b/lib/l10n/be.php similarity index 50% rename from lib/private/l10n/be.php rename to lib/l10n/be.php index 1570411eb8630b92fbeaef1c55fe0a5183d450ad..b1cf270aba25b642f848263d7543e58542cb37be 100644 --- a/lib/private/l10n/be.php +++ b/lib/l10n/be.php @@ -1,8 +1,15 @@ "Налады", +"seconds ago" => "Секунд таму", "_%n minute ago_::_%n minutes ago_" => array("","","",""), "_%n hour ago_::_%n hours ago_" => array("","","",""), +"today" => "Сёння", +"yesterday" => "Ўчора", "_%n day go_::_%n days ago_" => array("","","",""), -"_%n month ago_::_%n months ago_" => array("","","","") +"last month" => "У мінулым месяцы", +"_%n month ago_::_%n months ago_" => array("","","",""), +"last year" => "У мінулым годзе", +"years ago" => "Гадоў таму" ); $PLURAL_FORMS = "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/private/l10n/bg_BG.php b/lib/l10n/bg_BG.php similarity index 97% rename from lib/private/l10n/bg_BG.php rename to lib/l10n/bg_BG.php index b6cc949eb8a645b3b6c1904eeda2113a7303d8d7..c9de3d64d890e3add68517fc8a0343633da5405d 100644 --- a/lib/private/l10n/bg_BG.php +++ b/lib/l10n/bg_BG.php @@ -36,6 +36,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." => "Вашият web сървър все още не е удачно настроен да позволява синхронизация на файлове, защото WebDAV интерфейсът изглежда не работи.", "Please double check the installation guides." => "Моля направете повторна справка с ръководството за инсталиране.", +"Could not find category \"%s\"" => "Невъзможно откриване на категорията \"%s\"", "seconds ago" => "преди секунди", "_%n minute ago_::_%n minutes ago_" => array("",""), "_%n hour ago_::_%n hours ago_" => array("",""), @@ -45,7 +46,6 @@ $TRANSLATIONS = array( "last month" => "последният месец", "_%n month ago_::_%n months ago_" => array("",""), "last year" => "последната година", -"years ago" => "последните години", -"Could not find category \"%s\"" => "Невъзможно откриване на категорията \"%s\"" +"years ago" => "последните години" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/bn_BD.php b/lib/l10n/bn_BD.php similarity index 100% rename from lib/private/l10n/bn_BD.php rename to lib/l10n/bn_BD.php diff --git a/lib/private/l10n/bs.php b/lib/l10n/bs.php similarity index 100% rename from lib/private/l10n/bs.php rename to lib/l10n/bs.php diff --git a/lib/private/l10n/ca.php b/lib/l10n/ca.php similarity index 93% rename from lib/private/l10n/ca.php rename to lib/l10n/ca.php index a8769224705c72faad677e15f27c1b5004939d4b..4755392d2717851b89a45932496e1532a2c1f103 100644 --- a/lib/private/l10n/ca.php +++ b/lib/l10n/ca.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Usuaris", "Admin" => "Administració", "Failed to upgrade \"%s\"." => "Ha fallat l'actualització \"%s\".", -"Custom profile pictures don't work with encryption yet" => "Les imatges de perfil personals encara no funcionen amb encriptació", "Unknown filetype" => "Tipus de fitxer desconegut", "Invalid image" => "Imatge no vàlida", "web services under your control" => "controleu els vostres serveis web", @@ -17,7 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Els fitxers s'han de baixar d'un en un.", "Back to Files" => "Torna a Fitxers", "Selected files too large to generate zip file." => "Els fitxers seleccionats son massa grans per generar un fitxer zip.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Baixeu els fitxers en trossos petits, de forma separada, o pregunteu a l'administrador.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Baixeu els fitxers separadament en petits trossos o pregunteu a l'administrador.", "No source specified when installing app" => "No heu especificat la font en instal·lar l'aplicació", "No href specified when installing app from http" => "No heu especificat href en instal·lar l'aplicació des de http", "No path specified when installing app from local file" => "No heu seleccionat el camí en instal·lar una aplicació des d'un fitxer local", @@ -56,6 +55,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Establiu una contrasenya per l'administrador.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament.", "Please double check the installation guides." => "Comproveu les guies d'instal·lació.", +"Could not find category \"%s\"" => "No s'ha trobat la categoria \"%s\"", "seconds ago" => "segons enrere", "_%n minute ago_::_%n minutes ago_" => array("fa %n minut","fa %n minuts"), "_%n hour ago_::_%n hours ago_" => array("fa %n hora","fa %n hores"), @@ -65,8 +65,6 @@ $TRANSLATIONS = array( "last month" => "el mes passat", "_%n month ago_::_%n months ago_" => array("fa %n mes","fa %n mesos"), "last year" => "l'any passat", -"years ago" => "anys enrere", -"Caused by:" => "Provocat per:", -"Could not find category \"%s\"" => "No s'ha trobat la categoria \"%s\"" +"years ago" => "anys enrere" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php similarity index 93% rename from lib/private/l10n/cs_CZ.php rename to lib/l10n/cs_CZ.php index ed31ae795298eed30cd0bbde520730dd46563862..df3a47b5ae3763d64011ab96cdc094c77f6dc116 100644 --- a/lib/private/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Uživatelé", "Admin" => "Administrace", "Failed to upgrade \"%s\"." => "Selhala aktualizace verze \"%s\".", -"Custom profile pictures don't work with encryption yet" => "Vlastní profilové obrázky zatím nefungují v kombinaci se šifrováním", "Unknown filetype" => "Neznámý typ souboru", "Invalid image" => "Chybný obrázek", "web services under your control" => "webové služby pod Vaší kontrolou", @@ -17,7 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Soubory musí být stahovány jednotlivě.", "Back to Files" => "Zpět k souborům", "Selected files too large to generate zip file." => "Vybrané soubory jsou příliš velké pro vytvoření ZIP souboru.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Stáhněte soubory po menších částech, samostatně, nebo se obraťte na správce.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Prosím stáhněte soubory odděleně po menších množstvích nebo požádejte vašeho správce.", "No source specified when installing app" => "Nebyl zadán zdroj při instalaci aplikace", "No href specified when installing app from http" => "Nebyl zadán odkaz pro instalaci aplikace z HTTP", "No path specified when installing app from local file" => "Nebyla zadána cesta pro instalaci aplikace z místního souboru", @@ -56,6 +55,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Zadejte heslo správce.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Váš webový server není správně nastaven pro umožnění synchronizace, rozhraní WebDAV se zdá být rozbité.", "Please double check the installation guides." => "Zkonzultujte, prosím, průvodce instalací.", +"Could not find category \"%s\"" => "Nelze nalézt kategorii \"%s\"", "seconds ago" => "před pár sekundami", "_%n minute ago_::_%n minutes ago_" => array("před %n minutou","před %n minutami","před %n minutami"), "_%n hour ago_::_%n hours ago_" => array("před %n hodinou","před %n hodinami","před %n hodinami"), @@ -65,8 +65,6 @@ $TRANSLATIONS = array( "last month" => "minulý měsíc", "_%n month ago_::_%n months ago_" => array("před %n měsícem","před %n měsíci","před %n měsíci"), "last year" => "minulý rok", -"years ago" => "před lety", -"Caused by:" => "Příčina:", -"Could not find category \"%s\"" => "Nelze nalézt kategorii \"%s\"" +"years ago" => "před lety" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/lib/private/l10n/cy_GB.php b/lib/l10n/cy_GB.php similarity index 98% rename from lib/private/l10n/cy_GB.php rename to lib/l10n/cy_GB.php index 6973b51878f8074c506022c7876a423e48f0c45e..0a52f5df77698abc2953b8535d42507b118d4f7a 100644 --- a/lib/private/l10n/cy_GB.php +++ b/lib/l10n/cy_GB.php @@ -35,6 +35,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Gosod cyfrinair y gweinyddwr.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri.", "Please double check the installation guides." => "Gwiriwch y canllawiau gosod eto.", +"Could not find category \"%s\"" => "Methu canfod categori \"%s\"", "seconds ago" => "eiliad yn ôl", "_%n minute ago_::_%n minutes ago_" => array("","","",""), "_%n hour ago_::_%n hours ago_" => array("","","",""), @@ -44,7 +45,6 @@ $TRANSLATIONS = array( "last month" => "mis diwethaf", "_%n month ago_::_%n months ago_" => array("","","",""), "last year" => "y llynedd", -"years ago" => "blwyddyn yn ôl", -"Could not find category \"%s\"" => "Methu canfod categori \"%s\"" +"years ago" => "blwyddyn yn ôl" ); $PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; diff --git a/lib/private/l10n/da.php b/lib/l10n/da.php similarity index 93% rename from lib/private/l10n/da.php rename to lib/l10n/da.php index 05a43f42ed93a3aa4020263893f423ed07b5aaae..65eb7466b6a25ef1754559df3dc5770742070508 100644 --- a/lib/private/l10n/da.php +++ b/lib/l10n/da.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Brugere", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Upgradering af \"%s\" fejlede", -"Custom profile pictures don't work with encryption yet" => "Personligt profilbillede virker endnu ikke sammen med kryptering", "Unknown filetype" => "Ukendt filtype", "Invalid image" => "Ugyldigt billede", "web services under your control" => "Webtjenester under din kontrol", @@ -17,7 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Filer skal downloades en for en.", "Back to Files" => "Tilbage til Filer", "Selected files too large to generate zip file." => "De markerede filer er for store til at generere en ZIP-fil.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Download filerne i små bider, seperat, eller kontakt venligst din administrator.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Hent venligst filerne hver for sig i mindre dele eller spørg din administrator.", "No source specified when installing app" => "Ingen kilde angivet under installation af app", "No href specified when installing app from http" => "Ingen href angivet under installation af app via http", "No path specified when installing app from local file" => "Ingen sti angivet under installation af app fra lokal fil", @@ -56,6 +55,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Angiv et admin kodeord.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt.", "Please double check the installation guides." => "Dobbelttjek venligst installations vejledningerne.", +"Could not find category \"%s\"" => "Kunne ikke finde kategorien \"%s\"", "seconds ago" => "sekunder siden", "_%n minute ago_::_%n minutes ago_" => array("%n minut siden","%n minutter siden"), "_%n hour ago_::_%n hours ago_" => array("%n time siden","%n timer siden"), @@ -65,8 +65,6 @@ $TRANSLATIONS = array( "last month" => "sidste måned", "_%n month ago_::_%n months ago_" => array("%n måned siden","%n måneder siden"), "last year" => "sidste år", -"years ago" => "år siden", -"Caused by:" => "Forårsaget af:", -"Could not find category \"%s\"" => "Kunne ikke finde kategorien \"%s\"" +"years ago" => "år siden" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/de.php b/lib/l10n/de.php similarity index 83% rename from lib/private/l10n/de.php rename to lib/l10n/de.php index 87e7a67b47bc0ca5edeb7bff110d9175618e1cd1..b1045892fb1fcbf1cfa1b4d0e10c502c52a3dff2 100644 --- a/lib/private/l10n/de.php +++ b/lib/l10n/de.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Benutzer", "Admin" => "Administration", "Failed to upgrade \"%s\"." => "Konnte \"%s\" nicht aktualisieren.", -"Custom profile pictures don't work with encryption yet" => "Individuelle Profilbilder werden noch nicht von der Verschlüsselung unterstützt", "Unknown filetype" => "Unbekannter Dateityp", "Invalid image" => "Ungültiges Bild", "web services under your control" => "Web-Services unter Deiner Kontrolle", @@ -17,19 +16,19 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Die Dateien müssen einzeln heruntergeladen werden.", "Back to Files" => "Zurück zu \"Dateien\"", "Selected files too large to generate zip file." => "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Lade die Dateien in kleineren, separaten, Stücken herunter oder bitte deinen Administrator.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Bitte lade die Dateien einzeln in kleineren Teilen herunter oder bitte Deinen Administrator.", "No source specified when installing app" => "Für die Installation der Applikation wurde keine Quelle angegeben", -"No href specified when installing app from http" => "Der Link (href) wurde nicht angegeben um die Applikation per http zu installieren", +"No href specified when installing app from http" => "Für die Installation der Applikation über http wurde keine Quelle (href) angegeben", "No path specified when installing app from local file" => "Bei der Installation der Applikation aus einer lokalen Datei wurde kein Pfad angegeben", "Archives of type %s are not supported" => "Archive vom Typ %s werden nicht unterstützt", "Failed to open archive when installing app" => "Das Archiv konnte bei der Installation der Applikation nicht geöffnet werden", "App does not provide an info.xml file" => "Die Applikation enthält keine info,xml Datei", -"App can't be installed because of not allowed code in the App" => "Die Applikation kann auf Grund von unerlaubten Code nicht installiert werden", +"App can't be installed because of not allowed code in the App" => "Die Applikation kann auf Grund von unerlaubtem Code nicht installiert werden", "App can't be installed because it is not compatible with this version of ownCloud" => "Die Anwendung konnte nicht installiert werden, weil Sie nicht mit dieser Version von ownCloud kompatibel ist.", -"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "Die Applikation konnte nicht installiert werden, da diese das true Tag beinhaltet und dieses, bei nicht mitausgelieferten Applikationen, nicht erlaubt ist ist", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "Die Applikation konnte nicht installiert werden, da diese das true Tag beinhaltet und dieses, bei nicht mitausgelieferten Applikationen, nicht erlaubt ist", "App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Die Applikation konnte nicht installiert werden, da die Version in der info.xml nicht die gleiche Version wie im App-Store ist", "App directory already exists" => "Das Applikationsverzeichnis existiert bereits", -"Can't create app folder. Please fix permissions. %s" => "Es kann kein Applikationsordner erstellt werden. Bitte passen sie die Berechtigungen an. %s", +"Can't create app folder. Please fix permissions. %s" => "Es kann kein Applikationsordner erstellt werden. Bitte passe die Berechtigungen an. %s", "Application is not enabled" => "Die Anwendung ist nicht aktiviert", "Authentication error" => "Fehler bei der Anmeldung", "Token expired. Please reload page." => "Token abgelaufen. Bitte lade die Seite neu.", @@ -56,17 +55,16 @@ $TRANSLATIONS = array( "Set an admin password." => "Setze Administrator Passwort", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist.", "Please double check the installation guides." => "Bitte prüfe die Installationsanleitungen.", +"Could not find category \"%s\"" => "Die Kategorie \"%s\" konnte nicht gefunden werden.", "seconds ago" => "Gerade eben", -"_%n minute ago_::_%n minutes ago_" => array("","Vor %n Minuten"), -"_%n hour ago_::_%n hours ago_" => array("","Vor %n Stunden"), +"_%n minute ago_::_%n minutes ago_" => array("Vor %n Minute","Vor %n Minuten"), +"_%n hour ago_::_%n hours ago_" => array("Vor %n Stunde","Vor %n Stunden"), "today" => "Heute", "yesterday" => "Gestern", -"_%n day go_::_%n days ago_" => array("","Vor %n Tagen"), +"_%n day go_::_%n days ago_" => array("Vor %n Tag","Vor %n Tagen"), "last month" => "Letzten Monat", -"_%n month ago_::_%n months ago_" => array("","Vor %n Monaten"), +"_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), "last year" => "Letztes Jahr", -"years ago" => "Vor Jahren", -"Caused by:" => "Verursacht durch:", -"Could not find category \"%s\"" => "Die Kategorie \"%s\" konnte nicht gefunden werden." +"years ago" => "Vor Jahren" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/hy.php b/lib/l10n/de_AT.php similarity index 100% rename from lib/private/l10n/hy.php rename to lib/l10n/de_AT.php diff --git a/lib/private/l10n/de_CH.php b/lib/l10n/de_CH.php similarity index 93% rename from lib/private/l10n/de_CH.php rename to lib/l10n/de_CH.php index 33f3446a693192337a4ed70861f236509ac5c54c..7325aad931ec16c55cd1939c5ef36f7c7cccfdcf 100644 --- a/lib/private/l10n/de_CH.php +++ b/lib/l10n/de_CH.php @@ -14,7 +14,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Die Dateien müssen einzeln heruntergeladen werden.", "Back to Files" => "Zurück zu \"Dateien\"", "Selected files too large to generate zip file." => "Die gewählten Dateien sind zu gross, um eine ZIP-Datei zu erstellen.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Laden Sie die Dateien in kleineren, separaten, Stücken herunter oder bitten Sie Ihren Administrator.", "App can't be installed because of not allowed code in the App" => "Anwendung kann wegen nicht erlaubten Codes nicht installiert werden", "App directory already exists" => "Anwendungsverzeichnis existiert bereits", "Application is not enabled" => "Die Anwendung ist nicht aktiviert", @@ -43,6 +42,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Setze Administrator Passwort", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist.", "Please double check the installation guides." => "Bitte prüfen Sie die Installationsanleitungen.", +"Could not find category \"%s\"" => "Die Kategorie «%s» konnte nicht gefunden werden.", "seconds ago" => "Gerade eben", "_%n minute ago_::_%n minutes ago_" => array("","Vor %n Minuten"), "_%n hour ago_::_%n hours ago_" => array("","Vor %n Stunden"), @@ -52,8 +52,6 @@ $TRANSLATIONS = array( "last month" => "Letzten Monat", "_%n month ago_::_%n months ago_" => array("","Vor %n Monaten"), "last year" => "Letztes Jahr", -"years ago" => "Vor Jahren", -"Caused by:" => "Verursacht durch:", -"Could not find category \"%s\"" => "Die Kategorie «%s» konnte nicht gefunden werden." +"years ago" => "Vor Jahren" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/de_DE.php b/lib/l10n/de_DE.php similarity index 93% rename from lib/private/l10n/de_DE.php rename to lib/l10n/de_DE.php index 09be0eea22de34f7fb9a0cb64576de4442a6d322..1a1c9783f4218153d86d21c67d95ae136870d96a 100644 --- a/lib/private/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Benutzer", "Admin" => "Administrator", "Failed to upgrade \"%s\"." => "Konnte \"%s\" nicht aktualisieren.", -"Custom profile pictures don't work with encryption yet" => "Individuelle Profilbilder werden noch nicht von der Verschlüsselung unterstützt", "Unknown filetype" => "Unbekannter Dateityp", "Invalid image" => "Ungültiges Bild", "web services under your control" => "Web-Services unter Ihrer Kontrolle", @@ -17,7 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Die Dateien müssen einzeln heruntergeladen werden.", "Back to Files" => "Zurück zu \"Dateien\"", "Selected files too large to generate zip file." => "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Laden Sie die Dateien in kleineren, separaten, Stücken herunter oder bitten Sie Ihren Administrator.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Bitte laden Sie die Dateien einzeln in kleineren Teilen herunter oder bitten Sie Ihren Administrator.", "No source specified when installing app" => "Für die Installation der Applikation wurde keine Quelle angegeben", "No href specified when installing app from http" => "Der Link (href) wurde nicht angegeben um die Applikation per http zu installieren", "No path specified when installing app from local file" => "Bei der Installation der Applikation aus einer lokalen Datei wurde kein Pfad angegeben", @@ -56,6 +55,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Setze Administrator Passwort", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist.", "Please double check the installation guides." => "Bitte prüfen Sie die Installationsanleitungen.", +"Could not find category \"%s\"" => "Die Kategorie \"%s\" konnte nicht gefunden werden.", "seconds ago" => "Gerade eben", "_%n minute ago_::_%n minutes ago_" => array("Vor %n Minute","Vor %n Minuten"), "_%n hour ago_::_%n hours ago_" => array("Vor %n Stunde","Vor %n Stunden"), @@ -65,8 +65,6 @@ $TRANSLATIONS = array( "last month" => "Letzten Monat", "_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), "last year" => "Letztes Jahr", -"years ago" => "Vor Jahren", -"Caused by:" => "Verursacht durch:", -"Could not find category \"%s\"" => "Die Kategorie \"%s\" konnte nicht gefunden werden." +"years ago" => "Vor Jahren" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/el.php b/lib/l10n/el.php similarity index 57% rename from lib/private/l10n/el.php rename to lib/l10n/el.php index dcbf82d4a4bccf3b231ce7c30bfb8d199b84f331..7f7797bbc7aa850728e37850ab1bea2e8eb55d54 100644 --- a/lib/private/l10n/el.php +++ b/lib/l10n/el.php @@ -1,18 +1,33 @@ "Η εφαρμογή \"%s\" δεν μπορεί να εγκατασταθεί επειδή δεν είναι συμβατή με αυτή την έκδοση του ownCloud.", +"No app name specified" => "Δεν προδιορίστηκε όνομα εφαρμογής", "Help" => "Βοήθεια", "Personal" => "Προσωπικά", "Settings" => "Ρυθμίσεις", "Users" => "Χρήστες", "Admin" => "Διαχειριστής", "Failed to upgrade \"%s\"." => "Αποτυχία αναβάθμισης του \"%s\".", +"Unknown filetype" => "Άγνωστος τύπος αρχείου", +"Invalid image" => "Μη έγκυρη εικόνα", "web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας", "cannot open \"%s\"" => "αδυναμία ανοίγματος \"%s\"", "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.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Λήψη των αρχείων σε μικρότερα κομμάτια, χωριστά ή ρωτήστε τον διαχειριστή σας.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Παρακαλώ κάντε λήψη των αρχείων σε μικρότερα κομμάτια ή ζητήστε το από το διαχειριστή σας.", +"No source specified when installing app" => "Δεν προσδιορίστηκε πηγή κατά την εγκατάσταση της εφαρμογής", +"No href specified when installing app from http" => "Δεν προσδιορίστηκε href κατά την εγκατάσταση της εφαρμογής μέσω http ", +"No path specified when installing app from local file" => "Δεν προσδιορίστηκε μονοπάτι κατά την εγκατάσταση εφαρμογής από τοπικό αρχείο", +"Archives of type %s are not supported" => "Συλλογές αρχείων τύπου %s δεν υποστηρίζονται", +"Failed to open archive when installing app" => "Αποτυχία ανοίγματος συλλογής αρχείων κατά την εγκατάσταση εφαρμογής", +"App does not provide an info.xml file" => "Η εφαρμογή δεν παρέχει αρχείο info.xml", +"App can't be installed because of not allowed code in the App" => "Η εφαρμογή δεν μπορεί να εγκατασταθεί λόγω μη-επιτρεπόμενου κώδικα μέσα στην Εφαρμογή", +"App can't be installed because it is not compatible with this version of ownCloud" => "Η εφαρμογή δεν μπορεί να εγκατασταθεί επειδή δεν είναι συμβατή με αυτή την έκδοση ownCloud", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Η εφαρμογή δεν μπορεί να εγκατασταθεί επειδή η έκδοση στο info.xml/version δεν είναι η ίδια με την έκδοση που αναφέρεται στο κατάστημα εφαρμογών", +"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." => "Το αναγνωριστικό έληξε. Παρακαλώ φορτώστε ξανά την σελίδα.", @@ -39,17 +54,16 @@ $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 installation guides." => "Ελέγξτε ξανά τις οδηγίες εγκατάστασης.", +"Could not find category \"%s\"" => "Αδυναμία εύρεσης κατηγορίας \"%s\"", "seconds ago" => "δευτερόλεπτα πριν", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n minute ago_::_%n minutes ago_" => array("","%n λεπτά πριν"), +"_%n hour ago_::_%n hours ago_" => array("","%n ώρες πριν"), "today" => "σήμερα", "yesterday" => "χτες", -"_%n day go_::_%n days ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("","%n ημέρες πριν"), "last month" => "τελευταίο μήνα", -"_%n month ago_::_%n months ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","%n μήνες πριν"), "last year" => "τελευταίο χρόνο", -"years ago" => "χρόνια πριν", -"Caused by:" => "Προκλήθηκε από:", -"Could not find category \"%s\"" => "Αδυναμία εύρεσης κατηγορίας \"%s\"" +"years ago" => "χρόνια πριν" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/en@pirate.php b/lib/l10n/en@pirate.php similarity index 100% rename from lib/private/l10n/en@pirate.php rename to lib/l10n/en@pirate.php diff --git a/lib/private/l10n/en_GB.php b/lib/l10n/en_GB.php similarity index 93% rename from lib/private/l10n/en_GB.php rename to lib/l10n/en_GB.php index d02f553eda8e08f415d4bcc499b89b5855517414..e2e8ee2e54116a61f673e3572d1e41ff9f1037ab 100644 --- a/lib/private/l10n/en_GB.php +++ b/lib/l10n/en_GB.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Users", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Failed to upgrade \"%s\".", -"Custom profile pictures don't work with encryption yet" => "Custom profile pictures don't work with encryption yet", "Unknown filetype" => "Unknown filetype", "Invalid image" => "Invalid image", "web services under your control" => "web services under your control", @@ -17,7 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Files need to be downloaded one by one.", "Back to Files" => "Back to Files", "Selected files too large to generate zip file." => "Selected files too large to generate zip file.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Download the files in smaller chunks, seperately or kindly ask your administrator.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Please download the files separately in smaller chunks or kindly ask your administrator.", "No source specified when installing app" => "No source specified when installing app", "No href specified when installing app from http" => "No href specified when installing app from http", "No path specified when installing app from local file" => "No path specified when installing app from local file", @@ -56,6 +55,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Set an admin password.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Your web server is not yet properly setup to allow files synchronisation because the WebDAV interface seems to be broken.", "Please double check the installation guides." => "Please double check the installation guides.", +"Could not find category \"%s\"" => "Could not find category \"%s\"", "seconds ago" => "seconds ago", "_%n minute ago_::_%n minutes ago_" => array("%n minute ago","%n minutes ago"), "_%n hour ago_::_%n hours ago_" => array("%n hour ago","%n hours ago"), @@ -65,8 +65,6 @@ $TRANSLATIONS = array( "last month" => "last month", "_%n month ago_::_%n months ago_" => array("%n month ago","%n months ago"), "last year" => "last year", -"years ago" => "years ago", -"Caused by:" => "Caused by:", -"Could not find category \"%s\"" => "Could not find category \"%s\"" +"years ago" => "years ago" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/eo.php b/lib/l10n/eo.php similarity index 98% rename from lib/private/l10n/eo.php rename to lib/l10n/eo.php index 5311dd6eb159722129f1b0c44c01cddc5344592c..53d1ec1854d2ed9f45b8a95e5fe05125943e5dfc 100644 --- a/lib/private/l10n/eo.php +++ b/lib/l10n/eo.php @@ -33,6 +33,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Starigi administran pasvorton.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dosierojn ĉar la WebDAV-interfaco ŝajnas rompita.", "Please double check the installation guides." => "Bonvolu duoble kontroli la gvidilon por instalo.", +"Could not find category \"%s\"" => "Ne troviĝis kategorio “%s”", "seconds ago" => "sekundoj antaŭe", "_%n minute ago_::_%n minutes ago_" => array("",""), "_%n hour ago_::_%n hours ago_" => array("",""), @@ -42,7 +43,6 @@ $TRANSLATIONS = array( "last month" => "lastamonate", "_%n month ago_::_%n months ago_" => array("",""), "last year" => "lastajare", -"years ago" => "jaroj antaŭe", -"Could not find category \"%s\"" => "Ne troviĝis kategorio “%s”" +"years ago" => "jaroj antaŭe" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/es.php b/lib/l10n/es.php similarity index 94% rename from lib/private/l10n/es.php rename to lib/l10n/es.php index 047d5d955bb9adffefb77388b1f935aa59f0bfb8..f231cd2bb6e13a8d71607ae4b3b63abb541f6a65 100644 --- a/lib/private/l10n/es.php +++ b/lib/l10n/es.php @@ -8,13 +8,15 @@ $TRANSLATIONS = array( "Users" => "Usuarios", "Admin" => "Administración", "Failed to upgrade \"%s\"." => "Falló la actualización \"%s\".", +"Unknown filetype" => "Tipo de archivo desconocido", +"Invalid image" => "Imagen inválida", "web services under your control" => "Servicios web bajo su control", "cannot open \"%s\"" => "No se puede abrir \"%s\"", "ZIP download is turned off." => "La descarga en ZIP está desactivada.", "Files need to be downloaded one by one." => "Los archivos deben ser descargados uno por uno.", "Back to Files" => "Volver a Archivos", "Selected files too large to generate zip file." => "Los archivos seleccionados son demasiado grandes para generar el archivo zip.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Descargue los archivos en trozos más pequeños, por separado o solicítelos amablemente su administrador.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Descargue los archivos en trozos más pequeños, por separado o solicítelos amablemente a su administrador.", "No source specified when installing app" => "No se ha especificado origen cuando se ha instalado la aplicación", "No href specified when installing app from http" => "No href especificado cuando se ha instalado la aplicación", "No path specified when installing app from local file" => "Sin path especificado cuando se ha instalado la aplicación desde el fichero local", @@ -53,6 +55,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Configurar la contraseña del administrador.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando.", "Please double check the installation guides." => "Por favor, vuelva a comprobar las guías de instalación.", +"Could not find category \"%s\"" => "No puede encontrar la categoria \"%s\"", "seconds ago" => "hace segundos", "_%n minute ago_::_%n minutes ago_" => array("Hace %n minuto","Hace %n minutos"), "_%n hour ago_::_%n hours ago_" => array("Hace %n hora","Hace %n horas"), @@ -62,8 +65,6 @@ $TRANSLATIONS = array( "last month" => "mes pasado", "_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), "last year" => "año pasado", -"years ago" => "hace años", -"Caused by:" => "Causado por:", -"Could not find category \"%s\"" => "No puede encontrar la categoria \"%s\"" +"years ago" => "hace años" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/es_AR.php b/lib/l10n/es_AR.php similarity index 95% rename from lib/private/l10n/es_AR.php rename to lib/l10n/es_AR.php index f637eb403ed2113597517995ef7ecb8a3ed5036f..bc5fcd7e0127e8bc98db991f9c17bd2be16c6cd1 100644 --- a/lib/private/l10n/es_AR.php +++ b/lib/l10n/es_AR.php @@ -8,13 +8,14 @@ $TRANSLATIONS = array( "Users" => "Usuarios", "Admin" => "Administración", "Failed to upgrade \"%s\"." => "No se pudo actualizar \"%s\".", +"Unknown filetype" => "Tipo de archivo desconocido", +"Invalid image" => "Imagen inválida", "web services under your control" => "servicios web sobre los que tenés control", "cannot open \"%s\"" => "no se puede abrir \"%s\"", "ZIP download is turned off." => "La descarga en ZIP está desactivada.", "Files need to be downloaded one by one." => "Los archivos deben ser descargados de a uno.", "Back to Files" => "Volver a Archivos", "Selected files too large to generate zip file." => "Los archivos seleccionados son demasiado grandes para generar el archivo zip.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Descargá los archivos en partes más chicas, de forma separada, o pedíselos al administrador", "No source specified when installing app" => "No se especificó el origen al instalar la app", "No href specified when installing app from http" => "No se especificó href al instalar la app", "No path specified when installing app from local file" => "No se especificó PATH al instalar la app desde el archivo local", @@ -53,6 +54,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Configurar una contraseña de administrador.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Tu servidor web no está configurado todavía para permitir sincronización de archivos porque la interfaz WebDAV parece no funcionar.", "Please double check the installation guides." => "Por favor, comprobá nuevamente la guía de instalación.", +"Could not find category \"%s\"" => "No fue posible encontrar la categoría \"%s\"", "seconds ago" => "segundos atrás", "_%n minute ago_::_%n minutes ago_" => array("Hace %n minuto","Hace %n minutos"), "_%n hour ago_::_%n hours ago_" => array("Hace %n hora","Hace %n horas"), @@ -62,8 +64,6 @@ $TRANSLATIONS = array( "last month" => "el mes pasado", "_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), "last year" => "el año pasado", -"years ago" => "años atrás", -"Caused by:" => "Provocado por:", -"Could not find category \"%s\"" => "No fue posible encontrar la categoría \"%s\"" +"years ago" => "años atrás" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/es_CL.php b/lib/l10n/es_CL.php new file mode 100644 index 0000000000000000000000000000000000000000..46158b0ccc7c32cec6414094f2263b7112000369 --- /dev/null +++ b/lib/l10n/es_CL.php @@ -0,0 +1,10 @@ + "Configuración", +"Files" => "Archivos", +"_%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/es_MX.php b/lib/l10n/es_MX.php new file mode 100644 index 0000000000000000000000000000000000000000..7454d4966d8544565a3942a4a1f3b6cb3d069b02 --- /dev/null +++ b/lib/l10n/es_MX.php @@ -0,0 +1,70 @@ + "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión de ownCloud", +"No app name specified" => "No se ha especificado nombre de la aplicación", +"Help" => "Ayuda", +"Personal" => "Personal", +"Settings" => "Ajustes", +"Users" => "Usuarios", +"Admin" => "Administración", +"Failed to upgrade \"%s\"." => "Falló la actualización \"%s\".", +"Unknown filetype" => "Tipo de archivo desconocido", +"Invalid image" => "Imagen inválida", +"web services under your control" => "Servicios web bajo su control", +"cannot open \"%s\"" => "No se puede abrir \"%s\"", +"ZIP download is turned off." => "La descarga en ZIP está desactivada.", +"Files need to be downloaded one by one." => "Los archivos deben ser descargados uno por uno.", +"Back to Files" => "Volver a Archivos", +"Selected files too large to generate zip file." => "Los archivos seleccionados son demasiado grandes para generar el archivo zip.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Descargue los archivos en trozos más pequeños, por separado o solicítelos amablemente a su administrador.", +"No source specified when installing app" => "No se ha especificado origen cuando se ha instalado la aplicación", +"No href specified when installing app from http" => "No href especificado cuando se ha instalado la aplicación", +"No path specified when installing app from local file" => "Sin path especificado cuando se ha instalado la aplicación desde el archivo local", +"Archives of type %s are not supported" => "Archivos de tipo %s no son soportados", +"Failed to open archive when installing app" => "Fallo de abrir archivo mientras se instala la aplicación", +"App does not provide an info.xml file" => "La aplicación no suministra un archivo info.xml", +"App can't be installed because of not allowed code in the App" => "La aplicación no puede ser instalada por tener código no autorizado en la aplicación", +"App can't be installed because it is not compatible with this version of ownCloud" => "La aplicación no se puede instalar porque no es compatible con esta versión de ownCloud", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "La aplicación no se puede instalar porque contiene la etiqueta\n\ntrue\n\nque no está permitida para aplicaciones no distribuidas", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "La aplicación no puede ser instalada por que la versión en info.xml/version no es la misma que la establecida en la app store", +"App directory already exists" => "El directorio de la aplicación ya existe", +"Can't create app folder. Please fix permissions. %s" => "No se puede crear la carpeta de la aplicación. Corrija los permisos. %s", +"Application is not enabled" => "La aplicación no está habilitada", +"Authentication error" => "Error de autenticación", +"Token expired. Please reload page." => "Token expirado. Por favor, recarga la página.", +"Files" => "Archivos", +"Text" => "Texto", +"Images" => "Imágenes", +"%s enter the database username." => "%s ingresar el usuario de la base de datos.", +"%s enter the database name." => "%s ingresar el nombre de la base de datos", +"%s you may not use dots in the database name" => "%s puede utilizar puntos en el nombre de la base de datos", +"MS SQL username and/or password not valid: %s" => "Usuario y/o contraseña de MS SQL no válidos: %s", +"You need to enter either an existing account or the administrator." => "Tiene que ingresar una cuenta existente o la del administrador.", +"MySQL username and/or password not valid" => "Usuario y/o contraseña de MySQL no válidos", +"DB Error: \"%s\"" => "Error BD: \"%s\"", +"Offending command was: \"%s\"" => "Comando infractor: \"%s\"", +"MySQL user '%s'@'localhost' exists already." => "Usuario MySQL '%s'@'localhost' ya existe.", +"Drop this user from MySQL" => "Eliminar este usuario de MySQL", +"MySQL user '%s'@'%%' already exists" => "Usuario MySQL '%s'@'%%' ya existe", +"Drop this user from MySQL." => "Eliminar este usuario de MySQL.", +"Oracle connection could not be established" => "No se pudo establecer la conexión a Oracle", +"Oracle username and/or password not valid" => "Usuario y/o contraseña de Oracle no válidos", +"Offending command was: \"%s\", name: %s, password: %s" => "Comando infractor: \"%s\", nombre: %s, contraseña: %s", +"PostgreSQL username and/or password not valid" => "Usuario y/o contraseña de PostgreSQL no válidos", +"Set an admin username." => "Configurar un nombre de usuario del administrador", +"Set an admin password." => "Configurar la contraseña del administrador.", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando.", +"Please double check the installation guides." => "Por favor, vuelva a comprobar las guías de instalación.", +"Could not find category \"%s\"" => "No puede encontrar la categoria \"%s\"", +"seconds ago" => "hace segundos", +"_%n minute ago_::_%n minutes ago_" => array("Hace %n minuto","Hace %n minutos"), +"_%n hour ago_::_%n hours ago_" => array("Hace %n hora","Hace %n horas"), +"today" => "hoy", +"yesterday" => "ayer", +"_%n day go_::_%n days ago_" => array("Hace %n día","Hace %n días"), +"last month" => "mes pasado", +"_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), +"last year" => "año pasado", +"years ago" => "hace años" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/et_EE.php b/lib/l10n/et_EE.php similarity index 93% rename from lib/private/l10n/et_EE.php rename to lib/l10n/et_EE.php index 85dfaeb52d57f3ba85f5714efd6bc1f0892bc030..96fceaa04edec9f7841a2995e828dc1a06b2f626 100644 --- a/lib/private/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Kasutajad", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Ebaõnnestunud uuendus \"%s\".", -"Custom profile pictures don't work with encryption yet" => "Kohandatud profiili pildid ei toimi veel koos krüpteeringuga", "Unknown filetype" => "Tundmatu failitüüp", "Invalid image" => "Vigane pilt", "web services under your control" => "veebitenused sinu kontrolli all", @@ -17,7 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Failid tuleb alla laadida ükshaaval.", "Back to Files" => "Tagasi failide juurde", "Selected files too large to generate zip file." => "Valitud failid on ZIP-faili loomiseks liiga suured.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Laadi failid alla eraldi väiksemate osadena või küsi nõu oma süsteemiadminstraatorilt.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Palun laadi failid alla eraldi väiksemate osadena või palu abi oma süsteemihaldurilt.", "No source specified when installing app" => "Ühegi lähteallikat pole rakendi paigalduseks määratletud", "No href specified when installing app from http" => "Ühtegi aadressi pole määratletud rakendi paigalduseks veebist", "No path specified when installing app from local file" => "Ühtegi teed pole määratletud paigaldamaks rakendit kohalikust failist", @@ -56,6 +55,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Määra admini parool.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv.", "Please double check the installation guides." => "Palun tutvu veelkord paigalduse juhenditega.", +"Could not find category \"%s\"" => "Ei leia kategooriat \"%s\"", "seconds ago" => "sekundit tagasi", "_%n minute ago_::_%n minutes ago_" => array("","%n minutit tagasi"), "_%n hour ago_::_%n hours ago_" => array("","%n tundi tagasi"), @@ -65,8 +65,6 @@ $TRANSLATIONS = array( "last month" => "viimasel kuul", "_%n month ago_::_%n months ago_" => array("","%n kuud tagasi"), "last year" => "viimasel aastal", -"years ago" => "aastat tagasi", -"Caused by:" => "Põhjustaja:", -"Could not find category \"%s\"" => "Ei leia kategooriat \"%s\"" +"years ago" => "aastat tagasi" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/eu.php b/lib/l10n/eu.php similarity index 61% rename from lib/private/l10n/eu.php rename to lib/l10n/eu.php index 413819f4f942b84e027034d9c18e8d5a353b1148..e3f18fca47a54e264cc5135e93511b835f69c217 100644 --- a/lib/private/l10n/eu.php +++ b/lib/l10n/eu.php @@ -1,18 +1,34 @@ "\"%s\" Aplikazioa ezin da instalatu ownCloud bertsio honekin bateragarria ez delako", +"No app name specified" => "Ez da aplikazioaren izena zehaztu", "Help" => "Laguntza", "Personal" => "Pertsonala", "Settings" => "Ezarpenak", "Users" => "Erabiltzaileak", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Ezin izan da \"%s\" eguneratu.", +"Unknown filetype" => "Fitxategi mota ezezaguna", +"Invalid image" => "Baliogabeko irudia", "web services under your control" => "web zerbitzuak zure kontrolpean", "cannot open \"%s\"" => "ezin da \"%s\" ireki", "ZIP download is turned off." => "ZIP deskarga ez dago gaituta.", "Files need to be downloaded one by one." => "Fitxategiak banan-banan deskargatu behar dira.", "Back to Files" => "Itzuli fitxategietara", "Selected files too large to generate zip file." => "Hautatuko fitxategiak oso handiak dira zip fitxategia sortzeko.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Deskargatu fitzategiak zati txikiagoetan, banan-banan edo eskatu mesedez zure administradoreari", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Mesedez deskargatu fitzategiak zati txikiagoetan, banan-banan edo eskatu mesedez zure administradoreari.", +"No source specified when installing app" => "Ez da jatorririk zehaztu aplikazioa instalatzerakoan", +"No href specified when installing app from http" => "Ez da href parametrorik zehaztu http bidez aplikazioa instalatzerakoan", +"No path specified when installing app from local file" => "Ez da kokalekurik zehaztu fitxategi lokal moduan aplikazioa instalatzerakoan", +"Archives of type %s are not supported" => "%s motako fitxategiak ez dira onartzen", +"Failed to open archive when installing app" => "Fitxategia irekitzeak huts egin du aplikazioa instalatzerakoan", +"App does not provide an info.xml file" => "Aplikazioak ez du info.xml fitxategia", +"App can't be installed because of not allowed code in the App" => "Aplikazioa ezin da instalatu bertan duen baimendu gabeko kodea dela eta", +"App can't be installed because it is not compatible with this version of ownCloud" => "Aplikazioa ezin da instalatu ownCloud bertsio honekin bateragarria ez delako", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "Aplikazioa ezin da instalatu true etiketa duelako eta etiketa hau ez da onartzen banaketan ez datozen aplikazioetan", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Aplikazioa ezin da instalatu info.xml/version bertsioa ez delako \"app store\"an jartzen duenaren berdina", +"App directory already exists" => "Aplikazioaren karpeta dagoeneko existitzen da", +"Can't create app folder. Please fix permissions. %s" => "Ezin izan da aplikazioaren karpeta sortu. Mesdez konpondu baimenak. %s", "Application is not enabled" => "Aplikazioa ez dago gaituta", "Authentication error" => "Autentifikazio errorea", "Token expired. Please reload page." => "Tokena iraungitu da. Mesedez birkargatu orria.", @@ -39,6 +55,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Ezarri administraziorako pasahitza.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sinkronizazioa egiteko, WebDAV interfazea ongi ez dagoela dirudi.", "Please double check the installation guides." => "Mesedez begiratu instalazio gidak.", +"Could not find category \"%s\"" => "Ezin da \"%s\" kategoria aurkitu", "seconds ago" => "segundu", "_%n minute ago_::_%n minutes ago_" => array("orain dela minutu %n","orain dela %n minutu"), "_%n hour ago_::_%n hours ago_" => array("orain dela ordu %n","orain dela %n ordu"), @@ -48,8 +65,6 @@ $TRANSLATIONS = array( "last month" => "joan den hilabetean", "_%n month ago_::_%n months ago_" => array("orain dela hilabete %n","orain dela %n hilabete"), "last year" => "joan den urtean", -"years ago" => "urte", -"Caused by:" => "Honek eraginda:", -"Could not find category \"%s\"" => "Ezin da \"%s\" kategoria aurkitu" +"years ago" => "urte" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/fa.php b/lib/l10n/fa.php similarity index 98% rename from lib/private/l10n/fa.php rename to lib/l10n/fa.php index e9cb695bade4d5778dd08a9b1e92c60c4d9fa931..788b37039669598487dd88711fe3abbd0883f717 100644 --- a/lib/private/l10n/fa.php +++ b/lib/l10n/fa.php @@ -36,6 +36,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 installation guides." => "لطفاً دوباره راهنمای نصبرا بررسی کنید.", +"Could not find category \"%s\"" => "دسته بندی %s یافت نشد", "seconds ago" => "ثانیه‌ها پیش", "_%n minute ago_::_%n minutes ago_" => array(""), "_%n hour ago_::_%n hours ago_" => array(""), @@ -45,7 +46,6 @@ $TRANSLATIONS = array( "last month" => "ماه قبل", "_%n month ago_::_%n months ago_" => array(""), "last year" => "سال قبل", -"years ago" => "سال‌های قبل", -"Could not find category \"%s\"" => "دسته بندی %s یافت نشد" +"years ago" => "سال‌های قبل" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/private/l10n/fi.php b/lib/l10n/fi.php similarity index 100% rename from lib/private/l10n/fi.php rename to lib/l10n/fi.php diff --git a/lib/private/l10n/fi_FI.php b/lib/l10n/fi_FI.php similarity index 93% rename from lib/private/l10n/fi_FI.php rename to lib/l10n/fi_FI.php index 1d2bdab749c829750fcd12b2e9b24884df30538e..573704da44c477ee8df54d201062e7de4539a3a9 100644 --- a/lib/private/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Käyttäjät", "Admin" => "Ylläpitäjä", "Failed to upgrade \"%s\"." => "Kohteen \"%s\" päivitys epäonnistui.", -"Custom profile pictures don't work with encryption yet" => "Omavalintaiset profiilikuvat eivät toimi salauksen kanssa vielä", "Unknown filetype" => "Tuntematon tiedostotyyppi", "Invalid image" => "Virheellinen kuva", "web services under your control" => "verkkopalvelut hallinnassasi", @@ -17,8 +16,10 @@ $TRANSLATIONS = array( "Back to Files" => "Takaisin tiedostoihin", "Selected files too large to generate zip file." => "Valitut tiedostot ovat liian suurikokoisia mahtuakseen zip-tiedostoon.", "No source specified when installing app" => "Lähdettä ei määritelty sovellusta asennettaessa", +"No href specified when installing app from http" => "Href-määritettä ei asetettu asennettaessa sovellusta http:n yli", "No path specified when installing app from local file" => "Polkua ei määritelty sovellusta asennettaessa paikallisesta tiedostosta", "Archives of type %s are not supported" => "Tyypin %s arkistot eivät ole tuettuja", +"Failed to open archive when installing app" => "Pakettitiedoston avaaminen epäonnistui sovellusta asennettaessa", "App does not provide an info.xml file" => "Sovellus ei sisällä info.xml-tiedostoa", "App can't be installed because of not allowed code in the App" => "Sovellusta ei voi asentaa, koska sovellus sisältää kiellettyä koodia", "App can't be installed because it is not compatible with this version of ownCloud" => "Sovellusta ei voi asentaa, koska se ei ole yhteensopiva käytössä olevan ownCloud-version kanssa", @@ -46,6 +47,7 @@ $TRANSLATIONS = array( "Set an admin username." => "Aseta ylläpitäjän käyttäjätunnus.", "Set an admin password." => "Aseta ylläpitäjän salasana.", "Please double check the installation guides." => "Lue tarkasti asennusohjeet.", +"Could not find category \"%s\"" => "Luokkaa \"%s\" ei löytynyt", "seconds ago" => "sekuntia sitten", "_%n minute ago_::_%n minutes ago_" => array("%n minuutti sitten","%n minuuttia sitten"), "_%n hour ago_::_%n hours ago_" => array("%n tunti sitten","%n tuntia sitten"), @@ -55,8 +57,6 @@ $TRANSLATIONS = array( "last month" => "viime kuussa", "_%n month ago_::_%n months ago_" => array("%n kuukausi sitten","%n kuukautta sitten"), "last year" => "viime vuonna", -"years ago" => "vuotta sitten", -"Caused by:" => "Aiheuttaja:", -"Could not find category \"%s\"" => "Luokkaa \"%s\" ei löytynyt" +"years ago" => "vuotta sitten" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/fr.php b/lib/l10n/fr.php similarity index 92% rename from lib/private/l10n/fr.php rename to lib/l10n/fr.php index ab3d618849e8a6aaa4f63aaa18b21b76202f4c7a..75a4f277271dd5d2993c3af3f09fd8b2623579b3 100644 --- a/lib/private/l10n/fr.php +++ b/lib/l10n/fr.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Utilisateurs", "Admin" => "Administration", "Failed to upgrade \"%s\"." => "Echec de la mise à niveau \"%s\".", -"Custom profile pictures don't work with encryption yet" => "Les images de profil personnalisées ne fonctionnent pas encore avec le système de chiffrement.", "Unknown filetype" => "Type de fichier inconnu", "Invalid image" => "Image invalide", "web services under your control" => "services web sous votre contrôle", @@ -17,7 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Les fichiers nécessitent d'être téléchargés un par un.", "Back to Files" => "Retour aux Fichiers", "Selected files too large to generate zip file." => "Les fichiers sélectionnés sont trop volumineux pour être compressés.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Télécharger les fichiers en parties plus petites, séparément ou demander avec bienveillance à votre administrateur.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Merci de télécharger les fichiers séparément en parties plus petites, ou demandez aimablement à votre administrateur.", "No source specified when installing app" => "Aucune source spécifiée pour installer l'application", "No href specified when installing app from http" => "Aucun href spécifié pour installer l'application par http", "No path specified when installing app from local file" => "Aucun chemin spécifié pour installer l'application depuis un fichier local", @@ -56,6 +55,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Spécifiez un mot de passe administrateur.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut.", "Please double check the installation guides." => "Veuillez vous référer au guide d'installation.", +"Could not find category \"%s\"" => "Impossible de trouver la catégorie \"%s\"", "seconds ago" => "il y a quelques secondes", "_%n minute ago_::_%n minutes ago_" => array("","il y a %n minutes"), "_%n hour ago_::_%n hours ago_" => array("","Il y a %n heures"), @@ -65,8 +65,6 @@ $TRANSLATIONS = array( "last month" => "le mois dernier", "_%n month ago_::_%n months ago_" => array("","Il y a %n mois"), "last year" => "l'année dernière", -"years ago" => "il y a plusieurs années", -"Caused by:" => "Causé par :", -"Could not find category \"%s\"" => "Impossible de trouver la catégorie \"%s\"" +"years ago" => "il y a plusieurs années" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/lib/l10n/fr_CA.php b/lib/l10n/fr_CA.php new file mode 100644 index 0000000000000000000000000000000000000000..406ff5f5a26bac1dc6a395e62978681336ec099b --- /dev/null +++ b/lib/l10n/fr_CA.php @@ -0,0 +1,8 @@ + 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/private/l10n/gl.php b/lib/l10n/gl.php similarity index 93% rename from lib/private/l10n/gl.php rename to lib/l10n/gl.php index 406272d690fca4416d3aa5b0f771cdd49450a87e..81a62021556d0c68055ef3b8222162674450c5db 100644 --- a/lib/private/l10n/gl.php +++ b/lib/l10n/gl.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Usuarios", "Admin" => "Administración", "Failed to upgrade \"%s\"." => "Non foi posíbel anovar «%s».", -"Custom profile pictures don't work with encryption yet" => "As imaxes personalizadas de perfil aínda non funcionan co cifrado", "Unknown filetype" => "Tipo de ficheiro descoñecido", "Invalid image" => "Imaxe incorrecta", "web services under your control" => "servizos web baixo o seu control", @@ -17,7 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Os ficheiros necesitan seren descargados dun en un.", "Back to Files" => "Volver aos ficheiros", "Selected files too large to generate zip file." => "Os ficheiros seleccionados son demasiado grandes como para xerar un ficheiro zip.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Descargue os ficheiros en cachos máis pequenos e por separado, ou pídallos amabelmente ao seu administrador.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Descargue os ficheiros en fragmentos máis pequenos e por separado, ou pídallos amabelmente ao seu administrador.", "No source specified when installing app" => "Non foi especificada ningunha orixe ao instalar aplicativos", "No href specified when installing app from http" => "Non foi especificada ningunha href ao instalar aplicativos", "No path specified when installing app from local file" => "Non foi especificada ningunha ruta ao instalar aplicativos desde un ficheiro local", @@ -56,6 +55,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Estabeleza un contrasinal de administrador", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "O seu servidor web non está aínda configurado adecuadamente para permitir a sincronización de ficheiros xa que semella que a interface WebDAV non está a funcionar.", "Please double check the installation guides." => "Volva comprobar as guías de instalación", +"Could not find category \"%s\"" => "Non foi posíbel atopar a categoría «%s»", "seconds ago" => "segundos atrás", "_%n minute ago_::_%n minutes ago_" => array("hai %n minuto","hai %n minutos"), "_%n hour ago_::_%n hours ago_" => array("hai %n hora","hai %n horas"), @@ -65,8 +65,6 @@ $TRANSLATIONS = array( "last month" => "último mes", "_%n month ago_::_%n months ago_" => array("hai %n mes","hai %n meses"), "last year" => "último ano", -"years ago" => "anos atrás", -"Caused by:" => "Causado por:", -"Could not find category \"%s\"" => "Non foi posíbel atopar a categoría «%s»" +"years ago" => "anos atrás" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/he.php b/lib/l10n/he.php similarity index 97% rename from lib/private/l10n/he.php rename to lib/l10n/he.php index ced6244ee918081cc201b71adbc8c65222148fde..5bbfffe9ae9ffa75c9fa90f92854b6c42046984f 100644 --- a/lib/private/l10n/he.php +++ b/lib/l10n/he.php @@ -18,6 +18,7 @@ $TRANSLATIONS = array( "Images" => "תמונות", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "שרת האינטרנט שלך אינו מוגדר לצורכי סנכרון קבצים עדיין כיוון שמנשק ה־WebDAV כנראה אינו תקין.", "Please double check the installation guides." => "נא לעיין שוב במדריכי ההתקנה.", +"Could not find category \"%s\"" => "לא ניתן למצוא את הקטגוריה „%s“", "seconds ago" => "שניות", "_%n minute ago_::_%n minutes ago_" => array("","לפני %n דקות"), "_%n hour ago_::_%n hours ago_" => array("","לפני %n שעות"), @@ -27,7 +28,6 @@ $TRANSLATIONS = array( "last month" => "חודש שעבר", "_%n month ago_::_%n months ago_" => array("","לפני %n חודשים"), "last year" => "שנה שעברה", -"years ago" => "שנים", -"Could not find category \"%s\"" => "לא ניתן למצוא את הקטגוריה „%s“" +"years ago" => "שנים" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/hi.php b/lib/l10n/hi.php similarity index 100% rename from lib/private/l10n/hi.php rename to lib/l10n/hi.php diff --git a/lib/private/l10n/hr.php b/lib/l10n/hr.php similarity index 100% rename from lib/private/l10n/hr.php rename to lib/l10n/hr.php diff --git a/lib/private/l10n/hu_HU.php b/lib/l10n/hu_HU.php similarity index 65% rename from lib/private/l10n/hu_HU.php rename to lib/l10n/hu_HU.php index e944291caee069b4c43bef8958a376ae85a95345..efaf2a2fd480750b105334a71b7add879155c43b 100644 --- a/lib/private/l10n/hu_HU.php +++ b/lib/l10n/hu_HU.php @@ -1,5 +1,6 @@ "A(z) \"%s\" alkalmazást nem lehet telepíteni, mert nem kompatibilis az ownCloud telepített verziójával.", "No app name specified" => "Nincs az alkalmazás név megadva.", "Help" => "Súgó", "Personal" => "Személyes", @@ -15,9 +16,17 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "A fájlokat egyenként kell letölteni.", "Back to Files" => "Vissza a Fájlokhoz", "Selected files too large to generate zip file." => "A kiválasztott fájlok túl nagyok a zip tömörítéshez.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Tölts le a fileokat kisebb chunkokban, kölün vagy kérj segitséget a rendszergazdádtól.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "A file-t kisebb részekben töltsd le vagy beszélj az adminisztrátorral a megoldás érdekében.", +"No source specified when installing app" => "Az alkalmazás telepítéséhez nincs forrás megadva", +"No href specified when installing app from http" => "Az alkalmazás http-n keresztül történő telepítéséhez nincs href hivetkozás megadva", +"No path specified when installing app from local file" => "Az alkalmazás helyi telepítéséhez nincs útvonal (mappa) megadva", +"Archives of type %s are not supported" => "A(z) %s típusú tömörített állomány nem támogatott", +"Failed to open archive when installing app" => "Nem sikerült megnyitni a tömörített állományt a telepítés során", "App does not provide an info.xml file" => "Az alkalmazás nem szolgáltatott info.xml file-t", +"App can't be installed because of not allowed code in the App" => "Az alkalmazást nem lehet telepíteni, mert abban nem engedélyezett programkód szerepel", "App can't be installed because it is not compatible with this version of ownCloud" => "Az alalmazás nem telepíthető, mert nem kompatibilis az ownClod ezzel a verziójával.", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "Az alkalmazást nem lehet telepíteni, mert tartalmazza a \n\ntrue\n\ncímkét, ami a nem szállított alkalmazások esetén nem engedélyezett", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Az alkalmazást nem lehet telepíteni, mert az info.xml/version-ben megadott verzió nem egyezik az alkalmazás-áruházban feltüntetett verzióval.", "App directory already exists" => "Az alkalmazás mappája már létezik", "Can't create app folder. Please fix permissions. %s" => "Nem lehetett létrehozni az alkalmzás mappáját. Kérlek ellenőrizd a jogosultásgokat. %s", "Application is not enabled" => "Az alkalmazás nincs engedélyezve", @@ -48,15 +57,14 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót.", "Could not find category \"%s\"" => "Ez a kategória nem található: \"%s\"", "seconds ago" => "pár másodperce", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n minute ago_::_%n minutes ago_" => array("","%n perccel ezelőtt"), +"_%n hour ago_::_%n hours ago_" => array("%n órával ezelőtt","%n órával ezelőtt"), "today" => "ma", "yesterday" => "tegnap", -"_%n day go_::_%n days ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("%n nappal ezelőtt","%n nappal ezelőtt"), "last month" => "múlt hónapban", -"_%n month ago_::_%n months ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("%n hónappal ezelőtt","%n hónappal ezelőtt"), "last year" => "tavaly", -"years ago" => "több éve", -"Caused by:" => "Okozta:" +"years ago" => "több éve" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/ml_IN.php b/lib/l10n/hy.php similarity index 100% rename from lib/private/l10n/ml_IN.php rename to lib/l10n/hy.php diff --git a/lib/private/l10n/ia.php b/lib/l10n/ia.php similarity index 100% rename from lib/private/l10n/ia.php rename to lib/l10n/ia.php diff --git a/lib/l10n/id.php b/lib/l10n/id.php new file mode 100644 index 0000000000000000000000000000000000000000..27d7843104be36186594ec5c6138ab1d5f12df58 --- /dev/null +++ b/lib/l10n/id.php @@ -0,0 +1,70 @@ + "Apl \"%s\" tidak dapat diinstal karena tidak kompatibel dengan versi ownCloud.", +"No app name specified" => "Tidak ada nama apl yang ditentukan", +"Help" => "Bantuan", +"Personal" => "Pribadi", +"Settings" => "Pengaturan", +"Users" => "Pengguna", +"Admin" => "Admin", +"Failed to upgrade \"%s\"." => "Gagal memperbarui \"%s\".", +"Unknown filetype" => "Tipe berkas tak dikenal", +"Invalid image" => "Gambar tidak sah", +"web services under your control" => "layanan web dalam kendali anda", +"cannot open \"%s\"" => "tidak dapat membuka \"%s\"", +"ZIP download is turned off." => "Pengunduhan ZIP dimatikan.", +"Files need to be downloaded one by one." => "Berkas harus diunduh satu persatu.", +"Back to Files" => "Kembali ke Berkas", +"Selected files too large to generate zip file." => "Berkas yang dipilih terlalu besar untuk dibuat berkas zip-nya.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Silahkan unduh berkas secara terpisah dalam bentuk potongan kecil atau meminta ke administrator anda.", +"No source specified when installing app" => "Tidak ada sumber yang ditentukan saat menginstal apl", +"No href specified when installing app from http" => "Href tidak ditentukan saat menginstal apl dari http", +"No path specified when installing app from local file" => "Lokasi tidak ditentukan saat menginstal apl dari berkas lokal", +"Archives of type %s are not supported" => "Arsip dengan tipe %s tidak didukung", +"Failed to open archive when installing app" => "Gagal membuka arsip saat menginstal apl", +"App does not provide an info.xml file" => "Apl tidak menyediakan berkas info.xml", +"App can't be installed because of not allowed code in the App" => "Apl tidak dapat diinstal karena terdapat kode yang tidak diizinkan didalam Apl", +"App can't be installed because it is not compatible with this version of ownCloud" => "Apl tidak dapat diinstal karena tidak kompatibel dengan versi ownCloud", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "Apl tidak dapat diinstal karena mengandung tag true yang tidak diizinkan untuk apl yang bukan bawaan.", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Apl tidak dapat diinstal karena versi di info.xml/versi tidak sama dengan versi yang dilansir dari toko apl", +"App directory already exists" => "Direktori Apl sudah ada", +"Can't create app folder. Please fix permissions. %s" => "Tidak dapat membuat folder apl. Silakan perbaiki perizinan. %s", +"Application is not enabled" => "Aplikasi tidak diaktifkan", +"Authentication error" => "Galat saat otentikasi", +"Token expired. Please reload page." => "Token sudah kedaluwarsa. Silakan muat ulang halaman.", +"Files" => "Berkas", +"Text" => "Teks", +"Images" => "Gambar", +"%s enter the database username." => "%s masukkan nama pengguna basis data.", +"%s enter the database name." => "%s masukkan nama basis data.", +"%s you may not use dots in the database name" => "%s anda tidak boleh menggunakan karakter titik pada nama basis data", +"MS SQL username and/or password not valid: %s" => "Nama pengguna dan/atau sandi MySQL tidak sah: %s", +"You need to enter either an existing account or the administrator." => "Anda harus memasukkan akun yang sudah ada atau administrator.", +"MySQL username and/or password not valid" => "Nama pengguna dan/atau sandi MySQL tidak sah", +"DB Error: \"%s\"" => "Galat Basis Data: \"%s\"", +"Offending command was: \"%s\"" => "Perintah yang bermasalah: \"%s\"", +"MySQL user '%s'@'localhost' exists already." => "Pengguna MySQL '%s'@'localhost' sudah ada.", +"Drop this user from MySQL" => "Hapus pengguna ini dari MySQL", +"MySQL user '%s'@'%%' already exists" => "Pengguna MySQL '%s'@'%%' sudah ada.", +"Drop this user from MySQL." => "Hapus pengguna ini dari MySQL.", +"Oracle connection could not be established" => "Koneksi Oracle tidak dapat dibuat", +"Oracle username and/or password not valid" => "Nama pengguna dan/atau sandi Oracle tidak sah", +"Offending command was: \"%s\", name: %s, password: %s" => "Perintah yang bermasalah: \"%s\", nama pengguna: %s, sandi: %s", +"PostgreSQL username and/or password not valid" => "Nama pengguna dan/atau sandi PostgreSQL tidak valid", +"Set an admin username." => "Atur nama pengguna admin.", +"Set an admin password." => "Atur sandi admin.", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak.", +"Please double check the installation guides." => "Silakan periksa ulang panduan instalasi.", +"Could not find category \"%s\"" => "Tidak menemukan kategori \"%s\"", +"seconds ago" => "beberapa detik yang lalu", +"_%n minute ago_::_%n minutes ago_" => array("%n menit yang lalu"), +"_%n hour ago_::_%n hours ago_" => array("%n jam yang lalu"), +"today" => "hari ini", +"yesterday" => "kemarin", +"_%n day go_::_%n days ago_" => array("%n hari yang lalu"), +"last month" => "bulan kemarin", +"_%n month ago_::_%n months ago_" => array("%n bulan yang lalu"), +"last year" => "tahun kemarin", +"years ago" => "beberapa tahun lalu" +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/private/l10n/is.php b/lib/l10n/is.php similarity index 92% rename from lib/private/l10n/is.php rename to lib/l10n/is.php index 7512d278fb85f89daec1755772a04772a89a85a9..032289fd3040b7c0bdeb248b4bc6db4b53810433 100644 --- a/lib/private/l10n/is.php +++ b/lib/l10n/is.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Files" => "Skrár", "Text" => "Texti", "Images" => "Myndir", +"Could not find category \"%s\"" => "Fann ekki flokkinn \"%s\"", "seconds ago" => "sek.", "_%n minute ago_::_%n minutes ago_" => array("",""), "_%n hour ago_::_%n hours ago_" => array("",""), @@ -25,7 +26,6 @@ $TRANSLATIONS = array( "last month" => "síðasta mánuði", "_%n month ago_::_%n months ago_" => array("",""), "last year" => "síðasta ári", -"years ago" => "einhverjum árum", -"Could not find category \"%s\"" => "Fann ekki flokkinn \"%s\"" +"years ago" => "einhverjum árum" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/it.php b/lib/l10n/it.php similarity index 93% rename from lib/private/l10n/it.php rename to lib/l10n/it.php index b00789bc86f73bb1fb1d7a1de02ec7f8cc1811c3..cd2073bfd0a71a6e8ba64c354f905451f0864076 100644 --- a/lib/private/l10n/it.php +++ b/lib/l10n/it.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Utenti", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Aggiornamento non riuscito \"%s\".", -"Custom profile pictures don't work with encryption yet" => "Le immagini personalizzate del profilo non funzionano ancora con la cifratura", "Unknown filetype" => "Tipo di file sconosciuto", "Invalid image" => "Immagine non valida", "web services under your control" => "servizi web nelle tue mani", @@ -17,7 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "I file devono essere scaricati uno alla volta.", "Back to Files" => "Torna ai file", "Selected files too large to generate zip file." => "I file selezionati sono troppo grandi per generare un file zip.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Scarica i file in blocchi più piccoli, separatamente o chiedi al tuo amministratore.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Scarica i file separatamente in blocchi più piccoli o chiedi al tuo amministratore.", "No source specified when installing app" => "Nessuna fonte specificata durante l'installazione dell'applicazione", "No href specified when installing app from http" => "Nessun href specificato durante l'installazione dell'applicazione da http", "No path specified when installing app from local file" => "Nessun percorso specificato durante l'installazione dell'applicazione da file locale", @@ -56,6 +55,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Imposta una password di amministrazione.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata.", "Please double check the installation guides." => "Leggi attentamente le guide d'installazione.", +"Could not find category \"%s\"" => "Impossibile trovare la categoria \"%s\"", "seconds ago" => "secondi fa", "_%n minute ago_::_%n minutes ago_" => array("%n minuto fa","%n minuti fa"), "_%n hour ago_::_%n hours ago_" => array("%n ora fa","%n ore fa"), @@ -65,8 +65,6 @@ $TRANSLATIONS = array( "last month" => "mese scorso", "_%n month ago_::_%n months ago_" => array("%n mese fa","%n mesi fa"), "last year" => "anno scorso", -"years ago" => "anni fa", -"Caused by:" => "Causato da:", -"Could not find category \"%s\"" => "Impossibile trovare la categoria \"%s\"" +"years ago" => "anni fa" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/ja_JP.php b/lib/l10n/ja_JP.php similarity index 90% rename from lib/private/l10n/ja_JP.php rename to lib/l10n/ja_JP.php index b9e6a0e69248674747e93acdb6a1971c5b3a0e74..9c5c0ba47639037e4dd8fb8e558e4c8eb33870b6 100644 --- a/lib/private/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "ユーザ", "Admin" => "管理", "Failed to upgrade \"%s\"." => "\"%s\" へのアップグレードに失敗しました。", -"Custom profile pictures don't work with encryption yet" => "暗号無しでは利用不可なカスタムプロフィール画像", "Unknown filetype" => "不明なファイルタイプ", "Invalid image" => "無効な画像", "web services under your control" => "管理下のウェブサービス", @@ -17,7 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "ファイルは1つずつダウンロードする必要があります。", "Back to Files" => "ファイルに戻る", "Selected files too large to generate zip file." => "選択したファイルはZIPファイルの生成には大きすぎます。", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "ファイルは、小さいファイルに分割されてダウンロードされます。もしくは、管理者にお尋ねください。", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "少しずつに分けてファイルをダウンロードするか、管理者に問い合わせてください。", "No source specified when installing app" => "アプリインストール時のソースが未指定", "No href specified when installing app from http" => "アプリインストール時のhttpの URL が未指定", "No path specified when installing app from local file" => "アプリインストール時のローカルファイルのパスが未指定", @@ -56,17 +55,16 @@ $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インタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。", "Please double check the installation guides." => "インストールガイドをよく確認してください。", +"Could not find category \"%s\"" => "カテゴリ \"%s\" が見つかりませんでした", "seconds ago" => "数秒前", "_%n minute ago_::_%n minutes ago_" => array("%n 分前"), -"_%n hour ago_::_%n hours ago_" => array("%n 時間後"), +"_%n hour ago_::_%n hours ago_" => array("%n 時間前"), "today" => "今日", "yesterday" => "昨日", -"_%n day go_::_%n days ago_" => array("%n 日後"), +"_%n day go_::_%n days ago_" => array("%n 日前"), "last month" => "一月前", -"_%n month ago_::_%n months ago_" => array("%n カ月後"), +"_%n month ago_::_%n months ago_" => array("%n ヶ月前"), "last year" => "一年前", -"years ago" => "年前", -"Caused by:" => "原因は以下:", -"Could not find category \"%s\"" => "カテゴリ \"%s\" が見つかりませんでした" +"years ago" => "年前" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/private/l10n/ka.php b/lib/l10n/ka.php similarity index 100% rename from lib/private/l10n/ka.php rename to lib/l10n/ka.php diff --git a/lib/private/l10n/ka_GE.php b/lib/l10n/ka_GE.php similarity index 99% rename from lib/private/l10n/ka_GE.php rename to lib/l10n/ka_GE.php index 8fbe34e678635b0f63d2b26fe26cd4764881f91e..0cf6ab333e81dc5b24c487434a53debbf21ac117 100644 --- a/lib/private/l10n/ka_GE.php +++ b/lib/l10n/ka_GE.php @@ -35,6 +35,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." => "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი.", "Please double check the installation guides." => "გთხოვთ გადაათვალიეროთ ინსტალაციის გზამკვლევი.", +"Could not find category \"%s\"" => "\"%s\" კატეგორიის მოძებნა ვერ მოხერხდა", "seconds ago" => "წამის წინ", "_%n minute ago_::_%n minutes ago_" => array(""), "_%n hour ago_::_%n hours ago_" => array(""), @@ -44,7 +45,6 @@ $TRANSLATIONS = array( "last month" => "გასულ თვეში", "_%n month ago_::_%n months ago_" => array(""), "last year" => "ბოლო წელს", -"years ago" => "წლის წინ", -"Could not find category \"%s\"" => "\"%s\" კატეგორიის მოძებნა ვერ მოხერხდა" +"years ago" => "წლის წინ" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/private/l10n/kn.php b/lib/l10n/km.php similarity index 100% rename from lib/private/l10n/kn.php rename to lib/l10n/km.php diff --git a/lib/private/l10n/nqo.php b/lib/l10n/kn.php similarity index 100% rename from lib/private/l10n/nqo.php rename to lib/l10n/kn.php diff --git a/lib/private/l10n/ko.php b/lib/l10n/ko.php similarity index 75% rename from lib/private/l10n/ko.php rename to lib/l10n/ko.php index 3ef39fefa602d3e1f2da40eb3c65ca9967aea6e1..b33ad01546f486efcdfc2956fbca013ed0624516 100644 --- a/lib/private/l10n/ko.php +++ b/lib/l10n/ko.php @@ -8,52 +8,51 @@ $TRANSLATIONS = array( "Users" => "사용자", "Admin" => "관리자", "Failed to upgrade \"%s\"." => "\"%s\" 업그레이드에 실패했습니다.", -"Custom profile pictures don't work with encryption yet" => "개개인의 프로필 사진은 아직은 암호화 되지 않습니다", -"Unknown filetype" => "알수없는 파일형식", +"Unknown filetype" => "알 수 없는 파일 형식", "Invalid image" => "잘못된 그림", "web services under your control" => "내가 관리하는 웹 서비스", "cannot open \"%s\"" => "\"%s\"을(를) 열 수 없습니다.", -"ZIP download is turned off." => "ZIP 다운로드가 비활성화되었습니다.", +"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 파일을 생성하기에 너무 큽니다.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "작은 조각들 안에 들어있는 파일들을 받고자 하신다면, 나누어서 받으시거나 혹은 시스템 관리자에게 정중하게 물어보십시오", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "작은 조각들 안에 들어있는 파일들을 받고자 하신다면, 나누어서 받으시거나 혹은 시스템 관리자에게 정중하게 물어보십시오", "No source specified when installing app" => "앱을 설치할 때 소스가 지정되지 않았습니다.", -"No href specified when installing app from http" => "http에서 앱을 설치할 대 href가 지정되지 않았습니다.", +"No href specified when installing app from http" => "http에서 앱을 설치할 때 href가 지정되지 않았습니다.", "No path specified when installing app from local file" => "로컬 파일에서 앱을 설치할 때 경로가 지정되지 않았습니다.", "Archives of type %s are not supported" => "%s 타입 아카이브는 지원되지 않습니다.", "Failed to open archive when installing app" => "앱을 설치할 때 아카이브를 열지 못했습니다.", "App does not provide an info.xml file" => "앱에서 info.xml 파일이 제공되지 않았습니다.", -"App can't be installed because of not allowed code in the App" => "앱에 허용되지 않는 코드가 있어서 앱을 설치할 수 없습니다. ", +"App can't be installed because of not allowed code in the App" => "앱에 허용되지 않는 코드가 있어서 앱을 설치할 수 없습니다.", "App can't be installed because it is not compatible with this version of ownCloud" => "현재 ownCloud 버전과 호환되지 않기 때문에 앱을 설치할 수 없습니다.", -"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "출하되지 않은 앱에 허용되지 않는 true 태그를 포함하고 있기 때문에 앱을 설치할 수 없습니다.", -"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "info.xml/version에 포함된 버전과 앱 스토어에 보고된 버전이 같지 않아서 앱을 설치할 수 없습니다. ", -"App directory already exists" => "앱 디렉토리가 이미 존재합니다. ", -"Can't create app folder. Please fix permissions. %s" => "앱 폴더를 만들 수 없습니다. 권한을 수정하십시오. %s ", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "출시되지 않은 앱에 허용되지 않는 true 태그를 포함하고 있기 때문에 앱을 설치할 수 없습니다.", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "info.xml/version에 포함된 버전과 앱 스토어에 보고된 버전이 같지 않아서 앱을 설치할 수 없습니다.", +"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." => "토큰이 만료되었습니다. 페이지를 새로 고치십시오.", "Files" => "파일", "Text" => "텍스트", "Images" => "그림", -"%s enter the database username." => "데이터베이스 사용자 명을 %s 에 입력해주십시오", -"%s enter the database name." => "데이터베이스 명을 %s 에 입력해주십시오", -"%s you may not use dots in the database name" => "%s 에 적으신 데이터베이스 이름에는 점을 사용할수 없습니다", +"%s enter the database username." => "%s 데이터베이스 사용자 이름을 입력해 주십시오.", +"%s enter the database name." => "%s 데이터베이스 이름을 입력하십시오.", +"%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." => "기존 계정이나 administrator(관리자)를 입력해야 합니다.", "MySQL username and/or password not valid" => "MySQL 사용자 이름이나 암호가 잘못되었습니다.", "DB Error: \"%s\"" => "DB 오류: \"%s\"", "Offending command was: \"%s\"" => "잘못된 명령: \"%s\"", "MySQL user '%s'@'localhost' exists already." => "MySQL 사용자 '%s'@'localhost'이(가) 이미 존재합니다.", -"Drop this user from MySQL" => "이 사용자를 MySQL에서 뺍니다.", -"MySQL user '%s'@'%%' already exists" => "MySQL 사용자 '%s'@'%%'이(가) 이미 존재합니다. ", -"Drop this user from MySQL." => "이 사용자를 MySQL에서 뺍니다.", +"Drop this user from MySQL" => "이 사용자를 MySQL에서 삭제하십시오", +"MySQL user '%s'@'%%' already exists" => "MySQL 사용자 '%s'@'%%'이(가) 이미 존재합니다.", +"Drop this user from MySQL." => "이 사용자를 MySQL에서 삭제하십시오.", "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의 사용자 명 혹은 비밀번호가 잘못되었습니다", -"Set an admin username." => "관리자 이름 설정", -"Set an admin password." => "관리자 비밀번호 설정", +"PostgreSQL username and/or password not valid" => "PostgreSQL의 사용자 이름 또는 암호가 잘못되었습니다", +"Set an admin username." => "관리자의 사용자 이름을 설정합니다.", +"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 installation guides." => "설치 가이드를 다시 한 번 확인하십시오.", "Could not find category \"%s\"" => "분류 \"%s\"을(를) 찾을 수 없습니다.", @@ -66,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "지난 달", "_%n month ago_::_%n months ago_" => array("%n달 전 "), "last year" => "작년", -"years ago" => "년 전", -"Caused by:" => "원인: " +"years ago" => "년 전" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/private/l10n/ku_IQ.php b/lib/l10n/ku_IQ.php similarity index 100% rename from lib/private/l10n/ku_IQ.php rename to lib/l10n/ku_IQ.php diff --git a/lib/private/l10n/lb.php b/lib/l10n/lb.php similarity index 81% rename from lib/private/l10n/lb.php rename to lib/l10n/lb.php index c25f5b55bd5b9f7458374ff48ae71cfe82bc1f47..629d5b11c3006eeec993d7de9a6db996b1b5bc36 100644 --- a/lib/private/l10n/lb.php +++ b/lib/l10n/lb.php @@ -5,12 +5,14 @@ $TRANSLATIONS = array( "Settings" => "Astellungen", "Users" => "Benotzer", "Admin" => "Admin", +"Unknown filetype" => "Onbekannten Fichier Typ", +"Invalid image" => "Ongülteg d'Bild", "web services under your control" => "Web-Servicer ënnert denger Kontroll", "Authentication error" => "Authentifikatioun's Fehler", "Files" => "Dateien", "Text" => "SMS", "seconds ago" => "Sekonnen hir", -"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n minute ago_::_%n minutes ago_" => array("","%n Minutten hir"), "_%n hour ago_::_%n hours ago_" => array("",""), "today" => "haut", "yesterday" => "gëschter", diff --git a/lib/private/l10n/lt_LT.php b/lib/l10n/lt_LT.php similarity index 93% rename from lib/private/l10n/lt_LT.php rename to lib/l10n/lt_LT.php index db8d96c1018505e5310eecd47ac225938d84b9c6..25957702d2d74cba18686db37a481f373d863e64 100644 --- a/lib/private/l10n/lt_LT.php +++ b/lib/l10n/lt_LT.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Vartotojai", "Admin" => "Administravimas", "Failed to upgrade \"%s\"." => "Nepavyko pakelti „%s“ versijos.", -"Custom profile pictures don't work with encryption yet" => "Saviti profilio paveiksliukai dar neveikia su šifravimu", "Unknown filetype" => "Nežinomas failo tipas", "Invalid image" => "Netinkamas paveikslėlis", "web services under your control" => "jūsų valdomos web paslaugos", @@ -17,7 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Failai turi būti parsiunčiami vienas po kito.", "Back to Files" => "Atgal į Failus", "Selected files too large to generate zip file." => "Pasirinkti failai per dideli archyvavimui į ZIP.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Atsisiųskite failus mažesnėmis dalimis atskirai, arba mandagiai prašykite savo administratoriaus.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Prašome atsisiųsti failus mažesnėmis dalimis atskirai, arba mandagiai prašykite savo administratoriaus.", "No source specified when installing app" => "Nenurodytas šaltinis diegiant programą", "No href specified when installing app from http" => "Nenurodytas href diegiant programą iš http", "No path specified when installing app from local file" => "Nenurodytas kelias diegiant programą iš vietinio failo", @@ -56,6 +55,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Nustatyti administratoriaus slaptažodį.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Jūsų serveris nėra tvarkingai nustatytas leisti failų sinchronizaciją, nes WebDAV sąsaja panašu, kad yra sugadinta.", "Please double check the installation guides." => "Prašome pažiūrėkite dar kartą diegimo instrukcijas.", +"Could not find category \"%s\"" => "Nepavyko rasti kategorijos „%s“", "seconds ago" => "prieš sekundę", "_%n minute ago_::_%n minutes ago_" => array("prieš %n min.","Prieš % minutes","Prieš %n minučių"), "_%n hour ago_::_%n hours ago_" => array("Prieš %n valandą","Prieš %n valandas","Prieš %n valandų"), @@ -65,8 +65,6 @@ $TRANSLATIONS = array( "last month" => "praeitą mėnesį", "_%n month ago_::_%n months ago_" => array("Prieš %n mėnesį","Prieš %n mėnesius","Prieš %n mėnesių"), "last year" => "praeitais metais", -"years ago" => "prieš metus", -"Caused by:" => "Iššaukė:", -"Could not find category \"%s\"" => "Nepavyko rasti kategorijos „%s“" +"years ago" => "prieš metus" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/private/l10n/lv.php b/lib/l10n/lv.php similarity index 93% rename from lib/private/l10n/lv.php rename to lib/l10n/lv.php index 4090a36edcc6e8d5dc51a69c9423fbf4a4e88b12..8ecee5bdae898952e624dc85bd1c70ea15a16c83 100644 --- a/lib/private/l10n/lv.php +++ b/lib/l10n/lv.php @@ -12,7 +12,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Datnes var lejupielādēt tikai katru atsevišķi.", "Back to Files" => "Atpakaļ pie datnēm", "Selected files too large to generate zip file." => "Izvēlētās datnes ir pārāk lielas, lai izveidotu zip datni.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Lejupielādējiet savus failus mazākās daļās, atsevišķi vai palūdziet tos administratoram.", "Application is not enabled" => "Lietotne nav aktivēta", "Authentication error" => "Autentifikācijas kļūda", "Token expired. Please reload page." => "Pilnvarai ir beidzies termiņš. Lūdzu, pārlādējiet lapu.", @@ -39,6 +38,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Iestatiet administratora paroli.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Jūsu serveris vēl nav pareizi iestatīts, lai ļautu sinhronizēt datnes, jo izskatās, ka WebDAV saskarne ir salauzta.", "Please double check the installation guides." => "Lūdzu, vēlreiz pārbaudiet instalēšanas palīdzību.", +"Could not find category \"%s\"" => "Nevarēja atrast kategoriju “%s”", "seconds ago" => "sekundes atpakaļ", "_%n minute ago_::_%n minutes ago_" => array("","","Pirms %n minūtēm"), "_%n hour ago_::_%n hours ago_" => array("","","Pirms %n stundām"), @@ -48,8 +48,6 @@ $TRANSLATIONS = array( "last month" => "pagājušajā mēnesī", "_%n month ago_::_%n months ago_" => array("","","Pirms %n mēnešiem"), "last year" => "gājušajā gadā", -"years ago" => "gadus atpakaļ", -"Caused by:" => "Cēlonis:", -"Could not find category \"%s\"" => "Nevarēja atrast kategoriju “%s”" +"years ago" => "gadus atpakaļ" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/lib/private/l10n/mk.php b/lib/l10n/mk.php similarity index 88% rename from lib/private/l10n/mk.php rename to lib/l10n/mk.php index 69d4a1cb6946947650c59036be7ae1ad9a2d06bf..deaf1bc8d0559da3313d14b72e8802600e64b02c 100644 --- a/lib/private/l10n/mk.php +++ b/lib/l10n/mk.php @@ -5,6 +5,8 @@ $TRANSLATIONS = array( "Settings" => "Подесувања", "Users" => "Корисници", "Admin" => "Админ", +"Unknown filetype" => "Непознат тип на датотека", +"Invalid image" => "Невалидна фотографија", "web services under your control" => "веб сервиси под Ваша контрола", "ZIP download is turned off." => "Преземање во ZIP е исклучено", "Files need to be downloaded one by one." => "Датотеките треба да се симнат една по една.", @@ -16,6 +18,7 @@ $TRANSLATIONS = array( "Files" => "Датотеки", "Text" => "Текст", "Images" => "Слики", +"Could not find category \"%s\"" => "Не можам да најдам категорија „%s“", "seconds ago" => "пред секунди", "_%n minute ago_::_%n minutes ago_" => array("",""), "_%n hour ago_::_%n hours ago_" => array("",""), @@ -25,7 +28,6 @@ $TRANSLATIONS = array( "last month" => "минатиот месец", "_%n month ago_::_%n months ago_" => array("",""), "last year" => "минатата година", -"years ago" => "пред години", -"Could not find category \"%s\"" => "Не можам да најдам категорија „%s“" +"years ago" => "пред години" ); $PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/lib/private/l10n/ne.php b/lib/l10n/ml_IN.php similarity index 100% rename from lib/private/l10n/ne.php rename to lib/l10n/ml_IN.php diff --git a/lib/private/l10n/ms_MY.php b/lib/l10n/ms_MY.php similarity index 100% rename from lib/private/l10n/ms_MY.php rename to lib/l10n/ms_MY.php diff --git a/lib/private/l10n/my_MM.php b/lib/l10n/my_MM.php similarity index 94% rename from lib/private/l10n/my_MM.php rename to lib/l10n/my_MM.php index 5f4b6ddc820236f492a6af77b426901b7e2b0a3d..7fdf0d0285d9acd0b77e33248e6da69e378df73c 100644 --- a/lib/private/l10n/my_MM.php +++ b/lib/l10n/my_MM.php @@ -12,6 +12,7 @@ $TRANSLATIONS = array( "Files" => "ဖိုင်များ", "Text" => "စာသား", "Images" => "ပုံရိပ်များ", +"Could not find category \"%s\"" => "\"%s\"ခေါင်းစဉ်ကို ရှာမတွေ့ပါ", "seconds ago" => "စက္ကန့်အနည်းငယ်က", "_%n minute ago_::_%n minutes ago_" => array(""), "_%n hour ago_::_%n hours ago_" => array(""), @@ -21,7 +22,6 @@ $TRANSLATIONS = array( "last month" => "ပြီးခဲ့သောလ", "_%n month ago_::_%n months ago_" => array(""), "last year" => "မနှစ်က", -"years ago" => "နှစ် အရင်က", -"Could not find category \"%s\"" => "\"%s\"ခေါင်းစဉ်ကို ရှာမတွေ့ပါ" +"years ago" => "နှစ် အရင်က" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/private/l10n/nb_NO.php b/lib/l10n/nb_NO.php similarity index 79% rename from lib/private/l10n/nb_NO.php rename to lib/l10n/nb_NO.php index 8e7d095d369b2efea37ae0710658e4a4adeb5b0c..5da36f9be37dce3ba00266b7269cd3eecb13fe84 100644 --- a/lib/private/l10n/nb_NO.php +++ b/lib/l10n/nb_NO.php @@ -5,6 +5,8 @@ $TRANSLATIONS = array( "Settings" => "Innstillinger", "Users" => "Brukere", "Admin" => "Admin", +"Unknown filetype" => "Ukjent filtype", +"Invalid image" => "Ugyldig bilde", "web services under your control" => "web tjenester du kontrollerer", "ZIP download is turned off." => "ZIP-nedlasting av avslått", "Files need to be downloaded one by one." => "Filene må lastes ned en om gangen", @@ -18,16 +20,16 @@ $TRANSLATIONS = array( "Images" => "Bilder", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din nettservev er ikke konfigurert korrekt for filsynkronisering. WebDAV ser ut til å ikke funkere.", "Please double check the installation guides." => "Vennligst dobbelsjekk installasjonsguiden.", +"Could not find category \"%s\"" => "Kunne ikke finne kategori \"%s\"", "seconds ago" => "sekunder siden", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n minute ago_::_%n minutes ago_" => array("","%n minutter siden"), +"_%n hour ago_::_%n hours ago_" => array("","%n timer siden"), "today" => "i dag", "yesterday" => "i går", -"_%n day go_::_%n days ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("","%n dager siden"), "last month" => "forrige måned", -"_%n month ago_::_%n months ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","%n dager siden"), "last year" => "forrige år", -"years ago" => "år siden", -"Could not find category \"%s\"" => "Kunne ikke finne kategori \"%s\"" +"years ago" => "år siden" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/sw_KE.php b/lib/l10n/nds.php similarity index 100% rename from lib/private/l10n/sw_KE.php rename to lib/l10n/nds.php diff --git a/lib/l10n/ne.php b/lib/l10n/ne.php new file mode 100644 index 0000000000000000000000000000000000000000..15f78e0bce6d7e36688d2913f6affa4c17472a65 --- /dev/null +++ b/lib/l10n/ne.php @@ -0,0 +1,8 @@ + 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/private/l10n/nl.php b/lib/l10n/nl.php similarity index 93% rename from lib/private/l10n/nl.php rename to lib/l10n/nl.php index 20374f1f0f894598615c171f2e52c1d98bcc48c5..2f6205fcf1c41ca71e0d186cf09b41056ab942c9 100644 --- a/lib/private/l10n/nl.php +++ b/lib/l10n/nl.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Gebruikers", "Admin" => "Beheerder", "Failed to upgrade \"%s\"." => "Upgrade \"%s\" mislukt.", -"Custom profile pictures don't work with encryption yet" => "Maatwerk profielafbeelding werkt nog niet met versleuteling", "Unknown filetype" => "Onbekend bestandsformaat", "Invalid image" => "Ongeldige afbeelding", "web services under your control" => "Webdiensten in eigen beheer", @@ -17,7 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Bestanden moeten één voor één worden gedownload.", "Back to Files" => "Terug naar bestanden", "Selected files too large to generate zip file." => "De geselecteerde bestanden zijn te groot om een zip bestand te maken.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Download de bestanden in kleinere brokken, appart of vraag uw administrator.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Download de bestanden afzonderlijk in kleinere porties of vraag het uw beheerder,", "No source specified when installing app" => "Geen bron opgegeven bij installatie van de app", "No href specified when installing app from http" => "Geen href opgegeven bij installeren van de app vanaf http", "No path specified when installing app from local file" => "Geen pad opgegeven bij installeren van de app vanaf een lokaal bestand", @@ -56,6 +55,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Stel een beheerderswachtwoord in.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt.", "Please double check the installation guides." => "Controleer de installatiehandleiding goed.", +"Could not find category \"%s\"" => "Kon categorie \"%s\" niet vinden", "seconds ago" => "seconden geleden", "_%n minute ago_::_%n minutes ago_" => array("%n minuut geleden","%n minuten geleden"), "_%n hour ago_::_%n hours ago_" => array("%n uur geleden","%n uur geleden"), @@ -65,8 +65,6 @@ $TRANSLATIONS = array( "last month" => "vorige maand", "_%n month ago_::_%n months ago_" => array("%n maand geleden","%n maanden geleden"), "last year" => "vorig jaar", -"years ago" => "jaar geleden", -"Caused by:" => "Gekomen door:", -"Could not find category \"%s\"" => "Kon categorie \"%s\" niet vinden" +"years ago" => "jaar geleden" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/nn_NO.php b/lib/l10n/nn_NO.php similarity index 100% rename from lib/private/l10n/nn_NO.php rename to lib/l10n/nn_NO.php diff --git a/lib/l10n/nqo.php b/lib/l10n/nqo.php new file mode 100644 index 0000000000000000000000000000000000000000..e7b09649a240500e39096daf02b7cc137312f444 --- /dev/null +++ b/lib/l10n/nqo.php @@ -0,0 +1,8 @@ + 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=1; plural=0;"; diff --git a/lib/private/l10n/oc.php b/lib/l10n/oc.php similarity index 100% rename from lib/private/l10n/oc.php rename to lib/l10n/oc.php diff --git a/lib/private/l10n/pa.php b/lib/l10n/pa.php similarity index 100% rename from lib/private/l10n/pa.php rename to lib/l10n/pa.php diff --git a/lib/private/l10n/pl.php b/lib/l10n/pl.php similarity index 93% rename from lib/private/l10n/pl.php rename to lib/l10n/pl.php index 270559b4e5067cef01a25103a5b8a32f971d0058..fe3e876916afa9757b253a3e7283d28e58de34eb 100644 --- a/lib/private/l10n/pl.php +++ b/lib/l10n/pl.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Użytkownicy", "Admin" => "Administrator", "Failed to upgrade \"%s\"." => "Błąd przy aktualizacji \"%s\".", -"Custom profile pictures don't work with encryption yet" => "Domyślny profil zdjęć nie działa z szyfrowaniem jeszcze", "Unknown filetype" => "Nieznany typ pliku", "Invalid image" => "Błędne zdjęcie", "web services under your control" => "Kontrolowane serwisy", @@ -17,7 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Pliki muszą zostać pobrane pojedynczo.", "Back to Files" => "Wróć do plików", "Selected files too large to generate zip file." => "Wybrane pliki są zbyt duże, aby wygenerować plik zip.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Pobierz pliki w mniejszy kawałkach, oddzielnie lub poproś administratora o zwiększenie limitu.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Proszę ściągać pliki osobno w mniejszych paczkach lub poprosić administratora.", "No source specified when installing app" => "Nie określono źródła podczas instalacji aplikacji", "No href specified when installing app from http" => "Nie określono linku skąd aplikacja ma być zainstalowana", "No path specified when installing app from local file" => "Nie określono lokalnego pliku z którego miała być instalowana aplikacja", @@ -66,7 +65,6 @@ $TRANSLATIONS = array( "last month" => "w zeszłym miesiącu", "_%n month ago_::_%n months ago_" => array("%n miesiąc temu","%n miesięcy temu","%n miesięcy temu"), "last year" => "w zeszłym roku", -"years ago" => "lat temu", -"Caused by:" => "Spowodowane przez:" +"years ago" => "lat temu" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/private/l10n/pl_PL.php b/lib/l10n/pl_PL.php similarity index 100% rename from lib/private/l10n/pl_PL.php rename to lib/l10n/pl_PL.php diff --git a/lib/private/l10n/pt_BR.php b/lib/l10n/pt_BR.php similarity index 93% rename from lib/private/l10n/pt_BR.php rename to lib/l10n/pt_BR.php index 7a580799701095a1b80b401c366785cc0df0d329..cc20fb3cb02e908715815740dc1b0875da88122a 100644 --- a/lib/private/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Usuários", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Falha na atualização de \"%s\".", -"Custom profile pictures don't work with encryption yet" => "Fotos de perfil personalizados ainda não funcionam com criptografia", "Unknown filetype" => "Tipo de arquivo desconhecido", "Invalid image" => "Imagem inválida", "web services under your control" => "serviços web sob seu controle", @@ -17,7 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Arquivos precisam ser baixados um de cada vez.", "Back to Files" => "Voltar para Arquivos", "Selected files too large to generate zip file." => "Arquivos selecionados são muito grandes para gerar arquivo zip.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Baixe os arquivos em pedaços menores, separadamente ou solicite educadamente ao seu administrador.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Por favor baixe os arquivos separadamente em pedaços ou educadamente pergunte ao seu administrador.", "No source specified when installing app" => "Nenhuma fonte foi especificada enquanto instalava o aplicativo", "No href specified when installing app from http" => "Nenhuma href foi especificada enquanto instalava o aplicativo de httml", "No path specified when installing app from local file" => "Nenhum caminho foi especificado enquanto instalava o aplicativo do arquivo local", @@ -56,6 +55,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Defina uma senha de administrador.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Seu servidor web não está configurado corretamente para permitir sincronização de arquivos porque a interface WebDAV parece estar quebrada.", "Please double check the installation guides." => "Por favor, confira os guias de instalação.", +"Could not find category \"%s\"" => "Impossível localizar categoria \"%s\"", "seconds ago" => "segundos atrás", "_%n minute ago_::_%n minutes ago_" => array("","ha %n minutos"), "_%n hour ago_::_%n hours ago_" => array("","ha %n horas"), @@ -65,8 +65,6 @@ $TRANSLATIONS = array( "last month" => "último mês", "_%n month ago_::_%n months ago_" => array("","ha %n meses"), "last year" => "último ano", -"years ago" => "anos atrás", -"Caused by:" => "Causados ​​por:", -"Could not find category \"%s\"" => "Impossível localizar categoria \"%s\"" +"years ago" => "anos atrás" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/lib/private/l10n/pt_PT.php b/lib/l10n/pt_PT.php similarity index 61% rename from lib/private/l10n/pt_PT.php rename to lib/l10n/pt_PT.php index 6e2bcba7b10c43bbb11eace544e20ce94fba363d..bd9165ebb1a9fa1174d0eae32d57b36459a94b3d 100644 --- a/lib/private/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -1,5 +1,7 @@ "A aplicação \"%s\" não pode ser instaladas por não ser compatível com esta versão da ownCloud.", +"No app name specified" => "O nome da aplicação não foi especificado", "Help" => "Ajuda", "Personal" => "Pessoal", "Settings" => "Configurações", @@ -14,7 +16,19 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Os ficheiros precisam de ser descarregados um por um.", "Back to Files" => "Voltar a Ficheiros", "Selected files too large to generate zip file." => "Os ficheiros seleccionados são grandes demais para gerar um ficheiro zip.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Descarregue os ficheiros em partes menores, separados ou peça gentilmente ao seu administrador.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Por favor descarregue os ficheiros divididos em partes mais pequenas ou peça ajuda ao seu administrador.", +"No source specified when installing app" => "Não foi especificada uma fonte de instalação desta aplicação", +"No href specified when installing app from http" => "Não foi especificada uma href http para instalar esta aplicação", +"No path specified when installing app from local file" => "Não foi especificado o caminho de instalação desta aplicação", +"Archives of type %s are not supported" => "Arquivos do tipo %s não são suportados", +"Failed to open archive when installing app" => "Ocorreu um erro ao abrir o ficheiro de instalação desta aplicação", +"App does not provide an info.xml file" => "A aplicação não disponibiliza um ficheiro info.xml", +"App can't be installed because of not allowed code in the App" => "A aplicação não pode ser instalado devido a código não permitido dentro da aplicação", +"App can't be installed because it is not compatible with this version of ownCloud" => "A aplicação não pode ser instalada por não ser compatível com esta versão do ownCloud", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "Esta aplicação não pode ser instalada por que contém o tag true que só é permitido para aplicações nativas", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Esta aplicação não pode ser instalada porque a versão no info.xml/version não coincide com a reportada na loja de aplicações", +"App directory already exists" => "A directoria da aplicação já existe", +"Can't create app folder. Please fix permissions. %s" => "Não foi possível criar a pasta da aplicação. Por favor verifique as permissões. %s", "Application is not enabled" => "A aplicação não está activada", "Authentication error" => "Erro na autenticação", "Token expired. Please reload page." => "O token expirou. Por favor recarregue a página.", @@ -41,6 +55,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Definiar uma password de administrador", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "O seu servidor web não está configurado correctamente para autorizar sincronização de ficheiros, pois o interface WebDAV parece estar com problemas.", "Please double check the installation guides." => "Por favor verifique installation guides.", +"Could not find category \"%s\"" => "Não foi encontrado a categoria \"%s\"", "seconds ago" => "Minutos atrás", "_%n minute ago_::_%n minutes ago_" => array("","%n minutos atrás"), "_%n hour ago_::_%n hours ago_" => array("","%n horas atrás"), @@ -50,8 +65,6 @@ $TRANSLATIONS = array( "last month" => "ultímo mês", "_%n month ago_::_%n months ago_" => array("","%n meses atrás"), "last year" => "ano passado", -"years ago" => "anos atrás", -"Caused by:" => "Causado por:", -"Could not find category \"%s\"" => "Não foi encontrado a categoria \"%s\"" +"years ago" => "anos atrás" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/ro.php b/lib/l10n/ro.php similarity index 97% rename from lib/private/l10n/ro.php rename to lib/l10n/ro.php index 76dafcd03e05489e9f9d3ae1aff53fb4de3125bb..94ff7a4326af2874e9e672612836e43abdcbc7f7 100644 --- a/lib/private/l10n/ro.php +++ b/lib/l10n/ro.php @@ -20,6 +20,7 @@ $TRANSLATIONS = array( "Images" => "Imagini", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serverul de web nu este încă setat corespunzător pentru a permite sincronizarea fișierelor deoarece interfața WebDAV pare a fi întreruptă.", "Please double check the installation guides." => "Vă rugăm să verificați ghiduri de instalare.", +"Could not find category \"%s\"" => "Cloud nu a gasit categoria \"%s\"", "seconds ago" => "secunde în urmă", "_%n minute ago_::_%n minutes ago_" => array("","","acum %n minute"), "_%n hour ago_::_%n hours ago_" => array("","","acum %n ore"), @@ -29,7 +30,6 @@ $TRANSLATIONS = array( "last month" => "ultima lună", "_%n month ago_::_%n months ago_" => array("","",""), "last year" => "ultimul an", -"years ago" => "ani în urmă", -"Could not find category \"%s\"" => "Cloud nu a gasit categoria \"%s\"" +"years ago" => "ani în urmă" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/lib/private/l10n/ru.php b/lib/l10n/ru.php similarity index 92% rename from lib/private/l10n/ru.php rename to lib/l10n/ru.php index 501065f8b5f391d40bf7195e46f0b20a97a00d55..34d1730aaf2a215a9490dd15ae2f23c0675126fa 100644 --- a/lib/private/l10n/ru.php +++ b/lib/l10n/ru.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Пользователи", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Не смог обновить \"%s\".", -"Custom profile pictures don't work with encryption yet" => "Пользовательские картинки профиля ещё не поддерживают шифрование", "Unknown filetype" => "Неизвестный тип файла", "Invalid image" => "Изображение повреждено", "web services under your control" => "веб-сервисы под вашим управлением", @@ -17,7 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Файлы должны быть загружены по одному.", "Back to Files" => "Назад к файлам", "Selected files too large to generate zip file." => "Выбранные файлы слишком велики, чтобы создать zip файл.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Загрузите файл маленьшими порциями, раздельно или вежливо попросите Вашего администратора.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Загрузите файлы раздельно маленькими частями или вежливо попросите вашего администратора.", "No source specified when installing app" => "Не указан источник при установке приложения", "No href specified when installing app from http" => "Не указан атрибут href при установке приложения через http", "No path specified when installing app from local file" => "Не указан путь при установке приложения из локального файла", @@ -56,6 +55,7 @@ $TRANSLATIONS = array( "Set an admin password." => "становит пароль для admin.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ваш веб сервер до сих пор не настроен правильно для возможности синхронизации файлов, похоже что проблема в неисправности интерфейса WebDAV.", "Please double check the installation guides." => "Пожалуйста, дважды просмотрите инструкции по установке.", +"Could not find category \"%s\"" => "Категория \"%s\" не найдена", "seconds ago" => "несколько секунд назад", "_%n minute ago_::_%n minutes ago_" => array("%n минута назад","%n минуты назад","%n минут назад"), "_%n hour ago_::_%n hours ago_" => array("%n час назад","%n часа назад","%n часов назад"), @@ -65,8 +65,6 @@ $TRANSLATIONS = array( "last month" => "в прошлом месяце", "_%n month ago_::_%n months ago_" => array("%n месяц назад","%n месяца назад","%n месяцев назад"), "last year" => "в прошлом году", -"years ago" => "несколько лет назад", -"Caused by:" => "Вызвано:", -"Could not find category \"%s\"" => "Категория \"%s\" не найдена" +"years ago" => "несколько лет назад" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/private/l10n/si_LK.php b/lib/l10n/si_LK.php similarity index 100% rename from lib/private/l10n/si_LK.php rename to lib/l10n/si_LK.php diff --git a/lib/private/l10n/sk.php b/lib/l10n/sk.php similarity index 85% rename from lib/private/l10n/sk.php rename to lib/l10n/sk.php index 54812b15a6f41bb15db873cda47fe6648fd5e474..5cfafe6ca0c28b91c39a3c9f19756c99ca88a354 100644 --- a/lib/private/l10n/sk.php +++ b/lib/l10n/sk.php @@ -1,5 +1,7 @@ "Osobné", +"Settings" => "Nastavenia", "_%n minute ago_::_%n minutes ago_" => array("","",""), "_%n hour ago_::_%n hours ago_" => array("","",""), "_%n day go_::_%n days ago_" => array("","",""), diff --git a/lib/private/l10n/sk_SK.php b/lib/l10n/sk_SK.php similarity index 75% rename from lib/private/l10n/sk_SK.php rename to lib/l10n/sk_SK.php index 13487b039d68c79f660a825f883706c9155f2a0f..59c45e2b0bc2adac27b99d02bc37aca7f4ac1e97 100644 --- a/lib/private/l10n/sk_SK.php +++ b/lib/l10n/sk_SK.php @@ -1,6 +1,6 @@ "Aplikácia \"%s\" nemôže byť nainštalovaná kvôli nekompatibilite z danou verziou ownCloudu.", +"App \"%s\" can't be installed because it is not compatible with this version of ownCloud." => "Aplikácia \"%s\" nemôže byť nainštalovaná kvôli nekompatibilite z touto verziou ownCloudu.", "No app name specified" => "Nešpecifikované meno aplikácie", "Help" => "Pomoc", "Personal" => "Osobné", @@ -8,24 +8,26 @@ $TRANSLATIONS = array( "Users" => "Používatelia", "Admin" => "Administrátor", "Failed to upgrade \"%s\"." => "Zlyhala aktualizácia \"%s\".", +"Unknown filetype" => "Neznámy typ súboru", +"Invalid image" => "Chybný obrázok", "web services under your control" => "webové služby pod Vašou kontrolou", "cannot open \"%s\"" => "nemožno otvoriť \"%s\"", "ZIP download is turned off." => "Sťahovanie súborov ZIP je vypnuté.", "Files need to be downloaded one by one." => "Súbory musia byť nahrávané jeden za druhým.", "Back to Files" => "Späť na súbory", "Selected files too large to generate zip file." => "Zvolené súbory sú príliš veľké na vygenerovanie zip súboru.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Stiahnite súbory po menších častiach, samostatne, alebo sa obráťte na správcu.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Prosím, stiahnite si súbory samostatne v menších blokoch alebo sa obráťte na správcu.", "No source specified when installing app" => "Nešpecifikovaný zdroj pri inštalácii aplikácie", "No href specified when installing app from http" => "Nešpecifikovaný atribút \"href\" pri inštalácii aplikácie pomocou protokolu \"http\"", "No path specified when installing app from local file" => "Nešpecifikovaná cesta pri inštalácii aplikácie z lokálneho súboru", -"Archives of type %s are not supported" => "Typ archívu %s nie je podporovaný", +"Archives of type %s are not supported" => "Tento typ archívu %s nie je podporovaný", "Failed to open archive when installing app" => "Zlyhanie pri otváraní archívu počas inštalácie aplikácie", "App does not provide an info.xml file" => "Aplikácia neposkytuje súbor info.xml", -"App can't be installed because of not allowed code in the App" => "Aplikácia nemôže byť inštalovaná pre nepovolený kód v aplikácii", -"App can't be installed because it is not compatible with this version of ownCloud" => "Aplikácia nemôže byť inštalovaná pre nekompatibilitu z danou verziou ownCloudu", -"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "Aplikácia nemôže byť inštalovaná pretože obsahuje pravý štítok, ktorý nie je povolený pre zaslané \"shipped\" aplikácie", -"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Aplikácia nemôže byť inštalovaná pretože verzia v info.xml/version nezodpovedá verzii špecifikovanej v aplikačnom obchode", -"App directory already exists" => "Aplikačný adresár už existuje", +"App can't be installed because of not allowed code in the App" => "Aplikácia nemôže byť nainštalovaná pre nepovolený kód v aplikácii", +"App can't be installed because it is not compatible with this version of ownCloud" => "Aplikácia nemôže byť nainštalovaná pre nekompatibilitu z touto verziou ownCloudu", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "Aplikácia nemôže byť nainštalovaná pretože obsahuje pravý štítok, ktorý nie je povolený pre zaslané \"shipped\" aplikácie", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Aplikácia nemôže byť nainštalovaná pretože verzia v info.xml/version nezodpovedá verzii špecifikovanej v obchode s aplikáciami", +"App directory already exists" => "Aplikačný priečinok už existuje", "Can't create app folder. Please fix permissions. %s" => "Nemožno vytvoriť aplikačný priečinok. Prosím upravte povolenia. %s", "Application is not enabled" => "Aplikácia nie je zapnutá", "Authentication error" => "Chyba autentifikácie", @@ -33,7 +35,7 @@ $TRANSLATIONS = array( "Files" => "Súbory", "Text" => "Text", "Images" => "Obrázky", -"%s enter the database username." => "Zadajte používateľské meno %s databázy..", +"%s enter the database username." => "Zadajte používateľské meno %s databázy.", "%s enter the database name." => "Zadajte názov databázy pre %s databázy.", "%s you may not use dots in the database name" => "V názve databázy %s nemôžete používať bodky", "MS SQL username and/or password not valid: %s" => "Používateľské meno, alebo heslo MS SQL nie je platné: %s", @@ -53,17 +55,16 @@ $TRANSLATIONS = array( "Set an admin password." => "Zadajte heslo administrátora.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Váš webový server nie je správne nastavený na synchronizáciu, pretože rozhranie WebDAV je poškodené.", "Please double check the installation guides." => "Prosím skontrolujte inštalačnú príručku.", +"Could not find category \"%s\"" => "Nemožno nájsť danú kategóriu \"%s\"", "seconds ago" => "pred sekundami", -"_%n minute ago_::_%n minutes ago_" => array("","","pred %n minútami"), -"_%n hour ago_::_%n hours ago_" => array("","","pred %n hodinami"), +"_%n minute ago_::_%n minutes ago_" => array("pred %n minútou","pred %n minútami","pred %n minútami"), +"_%n hour ago_::_%n hours ago_" => array("pred %n hodinou","pred %n hodinami","pred %n hodinami"), "today" => "dnes", "yesterday" => "včera", -"_%n day go_::_%n days ago_" => array("","","pred %n dňami"), +"_%n day go_::_%n days ago_" => array("pred %n dňom","pred %n dňami","pred %n dňami"), "last month" => "minulý mesiac", -"_%n month ago_::_%n months ago_" => array("","","pred %n mesiacmi"), +"_%n month ago_::_%n months ago_" => array("pred %n mesiacom","pred %n mesiacmi","pred %n mesiacmi"), "last year" => "minulý rok", -"years ago" => "pred rokmi", -"Caused by:" => "Príčina:", -"Could not find category \"%s\"" => "Nemožno nájsť danú kategóriu \"%s\"" +"years ago" => "pred rokmi" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php new file mode 100644 index 0000000000000000000000000000000000000000..3cc8dd130c8f90a0b7f3b4dc6cb13007578f5b86 --- /dev/null +++ b/lib/l10n/sl.php @@ -0,0 +1,70 @@ + "Programa \"%s\" ni mogoče namestiti, ker ni skladen s trenutno nameščeno različico oblaka ownCloud.", +"No app name specified" => "Ni podanega imena programa", +"Help" => "Pomoč", +"Personal" => "Osebno", +"Settings" => "Nastavitve", +"Users" => "Uporabniki", +"Admin" => "Skrbništvo", +"Failed to upgrade \"%s\"." => "Posodabljanje \"%s\" je spodletelo.", +"Unknown filetype" => "Neznana vrsta datoteke", +"Invalid image" => "Neveljavna slika", +"web services under your control" => "spletne storitve pod vašim nadzorom", +"cannot open \"%s\"" => "ni mogoče odpreti \"%s\"", +"ZIP download is turned off." => "Prejemanje datotek v paketu ZIP je onemogočeno.", +"Files need to be downloaded one by one." => "Datoteke je mogoče prejeti le posamično.", +"Back to Files" => "Nazaj na datoteke", +"Selected files too large to generate zip file." => "Izbrane datoteke so prevelike za ustvarjanje datoteke arhiva zip.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Datoteke je treba prejeti ločeno v manjših paketih, ali pa je treba za pomoč prositi skrbnika.", +"No source specified when installing app" => "Ni podanega vira med nameščenjem programa", +"No href specified when installing app from http" => "Ni podanega podatka naslova HREF med nameščenjem programa preko protokola HTTP.", +"No path specified when installing app from local file" => "Ni podane poti med nameščenjem programa iz krajevne datoteke", +"Archives of type %s are not supported" => "Arhivi vrste %s niso podprti", +"Failed to open archive when installing app" => "Odpiranje arhiva je med nameščanjem spodletelo", +"App does not provide an info.xml file" => "Program je brez datoteke info.xml", +"App can't be installed because of not allowed code in the App" => "Programa ni mogoče namestiti zaradi nedovoljene programske kode.", +"App can't be installed because it is not compatible with this version of ownCloud" => "Programa ni mogoče namestiti, ker ni skladen z trenutno nameščeno različico oblaka ownCloud.", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "Programa ni mogoče namestiti, ker vsebuje oznako potrditve, ki pa ni dovoljena za javne programe.", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Program ni mogoče namestiti zaradi neustrezne različice datoteke info.xml. Ta ni enaka različici programa.", +"App directory already exists" => "Programska mapa že obstaja", +"Can't create app folder. Please fix permissions. %s" => "Programske mape ni mogoče ustvariti. Ni ustreznih dovoljenj. %s", +"Application is not enabled" => "Program ni omogočen", +"Authentication error" => "Napaka overjanja", +"Token expired. Please reload page." => "Žeton je potekel. Stran je treba ponovno naložiti.", +"Files" => "Datoteke", +"Text" => "Besedilo", +"Images" => "Slike", +"%s enter the database username." => "%s - vnos uporabniškega imena podatkovne zbirke.", +"%s enter the database name." => "%s - vnos imena podatkovne zbirke.", +"%s you may not use dots in the database name" => "%s - v imenu podatkovne zbirke ni dovoljeno uporabljati pik.", +"MS SQL username and/or password not valid: %s" => "Uporabniško ime ali geslo MS SQL ni veljavno: %s", +"You need to enter either an existing account or the administrator." => "Prijaviti se je treba v obstoječi ali pa skrbniški račun.", +"MySQL username and/or password not valid" => "Uporabniško ime ali geslo MySQL ni veljavno", +"DB Error: \"%s\"" => "Napaka podatkovne zbirke: \"%s\"", +"Offending command was: \"%s\"" => "Napačni ukaz je: \"%s\"", +"MySQL user '%s'@'localhost' exists already." => "Uporabnik MySQL '%s'@'localhost' že obstaja.", +"Drop this user from MySQL" => "Odstrani uporabnika iz podatkovne zbirke MySQL", +"MySQL user '%s'@'%%' already exists" => "Uporabnik MySQL '%s'@'%%' že obstaja.", +"Drop this user from MySQL." => "Odstrani uporabnika iz podatkovne zbirke MySQL", +"Oracle connection could not be established" => "Povezave s sistemom Oracle ni mogoče vzpostaviti.", +"Oracle username and/or password not valid" => "Uporabniško ime ali geslo Oracle ni veljavno", +"Offending command was: \"%s\", name: %s, password: %s" => "Napačni ukaz je: \"%s\", ime: %s, geslo: %s", +"PostgreSQL username and/or password not valid" => "Uporabniško ime ali geslo PostgreSQL ni veljavno", +"Set an admin username." => "Nastavi uporabniško ime skrbnika.", +"Set an admin password." => "Nastavi geslo skrbnika.", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena.", +"Please double check the installation guides." => "Preverite navodila namestitve.", +"Could not find category \"%s\"" => "Kategorije \"%s\" ni mogoče najti.", +"seconds ago" => "pred nekaj sekundami", +"_%n minute ago_::_%n minutes ago_" => array("pred %n minuto","pred %n minutama","pred %n minutami","pred %n minutami"), +"_%n hour ago_::_%n hours ago_" => array("pred %n uro","pred %n urama","pred %n urami","pred %n urami"), +"today" => "danes", +"yesterday" => "včeraj", +"_%n day go_::_%n days ago_" => array("pred %n dnevom","pred %n dnevoma","pred %n dnevi","pred %n dnevi"), +"last month" => "zadnji mesec", +"_%n month ago_::_%n months ago_" => array("pred %n mesecem","pred %n mesecema","pred %n meseci","pred %n meseci"), +"last year" => "lansko leto", +"years ago" => "let nazaj" +); +$PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/lib/private/l10n/sq.php b/lib/l10n/sq.php similarity index 98% rename from lib/private/l10n/sq.php rename to lib/l10n/sq.php index edaa1df2b86b08b71afdb26cedca4bdfafe96f67..b36aa4ceefcc4b086d1bbf32d9d96804a7b06ade 100644 --- a/lib/private/l10n/sq.php +++ b/lib/l10n/sq.php @@ -35,6 +35,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Cakto kodin e administratorit.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar.", "Please double check the installation guides." => "Ju lutemi kontrolloni mirë shoqëruesin e instalimit.", +"Could not find category \"%s\"" => "Kategoria \"%s\" nuk u gjet", "seconds ago" => "sekonda më parë", "_%n minute ago_::_%n minutes ago_" => array("","%n minuta më parë"), "_%n hour ago_::_%n hours ago_" => array("","%n orë më parë"), @@ -44,7 +45,6 @@ $TRANSLATIONS = array( "last month" => "muajin e shkuar", "_%n month ago_::_%n months ago_" => array("","%n muaj më parë"), "last year" => "vitin e shkuar", -"years ago" => "vite më parë", -"Could not find category \"%s\"" => "Kategoria \"%s\" nuk u gjet" +"years ago" => "vite më parë" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/sr.php b/lib/l10n/sr.php similarity index 96% rename from lib/private/l10n/sr.php rename to lib/l10n/sr.php index 9441d0578fcb2d7343b0910c637495448b3ff3ae..47a84803683055c7b347d82c5434ccee92373cd4 100644 --- a/lib/private/l10n/sr.php +++ b/lib/l10n/sr.php @@ -18,6 +18,7 @@ $TRANSLATIONS = array( "Images" => "Слике", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно.", "Please double check the installation guides." => "Погледајте водиче за инсталацију.", +"Could not find category \"%s\"" => "Не могу да пронађем категорију „%s“.", "seconds ago" => "пре неколико секунди", "_%n minute ago_::_%n minutes ago_" => array("","",""), "_%n hour ago_::_%n hours ago_" => array("","",""), @@ -27,7 +28,6 @@ $TRANSLATIONS = array( "last month" => "прошлог месеца", "_%n month ago_::_%n months ago_" => array("","",""), "last year" => "прошле године", -"years ago" => "година раније", -"Could not find category \"%s\"" => "Не могу да пронађем категорију „%s“." +"years ago" => "година раније" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/private/l10n/sr@latin.php b/lib/l10n/sr@latin.php similarity index 100% rename from lib/private/l10n/sr@latin.php rename to lib/l10n/sr@latin.php diff --git a/lib/private/l10n/sv.php b/lib/l10n/sv.php similarity index 94% rename from lib/private/l10n/sv.php rename to lib/l10n/sv.php index e7c3420a85ba9ee9a4f9a822444862d6ad2478d7..ffffe5956f1406b23110243e5c43d66fa37c8564 100644 --- a/lib/private/l10n/sv.php +++ b/lib/l10n/sv.php @@ -8,13 +8,15 @@ $TRANSLATIONS = array( "Users" => "Användare", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Misslyckades med att uppgradera \"%s\".", +"Unknown filetype" => "Okänd filtyp", +"Invalid image" => "Ogiltig bild", "web services under your control" => "webbtjänster under din kontroll", "cannot open \"%s\"" => "Kan inte öppna \"%s\"", "ZIP download is turned off." => "Nerladdning av ZIP är avstängd.", "Files need to be downloaded one by one." => "Filer laddas ner en åt gången.", "Back to Files" => "Tillbaka till Filer", "Selected files too large to generate zip file." => "Valda filer är för stora för att skapa zip-fil.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Ladda ner filerna i mindre bitar, separat eller fråga din administratör.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Ladda ner filerna i mindre bitar, separat eller fråga din administratör.", "No source specified when installing app" => "Ingen källa angiven vid installation av app ", "No href specified when installing app from http" => "Ingen href angiven vid installation av app från http", "No path specified when installing app from local file" => "Ingen sökväg angiven vid installation av app från lokal fil", @@ -53,6 +55,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Ange ett administratörslösenord.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din webbserver är inte korrekt konfigurerad för att tillåta filsynkronisering eftersom WebDAV inte verkar fungera.", "Please double check the installation guides." => "Var god kontrollera installationsguiden.", +"Could not find category \"%s\"" => "Kunde inte hitta kategorin \"%s\"", "seconds ago" => "sekunder sedan", "_%n minute ago_::_%n minutes ago_" => array("%n minut sedan","%n minuter sedan"), "_%n hour ago_::_%n hours ago_" => array("%n timme sedan","%n timmar sedan"), @@ -62,8 +65,6 @@ $TRANSLATIONS = array( "last month" => "förra månaden", "_%n month ago_::_%n months ago_" => array("%n månad sedan","%n månader sedan"), "last year" => "förra året", -"years ago" => "år sedan", -"Caused by:" => "Orsakad av:", -"Could not find category \"%s\"" => "Kunde inte hitta kategorin \"%s\"" +"years ago" => "år sedan" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/sw_KE.php b/lib/l10n/sw_KE.php new file mode 100644 index 0000000000000000000000000000000000000000..15f78e0bce6d7e36688d2913f6affa4c17472a65 --- /dev/null +++ b/lib/l10n/sw_KE.php @@ -0,0 +1,8 @@ + 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/private/l10n/ta_LK.php b/lib/l10n/ta_LK.php similarity index 98% rename from lib/private/l10n/ta_LK.php rename to lib/l10n/ta_LK.php index e70e65845bea2d65fda8ec396c7ff99aeb01508b..f761ccab0e25757fff27b32e03f8bf7e6f6d1de4 100644 --- a/lib/private/l10n/ta_LK.php +++ b/lib/l10n/ta_LK.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Files" => "கோப்புகள்", "Text" => "உரை", "Images" => "படங்கள்", +"Could not find category \"%s\"" => "பிரிவு \"%s\" ஐ கண்டுப்பிடிக்க முடியவில்லை", "seconds ago" => "செக்கன்களுக்கு முன்", "_%n minute ago_::_%n minutes ago_" => array("",""), "_%n hour ago_::_%n hours ago_" => array("",""), @@ -25,7 +26,6 @@ $TRANSLATIONS = array( "last month" => "கடந்த மாதம்", "_%n month ago_::_%n months ago_" => array("",""), "last year" => "கடந்த வருடம்", -"years ago" => "வருடங்களுக்கு முன்", -"Could not find category \"%s\"" => "பிரிவு \"%s\" ஐ கண்டுப்பிடிக்க முடியவில்லை" +"years ago" => "வருடங்களுக்கு முன்" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/te.php b/lib/l10n/te.php similarity index 100% rename from lib/private/l10n/te.php rename to lib/l10n/te.php diff --git a/lib/private/l10n/th_TH.php b/lib/l10n/th_TH.php similarity index 96% rename from lib/private/l10n/th_TH.php rename to lib/l10n/th_TH.php index 3344d0bb18e98ad4b8549760b06c37f6e8b60654..173d0f2856b85f33fb3c5d67d5ddeeaec1dfa44a 100644 --- a/lib/private/l10n/th_TH.php +++ b/lib/l10n/th_TH.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Files" => "ไฟล์", "Text" => "ข้อความ", "Images" => "รูปภาพ", +"Could not find category \"%s\"" => "ไม่พบหมวดหมู่ \"%s\"", "seconds ago" => "วินาที ก่อนหน้านี้", "_%n minute ago_::_%n minutes ago_" => array(""), "_%n hour ago_::_%n hours ago_" => array(""), @@ -25,7 +26,6 @@ $TRANSLATIONS = array( "last month" => "เดือนที่แล้ว", "_%n month ago_::_%n months ago_" => array(""), "last year" => "ปีที่แล้ว", -"years ago" => "ปี ที่ผ่านมา", -"Could not find category \"%s\"" => "ไม่พบหมวดหมู่ \"%s\"" +"years ago" => "ปี ที่ผ่านมา" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/private/l10n/tr.php b/lib/l10n/tr.php similarity index 72% rename from lib/private/l10n/tr.php rename to lib/l10n/tr.php index b63c37c724077d5dbd826c5671e21d94387e280a..7d25836f7d87461b1cd1a8b38af473ff53095766 100644 --- a/lib/private/l10n/tr.php +++ b/lib/l10n/tr.php @@ -1,6 +1,6 @@ "Owncloud yazılımının bu sürümü ile uyumlu olmadığı için \"%s\" uygulaması kurulamaz.", +"App \"%s\" can't be installed because it is not compatible with this version of ownCloud." => "ownCloud yazılımının bu sürümü ile uyumlu olmadığı için \"%s\" uygulaması kurulamaz.", "No app name specified" => "Uygulama adı belirtimedli", "Help" => "Yardım", "Personal" => "Kişisel", @@ -8,33 +8,35 @@ $TRANSLATIONS = array( "Users" => "Kullanıcılar", "Admin" => "Yönetici", "Failed to upgrade \"%s\"." => "\"%s\" yükseltme başarısız oldu.", -"web services under your control" => "Bilgileriniz güvenli ve şifreli", +"Unknown filetype" => "Bilinmeyen dosya türü", +"Invalid image" => "Geçersiz resim", +"web services under your control" => "kontrolünüzün altındaki web hizmetleri", "cannot open \"%s\"" => "\"%s\" açılamıyor", -"ZIP download is turned off." => "ZIP indirmeleri kapatılmıştır.", +"ZIP download is turned off." => "ZIP indirmeleri kapatıldı.", "Files need to be downloaded one by one." => "Dosyaların birer birer indirilmesi gerekmektedir.", "Back to Files" => "Dosyalara dön", -"Selected files too large to generate zip file." => "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyüktür.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Dosyaları ayrı ayrı, küçük parçalar halinde indirin ya da yöneticinizden yardım isteyin. ", +"Selected files too large to generate zip file." => "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyük.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Dosyaları ayrı ayrı, küçük parçalar halinde indirin veya yöneticinizden yardım isteyin. ", "No source specified when installing app" => "Uygulama kurulurken bir kaynak belirtilmedi", -"No href specified when installing app from http" => "Uygulama kuruluyorken http'de href belirtilmedi.", -"No path specified when installing app from local file" => "Uygulama yerel dosyadan kuruluyorken dosya yolu belirtilmedi", -"Archives of type %s are not supported" => "%s arşiv tipi desteklenmiyor", +"No href specified when installing app from http" => "Uygulama kuruluyorken http'de href belirtilmedi", +"No path specified when installing app from local file" => "Uygulama yerel dosyadan kurulurken dosya yolu belirtilmedi", +"Archives of type %s are not supported" => "%s arşiv türü desteklenmiyor", "Failed to open archive when installing app" => "Uygulama kuruluyorken arşiv dosyası açılamadı", "App does not provide an info.xml file" => "Uygulama info.xml dosyası sağlamıyor", -"App can't be installed because of not allowed code in the App" => "Uygulamada izin verilmeyeden kodlar olduğu için kurulamıyor.", -"App can't be installed because it is not compatible with this version of ownCloud" => "Owncloud versiyonunuz ile uyumsuz olduğu için uygulama kurulamıyor.", -"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "Uygulama kurulamıyor. Çünkü \"non shipped\" uygulamalar için true tag içermektedir.", -"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Uygulama kurulamıyor çünkü info.xml/version ile uygulama marketde belirtilen sürüm aynı değil.", -"App directory already exists" => "App dizini zaten mevcut", -"Can't create app folder. Please fix permissions. %s" => "app dizini oluşturulamıyor. Lütfen izinleri düzeltin. %s", +"App can't be installed because of not allowed code in the App" => "Uygulama, izin verilmeyen kodlar barındırdığından kurulamıyor.", +"App can't be installed because it is not compatible with this version of ownCloud" => "ownCloud sürümünüz ile uyumsuz olduğu için uygulama kurulamıyor.", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "Uygulama kurulamıyor. Çünkü \"birlikte gelmeyen\" uygulamalar için true etiketi içeriyor", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Uygulama kurulamıyor çünkü info.xml/version ile uygulama markette belirtilen sürüm aynı değil", +"App directory already exists" => "Uygulama dizini zaten mevcut", +"Can't create app folder. Please fix permissions. %s" => "Uygulama dizini oluşturulamıyor. Lütfen izinleri düzeltin. %s", "Application is not enabled" => "Uygulama etkinleştirilmedi", "Authentication error" => "Kimlik doğrulama hatası", "Token expired. Please reload page." => "Jetonun süresi geçti. Lütfen sayfayı yenileyin.", "Files" => "Dosyalar", "Text" => "Metin", "Images" => "Resimler", -"%s enter the database username." => "%s veritabanı kullanıcı adını gir.", -"%s enter the database name." => "%s veritabanı adını gir.", +"%s enter the database username." => "%s veritabanı kullanıcı adını girin.", +"%s enter the database name." => "%s veritabanı adını girin.", "%s you may not use dots in the database name" => "%s veritabanı adında nokta kullanamayabilirsiniz", "MS SQL username and/or password not valid: %s" => "MS SQL kullanıcı adı ve/veya parolası geçersiz: %s", "You need to enter either an existing account or the administrator." => "Bir konto veya kullanici birlemek ihtiyacin. ", @@ -44,7 +46,7 @@ $TRANSLATIONS = array( "MySQL user '%s'@'localhost' exists already." => "MySQL kullanici '%s @local host zatan var. ", "Drop this user from MySQL" => "Bu kullanici MySQLden list disari koymak. ", "MySQL user '%s'@'%%' already exists" => "MySQL kullanici '%s @ % % zaten var (zaten yazili)", -"Drop this user from MySQL." => "Bu kulanıcıyı MySQL veritabanından kaldır", +"Drop this user from MySQL." => "Bu kullanıcıyı MySQL veritabanından kaldır", "Oracle connection could not be established" => "Oracle bağlantısı kurulamadı", "Oracle username and/or password not valid" => "Adi klullanici ve/veya parola Oracle mantikli değildir. ", "Offending command was: \"%s\", name: %s, password: %s" => "Hatalı komut: \"%s\", ad: %s, parola: %s", @@ -53,6 +55,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Parola yonetici birlemek. ", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor.", "Please double check the installation guides." => "Lütfen kurulum kılavuzlarını iki kez kontrol edin.", +"Could not find category \"%s\"" => "\"%s\" kategorisi bulunamadı", "seconds ago" => "saniye önce", "_%n minute ago_::_%n minutes ago_" => array("","%n dakika önce"), "_%n hour ago_::_%n hours ago_" => array("","%n saat önce"), @@ -62,8 +65,6 @@ $TRANSLATIONS = array( "last month" => "geçen ay", "_%n month ago_::_%n months ago_" => array("","%n ay önce"), "last year" => "geçen yıl", -"years ago" => "yıl önce", -"Caused by:" => "Neden olan:", -"Could not find category \"%s\"" => "\"%s\" kategorisi bulunamadı" +"years ago" => "yıl önce" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/lib/l10n/tzm.php b/lib/l10n/tzm.php new file mode 100644 index 0000000000000000000000000000000000000000..3120c509265ad97ce302db0a1f75438bb41c00d8 --- /dev/null +++ b/lib/l10n/tzm.php @@ -0,0 +1,8 @@ + 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 == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 1;"; diff --git a/lib/private/l10n/ug.php b/lib/l10n/ug.php similarity index 100% rename from lib/private/l10n/ug.php rename to lib/l10n/ug.php diff --git a/lib/private/l10n/uk.php b/lib/l10n/uk.php similarity index 89% rename from lib/private/l10n/uk.php rename to lib/l10n/uk.php index c1513c5bb7973b8bd04df5f05aac77a40885ddf9..32e010f1d4089025b9f0be3f3292e9ff5b87eaf9 100644 --- a/lib/private/l10n/uk.php +++ b/lib/l10n/uk.php @@ -5,6 +5,8 @@ $TRANSLATIONS = array( "Settings" => "Налаштування", "Users" => "Користувачі", "Admin" => "Адмін", +"Unknown filetype" => "Невідомий тип файлу", +"Invalid image" => "Невірне зображення", "web services under your control" => "підконтрольні Вам веб-сервіси", "ZIP download is turned off." => "ZIP завантаження вимкнено.", "Files need to be downloaded one by one." => "Файли повинні бути завантаженні послідовно.", @@ -35,16 +37,16 @@ $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." => "Ваш Web-сервер ще не налаштований належним чином для того, щоб дозволити синхронізацію файлів, через те що інтерфейс WebDAV, здається, зламаний.", "Please double check the installation guides." => "Будь ласка, перевірте інструкції по встановленню.", +"Could not find category \"%s\"" => "Не вдалося знайти категорію \"%s\"", "seconds ago" => "секунди тому", -"_%n minute ago_::_%n minutes ago_" => array("","",""), -"_%n hour ago_::_%n hours ago_" => array("","",""), +"_%n minute ago_::_%n minutes ago_" => array("","","%n хвилин тому"), +"_%n hour ago_::_%n hours ago_" => array("","","%n годин тому"), "today" => "сьогодні", "yesterday" => "вчора", -"_%n day go_::_%n days ago_" => array("","",""), +"_%n day go_::_%n days ago_" => array("","","%n днів тому"), "last month" => "минулого місяця", -"_%n month ago_::_%n months ago_" => array("","",""), +"_%n month ago_::_%n months ago_" => array("","","%n місяців тому"), "last year" => "минулого року", -"years ago" => "роки тому", -"Could not find category \"%s\"" => "Не вдалося знайти категорію \"%s\"" +"years ago" => "роки тому" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/l10n/ur.php b/lib/l10n/ur.php new file mode 100644 index 0000000000000000000000000000000000000000..15f78e0bce6d7e36688d2913f6affa4c17472a65 --- /dev/null +++ b/lib/l10n/ur.php @@ -0,0 +1,8 @@ + 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/private/l10n/ur_PK.php b/lib/l10n/ur_PK.php similarity index 100% rename from lib/private/l10n/ur_PK.php rename to lib/l10n/ur_PK.php diff --git a/lib/l10n/uz.php b/lib/l10n/uz.php new file mode 100644 index 0000000000000000000000000000000000000000..e7b09649a240500e39096daf02b7cc137312f444 --- /dev/null +++ b/lib/l10n/uz.php @@ -0,0 +1,8 @@ + 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=1; plural=0;"; diff --git a/lib/private/l10n/vi.php b/lib/l10n/vi.php similarity index 96% rename from lib/private/l10n/vi.php rename to lib/l10n/vi.php index dc0045c35ca75906d9c0560b2df00e02fbffb314..5840283110e0ce608aff60efe72e3dd9acebdd0d 100644 --- a/lib/private/l10n/vi.php +++ b/lib/l10n/vi.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Files" => "Tập tin", "Text" => "Văn bản", "Images" => "Hình ảnh", +"Could not find category \"%s\"" => "không thể tìm thấy mục \"%s\"", "seconds ago" => "vài giây trước", "_%n minute ago_::_%n minutes ago_" => array(""), "_%n hour ago_::_%n hours ago_" => array(""), @@ -25,7 +26,6 @@ $TRANSLATIONS = array( "last month" => "tháng trước", "_%n month ago_::_%n months ago_" => array(""), "last year" => "năm trước", -"years ago" => "năm trước", -"Could not find category \"%s\"" => "không thể tìm thấy mục \"%s\"" +"years ago" => "năm trước" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/private/l10n/zh_CN.php b/lib/l10n/zh_CN.php similarity index 94% rename from lib/private/l10n/zh_CN.php rename to lib/l10n/zh_CN.php index 2c34356ea10a00e137591d75b551f5e0e756e4ff..ae9243cf412589227a076511dae772ab55d0a722 100644 --- a/lib/private/l10n/zh_CN.php +++ b/lib/l10n/zh_CN.php @@ -5,6 +5,8 @@ $TRANSLATIONS = array( "Settings" => "设置", "Users" => "用户", "Admin" => "管理", +"Unknown filetype" => "未知的文件类型", +"Invalid image" => "无效的图像", "web services under your control" => "您控制的web服务", "ZIP download is turned off." => "ZIP 下载已经关闭", "Files need to be downloaded one by one." => "需要逐一下载文件", @@ -37,6 +39,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." => "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏.", "Please double check the installation guides." => "请认真检查安装指南.", +"Could not find category \"%s\"" => "无法找到分类 \"%s\"", "seconds ago" => "秒前", "_%n minute ago_::_%n minutes ago_" => array("%n 分钟前"), "_%n hour ago_::_%n hours ago_" => array("%n 小时前"), @@ -46,7 +49,6 @@ $TRANSLATIONS = array( "last month" => "上月", "_%n month ago_::_%n months ago_" => array("%n 月前"), "last year" => "去年", -"years ago" => "年前", -"Could not find category \"%s\"" => "无法找到分类 \"%s\"" +"years ago" => "年前" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/private/l10n/zh_HK.php b/lib/l10n/zh_HK.php similarity index 100% rename from lib/private/l10n/zh_HK.php rename to lib/l10n/zh_HK.php diff --git a/lib/private/l10n/zh_TW.php b/lib/l10n/zh_TW.php similarity index 94% rename from lib/private/l10n/zh_TW.php rename to lib/l10n/zh_TW.php index 210c766aa59b36f4b56801e04f9837d7a8a1b36a..35719c8b17e7ab0e1f6eeffe1742a20af3636422 100644 --- a/lib/private/l10n/zh_TW.php +++ b/lib/l10n/zh_TW.php @@ -8,13 +8,14 @@ $TRANSLATIONS = array( "Users" => "使用者", "Admin" => "管理", "Failed to upgrade \"%s\"." => "升級失敗:%s", +"Unknown filetype" => "未知的檔案類型", +"Invalid image" => "無效的圖片", "web services under your control" => "由您控制的網路服務", "cannot open \"%s\"" => "無法開啓 %s", "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." => "選擇的檔案太大以致於無法產生壓縮檔。", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "以小分割下載您的檔案,請詢問您的系統管理員。", "No source specified when installing app" => "沒有指定應用程式安裝來源", "No href specified when installing app from http" => "從 http 安裝應用程式,找不到 href 屬性", "No path specified when installing app from local file" => "從本地檔案安裝應用程式時沒有指定路徑", @@ -53,6 +54,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 installation guides." => "請參考安裝指南。", +"Could not find category \"%s\"" => "找不到分類:\"%s\"", "seconds ago" => "幾秒前", "_%n minute ago_::_%n minutes ago_" => array("%n 分鐘前"), "_%n hour ago_::_%n hours ago_" => array("%n 小時前"), @@ -62,8 +64,6 @@ $TRANSLATIONS = array( "last month" => "上個月", "_%n month ago_::_%n months ago_" => array("%n 個月前"), "last year" => "去年", -"years ago" => "幾年前", -"Caused by:" => "原因:", -"Could not find category \"%s\"" => "找不到分類:\"%s\"" +"years ago" => "幾年前" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/private/activitymanager.php b/lib/private/activitymanager.php new file mode 100755 index 0000000000000000000000000000000000000000..7e7e22578746cede8edc834dede5007e19bbaa0b --- /dev/null +++ b/lib/private/activitymanager.php @@ -0,0 +1,69 @@ +consumers as $consumer) { + $c = $consumer(); + if ($c instanceof IConsumer) { + try { + $c->receive( + $app, + $subject, + $subjectParams, + $message, + $messageParams, + $file, + $link, + $affectedUser, + $type, + $priority); + } catch (\Exception $ex) { + // TODO: log the excepetion + } + } + + } + } + + /** + * In order to improve lazy loading a closure can be registered which will be called in case + * activity consumers are actually requested + * + * $callable has to return an instance of OCA\Activity\IConsumer + * + * @param string $key + * @param \Closure $callable + */ + function registerConsumer(\Closure $callable) { + array_push($this->consumers, $callable); + } + +} diff --git a/lib/private/allconfig.php b/lib/private/allconfig.php index 72aabf60793b8caf84cdd93e5760a022ce0de9b4..a4aa69d43fba1fcaa52044e58e15e8bed2f30dbc 100644 --- a/lib/private/allconfig.php +++ b/lib/private/allconfig.php @@ -4,7 +4,7 @@ * This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. - * + * */ namespace OC; @@ -15,6 +15,7 @@ namespace OC; class AllConfig implements \OCP\IConfig { /** * Sets a new system wide value + * * @param string $key the key of the value, under which will be saved * @param string $value the value that should be stored * @todo need a use case for this @@ -25,16 +26,19 @@ class AllConfig implements \OCP\IConfig { /** * Looks up a system wide defined value + * * @param string $key the key of the value, under which it was saved + * @param string $default the default value to be returned if the value isn't set * @return string the saved value */ - public function getSystemValue($key) { - return \OCP\Config::getSystemValue($key, ''); + public function getSystemValue($key, $default = '') { + return \OCP\Config::getSystemValue($key, $default); } /** * Writes a new app wide value + * * @param string $appName the appName that we want to store the value under * @param string $key the key of the value, under which will be saved * @param string $value the value that should be stored @@ -45,17 +49,20 @@ class AllConfig implements \OCP\IConfig { /** * Looks up an app wide defined value + * * @param string $appName the appName that we stored the value under * @param string $key the key of the value, under which it was saved + * @param string $default the default value to be returned if the value isn't set * @return string the saved value */ - public function getAppValue($appName, $key) { - return \OCP\Config::getAppValue($appName, $key, ''); + public function getAppValue($appName, $key, $default = '') { + return \OCP\Config::getAppValue($appName, $key, $default); } /** * Set a user defined value + * * @param string $userId the userId of the user that we want to store the value under * @param string $appName the appName that we want to store the value under * @param string $key the key under which the value is being stored @@ -67,11 +74,14 @@ class AllConfig implements \OCP\IConfig { /** * Shortcut for getting a user defined value + * * @param string $userId the userId of the user that we want to store the value under * @param string $appName the appName that we stored the value under * @param string $key the key under which the value is being stored + * @param string $default the default value to be returned if the value isn't set + * @return string */ - public function getUserValue($userId, $appName, $key){ - return \OCP\Config::getUserValue($userId, $appName, $key); + public function getUserValue($userId, $appName, $key, $default = '') { + return \OCP\Config::getUserValue($userId, $appName, $key, $default); } } diff --git a/lib/private/api.php b/lib/private/api.php index 31f3f968d9b67ef41183e8005665872dd46e652e..c713368125c95f470c21d4a3484a13633c4b95af 100644 --- a/lib/private/api.php +++ b/lib/private/api.php @@ -33,7 +33,7 @@ class OC_API { const USER_AUTH = 1; const SUBADMIN_AUTH = 2; const ADMIN_AUTH = 3; - + /** * API Response Codes */ @@ -41,12 +41,13 @@ class OC_API { const RESPOND_SERVER_ERROR = 996; const RESPOND_NOT_FOUND = 998; const RESPOND_UNKNOWN_ERROR = 999; - + /** * api actions */ protected static $actions = array(); - + private static $logoutRequired = false; + /** * registers an api call * @param string $method the http method @@ -57,7 +58,7 @@ class OC_API { * @param array $defaults * @param array $requirements */ - public static function register($method, $url, $action, $app, + public static function register($method, $url, $action, $app, $authLevel = OC_API::USER_AUTH, $defaults = array(), $requirements = array()) { @@ -74,7 +75,7 @@ class OC_API { } self::$actions[$name][] = array('app' => $app, 'action' => $action, 'authlevel' => $authLevel); } - + /** * handles an api call * @param array $parameters @@ -95,6 +96,7 @@ class OC_API { $responses[] = array( 'app' => $action['app'], 'response' => new OC_OCS_Result(null, OC_API::RESPOND_UNAUTHORISED, 'Unauthorised'), + 'shipped' => OC_App::isShipped($action['app']), ); continue; } @@ -102,6 +104,7 @@ class OC_API { $responses[] = array( 'app' => $action['app'], 'response' => new OC_OCS_Result(null, OC_API::RESPOND_NOT_FOUND, 'Api method not found'), + 'shipped' => OC_App::isShipped($action['app']), ); continue; } @@ -109,22 +112,25 @@ class OC_API { $responses[] = array( 'app' => $action['app'], 'response' => call_user_func($action['action'], $parameters), + 'shipped' => OC_App::isShipped($action['app']), ); } $response = self::mergeResponses($responses); $formats = array('json', 'xml'); $format = !empty($_GET['format']) && in_array($_GET['format'], $formats) ? $_GET['format'] : 'xml'; - OC_User::logout(); + if (self::$logoutRequired) { + OC_User::logout(); + } self::respond($response, $format); } - + /** * merge the returned result objects into one response * @param array $responses */ - private static function mergeResponses($responses) { + public static function mergeResponses($responses) { $response = array(); // Sort into shipped and thirdparty $shipped = array( @@ -137,53 +143,81 @@ class OC_API { ); foreach($responses as $response) { - if(OC_App::isShipped($response['app']) || ($response['app'] === 'core')) { + if($response['shipped'] || ($response['app'] === 'core')) { if($response['response']->succeeded()) { - $shipped['succeeded'][$response['app']] = $response['response']; + $shipped['succeeded'][$response['app']] = $response; } else { - $shipped['failed'][$response['app']] = $response['response']; + $shipped['failed'][$response['app']] = $response; } } else { if($response['response']->succeeded()) { - $thirdparty['succeeded'][$response['app']] = $response['response']; + $thirdparty['succeeded'][$response['app']] = $response; } else { - $thirdparty['failed'][$response['app']] = $response['response']; + $thirdparty['failed'][$response['app']] = $response; } } } // Remove any error responses if there is one shipped response that succeeded - if(!empty($shipped['succeeded'])) { - $responses = array_merge($shipped['succeeded'], $thirdparty['succeeded']); - } else if(!empty($shipped['failed'])) { + if(!empty($shipped['failed'])) { // Which shipped response do we use if they all failed? // They may have failed for different reasons (different status codes) // Which reponse code should we return? // Maybe any that are not OC_API::RESPOND_SERVER_ERROR - $response = reset($shipped['failed']); + // Merge failed responses if more than one + $data = array(); + foreach($shipped['failed'] as $failure) { + $data = array_merge_recursive($data, $failure['response']->getData()); + } + $picked = reset($shipped['failed']); + $code = $picked['response']->getStatusCode(); + $meta = $picked['response']->getMeta(); + $response = new OC_OCS_Result($data, $code, $meta['message']); return $response; + } elseif(!empty($shipped['succeeded'])) { + $responses = array_merge($shipped['succeeded'], $thirdparty['succeeded']); } elseif(!empty($thirdparty['failed'])) { - // Return the third party failure result - $response = reset($thirdparty['failed']); + // Merge failed responses if more than one + $data = array(); + foreach($thirdparty['failed'] as $failure) { + $data = array_merge_recursive($data, $failure['response']->getData()); + } + $picked = reset($thirdparty['failed']); + $code = $picked['response']->getStatusCode(); + $meta = $picked['response']->getMeta(); + $response = new OC_OCS_Result($data, $code, $meta['message']); return $response; } else { - $responses = array_merge($shipped['succeeded'], $thirdparty['succeeded']); + $responses = $thirdparty['succeeded']; } // Merge the successful responses - $meta = array(); $data = array(); foreach($responses as $app => $response) { - if(OC_App::isShipped($app)) { - $data = array_merge_recursive($response->getData(), $data); + if($response['shipped']) { + $data = array_merge_recursive($response['response']->getData(), $data); } else { - $data = array_merge_recursive($data, $response->getData()); + $data = array_merge_recursive($data, $response['response']->getData()); + } + $codes[] = array('code' => $response['response']->getStatusCode(), + 'meta' => $response['response']->getMeta()); + } + + // Use any non 100 status codes + $statusCode = 100; + $statusMessage = null; + foreach($codes as $code) { + if($code['code'] != 100) { + $statusCode = $code['code']; + $statusMessage = $code['meta']['message']; + break; } } - $result = new OC_OCS_Result($data, 100); + + $result = new OC_OCS_Result($data, $statusCode, $statusMessage); return $result; } - + /** * authenticate the api call * @param array $action the action details as supplied to OC_API::register() @@ -229,18 +263,40 @@ class OC_API { return false; break; } - } - + } + /** * http basic auth * @return string|false (username, or false on failure) */ - private static function loginUser(){ + private static function loginUser(){ + // basic auth $authUser = isset($_SERVER['PHP_AUTH_USER']) ? $_SERVER['PHP_AUTH_USER'] : ''; $authPw = isset($_SERVER['PHP_AUTH_PW']) ? $_SERVER['PHP_AUTH_PW'] : ''; - return OC_User::login($authUser, $authPw) ? $authUser : false; + $return = OC_User::login($authUser, $authPw); + if ($return === true) { + self::$logoutRequired = true; + + // initialize the user's filesystem + \OC_Util::setUpFS(\OC_User::getUser()); + + return $authUser; + } + + // reuse existing login + $loggedIn = OC_User::isLoggedIn(); + $ocsApiRequest = isset($_SERVER['HTTP_OCS_APIREQUEST']) ? $_SERVER['HTTP_OCS_APIREQUEST'] === 'true' : false; + if ($loggedIn === true && $ocsApiRequest) { + + // initialize the user's filesystem + \OC_Util::setUpFS(\OC_User::getUser()); + + return OC_User::getUser(); + } + + return false; } - + /** * respond to a call * @param OC_OCS_Result $result @@ -289,5 +345,5 @@ class OC_API { } } } - + } diff --git a/lib/private/app.php b/lib/private/app.php index 0ab1ee57f631654cffcde66de4040b78ac23550e..0c60557914aa3e6b00b1659ee06f61b0423b71a1 100644 --- a/lib/private/app.php +++ b/lib/private/app.php @@ -165,17 +165,23 @@ class OC_App{ /** * get all enabled apps */ - public static function getEnabledApps() { + private static $enabledAppsCache = array(); + public static function getEnabledApps($forceRefresh = false) { if(!OC_Config::getValue('installed', false)) { return array(); } + if(!$forceRefresh && !empty(self::$enabledAppsCache)) { + return self::$enabledAppsCache; + } $apps=array('files'); $sql = 'SELECT `appid` FROM `*PREFIX*appconfig`' - .' WHERE `configkey` = \'enabled\' AND `configvalue`=\'yes\''; + . ' WHERE `configkey` = \'enabled\' AND `configvalue`=\'yes\'' + . ' ORDER BY `appid`'; if (OC_Config::getValue( 'dbtype', 'sqlite' ) === 'oci') { //FIXME oracle hack: need to explicitly cast CLOB to CHAR for comparison $sql = 'SELECT `appid` FROM `*PREFIX*appconfig`' - .' WHERE `configkey` = \'enabled\' AND to_char(`configvalue`)=\'yes\''; + . ' WHERE `configkey` = \'enabled\' AND to_char(`configvalue`)=\'yes\'' + . ' ORDER BY `appid`'; } $query = OC_DB::prepare( $sql ); $result=$query->execute(); @@ -187,6 +193,7 @@ class OC_App{ $apps[]=$row['appid']; } } + self::$enabledAppsCache = $apps; return $apps; } @@ -198,11 +205,11 @@ class OC_App{ * This function checks whether or not an app is enabled. */ public static function isEnabled( $app ) { - if( 'files'==$app or ('yes' == OC_Appconfig::getValue( $app, 'enabled' ))) { + if('files' == $app) { return true; } - - return false; + $enabledApps = self::getEnabledApps(); + return in_array($app, $enabledApps); } /** @@ -214,6 +221,7 @@ class OC_App{ * This function set an app as enabled in appconfig. */ public static function enable( $app ) { + self::$enabledAppsCache = array(); // flush if(!OC_Installer::isInstalled($app)) { // check if app is a shipped app or not. OCS apps have an integer as id, shipped apps use a string if(!is_numeric($app)) { @@ -243,6 +251,7 @@ class OC_App{ if(isset($appdata['id'])) { OC_Appconfig::setValue( $app, 'ocsid', $appdata['id'] ); } + \OC_Hook::emit('OC_App', 'post_enable', array('app' => $app)); } }else{ throw new \Exception($l->t("No app name specified")); @@ -257,6 +266,7 @@ class OC_App{ * This function set an app as disabled in appconfig. */ public static function disable( $app ) { + self::$enabledAppsCache = array(); // flush // check if app is a shipped app or not. if not delete \OC_Hook::emit('OC_App', 'pre_disable', array('app' => $app)); OC_Appconfig::setValue( $app, 'enabled', 'no' ); @@ -545,6 +555,10 @@ class OC_App{ }elseif($child->getName()=='description') { $xml=(string)$child->asXML(); $data[$child->getName()]=substr($xml, 13, -14);//script tags + }elseif($child->getName()=='documentation') { + foreach($child as $subchild) { + $data["documentation"][$subchild->getName()] = (string)$subchild; + } }else{ $data[$child->getName()]=(string)$child; } @@ -745,9 +759,42 @@ class OC_App{ } else { $combinedApps = $appList; } + // bring the apps into the right order with a custom sort funtion + usort( $combinedApps, '\OC_App::customSort' ); + return $combinedApps; } + /** + * @brief: Internal custom sort funtion to bring the app into the right order. Should only be called by listAllApps + * @return array + */ + private static function customSort($a, $b) { + + // prio 1: active + if ($a['active'] != $b['active']) { + return $b['active'] - $a['active']; + } + + // prio 2: shipped + $ashipped = (array_key_exists('shipped', $a) && $a['shipped'] === 'true') ? 1 : 0; + $bshipped = (array_key_exists('shipped', $b) && $b['shipped'] === 'true') ? 1 : 0; + if ($ashipped !== $bshipped) { + return ($bshipped - $ashipped); + } + + // prio 3: recommended + if ($a['internalclass'] != $b['internalclass']) { + $atemp = ($a['internalclass'] == 'recommendedapp' ? 1 : 0); + $btemp = ($b['internalclass'] == 'recommendedapp' ? 1 : 0); + return ($btemp - $atemp); + } + + // prio 4: alphabetical + return strcasecmp($a['name'], $b['name']); + + } + /** * @brief: get a list of all apps on apps.owncloud.com * @return array, multi-dimensional array of apps. diff --git a/lib/private/appconfig.php b/lib/private/appconfig.php index e615d838173e9a182d2397be10a9d5cad98577f9..da0b2ff8604ea472384d090060541b26d2cfdf2b 100644 --- a/lib/private/appconfig.php +++ b/lib/private/appconfig.php @@ -37,7 +37,12 @@ * This class provides an easy way for apps to store config values in the * database. */ -class OC_Appconfig{ +class OC_Appconfig { + + private static $cache = array(); + + private static $appsLoaded = array(); + /** * @brief Get all apps using the config * @return array with app ids @@ -47,11 +52,11 @@ class OC_Appconfig{ */ public static function getApps() { // No magic in here! - $query = OC_DB::prepare( 'SELECT DISTINCT `appid` FROM `*PREFIX*appconfig`' ); + $query = OC_DB::prepare('SELECT DISTINCT `appid` FROM `*PREFIX*appconfig` ORDER BY `appid`'); $result = $query->execute(); $apps = array(); - while( $row = $result->fetchRow()) { + while ($row = $result->fetchRow()) { $apps[] = $row["appid"]; } @@ -66,19 +71,35 @@ class OC_Appconfig{ * This function gets all keys of an app. Please note that the values are * not returned. */ - public static function getKeys( $app ) { + public static function getKeys($app) { // No magic in here as well - $query = OC_DB::prepare( 'SELECT `configkey` FROM `*PREFIX*appconfig` WHERE `appid` = ?' ); - $result = $query->execute( array( $app )); + $query = OC_DB::prepare('SELECT `configkey` FROM `*PREFIX*appconfig` WHERE `appid` = ?'); + $result = $query->execute(array($app)); $keys = array(); - while( $row = $result->fetchRow()) { + while ($row = $result->fetchRow()) { $keys[] = $row["configkey"]; } return $keys; } + private static function getAppValues($app) { + if (!isset(self::$cache[$app])) { + self::$cache[$app] = array(); + } + if (array_search($app, self::$appsLoaded) === false) { + $query = OC_DB::prepare('SELECT `configvalue`, `configkey` FROM `*PREFIX*appconfig`' + . ' WHERE `appid` = ?'); + $result = $query->execute(array($app)); + while ($row = $result->fetchRow()) { + self::$cache[$app][$row['configkey']] = $row['configvalue']; + } + self::$appsLoaded[] = $app; + } + return self::$cache[$app]; + } + /** * @brief Gets the config value * @param string $app app @@ -89,15 +110,18 @@ class OC_Appconfig{ * This function gets a value from the appconfig table. If the key does * not exist the default value will be returned */ - public static function getValue( $app, $key, $default = null ) { - // At least some magic in here :-) - $query = OC_DB::prepare( 'SELECT `configvalue` FROM `*PREFIX*appconfig`' - .' WHERE `appid` = ? AND `configkey` = ?' ); - $result = $query->execute( array( $app, $key )); - $row = $result->fetchRow(); - if($row) { - return $row["configvalue"]; - }else{ + public static function getValue($app, $key, $default = null) { + if (!isset(self::$cache[$app])) { + self::$cache[$app] = array(); + } + if (isset(self::$cache[$app][$key])) { + return self::$cache[$app][$key]; + } + $values = self::getAppValues($app); + if (isset($values[$key])) { + return $values[$key]; + } else { + self::$cache[$app][$key] = $default; return $default; } } @@ -109,8 +133,11 @@ class OC_Appconfig{ * @return bool */ public static function hasKey($app, $key) { - $exists = self::getKeys( $app ); - return in_array( $key, $exists ); + if (isset(self::$cache[$app]) and isset(self::$cache[$app][$key])) { + return true; + } + $exists = self::getKeys($app); + return in_array($key, $exists); } /** @@ -122,18 +149,27 @@ class OC_Appconfig{ * * Sets a value. If the key did not exist before it will be created. */ - public static function setValue( $app, $key, $value ) { + public static function setValue($app, $key, $value) { // Does the key exist? yes: update. No: insert - if(! self::hasKey($app, $key)) { - $query = OC_DB::prepare( 'INSERT INTO `*PREFIX*appconfig` ( `appid`, `configkey`, `configvalue` )' - .' VALUES( ?, ?, ? )' ); - $query->execute( array( $app, $key, $value )); + if (!self::hasKey($app, $key)) { + $query = OC_DB::prepare('INSERT INTO `*PREFIX*appconfig` ( `appid`, `configkey`, `configvalue` )' + . ' VALUES( ?, ?, ? )'); + $query->execute(array($app, $key, $value)); + } else { + $query = OC_DB::prepare('UPDATE `*PREFIX*appconfig` SET `configvalue` = ?' + . ' WHERE `appid` = ? AND `configkey` = ?'); + $query->execute(array($value, $app, $key)); } - else{ - $query = OC_DB::prepare( 'UPDATE `*PREFIX*appconfig` SET `configvalue` = ?' - .' WHERE `appid` = ? AND `configkey` = ?' ); - $query->execute( array( $value, $app, $key )); + // TODO where should this be documented? + \OC_Hook::emit('OC_Appconfig', 'post_set_value', array( + 'app' => $app, + 'key' => $key, + 'value' => $value + )); + if (!isset(self::$cache[$app])) { + self::$cache[$app] = array(); } + self::$cache[$app][$key] = $value; } /** @@ -144,10 +180,13 @@ class OC_Appconfig{ * * Deletes a key. */ - public static function deleteKey( $app, $key ) { + public static function deleteKey($app, $key) { // Boring! - $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*appconfig` WHERE `appid` = ? AND `configkey` = ?' ); - $query->execute( array( $app, $key )); + $query = OC_DB::prepare('DELETE FROM `*PREFIX*appconfig` WHERE `appid` = ? AND `configkey` = ?'); + $query->execute(array($app, $key)); + if (isset(self::$cache[$app]) and isset(self::$cache[$app][$key])) { + unset(self::$cache[$app][$key]); + } return true; } @@ -159,44 +198,46 @@ class OC_Appconfig{ * * Removes all keys in appconfig belonging to the app. */ - public static function deleteApp( $app ) { + public static function deleteApp($app) { // Nothing special - $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*appconfig` WHERE `appid` = ?' ); - $query->execute( array( $app )); + $query = OC_DB::prepare('DELETE FROM `*PREFIX*appconfig` WHERE `appid` = ?'); + $query->execute(array($app)); + self::$cache[$app] = array(); return true; } /** * get multiply values, either the app or key can be used as wildcard by setting it to false + * * @param app * @param key * @return array */ public static function getValues($app, $key) { - if($app!==false and $key!==false) { + if ($app !== false and $key !== false) { return false; } - $fields='`configvalue`'; - $where='WHERE'; - $params=array(); - if($app!==false) { - $fields.=', `configkey`'; - $where.=' `appid` = ?'; - $params[]=$app; - $key='configkey'; - }else{ - $fields.=', `appid`'; - $where.=' `configkey` = ?'; - $params[]=$key; - $key='appid'; + $fields = '`configvalue`'; + $where = 'WHERE'; + $params = array(); + if ($app !== false) { + $fields .= ', `configkey`'; + $where .= ' `appid` = ?'; + $params[] = $app; + $key = 'configkey'; + } else { + $fields .= ', `appid`'; + $where .= ' `configkey` = ?'; + $params[] = $key; + $key = 'appid'; } - $queryString='SELECT '.$fields.' FROM `*PREFIX*appconfig` '.$where; - $query=OC_DB::prepare($queryString); - $result=$query->execute($params); - $values=array(); - while($row=$result->fetchRow()) { - $values[$row[$key]]=$row['configvalue']; + $queryString = 'SELECT ' . $fields . ' FROM `*PREFIX*appconfig` ' . $where; + $query = OC_DB::prepare($queryString); + $result = $query->execute($params); + $values = array(); + while ($row = $result->fetchRow()) { + $values[$row[$key]] = $row['configvalue']; } return $values; } diff --git a/lib/private/appframework/app.php b/lib/private/appframework/app.php index 7ff55bb809d1ddcfeef1142547878a8fcf3e1805..b835188661a4ded18272c70476dc690585ce44b9 100644 --- a/lib/private/appframework/app.php +++ b/lib/private/appframework/app.php @@ -42,12 +42,13 @@ class App { * @param string $controllerName the name of the controller under which it is * stored in the DI container * @param string $methodName the method that you want to call - * @param array $urlParams an array with variables extracted from the routes * @param DIContainer $container an instance of a pimple container. + * @param array $urlParams list of URL parameters (optional) */ - public static function main($controllerName, $methodName, array $urlParams, - IAppContainer $container) { - $container['urlParams'] = $urlParams; + public static function main($controllerName, $methodName, DIContainer $container, array $urlParams = null) { + if (!is_null($urlParams)) { + $container['urlParams'] = $urlParams; + } $controller = $container[$controllerName]; // initialize the dispatcher and run all the middleware before the controller diff --git a/lib/private/appframework/core/api.php b/lib/private/appframework/core/api.php index 39522ee3dd5ce2e4ab6add7a8808206ee2faf5d7..e7269373bb01dc7bbe321018d556ed0fafec371c 100644 --- a/lib/private/appframework/core/api.php +++ b/lib/private/appframework/core/api.php @@ -99,89 +99,6 @@ class API implements IApi{ } - /** - * Returns the translation object - * @return \OC_L10N the translation object - */ - public function getTrans(){ - # TODO: use public api - return \OC_L10N::get($this->appName); - } - - - /** - * Returns the URL for a route - * @param string $routeName the name of the route - * @param array $arguments an array with arguments which will be filled into the url - * @return string the url - */ - public function linkToRoute($routeName, $arguments=array()){ - return \OCP\Util::linkToRoute($routeName, $arguments); - } - - - /** - * Returns an URL for an image or file - * @param string $file the name of the file - * @param string $appName the name of the app, defaults to the current one - */ - public function linkTo($file, $appName=null){ - if($appName === null){ - $appName = $this->appName; - } - return \OCP\Util::linkTo($appName, $file); - } - - - /** - * Returns the link to an image, like link to but only with prepending img/ - * @param string $file the name of the file - * @param string $appName the name of the app, defaults to the current one - */ - public function imagePath($file, $appName=null){ - if($appName === null){ - $appName = $this->appName; - } - return \OCP\Util::imagePath($appName, $file); - } - - - /** - * Makes an URL absolute - * @param string $url the url - * @return string the absolute url - */ - public function getAbsoluteURL($url){ - # TODO: use public api - return \OC_Helper::makeURLAbsolute($url); - } - - - /** - * links to a file - * @param string $file the name of the file - * @param string $appName the name of the app, defaults to the current one - * @deprecated replaced with linkToRoute() - * @return string the url - */ - public function linkToAbsolute($file, $appName=null){ - if($appName === null){ - $appName = $this->appName; - } - return \OCP\Util::linkToAbsolute($appName, $file); - } - - - /** - * Checks if the CSRF check was correct - * @return bool true if CSRF check passed - */ - public function passesCSRFCheck(){ - # TODO: use public api - return \OC_Util::isCallRegistered(); - } - - /** * Checks if an app is enabled * @param string $appName the name of an app @@ -192,44 +109,6 @@ class API implements IApi{ } - /** - * Writes a function into the error log - * @param string $msg the error message to be logged - * @param int $level the error level - */ - public function log($msg, $level=null){ - switch($level){ - case 'debug': - $level = \OCP\Util::DEBUG; - break; - case 'info': - $level = \OCP\Util::INFO; - break; - case 'warn': - $level = \OCP\Util::WARN; - break; - case 'fatal': - $level = \OCP\Util::FATAL; - break; - default: - $level = \OCP\Util::ERROR; - break; - } - \OCP\Util::writeLog($this->appName, $msg, $level); - } - - - /** - * turns an owncloud path into a path on the filesystem - * @param string path the path to the file on the oc filesystem - * @return string the filepath in the filesystem - */ - public function getLocalFilePath($path){ - # TODO: use public api - return \OC_Filesystem::getLocalFile($path); - } - - /** * used to return and open a new eventsource * @return \OC_EventSource a new open EventSource class @@ -275,15 +154,6 @@ class API implements IApi{ } } - /** - * Gets the content of an URL by using CURL or a fallback if it is not - * installed - * @param string $url the url that should be fetched - * @return string the content of the webpage - */ - public function getUrlContent($url) { - return \OC_Util::getUrlContent($url); - } /** * Register a backgroundjob task @@ -295,25 +165,6 @@ class API implements IApi{ \OCP\Backgroundjob::addRegularTask($className, $methodName); } - /** - * Returns a template - * @param string $templateName the name of the template - * @param string $renderAs how it should be rendered - * @param string $appName the name of the app - * @return \OCP\Template a new template - */ - public function getTemplate($templateName, $renderAs='user', $appName=null){ - if($appName === null){ - $appName = $this->appName; - } - - if($renderAs === 'blank'){ - return new \OCP\Template($appName, $templateName); - } else { - return new \OCP\Template($appName, $templateName, $renderAs); - } - } - /** * Tells ownCloud to include a template in the admin overview @@ -330,19 +181,4 @@ class API implements IApi{ } - /** - * get the filesystem info - * - * @param string $path - * @return array with the following keys: - * - size - * - mtime - * - mimetype - * - encrypted - * - versioned - */ - public function getFileInfo($path) { - return \OC\Files\Filesystem::getFileInfo($path); - } - } diff --git a/lib/private/appframework/dependencyinjection/dicontainer.php b/lib/private/appframework/dependencyinjection/dicontainer.php index 3755d45fa092dd1b44f8dfc62f9f3eafee23c536..e2ea974e104ccd84a04b623530927634e65a1105 100644 --- a/lib/private/appframework/dependencyinjection/dicontainer.php +++ b/lib/private/appframework/dependencyinjection/dicontainer.php @@ -24,7 +24,7 @@ namespace OC\AppFramework\DependencyInjection; -use OC\AppFramework\Http\Http; +use OC\AppFramework\Http; use OC\AppFramework\Http\Request; use OC\AppFramework\Http\Dispatcher; use OC\AppFramework\Core\API; @@ -35,6 +35,7 @@ use OC\AppFramework\Utility\TimeFactory; use OCP\AppFramework\IApi; use OCP\AppFramework\IAppContainer; use OCP\AppFramework\IMiddleWare; +use OCP\AppFramework\Middleware; use OCP\IServerContainer; @@ -49,9 +50,10 @@ class DIContainer extends SimpleContainer implements IAppContainer{ * Put your class dependencies in here * @param string $appName the name of the app */ - public function __construct($appName){ + public function __construct($appName, $urlParams = array()){ $this['AppName'] = $appName; + $this['urlParams'] = $urlParams; $this->registerParameter('ServerContainer', \OC::$server); @@ -66,6 +68,7 @@ class DIContainer extends SimpleContainer implements IAppContainer{ /** @var $c SimpleContainer */ /** @var $server IServerContainer */ $server = $c->query('ServerContainer'); + $server->registerParameter('urlParams', $c['urlParams']); return $server->getRequest(); }); @@ -85,15 +88,17 @@ class DIContainer extends SimpleContainer implements IAppContainer{ /** * Middleware */ - $this['SecurityMiddleware'] = $this->share(function($c){ - return new SecurityMiddleware($c['API'], $c['Request']); + $app = $this; + $this['SecurityMiddleware'] = $this->share(function($c) use ($app){ + return new SecurityMiddleware($app, $c['Request']); }); - $this['MiddlewareDispatcher'] = $this->share(function($c){ + $middleWares = $this->middleWares; + $this['MiddlewareDispatcher'] = $this->share(function($c) use ($middleWares) { $dispatcher = new MiddlewareDispatcher(); $dispatcher->registerMiddleware($c['SecurityMiddleware']); - foreach($this->middleWares as $middleWare) { + foreach($middleWares as $middleWare) { $dispatcher->registerMiddleware($middleWare); } @@ -129,10 +134,10 @@ class DIContainer extends SimpleContainer implements IAppContainer{ } /** - * @param IMiddleWare $middleWare + * @param Middleware $middleWare * @return boolean */ - function registerMiddleWare(IMiddleWare $middleWare) { + function registerMiddleWare(Middleware $middleWare) { array_push($this->middleWares, $middleWare); } @@ -143,4 +148,49 @@ class DIContainer extends SimpleContainer implements IAppContainer{ function getAppName() { return $this->query('AppName'); } + + /** + * @return boolean + */ + function isLoggedIn() { + return \OC_User::isLoggedIn(); + } + + /** + * @return boolean + */ + function isAdminUser() { + $uid = $this->getUserId(); + return \OC_User::isAdminUser($uid); + } + + private function getUserId() { + return \OC::$session->get('user_id'); + } + + /** + * @param $message + * @param $level + * @return mixed + */ + function log($message, $level) { + switch($level){ + case 'debug': + $level = \OCP\Util::DEBUG; + break; + case 'info': + $level = \OCP\Util::INFO; + break; + case 'warn': + $level = \OCP\Util::WARN; + break; + case 'fatal': + $level = \OCP\Util::FATAL; + break; + default: + $level = \OCP\Util::ERROR; + break; + } + \OCP\Util::writeLog($this->getAppName(), $message, $level); + } } diff --git a/lib/private/appframework/http/http.php b/lib/private/appframework/http.php similarity index 98% rename from lib/private/appframework/http/http.php rename to lib/private/appframework/http.php index e00dc9cdc4a2514a34e13e958cd904fd8e858952..41fc0db6b3829d2090101fc743949f9efd0d85c1 100644 --- a/lib/private/appframework/http/http.php +++ b/lib/private/appframework/http.php @@ -22,10 +22,11 @@ */ -namespace OC\AppFramework\Http; +namespace OC\AppFramework; +use OCP\AppFramework\Http as BaseHttp; -class Http extends \OCP\AppFramework\Http\Http{ +class Http extends BaseHttp { private $server; private $protocolVersion; diff --git a/lib/private/appframework/http/dispatcher.php b/lib/private/appframework/http/dispatcher.php index ea57a6860cc27ea4fa4b3c9c8f8ba0a8a8db7666..a2afb53f0fab86ef0e005e96652372bbfa616a36 100644 --- a/lib/private/appframework/http/dispatcher.php +++ b/lib/private/appframework/http/dispatcher.php @@ -24,8 +24,9 @@ namespace OC\AppFramework\Http; -use \OC\AppFramework\Controller\Controller; use \OC\AppFramework\Middleware\MiddlewareDispatcher; +use \OC\AppFramework\Http; +use OCP\AppFramework\Controller; /** diff --git a/lib/private/appframework/http/redirectresponse.php b/lib/private/appframework/http/redirectresponse.php index 688447f16180c2943a704cad0c95009d1d627841..c4e21059480706e9c9d8565a6a04ec115d237d97 100644 --- a/lib/private/appframework/http/redirectresponse.php +++ b/lib/private/appframework/http/redirectresponse.php @@ -24,7 +24,8 @@ namespace OC\AppFramework\Http; -use OCP\AppFramework\Http\Response; +use OCP\AppFramework\Http\Response, + OCP\AppFramework\Http; /** diff --git a/lib/private/appframework/http/request.php b/lib/private/appframework/http/request.php index 34605acdfead8b7073f19702fd6965799e1b776c..3e1f4ff87ed815f59d2c4d87234242f616075e8d 100644 --- a/lib/private/appframework/http/request.php +++ b/lib/private/appframework/http/request.php @@ -31,6 +31,8 @@ use OCP\IRequest; class Request implements \ArrayAccess, \Countable, IRequest { + protected $inputStream; + protected $content; protected $items = array(); protected $allowedKeys = array( 'get', @@ -40,35 +42,48 @@ class Request implements \ArrayAccess, \Countable, IRequest { 'env', 'cookies', 'urlParams', - 'params', 'parameters', - 'method' + 'method', + 'requesttoken', ); /** * @param array $vars An associative array with the following optional values: - * @param array 'params' the parsed json array * @param array 'urlParams' the parameters which were matched from the URL * @param array 'get' the $_GET array - * @param array 'post' the $_POST array + * @param array|string 'post' the $_POST array or JSON string * @param array 'files' the $_FILES array * @param array 'server' the $_SERVER array * @param array 'env' the $_ENV array - * @param array 'session' the $_SESSION array * @param array 'cookies' the $_COOKIE array * @param string 'method' the request method (GET, POST etc) + * @param string|false 'requesttoken' the requesttoken or false when not available * @see http://www.php.net/manual/en/reserved.variables.php */ public function __construct(array $vars=array()) { foreach($this->allowedKeys as $name) { - $this->items[$name] = isset($vars[$name]) + $this->items[$name] = isset($vars[$name]) ? $vars[$name] : array(); } + if (defined('PHPUNIT_RUN') && PHPUNIT_RUN + && in_array('fakeinput', stream_get_wrappers())) { + $this->inputStream = 'fakeinput://data'; + } else { + $this->inputStream = 'php://input'; + } + + // Only 'application/x-www-form-urlencoded' requests are automatically + // transformed by PHP, 'application/json' must be decoded manually. + if ($this->method === 'POST' + && strpos($this->getHeader('Content-Type'), 'application/json') !== false + ) { + $this->items['params'] = $this->items['post'] = json_decode(file_get_contents($this->inputStream), true); + } + $this->items['parameters'] = array_merge( - $this->items['params'], $this->items['get'], $this->items['post'], $this->items['urlParams'] @@ -141,17 +156,22 @@ class Request implements \ArrayAccess, \Countable, IRequest { * $request->myvar; or $request->{'myvar'}; or $request->{$myvar} * Looks in the combined GET, POST and urlParams array. * - * if($request->method !== 'POST') { - * throw new Exception('This function can only be invoked using POST'); - * } + * If you access e.g. ->post but the current HTTP request method + * is GET a \LogicException will be thrown. * * @param string $name The key to look for. + * @throws \LogicException * @return mixed|null */ public function __get($name) { switch($name) { + case 'put': + case 'patch': case 'get': case 'post': + if($this->method !== strtoupper($name)) { + throw new \LogicException(sprintf('%s cannot be accessed in a %s request.', $name, $this->method)); + } case 'files': case 'server': case 'env': @@ -159,9 +179,13 @@ class Request implements \ArrayAccess, \Countable, IRequest { case 'parameters': case 'params': case 'urlParams': - return isset($this->items[$name]) - ? $this->items[$name] - : null; + if(in_array($name, array('put', 'patch'))) { + return $this->getContent($name); + } else { + return isset($this->items[$name]) + ? $this->items[$name] + : null; + } break; case 'method': return $this->items['method']; @@ -280,28 +304,86 @@ class Request implements \ArrayAccess, \Countable, IRequest { /** * Returns the request body content. * - * @param Boolean $asResource If true, a resource will be returned + * If the HTTP request method is PUT and the body + * not application/x-www-form-urlencoded or application/json a stream + * resource is returned, otherwise an array. * - * @return string|resource The request body content or a resource to read the body stream. + * @return array|string|resource The request body content or a resource to read the body stream. * * @throws \LogicException */ - function getContent($asResource = false) { - return null; -// if (false === $this->content || (true === $asResource && null !== $this->content)) { -// throw new \LogicException('getContent() can only be called once when using the resource return type.'); -// } -// -// if (true === $asResource) { -// $this->content = false; -// -// return fopen('php://input', 'rb'); -// } -// -// if (null === $this->content) { -// $this->content = file_get_contents('php://input'); -// } -// -// return $this->content; + protected function getContent() { + if ($this->content === false && $this->method === 'PUT') { + throw new \LogicException( + '"put" can only be accessed once if not ' + . 'application/x-www-form-urlencoded or application/json.' + ); + } + + // If the content can't be parsed into an array then return a stream resource. + if ($this->method === 'PUT' + && strpos($this->getHeader('Content-Type'), 'application/x-www-form-urlencoded') === false + && strpos($this->getHeader('Content-Type'), 'application/json') === false + ) { + $this->content = false; + return fopen($this->inputStream, 'rb'); + } + + if (is_null($this->content)) { + $this->content = file_get_contents($this->inputStream); + + /* + * Normal jquery ajax requests are sent as application/x-www-form-urlencoded + * and in $_GET and $_POST PHP transformes the data into an array. + * The first condition mimics this. + * The second condition allows for sending raw application/json data while + * still getting the result as an array. + * + */ + if (strpos($this->getHeader('Content-Type'), 'application/x-www-form-urlencoded') !== false) { + parse_str($this->content, $content); + if(is_array($content)) { + $this->content = $content; + } + } elseif (strpos($this->getHeader('Content-Type'), 'application/json') !== false) { + $content = json_decode($this->content, true); + if(is_array($content)) { + $this->content = $content; + } + } + } + + return $this->content; } -} + + /** + * Checks if the CSRF check was correct + * @return bool true if CSRF check passed + * @see OC_Util::$callLifespan + * @see OC_Util::callRegister() + */ + public function passesCSRFCheck() { + if($this->items['requesttoken'] === false) { + return false; + } + + if (isset($this->items['get']['requesttoken'])) { + $token = $this->items['get']['requesttoken']; + } elseif (isset($this->items['post']['requesttoken'])) { + $token = $this->items['post']['requesttoken']; + } elseif (isset($this->items['server']['HTTP_REQUESTTOKEN'])) { + $token = $this->items['server']['HTTP_REQUESTTOKEN']; + } else { + //no token found. + return false; + } + + // Check if the token is valid + if($token !== $this->items['requesttoken']) { + // Not valid + return false; + } else { + // Valid token + return true; + } + }} diff --git a/lib/private/appframework/middleware/middlewaredispatcher.php b/lib/private/appframework/middleware/middlewaredispatcher.php index 70ab108e6b884d8404504a2db5bc246c3c2aa578..681140c2242e2d5d402e8f34b3917334dee51527 100644 --- a/lib/private/appframework/middleware/middlewaredispatcher.php +++ b/lib/private/appframework/middleware/middlewaredispatcher.php @@ -24,9 +24,9 @@ namespace OC\AppFramework\Middleware; -use OC\AppFramework\Controller\Controller; +use OCP\AppFramework\Controller; use OCP\AppFramework\Http\Response; - +use OCP\AppFramework\MiddleWare; /** * This class is used to store and run all the middleware in correct order diff --git a/lib/private/appframework/middleware/security/securitymiddleware.php b/lib/private/appframework/middleware/security/securitymiddleware.php index 4f1447e1afba11ffea26f40792be80c392b053b3..c3143754823972de64196e383cdd9fd02fe195ba 100644 --- a/lib/private/appframework/middleware/security/securitymiddleware.php +++ b/lib/private/appframework/middleware/security/securitymiddleware.php @@ -24,15 +24,14 @@ namespace OC\AppFramework\Middleware\Security; -use OC\AppFramework\Controller\Controller; -use OC\AppFramework\Http\Http; -use OC\AppFramework\Http\Request; +use OC\AppFramework\Http; use OC\AppFramework\Http\RedirectResponse; use OC\AppFramework\Utility\MethodAnnotationReader; -use OC\AppFramework\Middleware\Middleware; -use OC\AppFramework\Core\API; +use OCP\AppFramework\Middleware; use OCP\AppFramework\Http\Response; use OCP\AppFramework\Http\JSONResponse; +use OCP\AppFramework\IAppContainer; +use OCP\IRequest; /** @@ -43,18 +42,22 @@ use OCP\AppFramework\Http\JSONResponse; */ class SecurityMiddleware extends Middleware { - private $api; + /** + * @var \OCP\AppFramework\IAppContainer + */ + private $app; /** - * @var \OC\AppFramework\Http\Request + * @var \OCP\IRequest */ private $request; /** - * @param API $api an instance of the api + * @param IAppContainer $app + * @param IRequest $request */ - public function __construct(API $api, Request $request){ - $this->api = $api; + public function __construct(IAppContainer $app, IRequest $request){ + $this->app = $app; $this->request = $request; } @@ -74,24 +77,24 @@ class SecurityMiddleware extends Middleware { // this will set the current navigation entry of the app, use this only // for normal HTML requests and not for AJAX requests - $this->api->activateNavigationEntry(); + $this->app->getServer()->getNavigationManager()->setActiveEntry($this->app->getAppName()); // security checks $isPublicPage = $annotationReader->hasAnnotation('PublicPage'); if(!$isPublicPage) { - if(!$this->api->isLoggedIn()) { + if(!$this->app->isLoggedIn()) { throw new SecurityException('Current user is not logged in', Http::STATUS_UNAUTHORIZED); } if(!$annotationReader->hasAnnotation('NoAdminRequired')) { - if(!$this->api->isAdminUser($this->api->getUserId())) { + if(!$this->app->isAdminUser()) { throw new SecurityException('Logged in user must be an admin', Http::STATUS_FORBIDDEN); } } } if(!$annotationReader->hasAnnotation('NoCSRFRequired')) { - if(!$this->api->passesCSRFCheck()) { + if(!$this->request->passesCSRFCheck()) { throw new SecurityException('CSRF check failed', Http::STATUS_PRECONDITION_FAILED); } } @@ -118,12 +121,13 @@ class SecurityMiddleware extends Middleware { array('message' => $exception->getMessage()), $exception->getCode() ); - $this->api->log($exception->getMessage(), 'debug'); + $this->app->log($exception->getMessage(), 'debug'); } else { - $url = $this->api->linkToAbsolute('index.php', ''); // TODO: replace with link to route + // TODO: replace with link to route + $url = $this->app->getServer()->getURLGenerator()->getAbsoluteURL('index.php'); $response = new RedirectResponse($url); - $this->api->log($exception->getMessage(), 'debug'); + $this->app->log($exception->getMessage(), 'debug'); } return $response; diff --git a/lib/private/appframework/routing/routeactionhandler.php b/lib/private/appframework/routing/routeactionhandler.php index 7fb56f14eab7db7395b0bd4dcd70ed1812f32a44..2b9dc38dc438b4947844694b92607258fbbf3342 100644 --- a/lib/private/appframework/routing/routeactionhandler.php +++ b/lib/private/appframework/routing/routeactionhandler.php @@ -37,6 +37,6 @@ class RouteActionHandler { } public function __invoke($params) { - App::main($this->controllerName, $this->actionName, $params, $this->container); + App::main($this->controllerName, $this->actionName, $this->container, $params); } } diff --git a/lib/private/appframework/utility/simplecontainer.php b/lib/private/appframework/utility/simplecontainer.php index 7e4db63bde58b5c76e8b79295d19a9f9829e9224..e631e657756e4b98ef29cd445d15ccb2b07da182 100644 --- a/lib/private/appframework/utility/simplecontainer.php +++ b/lib/private/appframework/utility/simplecontainer.php @@ -3,7 +3,7 @@ namespace OC\AppFramework\Utility; // register 3rdparty autoloaders -require_once __DIR__ . '/../../../../3rdparty/Pimple/Pimple.php'; +require_once 'Pimple/Pimple.php'; /** * Class SimpleContainer diff --git a/lib/private/apphelper.php b/lib/private/apphelper.php new file mode 100644 index 0000000000000000000000000000000000000000..bd02f3aabfa6ccb7da868af3e62f2153b634260c --- /dev/null +++ b/lib/private/apphelper.php @@ -0,0 +1,25 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + * + */ + +namespace OC; + +/** + * TODO: Description + */ +class AppHelper implements \OCP\IHelper { + /** + * Gets the content of an URL by using CURL or a fallback if it is not + * installed + * @param string $url the url that should be fetched + * @return string the content of the webpage + */ + public function getUrlContent($url) { + return \OC_Util::getUrlContent($url); + } +} diff --git a/lib/private/avatar.php b/lib/private/avatar.php index f20980c364b0290c1b98f218d2997156732389d2..e97f55eecafeede2526d2c13ed747528081fc37f 100644 --- a/lib/private/avatar.php +++ b/lib/private/avatar.php @@ -10,7 +10,7 @@ * This class gets and sets users avatars. */ -class OC_Avatar { +class OC_Avatar implements \OCP\IAvatar { private $view; @@ -24,7 +24,7 @@ class OC_Avatar { /** * @brief get the users avatar - * @param $size integer size in px of the avatar, defaults to 64 + * @param $size integer size in px of the avatar, avatars are square, defaults to 64 * @return boolean|\OC_Image containing the avatar or false if there's no image */ public function get ($size = 64) { @@ -44,21 +44,23 @@ class OC_Avatar { /** * @brief sets the users avatar - * @param $data mixed imagedata or path to set a new avatar + * @param $data mixed OC_Image, imagedata or path to set a new avatar * @throws Exception if the provided file is not a jpg or png image * @throws Exception if the provided image is not valid * @throws \OC\NotSquareException if the image is not square * @return void */ public function set ($data) { - if (\OC_App::isEnabled('files_encryption')) { - $l = \OC_L10N::get('lib'); - throw new \Exception($l->t("Custom profile pictures don't work with encryption yet")); + if($data instanceOf OC_Image) { + $img = $data; + $data = $img->data(); + } else { + $img = new OC_Image($data); } - - $img = new OC_Image($data); $type = substr($img->mimeType(), -3); - if ($type === 'peg') { $type = 'jpg'; } + if ($type === 'peg') { + $type = 'jpg'; + } if ($type !== 'jpg' && $type !== 'png') { $l = \OC_L10N::get('lib'); throw new \Exception($l->t("Unknown filetype")); diff --git a/lib/private/avatarmanager.php b/lib/private/avatarmanager.php new file mode 100644 index 0000000000000000000000000000000000000000..3ca46868ea6d3968217c2655aa838192622e2293 --- /dev/null +++ b/lib/private/avatarmanager.php @@ -0,0 +1,26 @@ +setLastRun($this); - $this->run($this->argument); + try { + $this->run($this->argument); + } catch (\Exception $e) { + if ($logger) { + $logger->error('Error while running background job: ' . $e->getMessage()); + } + $jobList->remove($this, $this->argument); + } } abstract protected function run($argument); diff --git a/lib/private/backgroundjob/joblist.php b/lib/private/backgroundjob/joblist.php index cc803dd9b5fb73d98e5f67cb8f45f0fe5fe967f1..99743a70c77b0489b22d7883ffec41e59878bd02 100644 --- a/lib/private/backgroundjob/joblist.php +++ b/lib/private/backgroundjob/joblist.php @@ -138,7 +138,7 @@ class JobList { $job = new $class(); $job->setId($row['id']); $job->setLastRun($row['last_run']); - $job->setArgument(json_decode($row['argument'])); + $job->setArgument(json_decode($row['argument'], true)); return $job; } diff --git a/lib/private/backgroundjob/queuedjob.php b/lib/private/backgroundjob/queuedjob.php index 1714182820df3d8ba6c8e32cf5b72e4ae90eb4ae..799eac478481dece19882122961e4ea659185282 100644 --- a/lib/private/backgroundjob/queuedjob.php +++ b/lib/private/backgroundjob/queuedjob.php @@ -20,9 +20,10 @@ abstract class QueuedJob extends Job { * run the job, then remove it from the joblist * * @param JobList $jobList + * @param \OC\Log $logger */ - public function execute($jobList) { + public function execute($jobList, $logger = null) { $jobList->remove($this); - $this->run($this->argument); + parent::execute($jobList, $logger); } } diff --git a/lib/private/backgroundjob/timedjob.php b/lib/private/backgroundjob/timedjob.php index ae9f33505abe169a5d04472e6052476831d11d2b..09e05f1d846a58577d67a4671aeee64ed8802213 100644 --- a/lib/private/backgroundjob/timedjob.php +++ b/lib/private/backgroundjob/timedjob.php @@ -31,11 +31,11 @@ abstract class TimedJob extends Job { * run the job if * * @param JobList $jobList + * @param \OC\Log $logger */ - public function execute($jobList) { + public function execute($jobList, $logger = null) { if ((time() - $this->lastRun) > $this->interval) { - $jobList->setLastRun($this); - $this->run($this->argument); + parent::execute($jobList, $logger); } } } diff --git a/lib/private/cache/file.php b/lib/private/cache/file.php index 2ab914d17b891b421fd573a1ad98edc233d52a99..b0738d2a92ba20e2848729399adea7c2ba71f550 100644 --- a/lib/private/cache/file.php +++ b/lib/private/cache/file.php @@ -41,6 +41,24 @@ class File { return $result; } + /** + * Returns the size of the stored/cached data + * + * @param $key + * @return int + */ + public function size($key) { + $result = 0; + $proxyStatus = \OC_FileProxy::$enabled; + \OC_FileProxy::$enabled = false; + if ($this->hasKey($key)) { + $storage = $this->getStorage(); + $result = $storage->filesize($key); + } + \OC_FileProxy::$enabled = $proxyStatus; + return $result; + } + public function set($key, $value, $ttl=0) { $storage = $this->getStorage(); $result = false; diff --git a/lib/private/config.php b/lib/private/config.php index e773e6e2eb0254a311efbba6176ecf835cf38047..8a9d5ca615876573f69ad5cea3af35c994ef53c1 100644 --- a/lib/private/config.php +++ b/lib/private/config.php @@ -50,7 +50,7 @@ class Config { protected $debugMode; /** - * @param $configDir path to the config dir, needs to end with '/' + * @param string $configDir path to the config dir, needs to end with '/' */ public function __construct($configDir) { $this->configDir = $configDir; @@ -160,7 +160,6 @@ class Config { */ private function writeData() { // Create a php file ... - $defaults = new \OC_Defaults; $content = "debugMode) { $content .= "define('DEBUG',true);\n"; @@ -172,7 +171,8 @@ class Config { // Write the file $result = @file_put_contents($this->configFilename, $content); if (!$result) { - $url = $defaults->getDocBaseUrl() . '/server/5.0/admin_manual/installation/installation_source.html#set-the-directory-permissions'; + $defaults = new \OC_Defaults; + $url = \OC_Helper::linkToDocs('admin-dir-permissions'); throw new HintException( "Can't write into config directory!", 'This can usually be fixed by ' diff --git a/lib/private/connector/sabre/aborteduploaddetectionplugin.php b/lib/private/connector/sabre/aborteduploaddetectionplugin.php index 15dca3a680976ca6fe88b746e1334ade73b218ee..10cca647e8db5884f7beb3961646e9e46d40edb5 100644 --- a/lib/private/connector/sabre/aborteduploaddetectionplugin.php +++ b/lib/private/connector/sabre/aborteduploaddetectionplugin.php @@ -53,6 +53,12 @@ class OC_Connector_Sabre_AbortedUploadDetectionPlugin extends Sabre_DAV_ServerPl */ public function verifyContentLength($filePath, Sabre_DAV_INode $node = null) { + // we should only react on PUT which is used for upload + // e.g. with LOCK this will not work, but LOCK uses createFile() as well + if ($this->server->httpRequest->getMethod() !== 'PUT' ) { + return; + } + // ownCloud chunked upload will be handled in its own plugin $chunkHeader = $this->server->httpRequest->getHeader('OC-Chunked'); if ($chunkHeader) { diff --git a/lib/private/connector/sabre/auth.php b/lib/private/connector/sabre/auth.php index bf3a49593cbc23419ed2dd404f589bb5b1dd24e8..0c84fa6b7578e85656fb042ece59a13642f44276 100644 --- a/lib/private/connector/sabre/auth.php +++ b/lib/private/connector/sabre/auth.php @@ -72,7 +72,8 @@ class OC_Connector_Sabre_Auth extends Sabre_DAV_Auth_Backend_AbstractBasic { * @return bool */ public function authenticate(Sabre_DAV_Server $server, $realm) { - if (OC_User::isLoggedIn()) { + + if (OC_User::handleApacheAuth() || OC_User::isLoggedIn()) { $user = OC_User::getUser(); OC_Util::setupFS($user); $this->currentUser = $user; diff --git a/lib/private/connector/sabre/directory.php b/lib/private/connector/sabre/directory.php index 382bdf06df1f272e311e5fd2e0fca8f30f539860..02d1a9f4ba2712735b2d9dce9b8024b126c44492 100644 --- a/lib/private/connector/sabre/directory.php +++ b/lib/private/connector/sabre/directory.php @@ -50,51 +50,31 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa */ public function createFile($name, $data = null) { - if (!\OC\Files\Filesystem::isCreatable($this->path)) { + if ($name === 'Shared' && empty($this->path)) { throw new \Sabre_DAV_Exception_Forbidden(); } + // for chunked upload also updating a existing file is a "createFile" + // because we create all the chunks before reasamble them to the existing file. if (isset($_SERVER['HTTP_OC_CHUNKED'])) { - $info = OC_FileChunking::decodeName($name); - if (empty($info)) { - throw new Sabre_DAV_Exception_NotImplemented(); - } - $chunk_handler = new OC_FileChunking($info); - $chunk_handler->store($info['index'], $data); - if ($chunk_handler->isComplete()) { - $newPath = $this->path . '/' . $info['name']; - $chunk_handler->file_assemble($newPath); - return OC_Connector_Sabre_Node::getETagPropertyForPath($newPath); - } - } else { - $newPath = $this->path . '/' . $name; - - // mark file as partial while uploading (ignored by the scanner) - $partpath = $newPath . '.part'; - \OC\Files\Filesystem::file_put_contents($partpath, $data); - - // rename to correct path - $renameOkay = \OC\Files\Filesystem::rename($partpath, $newPath); - $fileExists = \OC\Files\Filesystem::file_exists($newPath); - if ($renameOkay === false || $fileExists === false) { - \OC_Log::write('webdav', '\OC\Files\Filesystem::rename() failed', \OC_Log::ERROR); - \OC\Files\Filesystem::unlink($partpath); - throw new Sabre_DAV_Exception(); + // exit if we can't create a new file and we don't updatable existing file + $info = OC_FileChunking::decodeName($name); + if (!\OC\Files\Filesystem::isCreatable($this->path) && + !\OC\Files\Filesystem::isUpdatable($this->path . '/' . $info['name'])) { + throw new \Sabre_DAV_Exception_Forbidden(); } - // allow sync clients to send the mtime along in a header - $mtime = OC_Request::hasModificationTime(); - if ($mtime !== false) { - if(\OC\Files\Filesystem::touch($newPath, $mtime)) { - header('X-OC-MTime: accepted'); - } + } else { + // For non-chunked upload it is enough to check if we can create a new file + if (!\OC\Files\Filesystem::isCreatable($this->path)) { + throw new \Sabre_DAV_Exception_Forbidden(); } - - return OC_Connector_Sabre_Node::getETagPropertyForPath($newPath); } - return null; + $path = $this->path . '/' . $name; + $node = new OC_Connector_Sabre_File($path); + return $node->put($data); } /** @@ -106,6 +86,10 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa */ public function createDirectory($name) { + if ($name === 'Shared' && empty($this->path)) { + throw new \Sabre_DAV_Exception_Forbidden(); + } + if (!\OC\Files\Filesystem::isCreatable($this->path)) { throw new \Sabre_DAV_Exception_Forbidden(); } @@ -211,13 +195,16 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa */ public function delete() { - if (!\OC\Files\Filesystem::isDeletable($this->path)) { + if ($this->path === 'Shared') { throw new \Sabre_DAV_Exception_Forbidden(); } - if ($this->path != "/Shared") { - \OC\Files\Filesystem::rmdir($this->path); + + if (!\OC\Files\Filesystem::isDeletable($this->path)) { + throw new \Sabre_DAV_Exception_Forbidden(); } + \OC\Files\Filesystem::rmdir($this->path); + } /** @@ -243,14 +230,14 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa * If the array is empty, all properties should be returned * * @param array $properties - * @return void + * @return array */ public function getProperties($properties) { $props = parent::getProperties($properties); if (in_array(self::GETETAG_PROPERTYNAME, $properties) && !isset($props[self::GETETAG_PROPERTYNAME])) { - $props[self::GETETAG_PROPERTYNAME] - = OC_Connector_Sabre_Node::getETagPropertyForPath($this->path); + $props[self::GETETAG_PROPERTYNAME] = $this->getETagPropertyForPath($this->path); } return $props; } + } diff --git a/lib/private/connector/sabre/exception/entitytoolarge.php b/lib/private/connector/sabre/exception/entitytoolarge.php new file mode 100644 index 0000000000000000000000000000000000000000..2bda51f2f3ee5f418575a9a3c82170b3c44312cf --- /dev/null +++ b/lib/private/connector/sabre/exception/entitytoolarge.php @@ -0,0 +1,22 @@ + + * + * @license AGPL3 + */ + +class OC_Connector_Sabre_ExceptionLoggerPlugin extends Sabre_DAV_ServerPlugin +{ + private $appName; + + /** + * @param string $loggerAppName app name to use when logging + */ + public function __construct($loggerAppName = 'webdav') { + $this->appName = $loggerAppName; + } + + /** + * This initializes the plugin. + * + * This function is called by Sabre_DAV_Server, after + * addPlugin is called. + * + * This method should set up the required event subscriptions. + * + * @param Sabre_DAV_Server $server + * @return void + */ + public function initialize(Sabre_DAV_Server $server) { + + $server->subscribeEvent('exception', array($this, 'logException'), 10); + } + + /** + * Log exception + * + * @internal param Exception $e exception + */ + public function logException($e) { + $exceptionClass = get_class($e); + if ($exceptionClass !== 'Sabre_DAV_Exception_NotAuthenticated') { + \OCP\Util::logException($this->appName, $e); + } + } +} diff --git a/lib/private/connector/sabre/file.php b/lib/private/connector/sabre/file.php index 433b11485523f786851d20a9c8e9292f94379af3..ed27cef440dc7501e33199c5ca5f813cbb609f41 100644 --- a/lib/private/connector/sabre/file.php +++ b/lib/private/connector/sabre/file.php @@ -28,7 +28,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D * * The data argument is a readable stream resource. * - * After a succesful put operation, you may choose to return an ETag. The + * After a successful put operation, you may choose to return an ETag. The * etag must always be surrounded by double-quotes. These quotes must * appear in the actual string you're returning. * @@ -46,7 +46,10 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D */ public function put($data) { - if (!\OC\Files\Filesystem::isUpdatable($this->path)) { + $fs = $this->getFS(); + + if ($fs->file_exists($this->path) && + !$fs->isUpdatable($this->path)) { throw new \Sabre_DAV_Exception_Forbidden(); } @@ -54,44 +57,66 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D if (\OC_Util::encryptedFiles()) { throw new \Sabre_DAV_Exception_ServiceUnavailable(); } - + + // chunked handling + if (isset($_SERVER['HTTP_OC_CHUNKED'])) { + return $this->createFileChunked($data); + } + // mark file as partial while uploading (ignored by the scanner) - $partpath = $this->path . '.part'; + $partpath = $this->path . '.ocTransferId' . rand() . '.part'; - \OC\Files\Filesystem::file_put_contents($partpath, $data); + // if file is located in /Shared we write the part file to the users + // root folder because we can't create new files in /shared + // we extend the name with a random number to avoid overwriting a existing file + if (dirname($partpath) === 'Shared') { + $partpath = pathinfo($partpath, PATHINFO_FILENAME) . rand() . '.part'; + } - //detect aborted upload - if (isset ($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] === 'PUT') { - if (isset($_SERVER['CONTENT_LENGTH'])) { - $expected = $_SERVER['CONTENT_LENGTH']; - $actual = \OC\Files\Filesystem::filesize($partpath); - if ($actual != $expected) { - \OC\Files\Filesystem::unlink($partpath); - throw new Sabre_DAV_Exception_BadRequest( - 'expected filesize ' . $expected . ' got ' . $actual); - } + try { + $putOkay = $fs->file_put_contents($partpath, $data); + if ($putOkay === false) { + \OC_Log::write('webdav', '\OC\Files\Filesystem::file_put_contents() failed', \OC_Log::ERROR); + $fs->unlink($partpath); + // because we have no clue about the cause we can only throw back a 500/Internal Server Error + throw new Sabre_DAV_Exception('Could not write file contents'); } + } catch (\OCP\Files\NotPermittedException $e) { + // a more general case - due to whatever reason the content could not be written + throw new Sabre_DAV_Exception_Forbidden($e->getMessage()); + + } catch (\OCP\Files\EntityTooLargeException $e) { + // the file is too big to be stored + throw new OC_Connector_Sabre_Exception_EntityTooLarge($e->getMessage()); + + } catch (\OCP\Files\InvalidContentException $e) { + // the file content is not permitted + throw new OC_Connector_Sabre_Exception_UnsupportedMediaType($e->getMessage()); + + } catch (\OCP\Files\InvalidPathException $e) { + // the path for the file was not valid + // TODO: find proper http status code for this case + throw new Sabre_DAV_Exception_Forbidden($e->getMessage()); } // rename to correct path - $renameOkay = \OC\Files\Filesystem::rename($partpath, $this->path); - $fileExists = \OC\Files\Filesystem::file_exists($this->path); + $renameOkay = $fs->rename($partpath, $this->path); + $fileExists = $fs->file_exists($this->path); if ($renameOkay === false || $fileExists === false) { \OC_Log::write('webdav', '\OC\Files\Filesystem::rename() failed', \OC_Log::ERROR); - \OC\Files\Filesystem::unlink($partpath); - throw new Sabre_DAV_Exception(); + $fs->unlink($partpath); + throw new Sabre_DAV_Exception('Could not rename part file to final file'); } - - //allow sync clients to send the mtime along in a header + // allow sync clients to send the mtime along in a header $mtime = OC_Request::hasModificationTime(); if ($mtime !== false) { - if (\OC\Files\Filesystem::touch($this->path, $mtime)) { + if($fs->touch($this->path, $mtime)) { header('X-OC-MTime: accepted'); } } - return OC_Connector_Sabre_Node::getETagPropertyForPath($this->path); + return $this->getETagPropertyForPath($this->path); } /** @@ -101,7 +126,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D */ public function get() { - //throw execption if encryption is disabled but files are still encrypted + //throw exception if encryption is disabled but files are still encrypted if (\OC_Util::encryptedFiles()) { throw new \Sabre_DAV_Exception_ServiceUnavailable(); } else { @@ -118,11 +143,18 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D */ public function delete() { + if ($this->path === 'Shared') { + throw new \Sabre_DAV_Exception_Forbidden(); + } + if (!\OC\Files\Filesystem::isDeletable($this->path)) { throw new \Sabre_DAV_Exception_Forbidden(); } \OC\Files\Filesystem::unlink($this->path); + // remove properties + $this->removeProperties(); + } /** @@ -144,7 +176,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D * * An ETag is a unique identifier representing the current version of the * file. If the file changes, the ETag MUST change. The ETag is an - * arbritrary string, but MUST be surrounded by double-quotes. + * arbitrary string, but MUST be surrounded by double-quotes. * * Return null if the ETag can not effectively be determined * @@ -173,4 +205,62 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D return \OC\Files\Filesystem::getMimeType($this->path); } + + private function createFileChunked($data) + { + list($path, $name) = \Sabre_DAV_URLUtil::splitPath($this->path); + + $info = OC_FileChunking::decodeName($name); + if (empty($info)) { + throw new Sabre_DAV_Exception_NotImplemented(); + } + $chunk_handler = new OC_FileChunking($info); + $bytesWritten = $chunk_handler->store($info['index'], $data); + + //detect aborted upload + if (isset ($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] === 'PUT' ) { + if (isset($_SERVER['CONTENT_LENGTH'])) { + $expected = $_SERVER['CONTENT_LENGTH']; + if ($bytesWritten != $expected) { + $chunk_handler->remove($info['index']); + throw new Sabre_DAV_Exception_BadRequest( + 'expected filesize ' . $expected . ' got ' . $bytesWritten); + } + } + } + + if ($chunk_handler->isComplete()) { + + // we first assembly the target file as a part file + $partFile = $path . '/' . $info['name'] . '.ocTransferId' . $info['transferid'] . '.part'; + $chunk_handler->file_assemble($partFile); + + // here is the final atomic rename + $fs = $this->getFS(); + $targetPath = $path . '/' . $info['name']; + $renameOkay = $fs->rename($partFile, $targetPath); + $fileExists = $fs->file_exists($targetPath); + if ($renameOkay === false || $fileExists === false) { + \OC_Log::write('webdav', '\OC\Files\Filesystem::rename() failed', \OC_Log::ERROR); + // only delete if an error occurred and the target file was already created + if ($fileExists) { + $fs->unlink($targetPath); + } + throw new Sabre_DAV_Exception('Could not rename part file assembled from chunks'); + } + + // allow sync clients to send the mtime along in a header + $mtime = OC_Request::hasModificationTime(); + if ($mtime !== false) { + if($fs->touch($targetPath, $mtime)) { + header('X-OC-MTime: accepted'); + } + } + + return OC_Connector_Sabre_Node::getETagPropertyForPath($targetPath); + } + + return null; + } + } diff --git a/lib/private/connector/sabre/filesplugin.php b/lib/private/connector/sabre/filesplugin.php new file mode 100644 index 0000000000000000000000000000000000000000..65231040fb5973f7622e1730387d8a3c427a1ef5 --- /dev/null +++ b/lib/private/connector/sabre/filesplugin.php @@ -0,0 +1,103 @@ + + * + * @license AGPL3 + */ + +class OC_Connector_Sabre_FilesPlugin extends Sabre_DAV_ServerPlugin +{ + + // namespace + const NS_OWNCLOUD = 'http://owncloud.org/ns'; + + /** + * Reference to main server object + * + * @var Sabre_DAV_Server + */ + private $server; + + /** + * This initializes the plugin. + * + * This function is called by Sabre_DAV_Server, after + * addPlugin is called. + * + * This method should set up the required event subscriptions. + * + * @param Sabre_DAV_Server $server + * @return void + */ + public function initialize(Sabre_DAV_Server $server) { + + $server->xmlNamespaces[self::NS_OWNCLOUD] = 'oc'; + $server->protectedProperties[] = '{' . self::NS_OWNCLOUD . '}id'; + + $this->server = $server; + $this->server->subscribeEvent('beforeGetProperties', array($this, 'beforeGetProperties')); + $this->server->subscribeEvent('afterCreateFile', array($this, 'sendFileIdHeader')); + $this->server->subscribeEvent('afterWriteContent', array($this, 'sendFileIdHeader')); + } + + /** + * Adds all ownCloud-specific properties + * + * @param string $path + * @param Sabre_DAV_INode $node + * @param array $requestedProperties + * @param array $returnedProperties + * @return void + */ + public function beforeGetProperties($path, Sabre_DAV_INode $node, array &$requestedProperties, array &$returnedProperties) { + + if ($node instanceof OC_Connector_Sabre_Node) { + + $fileid_propertyname = '{' . self::NS_OWNCLOUD . '}id'; + if (array_search($fileid_propertyname, $requestedProperties)) { + unset($requestedProperties[array_search($fileid_propertyname, $requestedProperties)]); + } + + /** @var $node OC_Connector_Sabre_Node */ + $fileId = $node->getFileId(); + if (!is_null($fileId)) { + $returnedProperties[200][$fileid_propertyname] = $fileId; + } + + } + + } + + /** + * @param $filePath + * @param Sabre_DAV_INode $node + * @throws Sabre_DAV_Exception_BadRequest + */ + public function sendFileIdHeader($filePath, Sabre_DAV_INode $node = null) { + // chunked upload handling + if (isset($_SERVER['HTTP_OC_CHUNKED'])) { + list($path, $name) = \Sabre_DAV_URLUtil::splitPath($filePath); + $info = OC_FileChunking::decodeName($name); + if (!empty($info)) { + $filePath = $path . '/' . $info['name']; + } + } + + // we get the node for the given $filePath here because in case of afterCreateFile $node is the parent folder + if (!$this->server->tree->nodeExists($filePath)) { + return; + } + $node = $this->server->tree->getNodeForPath($filePath); + if ($node instanceof OC_Connector_Sabre_Node) { + $fileId = $node->getFileId(); + if (!is_null($fileId)) { + $this->server->httpResponse->setHeader('OC-FileId', $fileId); + } + } + } + +} diff --git a/lib/private/connector/sabre/node.php b/lib/private/connector/sabre/node.php index 29b7f9e53a5ba8d569e6ce0762e28e47360ca6e6..993aa73faeb15b54c0d9040572b98c49626b6d71 100644 --- a/lib/private/connector/sabre/node.php +++ b/lib/private/connector/sabre/node.php @@ -32,12 +32,20 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr */ public static $ETagFunction = null; + /** + * is kept public to allow overwrite for unit testing + * + * @var \OC\Files\View + */ + public $fileView; + /** * The path to the current node * * @var string */ protected $path; + /** * node fileinfo cache * @var array @@ -140,12 +148,6 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr * Even if the modification time is set to a custom value the access time is set to now. */ public function touch($mtime) { - - // touch is only allowed if the update privilege is granted - if (!\OC\Files\Filesystem::isUpdatable($this->path)) { - throw new \Sabre_DAV_Exception_Forbidden(); - } - \OC\Files\Filesystem::touch($this->path, $mtime); } @@ -189,6 +191,17 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr return true; } + /** + * removes all properties for this node and user + */ + public function removeProperties() { + $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*properties`' + .' WHERE `userid` = ? AND `propertypath` = ?' ); + $query->execute( array( OC_User::getUser(), $this->path)); + + $this->setPropertyCache(null); + } + /** * @brief Returns a list of properties for this nodes.; * @param array $properties @@ -199,6 +212,7 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr * properties should be returned */ public function getProperties($properties) { + if (is_null($this->property_cache)) { $sql = 'SELECT * FROM `*PREFIX*properties` WHERE `userid` = ? AND `propertypath` = ?'; $result = OC_DB::executeAudited( $sql, array( OC_User::getUser(), $this->path ) ); @@ -207,7 +221,14 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr while( $row = $result->fetchRow()) { $this->property_cache[$row['propertyname']] = $row['propertyvalue']; } - $this->property_cache[self::GETETAG_PROPERTYNAME] = $this->getETagPropertyForPath($this->path); + + // Don't call the static getETagPropertyForPath, its result is not cached + $this->getFileinfoCache(); + if ($this->fileinfo_cache['etag']) { + $this->property_cache[self::GETETAG_PROPERTYNAME] = '"'.$this->fileinfo_cache['etag'].'"'; + } else { + $this->property_cache[self::GETETAG_PROPERTYNAME] = null; + } } // if the array was empty, we need to return everything @@ -217,8 +238,11 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr $props = array(); foreach($properties as $property) { - if (isset($this->property_cache[$property])) $props[$property] = $this->property_cache[$property]; + if (isset($this->property_cache[$property])) { + $props[$property] = $this->property_cache[$property]; + } } + return $props; } @@ -227,12 +251,34 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr * @param string $path Path of the file * @return string|null Returns null if the ETag can not effectively be determined */ - static public function getETagPropertyForPath($path) { - $data = \OC\Files\Filesystem::getFileInfo($path); + protected function getETagPropertyForPath($path) { + $data = $this->getFS()->getFileInfo($path); if (isset($data['etag'])) { return '"'.$data['etag'].'"'; } return null; } + protected function getFS() { + if (is_null($this->fileView)) { + $this->fileView = \OC\Files\Filesystem::getView(); + } + return $this->fileView; + } + + /** + * @return mixed + */ + public function getFileId() + { + $this->getFileinfoCache(); + + if (isset($this->fileinfo_cache['fileid'])) { + $instanceId = OC_Util::getInstanceId(); + $id = sprintf('%08d', $this->fileinfo_cache['fileid']); + return $id . $instanceId; + } + + return null; + } } diff --git a/lib/private/connector/sabre/objecttree.php b/lib/private/connector/sabre/objecttree.php index 80c3840b99d9fa95bd34bc7a4625a124b54e9cc0..cd3f081f7ccf73d4e8e31be9657f503ca73071f1 100644 --- a/lib/private/connector/sabre/objecttree.php +++ b/lib/private/connector/sabre/objecttree.php @@ -87,6 +87,9 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { if (!$fs->isUpdatable($destinationDir)) { throw new \Sabre_DAV_Exception_Forbidden(); } + if (!$fs->isDeletable($sourcePath)) { + throw new \Sabre_DAV_Exception_Forbidden(); + } } $renameOkay = $fs->rename($sourcePath, $destinationPath); @@ -94,6 +97,11 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { throw new \Sabre_DAV_Exception_Forbidden(''); } + // update properties + $query = \OC_DB::prepare( 'UPDATE `*PREFIX*properties` SET `propertypath` = ?' + .' WHERE `userid` = ? AND `propertypath` = ?' ); + $query->execute( array( $destinationPath, \OC_User::getUser(), $sourcePath )); + $this->markDirty($sourceDir); $this->markDirty($destinationDir); diff --git a/lib/private/connector/sabre/server.php b/lib/private/connector/sabre/server.php new file mode 100644 index 0000000000000000000000000000000000000000..41e8885917a2be26c725413fdc2e2c7ae71ca346 --- /dev/null +++ b/lib/private/connector/sabre/server.php @@ -0,0 +1,235 @@ +parsePropFindRequest($this->httpRequest->getBody(true)); + + $depth = $this->getHTTPDepth(1); + // The only two options for the depth of a propfind is 0 or 1 + // if ($depth!=0) $depth = 1; + + $newProperties = $this->getPropertiesForPath($uri,$requestedProperties,$depth); + + // This is a multi-status response + $this->httpResponse->sendStatus(207); + $this->httpResponse->setHeader('Content-Type','application/xml; charset=utf-8'); + $this->httpResponse->setHeader('Vary','Brief,Prefer'); + + // Normally this header is only needed for OPTIONS responses, however.. + // iCal seems to also depend on these being set for PROPFIND. Since + // this is not harmful, we'll add it. + $features = array('1','3', 'extended-mkcol'); + foreach($this->plugins as $plugin) { + $features = array_merge($features,$plugin->getFeatures()); + } + + $this->httpResponse->setHeader('DAV',implode(', ',$features)); + + $prefer = $this->getHTTPPrefer(); + $minimal = $prefer['return-minimal']; + + $data = $this->generateMultiStatus($newProperties, $minimal); + $this->httpResponse->sendBody($data); + + } + + /** + * Small helper to support PROPFIND with DEPTH_INFINITY. + */ + private function addPathNodesRecursively(&$nodes, $path) { + foreach($this->tree->getChildren($path) as $childNode) { + $nodes[$path . '/' . $childNode->getName()] = $childNode; + if ($childNode instanceof Sabre_DAV_ICollection) + $this->addPathNodesRecursively($nodes, $path . '/' . $childNode->getName()); + } + } + + public function getPropertiesForPath($path, $propertyNames = array(), $depth = 0) { + + // if ($depth!=0) $depth = 1; + + $path = rtrim($path,'/'); + + $returnPropertyList = array(); + + $parentNode = $this->tree->getNodeForPath($path); + $nodes = array( + $path => $parentNode + ); + if ($depth==1 && $parentNode instanceof Sabre_DAV_ICollection) { + foreach($this->tree->getChildren($path) as $childNode) + $nodes[$path . '/' . $childNode->getName()] = $childNode; + } else if ($depth == self::DEPTH_INFINITY && $parentNode instanceof Sabre_DAV_ICollection) { + $this->addPathNodesRecursively($nodes, $path); + } + + // If the propertyNames array is empty, it means all properties are requested. + // We shouldn't actually return everything we know though, and only return a + // sensible list. + $allProperties = count($propertyNames)==0; + + foreach($nodes as $myPath=>$node) { + + $currentPropertyNames = $propertyNames; + + $newProperties = array( + '200' => array(), + '404' => array(), + ); + + if ($allProperties) { + // Default list of propertyNames, when all properties were requested. + $currentPropertyNames = array( + '{DAV:}getlastmodified', + '{DAV:}getcontentlength', + '{DAV:}resourcetype', + '{DAV:}quota-used-bytes', + '{DAV:}quota-available-bytes', + '{DAV:}getetag', + '{DAV:}getcontenttype', + ); + } + + // If the resourceType was not part of the list, we manually add it + // and mark it for removal. We need to know the resourcetype in order + // to make certain decisions about the entry. + // WebDAV dictates we should add a / and the end of href's for collections + $removeRT = false; + if (!in_array('{DAV:}resourcetype',$currentPropertyNames)) { + $currentPropertyNames[] = '{DAV:}resourcetype'; + $removeRT = true; + } + + $result = $this->broadcastEvent('beforeGetProperties',array($myPath, $node, &$currentPropertyNames, &$newProperties)); + // If this method explicitly returned false, we must ignore this + // node as it is inaccessible. + if ($result===false) continue; + + if (count($currentPropertyNames) > 0) { + + if ($node instanceof Sabre_DAV_IProperties) { + $nodeProperties = $node->getProperties($currentPropertyNames); + + // The getProperties method may give us too much, + // properties, in case the implementor was lazy. + // + // So as we loop through this list, we will only take the + // properties that were actually requested and discard the + // rest. + foreach($currentPropertyNames as $k=>$currentPropertyName) { + if (isset($nodeProperties[$currentPropertyName])) { + unset($currentPropertyNames[$k]); + $newProperties[200][$currentPropertyName] = $nodeProperties[$currentPropertyName]; + } + } + + } + + } + + foreach($currentPropertyNames as $prop) { + + if (isset($newProperties[200][$prop])) continue; + + switch($prop) { + case '{DAV:}getlastmodified' : if ($node->getLastModified()) $newProperties[200][$prop] = new Sabre_DAV_Property_GetLastModified($node->getLastModified()); break; + case '{DAV:}getcontentlength' : + if ($node instanceof Sabre_DAV_IFile) { + $size = $node->getSize(); + if (!is_null($size)) { + $newProperties[200][$prop] = (int)$node->getSize(); + } + } + break; + case '{DAV:}quota-used-bytes' : + if ($node instanceof Sabre_DAV_IQuota) { + $quotaInfo = $node->getQuotaInfo(); + $newProperties[200][$prop] = $quotaInfo[0]; + } + break; + case '{DAV:}quota-available-bytes' : + if ($node instanceof Sabre_DAV_IQuota) { + $quotaInfo = $node->getQuotaInfo(); + $newProperties[200][$prop] = $quotaInfo[1]; + } + break; + case '{DAV:}getetag' : if ($node instanceof Sabre_DAV_IFile && $etag = $node->getETag()) $newProperties[200][$prop] = $etag; break; + case '{DAV:}getcontenttype' : if ($node instanceof Sabre_DAV_IFile && $ct = $node->getContentType()) $newProperties[200][$prop] = $ct; break; + case '{DAV:}supported-report-set' : + $reports = array(); + foreach($this->plugins as $plugin) { + $reports = array_merge($reports, $plugin->getSupportedReportSet($myPath)); + } + $newProperties[200][$prop] = new Sabre_DAV_Property_SupportedReportSet($reports); + break; + case '{DAV:}resourcetype' : + $newProperties[200]['{DAV:}resourcetype'] = new Sabre_DAV_Property_ResourceType(); + foreach($this->resourceTypeMapping as $className => $resourceType) { + if ($node instanceof $className) $newProperties[200]['{DAV:}resourcetype']->add($resourceType); + } + break; + + } + + // If we were unable to find the property, we will list it as 404. + if (!$allProperties && !isset($newProperties[200][$prop])) $newProperties[404][$prop] = null; + + } + + $this->broadcastEvent('afterGetProperties',array(trim($myPath,'/'),&$newProperties, $node)); + + $newProperties['href'] = trim($myPath,'/'); + + // Its is a WebDAV recommendation to add a trailing slash to collectionnames. + // Apple's iCal also requires a trailing slash for principals (rfc 3744), though this is non-standard. + if ($myPath!='' && isset($newProperties[200]['{DAV:}resourcetype'])) { + $rt = $newProperties[200]['{DAV:}resourcetype']; + if ($rt->is('{DAV:}collection') || $rt->is('{DAV:}principal')) { + $newProperties['href'] .='/'; + } + } + + // If the resourcetype property was manually added to the requested property list, + // we will remove it again. + if ($removeRT) unset($newProperties[200]['{DAV:}resourcetype']); + + $returnPropertyList[] = $newProperties; + + } + + return $returnPropertyList; + + } +} diff --git a/lib/private/davclient.php b/lib/private/davclient.php new file mode 100644 index 0000000000000000000000000000000000000000..28f48f3b92136885818a24bac6f2eca47102bba2 --- /dev/null +++ b/lib/private/davclient.php @@ -0,0 +1,46 @@ + + * + * 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 . + * + */ + +/** + * This class extends the SabreDAV client with additional functionality + * like request timeout. + */ + +class OC_DAVClient extends \Sabre_DAV_Client { + + protected $requestTimeout; + + /** + * @brief Sets the request timeout or 0 to disable timeout. + * @param int timeout in seconds or 0 to disable + */ + public function setRequestTimeout($timeout) { + $this->requestTimeout = (int)$timeout; + } + + protected function curlRequest($url, $settings) { + if ($this->requestTimeout > 0) { + $settings[CURLOPT_TIMEOUT] = $this->requestTimeout; + } + return parent::curlRequest($url, $settings); + } +} diff --git a/lib/private/db.php b/lib/private/db.php index 1e5d12649df0be92dedd794e5408cb7fade84b33..562065259fa6fb0c02a00e6599498ed3b4e4adda 100644 --- a/lib/private/db.php +++ b/lib/private/db.php @@ -101,6 +101,9 @@ class OC_DB { ); $connectionParams['adapter'] = '\OC\DB\Adapter'; $connectionParams['wrapperClass'] = 'OC\DB\Connection'; + // Send "SET NAMES utf8". Only required on PHP 5.3 below 5.3.6. + // See http://stackoverflow.com/questions/4361459/php-pdo-charset-set-names#4361485 + $eventManager->addEventSubscriber(new \Doctrine\DBAL\Event\Listeners\MysqlSessionInit); break; case 'pgsql': $connectionParams = array( diff --git a/lib/private/db/adaptersqlsrv.php b/lib/private/db/adaptersqlsrv.php index d0a67af28a7a65b83481e7939264966c5b326ced..a6bc0e21052f67f8cedf6d6692b964df57318101 100644 --- a/lib/private/db/adaptersqlsrv.php +++ b/lib/private/db/adaptersqlsrv.php @@ -10,13 +10,6 @@ namespace OC\DB; class AdapterSQLSrv extends Adapter { - public function lastInsertId($table) { - if($table !== null) { - $table = $this->conn->replaceTablePrefix( $table ); - } - return $this->conn->lastInsertId($table); - } - public function fixupStatement($statement) { $statement = preg_replace( "/\`(.*?)`/", "[$1]", $statement ); $statement = str_ireplace( 'NOW()', 'CURRENT_TIMESTAMP', $statement ); diff --git a/lib/private/db/connection.php b/lib/private/db/connection.php index 2d3193a148a46fa84cd38b31879612f22d64a708..2581969dbd0a34a7a1ab3d61e381f49810943095 100644 --- a/lib/private/db/connection.php +++ b/lib/private/db/connection.php @@ -12,7 +12,7 @@ use Doctrine\DBAL\Configuration; use Doctrine\DBAL\Cache\QueryCacheProfile; use Doctrine\Common\EventManager; -class Connection extends \Doctrine\DBAL\Connection implements \OCP\IDBConnection { +class Connection extends \Doctrine\DBAL\Connection { /** * @var string $tablePrefix */ diff --git a/lib/private/db/connectionwrapper.php b/lib/private/db/connectionwrapper.php new file mode 100644 index 0000000000000000000000000000000000000000..93d4fb57f740307941a6cb8a4ad850fba9f483a9 --- /dev/null +++ b/lib/private/db/connectionwrapper.php @@ -0,0 +1,99 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\DB; + + +class ConnectionWrapper implements \OCP\IDBConnection { + + private $connection; + + public function __construct(Connection $conn) { + $this->connection = $conn; + } + + /** + * Used to the owncloud database access away + * @param string $sql the sql query with ? placeholder for params + * @param int $limit the maximum number of rows + * @param int $offset from which row we want to start + * @return \Doctrine\DBAL\Driver\Statement The prepared statement. + */ + public function prepare($sql, $limit = null, $offset = null) + { + return $this->connection->prepare($sql, $limit, $offset); + } + + /** + * Used to get the id of the just inserted element + * @param string $tableName the name of the table where we inserted the item + * @return int the id of the inserted element + */ + public function lastInsertId($table = null) + { + return $this->connection->lastInsertId($table); + } + + /** + * Insert a row if a matching row doesn't exists. + * @param string The table name (will replace *PREFIX*) to perform the replace on. + * @param array + * + * The input array if in the form: + * + * array ( 'id' => array ( 'value' => 6, + * 'key' => true + * ), + * 'name' => array ('value' => 'Stoyan'), + * 'family' => array ('value' => 'Stefanov'), + * 'birth_date' => array ('value' => '1975-06-20') + * ); + * @return bool + * + */ + public function insertIfNotExist($table, $input) + { + return $this->connection->insertIfNotExist($table, $input); + } + + /** + * Start a transaction + * @return bool TRUE on success or FALSE on failure + */ + public function beginTransaction() + { + return $this->connection->beginTransaction(); + } + + /** + * Commit the database changes done during a transaction that is in progress + * @return bool TRUE on success or FALSE on failure + */ + public function commit() + { + return $this->connection->commit(); + } + + /** + * Rollback the database changes done during a transaction that is in progress + * @return bool TRUE on success or FALSE on failure + */ + public function rollBack() + { + return $this->connection->rollBack(); + } + + /** + * Gets the error code and message as a string for logging + * @return string + */ + public function getError() + { + return $this->connection->getError(); + } +} diff --git a/lib/private/db/mdb2schemamanager.php b/lib/private/db/mdb2schemamanager.php index 8e76f46c78fba481265e22a8cab6c92204ae5382..6378c76905553f36ea200a38fe083bd19a43b7b6 100644 --- a/lib/private/db/mdb2schemamanager.php +++ b/lib/private/db/mdb2schemamanager.php @@ -19,6 +19,8 @@ class MDB2SchemaManager { */ public function __construct($conn) { $this->conn = $conn; + $this->conn->close(); + $this->conn->connect(); } /** @@ -53,7 +55,7 @@ class MDB2SchemaManager { * @param string $file file to read structure from * @return bool */ - public function updateDbFromStructure($file) { + public function updateDbFromStructure($file, $generateSql = false) { $sm = $this->conn->getSchemaManager(); $fromSchema = $sm->createSchema(); @@ -61,6 +63,7 @@ class MDB2SchemaManager { $toSchema = $schemaReader->loadSchemaFromFile($file); // remove tables we don't know about + /** @var $table \Doctrine\DBAL\Schema\Table */ foreach($fromSchema->getTables() as $table) { if (!$toSchema->hasTable($table->getName())) { $fromSchema->dropTable($table->getName()); @@ -77,10 +80,13 @@ class MDB2SchemaManager { $schemaDiff = $comparator->compare($fromSchema, $toSchema); $platform = $this->conn->getDatabasePlatform(); - $tables = $schemaDiff->newTables + $schemaDiff->changedTables + $schemaDiff->removedTables; - foreach($tables as $tableDiff) { + foreach($schemaDiff->changedTables as $tableDiff) { $tableDiff->name = $platform->quoteIdentifier($tableDiff->name); } + + if ($generateSql) { + return $this->generateChangeScript($schemaDiff); + } return $this->executeSchemaChange($schemaDiff); } @@ -106,6 +112,7 @@ class MDB2SchemaManager { $schemaReader = new MDB2SchemaReader(\OC_Config::getObject(), $this->conn->getDatabasePlatform()); $fromSchema = $schemaReader->loadSchemaFromFile($file); $toSchema = clone $fromSchema; + /** @var $table \Doctrine\DBAL\Schema\Table */ foreach($toSchema->getTables() as $table) { $toSchema->dropTable($table->getName()); } @@ -147,4 +154,20 @@ class MDB2SchemaManager { $this->conn->commit(); return true; } + + /** + * @param \Doctrine\DBAL\Schema\Schema $schema + * @return string + */ + public function generateChangeScript($schema) { + + $script = ''; + $sqls = $schema->toSql($this->conn->getDatabasePlatform()); + foreach($sqls as $sql) { + $script .= $sql . ';'; + $script .= PHP_EOL; + } + + return $script; + } } diff --git a/lib/private/db/mdb2schemareader.php b/lib/private/db/mdb2schemareader.php index b7128a2f176bedce181c0a88b0ea6cd7329f8210..b1fd2454cb00f02e6776df3352d43fc7e6f7440b 100644 --- a/lib/private/db/mdb2schemareader.php +++ b/lib/private/db/mdb2schemareader.php @@ -150,6 +150,9 @@ class MDB2SchemaReader { case 'timestamp': $type = 'datetime'; break; + case 'numeric': + $type = 'decimal'; + break; } break; case 'length': @@ -180,20 +183,28 @@ class MDB2SchemaReader { $primary = $this->asBool($child); $options['primary'] = $primary; break; + case 'precision': + $precision = (string)$child; + $options['precision'] = $precision; + break; + case 'scale': + $scale = (string)$child; + $options['scale'] = $scale; + break; default: throw new \DomainException('Unknown element: ' . $child->getName()); } } if (isset($name) && isset($type)) { - if (empty($options['default'])) { + if (isset($options['default']) && empty($options['default'])) { if (empty($options['notnull']) || !$options['notnull']) { unset($options['default']); $options['notnull'] = false; } else { $options['default'] = ''; } - if ($type == 'integer') { + if ($type == 'integer' || $type == 'decimal') { $options['default'] = 0; } elseif ($type == 'boolean') { $options['default'] = false; diff --git a/lib/private/db/statementwrapper.php b/lib/private/db/statementwrapper.php index b8da1afc0e5c5bcb84c1b2f7a28c0e78a87593e2..5e89261d93637a70c1f5d2208483d1b6119906a7 100644 --- a/lib/private/db/statementwrapper.php +++ b/lib/private/db/statementwrapper.php @@ -29,25 +29,6 @@ class OC_DB_StatementWrapper { return call_user_func_array(array($this->statement,$name), $arguments); } - /** - * provide numRows - */ - public function numRows() { - $type = OC_Config::getValue( "dbtype", "sqlite" ); - if ($type == 'oci') { - // OCI doesn't have a queryString, just do a rowCount for now - return $this->statement->rowCount(); - } - $regex = '/^SELECT\s+(?:ALL\s+|DISTINCT\s+)?(?:.*?)\s+FROM\s+(.*)$/i'; - $queryString = $this->statement->getWrappedStatement()->queryString; - if (preg_match($regex, $queryString, $output) > 0) { - $query = OC_DB::prepare("SELECT COUNT(*) FROM {$output[1]}"); - return $query->execute($this->lastArguments)->fetchColumn(); - }else{ - return $this->statement->rowCount(); - } - } - /** * make execute return the result instead of a bool */ diff --git a/lib/private/defaults.php b/lib/private/defaults.php index 10813a3e8d88d3eba151bb95f06f671c110374d4..cec9a65c7f3690be385c88ea7760791b40d4c693 100644 --- a/lib/private/defaults.php +++ b/lib/private/defaults.php @@ -1,18 +1,17 @@ l = OC_L10N::get('core'); $this->defaultEntity = "ownCloud"; /* e.g. company name, used for footers and copyright notices */ $this->defaultName = "ownCloud"; /* short name, used when referring to the software */ @@ -32,7 +31,7 @@ class OC_Defaults { $this->defaultBaseUrl = "http://owncloud.org"; $this->defaultSyncClientUrl = " http://owncloud.org/sync-clients/"; $this->defaultDocBaseUrl = "http://doc.owncloud.org"; - $this->defaultSlogan = $l->t("web services under your control"); + $this->defaultSlogan = $this->l->t("web services under your control"); $this->defaultLogoClaim = ""; if (class_exists("OC_Theme")) { @@ -47,6 +46,10 @@ class OC_Defaults { return false; } + /** + * Returns the base URL + * @return string URL + */ public function getBaseUrl() { if ($this->themeExist('getBaseUrl')) { return $this->theme->getBaseUrl(); @@ -55,6 +58,10 @@ class OC_Defaults { } } + /** + * Returns the URL where the sync clients are listed + * @return string URL + */ public function getSyncClientUrl() { if ($this->themeExist('getSyncClientUrl')) { return $this->theme->getSyncClientUrl(); @@ -63,6 +70,10 @@ class OC_Defaults { } } + /** + * Returns the documentation URL + * @return string URL + */ public function getDocBaseUrl() { if ($this->themeExist('getDocBaseUrl')) { return $this->theme->getDocBaseUrl(); @@ -71,6 +82,10 @@ class OC_Defaults { } } + /** + * Returns the title + * @return string title + */ public function getTitle() { if ($this->themeExist('getTitle')) { return $this->theme->getTitle(); @@ -79,6 +94,10 @@ class OC_Defaults { } } + /** + * Returns the short name of the software + * @return string title + */ public function getName() { if ($this->themeExist('getName')) { return $this->theme->getName(); @@ -87,6 +106,10 @@ class OC_Defaults { } } + /** + * Returns entity (e.g. company name) - used for footer, copyright + * @return string entity name + */ public function getEntity() { if ($this->themeExist('getEntity')) { return $this->theme->getEntity(); @@ -95,6 +118,10 @@ class OC_Defaults { } } + /** + * Returns slogan + * @return string slogan + */ public function getSlogan() { if ($this->themeExist('getSlogan')) { return $this->theme->getSlogan(); @@ -103,6 +130,10 @@ class OC_Defaults { } } + /** + * Returns logo claim + * @return string logo claim + */ public function getLogoClaim() { if ($this->themeExist('getLogoClaim')) { return $this->theme->getLogoClaim(); @@ -111,6 +142,10 @@ class OC_Defaults { } } + /** + * Returns short version of the footer + * @return string short footer + */ public function getShortFooter() { if ($this->themeExist('getShortFooter')) { $footer = $this->theme->getShortFooter(); @@ -122,6 +157,10 @@ class OC_Defaults { return $footer; } + /** + * Returns long version of the footer + * @return string long footer + */ public function getLongFooter() { if ($this->themeExist('getLongFooter')) { $footer = $this->theme->getLongFooter(); diff --git a/lib/private/eventsource.php b/lib/private/eventsource.php index a83084d92514af6276d6ac4c7cfd8c64d1d8612c..4df0bc2e7cd4de73c9c20221d486c2a31f75f8ce 100644 --- a/lib/private/eventsource.php +++ b/lib/private/eventsource.php @@ -64,13 +64,13 @@ class OC_EventSource{ } if($this->fallback) { $response=''.PHP_EOL; + .$this->fallBackId.',"' . $type . '",' . OCP\JSON::encode($data) . ')' . PHP_EOL; echo $response; }else{ if($type) { - echo 'event: '.$type.PHP_EOL; + echo 'event: ' . $type.PHP_EOL; } - echo 'data: '.json_encode($data).PHP_EOL; + echo 'data: ' . OCP\JSON::encode($data) . PHP_EOL; } echo PHP_EOL; flush(); diff --git a/lib/private/filechunking.php b/lib/private/filechunking.php index 313a6ee87d2975d6139b2a3a8691a63d6994784e..aa4f73c7c05cc00669bbe8fe0391d2d4ea404d9f 100644 --- a/lib/private/filechunking.php +++ b/lib/private/filechunking.php @@ -34,10 +34,19 @@ class OC_FileChunking { return $this->cache; } + /** + * Stores the given $data under the given $key - the number of stored bytes is returned + * + * @param $index + * @param $data + * @return int + */ public function store($index, $data) { $cache = $this->getCache(); $name = $this->getPrefix().$index; $cache->set($name, $data); + + return $cache->size($name); } public function isComplete() { @@ -58,12 +67,34 @@ class OC_FileChunking { $count = 0; for($i=0; $i < $this->info['chunkcount']; $i++) { $chunk = $cache->get($prefix.$i); - $cache->remove($prefix.$i); $count += fwrite($f, $chunk); } + + $this->cleanup(); return $count; } + /** + * Removes all chunks which belong to this transmission + */ + public function cleanup() { + $cache = $this->getCache(); + $prefix = $this->getPrefix(); + for($i=0; $i < $this->info['chunkcount']; $i++) { + $cache->remove($prefix.$i); + } + } + + /** + * Removes one specific chunk + * @param $index + */ + public function remove($index) { + $cache = $this->getCache(); + $prefix = $this->getPrefix(); + $cache->remove($prefix.$index); + } + public function signature_split($orgfile, $input) { $info = unpack('n', fread($input, 2)); $blocksize = $info[1]; diff --git a/lib/private/fileproxy.php b/lib/private/fileproxy.php index 52ec79b4bdb6f153d92aae9605b336be2e514220..2997aaf81b620ec0aa15961a9726f9d61da15f4e 100644 --- a/lib/private/fileproxy.php +++ b/lib/private/fileproxy.php @@ -67,7 +67,11 @@ class OC_FileProxy{ self::$proxies[]=$proxy; } - public static function getProxies($operation) { + public static function getProxies($operation = null) { + if ($operation === null) { + // return all + return self::$proxies; + } $proxies=array(); foreach(self::$proxies as $proxy) { if(method_exists($proxy, $operation)) { diff --git a/lib/private/files.php b/lib/private/files.php index c705d2adb1a20f7c0dcbc09871792a0b9a093b6f..8ce632013cf6dc8aba00b9425ef9af6ca2334a82 100644 --- a/lib/private/files.php +++ b/lib/private/files.php @@ -28,8 +28,8 @@ class OC_Files { static $tmpFiles = array(); - static public function getFileInfo($path){ - return \OC\Files\Filesystem::getFileInfo($path); + static public function getFileInfo($path, $includeMountPoints = true){ + return \OC\Files\Filesystem::getFileInfo($path, $includeMountPoints); } static public function getDirectoryContent($path){ @@ -83,7 +83,7 @@ class OC_Files { if ($basename) { $name = $basename . '.zip'; } else { - $name = 'owncloud.zip'; + $name = 'download.zip'; } set_time_limit($executionTime); @@ -109,15 +109,13 @@ class OC_Files { $zip = false; $filename = $dir . '/' . $files; $name = $files; + if ($xsendfile && OC_App::isEnabled('files_encryption')) { + $xsendfile = false; + } } OC_Util::obEnd(); if ($zip or \OC\Files\Filesystem::isReadable($filename)) { - if ( preg_match( "/MSIE/", $_SERVER["HTTP_USER_AGENT"] ) ) { - header( 'Content-Disposition: attachment; filename="' . rawurlencode($name) . '"' ); - } else { - header( 'Content-Disposition: attachment; filename*=UTF-8\'\'' . rawurlencode($name) - . '; filename="' . rawurlencode($name) . '"' ); - } + OC_Response::setContentDispositionHeader($name, 'attachment'); header('Content-Transfer-Encoding: binary'); OC_Response::disableCaching(); if ($zip) { @@ -131,9 +129,11 @@ class OC_Files { if ($filesize > -1) { header("Content-Length: ".$filesize); } - list($storage) = \OC\Files\Filesystem::resolvePath($filename); - if ($storage instanceof \OC\Files\Storage\Local) { - self::addSendfileHeader(\OC\Files\Filesystem::getLocalFile($filename)); + if ($xsendfile) { + list($storage) = \OC\Files\Filesystem::resolvePath(\OC\Files\Filesystem::getView()->getAbsolutePath($filename)); + if ($storage instanceof \OC\Files\Storage\Local) { + self::addSendfileHeader(\OC\Files\Filesystem::getLocalFile($filename)); + } } } } elseif ($zip or !\OC\Files\Filesystem::file_exists($filename)) { @@ -251,7 +251,7 @@ class OC_Files { header("HTTP/1.0 409 Conflict"); OC_Template::printErrorPage( $l->t('Selected files too large to generate zip file.'), - $l->t('Download the files in smaller chunks, seperately or kindly ask your administrator.') + $l->t('Please download the files separately in smaller chunks or kindly ask your administrator.') .'
    ' . $l->t('Back to Files') . '' ); diff --git a/lib/private/files/cache/cache.php b/lib/private/files/cache/cache.php index e69733727af88bcf869bb51e3cdec7dbe3da4e3f..1e7936ca26d1bb2a6a60377ab89adcd48d6be1f4 100644 --- a/lib/private/files/cache/cache.php +++ b/lib/private/files/cache/cache.php @@ -34,8 +34,8 @@ class Cache { */ private $storageCache; - private $mimetypeIds = array(); - private $mimetypes = array(); + private static $mimetypeIds = array(); + private static $mimetypes = array(); /** * @param \OC\Files\Storage\Storage|string $storage @@ -64,30 +64,45 @@ class Cache { * @return int */ public function getMimetypeId($mime) { - if (!isset($this->mimetypeIds[$mime])) { - $result = \OC_DB::executeAudited('SELECT `id` FROM `*PREFIX*mimetypes` WHERE `mimetype` = ?', array($mime)); - if ($row = $result->fetchRow()) { - $this->mimetypeIds[$mime] = $row['id']; - } else { + if (empty($mime)) { + // Can not insert empty string into Oracle NOT NULL column. + $mime = 'application/octet-stream'; + } + if (empty(self::$mimetypeIds)) { + $this->loadMimetypes(); + } + + if (!isset(self::$mimetypeIds[$mime])) { + try{ $result = \OC_DB::executeAudited('INSERT INTO `*PREFIX*mimetypes`(`mimetype`) VALUES(?)', array($mime)); - $this->mimetypeIds[$mime] = \OC_DB::insertid('*PREFIX*mimetypes'); + self::$mimetypeIds[$mime] = \OC_DB::insertid('*PREFIX*mimetypes'); + self::$mimetypes[self::$mimetypeIds[$mime]] = $mime; } - $this->mimetypes[$this->mimetypeIds[$mime]] = $mime; - } - return $this->mimetypeIds[$mime]; + catch (\Doctrine\DBAL\DBALException $e){ + \OC_Log::write('core', 'Exception during mimetype insertion: ' . $e->getmessage(), \OC_Log::DEBUG); + return -1; + } + } + + return self::$mimetypeIds[$mime]; } public function getMimetype($id) { - if (!isset($this->mimetypes[$id])) { - $sql = 'SELECT `mimetype` FROM `*PREFIX*mimetypes` WHERE `id` = ?'; - $result = \OC_DB::executeAudited($sql, array($id)); - if ($row = $result->fetchRow()) { - $this->mimetypes[$id] = $row['mimetype']; - } else { - return null; - } + if (empty(self::$mimetypes)) { + $this->loadMimetypes(); } - return $this->mimetypes[$id]; + + return isset(self::$mimetypes[$id]) ? self::$mimetypes[$id] : null; + } + + public function loadMimetypes(){ + $result = \OC_DB::executeAudited('SELECT `id`, `mimetype` FROM `*PREFIX*mimetypes`', array()); + if ($result) { + while ($row = $result->fetchRow()) { + self::$mimetypeIds[$row['mimetype']] = $row['id']; + self::$mimetypes[$row['id']] = $row['mimetype']; + } + } } /** @@ -129,6 +144,7 @@ class Cache { $data['fileid'] = (int)$data['fileid']; $data['size'] = (int)$data['size']; $data['mtime'] = (int)$data['mtime']; + $data['storage_mtime'] = (int)$data['storage_mtime']; $data['encrypted'] = (bool)$data['encrypted']; $data['unencrypted_size'] = (int)$data['unencrypted_size']; $data['storage'] = $this->storageId; @@ -162,6 +178,10 @@ class Cache { if ($file['storage_mtime'] == 0) { $file['storage_mtime'] = $file['mtime']; } + if ($file['encrypted'] or ($file['unencrypted_size'] > 0 and $file['mimetype'] === 'httpd/unix-directory')) { + $file['encrypted_size'] = $file['size']; + $file['size'] = $file['unencrypted_size']; + } } return $files; } else { @@ -491,22 +511,34 @@ class Cache { $entry = $this->get($path); if ($entry && $entry['mimetype'] === 'httpd/unix-directory') { $id = $entry['fileid']; - $sql = 'SELECT SUM(`size`), MIN(`size`) FROM `*PREFIX*filecache` '. + $sql = 'SELECT SUM(`size`) AS f1, MIN(`size`) AS f2, ' . + 'SUM(`unencrypted_size`) AS f3 ' . + 'FROM `*PREFIX*filecache` ' . 'WHERE `parent` = ? AND `storage` = ?'; $result = \OC_DB::executeAudited($sql, array($id, $this->getNumericStorageId())); if ($row = $result->fetchRow()) { - list($sum, $min) = array_values($row); + list($sum, $min, $unencryptedSum) = array_values($row); $sum = (int)$sum; $min = (int)$min; + $unencryptedSum = (int)$unencryptedSum; if ($min === -1) { $totalSize = $min; } else { $totalSize = $sum; } + $update = array(); if ($entry['size'] !== $totalSize) { - $this->update($id, array('size' => $totalSize)); + $update['size'] = $totalSize; + } + if ($entry['unencrypted_size'] !== $unencryptedSum) { + $update['unencrypted_size'] = $unencryptedSum; + } + if (count($update) > 0) { + $this->update($id, $update); + } + if ($totalSize !== -1 and $unencryptedSum > 0) { + $totalSize = $unencryptedSum; } - } } return $totalSize; diff --git a/lib/private/files/cache/homecache.php b/lib/private/files/cache/homecache.php new file mode 100644 index 0000000000000000000000000000000000000000..71bb944da71c9e38abdf70da3a76c8b979cef43c --- /dev/null +++ b/lib/private/files/cache/homecache.php @@ -0,0 +1,53 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Files\Cache; + +class HomeCache extends Cache { + /** + * get the size of a folder and set it in the cache + * + * @param string $path + * @return int + */ + public function calculateFolderSize($path) { + if ($path !== '/' and $path !== '' and $path !== 'files') { + return parent::calculateFolderSize($path); + } + + $totalSize = 0; + $entry = $this->get($path); + if ($entry && $entry['mimetype'] === 'httpd/unix-directory') { + $id = $entry['fileid']; + $sql = 'SELECT SUM(`size`) FROM `*PREFIX*filecache` ' . + 'WHERE `parent` = ? AND `storage` = ? AND `size` >= 0'; + $result = \OC_DB::executeAudited($sql, array($id, $this->getNumericStorageId())); + if ($row = $result->fetchRow()) { + list($sum) = array_values($row); + $totalSize = (int)$sum; + if ($entry['size'] !== $totalSize) { + $this->update($id, array('size' => $totalSize)); + } + } + } + return $totalSize; + } + + public function get($path) { + $data = parent::get($path); + if ($path === '' or $path === '/') { + // only the size of the "files" dir counts + $filesData = parent::get('files'); + + if (isset($filesData['size'])) { + $data['size'] = $filesData['size']; + } + } + return $data; + } +} diff --git a/lib/private/files/cache/scanner.php b/lib/private/files/cache/scanner.php index 96f84609cf231fb45374c24b0f70a87459eef638..92a4c01841b90324378e37b45f88412a15fc62d5 100644 --- a/lib/private/files/cache/scanner.php +++ b/lib/private/files/cache/scanner.php @@ -17,6 +17,8 @@ use OC\Hooks\BasicEmitter; * Hooks available in scope \OC\Files\Cache\Scanner: * - scanFile(string $path, string $storageId) * - scanFolder(string $path, string $storageId) + * - postScanFile(string $path, string $storageId) + * - postScanFolder(string $path, string $storageId) * * @package OC\Files\Cache */ @@ -62,8 +64,12 @@ class Scanner extends BasicEmitter { * @return array with metadata of the file */ public function getData($path) { + if (!$this->storage->isReadable($path)) { + //cant read, nothing we can do + \OCP\Util::writeLog('OC\Files\Cache\Scanner', "!!! Path '$path' is not readable !!!", \OCP\Util::DEBUG); + return null; + } $data = array(); - if (!$this->storage->isReadable($path)) return null; //cant read, nothing we can do $data['mimetype'] = $this->storage->getMimeType($path); $data['mtime'] = $this->storage->filemtime($path); if ($data['mimetype'] == 'httpd/unix-directory') { @@ -104,7 +110,9 @@ class Scanner extends BasicEmitter { $newData = $data; $cacheData = $this->cache->get($file); if ($cacheData) { - $this->permissionsCache->remove($cacheData['fileid']); + if (isset($cacheData['fileid'])) { + $this->permissionsCache->remove($cacheData['fileid']); + } if ($reuseExisting) { // prevent empty etag $etag = $cacheData['etag']; @@ -114,7 +122,7 @@ class Scanner extends BasicEmitter { $propagateETagChange = true; } // only reuse data if the file hasn't explicitly changed - if (isset($data['mtime']) && isset($cacheData['mtime']) && $data['mtime'] === $cacheData['mtime']) { + if (isset($data['storage_mtime']) && isset($cacheData['storage_mtime']) && $data['storage_mtime'] === $cacheData['storage_mtime']) { if (($reuseExisting & self::REUSE_SIZE) && ($data['size'] === -1)) { $data['size'] = $cacheData['size']; } @@ -136,11 +144,20 @@ class Scanner extends BasicEmitter { } } // Only update metadata that has changed - $newData = array_diff($data, $cacheData); + $newData = array_diff_assoc($data, $cacheData); + if (isset($newData['etag'])) { + $cacheDataString = print_r($cacheData, true); + $dataString = print_r($data, true); + \OCP\Util::writeLog('OC\Files\Cache\Scanner', + "!!! No reuse of etag for '$file' !!! \ncache: $cacheDataString \ndata: $dataString", + \OCP\Util::DEBUG); + } } } if (!empty($newData)) { $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)); } } else { $this->cache->remove($file); @@ -190,24 +207,34 @@ class Scanner extends BasicEmitter { } $newChildren = array(); if ($this->storage->is_dir($path) && ($dh = $this->storage->opendir($path))) { + $exceptionOccurred = false; \OC_DB::beginTransaction(); if (is_resource($dh)) { while (($file = readdir($dh)) !== false) { $child = ($path) ? $path . '/' . $file : $file; if (!Filesystem::isIgnoredDir($file)) { $newChildren[] = $file; - $data = $this->scanFile($child, $reuse, true); - if ($data) { - if ($data['size'] === -1) { - if ($recursive === self::SCAN_RECURSIVE) { - $childQueue[] = $child; - } else { - $size = -1; + try { + $data = $this->scanFile($child, $reuse, true); + if ($data) { + if ($data['size'] === -1) { + if ($recursive === self::SCAN_RECURSIVE) { + $childQueue[] = $child; + } else { + $size = -1; + } + } else if ($size !== -1) { + $size += $data['size']; } - } else if ($size !== -1) { - $size += $data['size']; } } + catch (\Doctrine\DBAL\DBALException $ex){ + // might happen if inserting duplicate while a scanning + // process is running in parallel + // log and ignore + \OC_Log::write('core', 'Exception while scanning file "' . $child . '": ' . $ex->getMessage(), \OC_Log::DEBUG); + $exceptionOccurred = true; + } } } } @@ -217,6 +244,14 @@ class Scanner extends BasicEmitter { $this->cache->remove($child); } \OC_DB::commit(); + if ($exceptionOccurred){ + // It might happen that the parallel scan process has already + // inserted mimetypes but those weren't available yet inside the transaction + // To make sure to have the updated mime types in such cases, + // we reload them here + $this->cache->loadMimetypes(); + } + foreach ($childQueue as $child) { $childSize = $this->scanChildren($child, self::SCAN_RECURSIVE, $reuse); if ($childSize === -1) { @@ -227,6 +262,7 @@ class Scanner extends BasicEmitter { } $this->cache->put($path, array('size' => $size)); } + $this->emit('\OC\Files\Cache\Scanner', 'postScanFolder', array($path, $this->storageId)); return $size; } @@ -250,7 +286,7 @@ class Scanner extends BasicEmitter { public function backgroundScan() { $lastPath = null; while (($path = $this->cache->getIncomplete()) !== false && $path !== $lastPath) { - $this->scan($path); + $this->scan($path, self::SCAN_RECURSIVE, self::REUSE_ETAG); $this->cache->correctFolderSize($path); $lastPath = $path; } diff --git a/lib/private/files/cache/storage.php b/lib/private/files/cache/storage.php index 8a9e47ca36d62422b4d7db3a5bb959c03d4fef7c..5657cf06e12115a5b6b28e4e7de24dea32e055ee 100644 --- a/lib/private/files/cache/storage.php +++ b/lib/private/files/cache/storage.php @@ -48,7 +48,7 @@ class Storage { } public static function getStorageId($numericId) { - + $sql = 'SELECT `id` FROM `*PREFIX*storages` WHERE `numeric_id` = ?'; $result = \OC_DB::executeAudited($sql, array($numericId)); if ($row = $result->fetchRow()) { @@ -57,4 +57,17 @@ class Storage { return null; } } + + public static function exists($storageId) { + if (strlen($storageId) > 64) { + $storageId = md5($storageId); + } + $sql = 'SELECT `numeric_id` FROM `*PREFIX*storages` WHERE `id` = ?'; + $result = \OC_DB::executeAudited($sql, array($storageId)); + if ($row = $result->fetchRow()) { + return true; + } else { + return false; + } + } } diff --git a/lib/private/files/cache/updater.php b/lib/private/files/cache/updater.php index 1f30173a8f8b18d1a1741e4171217d45813bb3b0..73bc30e538f6e559fb54a280818d15e4bb118c8b 100644 --- a/lib/private/files/cache/updater.php +++ b/lib/private/files/cache/updater.php @@ -7,6 +7,7 @@ */ namespace OC\Files\Cache; + use OCP\Util; /** @@ -42,6 +43,7 @@ class Updater { $scanner->scan($internalPath, Scanner::SCAN_SHALLOW); $cache->correctFolderSize($internalPath); self::correctFolder($path, $storage->filemtime($internalPath)); + self::correctParentStorageMtime($storage, $internalPath); } } @@ -57,10 +59,15 @@ class Updater { */ list($storage, $internalPath) = self::resolvePath($path); if ($storage) { + $parent = dirname($internalPath); + if ($parent === '.') { + $parent = ''; + } $cache = $storage->getCache($internalPath); $cache->remove($internalPath); - $cache->correctFolderSize($internalPath); + $cache->correctFolderSize($parent); self::correctFolder($path, time()); + self::correctParentStorageMtime($storage, $internalPath); } } @@ -83,10 +90,18 @@ class Updater { if ($storageFrom === $storageTo) { $cache = $storageFrom->getCache($internalFrom); $cache->move($internalFrom, $internalTo); + if (pathinfo($internalFrom, PATHINFO_EXTENSION) !== pathinfo($internalTo, PATHINFO_EXTENSION)) { + // redetect mime type change + $mimeType = $storageTo->getMimeType($internalTo); + $fileId = $storageTo->getCache()->getId($internalTo); + $storageTo->getCache()->update($fileId, array('mimetype' => $mimeType)); + } $cache->correctFolderSize($internalFrom); $cache->correctFolderSize($internalTo); self::correctFolder($from, time()); self::correctFolder($to, time()); + self::correctParentStorageMtime($storageFrom, $internalFrom); + self::correctParentStorageMtime($storageTo, $internalTo); } else { self::deleteUpdate($from); self::writeUpdate($to); @@ -94,6 +109,24 @@ class Updater { } } + /** + * @brief get file owner and path + * @param string $filename + * @return array with the oweners uid and the owners path + */ + private static function getUidAndFilename($filename) { + + $uid = \OC\Files\Filesystem::getOwner($filename); + \OC\Files\Filesystem::initMountPoints($uid); + + if ($uid != \OCP\User::getUser()) { + $info = \OC\Files\Filesystem::getFileInfo($filename); + $ownerView = new \OC\Files\View('/' . $uid . '/files'); + $filename = $ownerView->getPath($info['fileid']); + } + return array($uid, '/files/' . $filename); + } + /** * Update the mtime and ETag of all parent folders * @@ -102,28 +135,52 @@ class Updater { */ static public function correctFolder($path, $time) { if ($path !== '' && $path !== '/') { - $parent = dirname($path); - if ($parent === '.' || $parent === '\\') { - $parent = ''; - } + + list($owner, $realPath) = self::getUidAndFilename(dirname($path)); + /** * @var \OC\Files\Storage\Storage $storage * @var string $internalPath */ - list($storage, $internalPath) = self::resolvePath($parent); - if ($storage) { - $cache = $storage->getCache(); - $id = $cache->getId($internalPath); - if ($id !== -1) { - $cache->update($id, array('mtime' => $time, 'etag' => $storage->getETag($internalPath))); - self::correctFolder($parent, $time); + $view = new \OC\Files\View('/' . $owner); + + list($storage, $internalPath) = $view->resolvePath($realPath); + $cache = $storage->getCache(); + $id = $cache->getId($internalPath); + + while ($id !== -1) { + $cache->update($id, array('mtime' => $time, 'etag' => $storage->getETag($internalPath))); + if ($realPath !== '') { + $realPath = dirname($realPath); + if($realPath === DIRECTORY_SEPARATOR ) { + $realPath = ""; + } + // check storage for parent in case we change the storage in this step + list($storage, $internalPath) = $view->resolvePath($realPath); + $cache = $storage->getCache(); + $id = $cache->getId($internalPath); } else { - Util::writeLog('core', 'Path not in cache: '.$internalPath, Util::ERROR); + $id = -1; } } } } + /** + * update the storage_mtime of the parent + * + * @param \OC\Files\Storage\Storage $storage + * @param string $internalPath + */ + static private function correctParentStorageMtime($storage, $internalPath) { + $cache = $storage->getCache(); + $parentId = $cache->getParentId($internalPath); + $parent = dirname($internalPath); + if ($parentId != -1) { + $cache->update($parentId, array('storage_mtime' => $storage->filemtime($parent))); + } + } + /** * @param array $params */ diff --git a/lib/private/files/cache/upgrade.php b/lib/private/files/cache/upgrade.php index cfb9a1173113fffd6f278acb780a05e87879001d..e3a46896cbfa49a18f26d0d2446346a170a61a9f 100644 --- a/lib/private/files/cache/upgrade.php +++ b/lib/private/files/cache/upgrade.php @@ -192,7 +192,15 @@ class Upgrade { */ static function needUpgrade($user) { $cacheVersion = (int)\OCP\Config::getUserValue($user, 'files', 'cache_version', 4); - return $cacheVersion < 5; + if ($cacheVersion < 5) { + $legacy = new \OC\Files\Cache\Legacy($user); + if ($legacy->hasItems()) { + return true; + } + self::upgradeDone($user); + } + + return false; } /** diff --git a/lib/private/files/cache/watcher.php b/lib/private/files/cache/watcher.php index 8bfd4602f3aae9f0ee8ca0233b09be0c5faf8464..251ecbe7071335cc3cf3165d9315dec986021540 100644 --- a/lib/private/files/cache/watcher.php +++ b/lib/private/files/cache/watcher.php @@ -15,17 +15,17 @@ class Watcher { /** * @var \OC\Files\Storage\Storage $storage */ - private $storage; + protected $storage; /** * @var Cache $cache */ - private $cache; + protected $cache; /** * @var Scanner $scanner; */ - private $scanner; + protected $scanner; /** * @param \OC\Files\Storage\Storage $storage @@ -40,6 +40,7 @@ class Watcher { * check $path for updates * * @param string $path + * @return boolean | array true if path was updated, otherwise the cached data is returned */ public function checkUpdate($path) { $cachedEntry = $this->cache->get($path); @@ -53,7 +54,9 @@ class Watcher { $this->cleanFolder($path); } $this->cache->correctFolderSize($path); + return true; } + return $cachedEntry; } /** diff --git a/lib/private/files/filesystem.php b/lib/private/files/filesystem.php index 10ec5c41d11eb97525bc96d42cb74b49cf79c87c..a83e9aa86d24b8ccc8fe714539e741fbaf1bcd44 100644 --- a/lib/private/files/filesystem.php +++ b/lib/private/files/filesystem.php @@ -305,7 +305,21 @@ class Filesystem { $parser = new \OC\ArrayParser(); $root = \OC_User::getHome($user); - self::mount('\OC\Files\Storage\Local', array('datadir' => $root), $user); + + $userObject = \OC_User::getManager()->get($user); + + if (!is_null($userObject)) { + // check for legacy home id (<= 5.0.12) + if (\OC\Files\Cache\Storage::exists('local::' . $root . '/')) { + self::mount('\OC\Files\Storage\Home', array('user' => $userObject, 'legacy' => true), $user); + } + else { + self::mount('\OC\Files\Storage\Home', array('user' => $userObject), $user); + } + } + else { + self::mount('\OC\Files\Storage\Local', array('datadir' => $root), $user); + } $datadir = \OC_Config::getValue("datadirectory", \OC::$SERVERROOT . "/data"); //move config file to it's new position @@ -675,18 +689,32 @@ class Filesystem { } //no windows style slashes $path = str_replace('\\', '/', $path); + //add leading slash if ($path[0] !== '/') { $path = '/' . $path; } - //remove duplicate slashes - while (strpos($path, '//') !== false) { - $path = str_replace('//', '/', $path); + + // remove '/./' + // ugly, but str_replace() can't replace them all in one go + // as the replacement itself is part of the search string + // which will only be found during the next iteration + while (strpos($path, '/./') !== false) { + $path = str_replace('/./', '/', $path); } + // remove sequences of slashes + $path = preg_replace('#/{2,}#', '/', $path); + //remove trailing slash if ($stripTrailingSlash and strlen($path) > 1 and substr($path, -1, 1) === '/') { $path = substr($path, 0, -1); } + + // remove trailing '/.' + if (substr($path, -2) == '/.') { + $path = substr($path, 0, -2); + } + //normalize unicode if possible $path = \OC_Util::normalizeUnicode($path); @@ -697,6 +725,8 @@ class Filesystem { * get the filesystem info * * @param string $path + * @param boolean $includeMountPoints whether to add mountpoint sizes, + * defaults to true * @return array * * returns an associative array with the following keys: @@ -706,8 +736,8 @@ class Filesystem { * - encrypted * - versioned */ - public static function getFileInfo($path) { - return self::$defaultInstance->getFileInfo($path); + public static function getFileInfo($path, $includeMountPoints = true) { + return self::$defaultInstance->getFileInfo($path, $includeMountPoints); } /** diff --git a/lib/private/files/storage/common.php b/lib/private/files/storage/common.php index a5b79f0e96763df55e01cf3f70aa45ec56f39f4f..678bf4190239c0e3dc5e96cea7fa40d67d1b0204 100644 --- a/lib/private/files/storage/common.php +++ b/lib/private/files/storage/common.php @@ -21,11 +21,11 @@ namespace OC\Files\Storage; */ abstract class Common implements \OC\Files\Storage\Storage { - private $cache; - private $scanner; - private $permissioncache; - private $watcher; - private $storageCache; + protected $cache; + protected $scanner; + protected $permissioncache; + protected $watcher; + protected $storageCache; public function __construct($parameters) { } @@ -51,6 +51,19 @@ abstract class Common implements \OC\Files\Storage\Storage { } } + public function isReadable($path) { + // at least check whether it exists + // subclasses might want to implement this more thoroughly + return $this->file_exists($path); + } + + public function isUpdatable($path) { + // at least check whether it exists + // subclasses might want to implement this more thoroughly + // a non-existing file/folder isn't updatable + return $this->file_exists($path); + } + public function isCreatable($path) { if ($this->is_dir($path) && $this->isUpdatable($path)) { return true; @@ -142,7 +155,7 @@ abstract class Common implements \OC\Files\Storage\Storage { return false; } else { $directoryHandle = $this->opendir($directory); - if(is_resource($directoryHandle)) { + if (is_resource($directoryHandle)) { while (($contents = readdir($directoryHandle)) !== false) { if (!\OC\Files\Filesystem::isIgnoredDir($contents)) { $path = $directory . '/' . $contents; @@ -165,27 +178,13 @@ abstract class Common implements \OC\Files\Storage\Storage { } public function getMimeType($path) { - if (!$this->file_exists($path)) { - return false; - } if ($this->is_dir($path)) { return 'httpd/unix-directory'; - } - $source = $this->fopen($path, 'r'); - if (!$source) { - return false; - } - $head = fread($source, 8192); //8kb should suffice to determine a mimetype - if ($pos = strrpos($path, '.')) { - $extension = substr($path, $pos); + } elseif ($this->file_exists($path)) { + return \OC_Helper::getFileNameMimeType($path); } else { - $extension = ''; + return false; } - $tmpFile = \OC_Helper::tmpFile($extension); - file_put_contents($tmpFile, $head); - $mime = \OC_Helper::getMimeType($tmpFile); - unlink($tmpFile); - return $mime; } public function hash($type, $path, $raw = false) { @@ -227,7 +226,7 @@ abstract class Common implements \OC\Files\Storage\Storage { private function addLocalFolder($path, $target) { $dh = $this->opendir($path); - if(is_resource($dh)) { + if (is_resource($dh)) { while (($file = readdir($dh)) !== false) { if ($file !== '.' and $file !== '..') { if ($this->is_dir($path . '/' . $file)) { @@ -298,7 +297,7 @@ abstract class Common implements \OC\Files\Storage\Storage { return $this->watcher; } - public function getStorageCache(){ + public function getStorageCache() { if (!isset($this->storageCache)) { $this->storageCache = new \OC\Files\Cache\Storage($this); } diff --git a/lib/private/files/storage/commontest.php b/lib/private/files/storage/commontest.php index c3f1eb31955a5f516745063869fc0e42331f1f2c..2394b14a82fa494ce3daa0ba60c40154fe0435e5 100644 --- a/lib/private/files/storage/commontest.php +++ b/lib/private/files/storage/commontest.php @@ -54,7 +54,7 @@ class CommonTest extends \OC\Files\Storage\Common{ return $this->storage->stat($path); } public function filetype($path) { - return $this->storage->filetype($path); + return @$this->storage->filetype($path); } public function isReadable($path) { return $this->storage->isReadable($path); diff --git a/lib/private/files/storage/home.php b/lib/private/files/storage/home.php new file mode 100644 index 0000000000000000000000000000000000000000..1c2a682f197e7a789a8fa81d88f6e90cf127399a --- /dev/null +++ b/lib/private/files/storage/home.php @@ -0,0 +1,66 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Files\Storage; + +/** + * Specialized version of Local storage for home directory usage + */ +class Home extends Local { + /** + * @var string + */ + protected $id; + + /** + * @var \OC\User\User $user + */ + protected $user; + + /** + * @brief Construct a Home storage instance + * @param array $arguments array with "user" containing the + * storage owner and "legacy" containing "true" if the storage is + * a legacy storage with "local::" URL instead of the new "home::" one. + */ + public function __construct($arguments) { + $this->user = $arguments['user']; + $datadir = $this->user->getHome(); + if (isset($arguments['legacy']) && $arguments['legacy']) { + // legacy home id (<= 5.0.12) + $this->id = 'local::' . $datadir . '/'; + } + else { + $this->id = 'home::' . $this->user->getUID(); + } + + parent::__construct(array('datadir' => $datadir)); + } + + public function getId() { + return $this->id; + } + + /** + * @return \OC\Files\Cache\HomeCache + */ + public function getCache($path = '') { + if (!isset($this->cache)) { + $this->cache = new \OC\Files\Cache\HomeCache($this); + } + return $this->cache; + } + + /** + * @brief Returns the owner of this home storage + * @return \OC\User\User owner of this home storage + */ + public function getUser() { + return $this->user; + } +} diff --git a/lib/private/files/storage/local.php b/lib/private/files/storage/local.php index 5209fabc30ad0ac6a4adfa665220e7ee61d9bd73..db3c6bfca3a7b843826aa4c08ef1bc58afad0b7b 100644 --- a/lib/private/files/storage/local.php +++ b/lib/private/files/storage/local.php @@ -203,14 +203,6 @@ if (\OC_Util::runningOnWindows()) { return $return; } - public function getMimeType($path) { - if ($this->isReadable($path)) { - return \OC_Helper::getMimeType($this->datadir . $path); - } else { - return false; - } - } - private function delTree($dir) { $dirRelative = $dir; $dir = $this->datadir . $dir; @@ -264,7 +256,7 @@ if (\OC_Util::runningOnWindows()) { public function free_space($path) { $space = @disk_free_space($this->datadir . $path); - if ($space === false) { + if ($space === false || is_null($space)) { return \OC\Files\SPACE_UNKNOWN; } return $space; diff --git a/lib/private/files/storage/mappedlocal.php b/lib/private/files/storage/mappedlocal.php index ba5ac4191c5b9b1fc595fb472c2c17125bd0a2d4..6c37d445867795bc5a37f857860ba9bcc66ee28f 100644 --- a/lib/private/files/storage/mappedlocal.php +++ b/lib/private/files/storage/mappedlocal.php @@ -210,14 +210,6 @@ class MappedLocal extends \OC\Files\Storage\Common{ return $return; } - public function getMimeType($path) { - if($this->isReadable($path)) { - return \OC_Helper::getMimeType($this->buildPath($path)); - }else{ - return false; - } - } - private function delTree($dir, $isLogicPath=true) { $dirRelative=$dir; if ($isLogicPath) { diff --git a/lib/private/files/storage/storage.php b/lib/private/files/storage/storage.php index b673bb9a32d0dd5ff624cb87a7a83807cf7d700a..5be90f24756d10aea7bb376c4c192b71c665e509 100644 --- a/lib/private/files/storage/storage.php +++ b/lib/private/files/storage/storage.php @@ -14,278 +14,6 @@ namespace OC\Files\Storage; * All paths passed to the storage are relative to the storage and should NOT have a leading slash. */ interface Storage extends \OCP\Files\Storage { - /** - * $parameters is a free form array with the configuration options needed to construct the storage - * - * @param array $parameters - */ - public function __construct($parameters); - - /** - * Get the identifier for the storage, - * the returned id should be the same for every storage object that is created with the same parameters - * and two storage objects with the same id should refer to two storages that display the same files. - * - * @return string - */ - public function getId(); - - /** - * see http://php.net/manual/en/function.mkdir.php - * - * @param string $path - * @return bool - */ - public function mkdir($path); - - /** - * see http://php.net/manual/en/function.rmdir.php - * - * @param string $path - * @return bool - */ - public function rmdir($path); - - /** - * see http://php.net/manual/en/function.opendir.php - * - * @param string $path - * @return resource - */ - public function opendir($path); - - /** - * see http://php.net/manual/en/function.is_dir.php - * - * @param string $path - * @return bool - */ - public function is_dir($path); - - /** - * see http://php.net/manual/en/function.is_file.php - * - * @param string $path - * @return bool - */ - public function is_file($path); - - /** - * see http://php.net/manual/en/function.stat.php - * only the following keys are required in the result: size and mtime - * - * @param string $path - * @return array - */ - public function stat($path); - - /** - * see http://php.net/manual/en/function.filetype.php - * - * @param string $path - * @return bool - */ - public function filetype($path); - - /** - * see http://php.net/manual/en/function.filesize.php - * The result for filesize when called on a folder is required to be 0 - * - * @param string $path - * @return int - */ - public function filesize($path); - - /** - * check if a file can be created in $path - * - * @param string $path - * @return bool - */ - public function isCreatable($path); - - /** - * check if a file can be read - * - * @param string $path - * @return bool - */ - public function isReadable($path); - - /** - * check if a file can be written to - * - * @param string $path - * @return bool - */ - public function isUpdatable($path); - - /** - * check if a file can be deleted - * - * @param string $path - * @return bool - */ - public function isDeletable($path); - - /** - * check if a file can be shared - * - * @param string $path - * @return bool - */ - public function isSharable($path); - - /** - * get the full permissions of a path. - * Should return a combination of the PERMISSION_ constants defined in lib/public/constants.php - * - * @param string $path - * @return int - */ - public function getPermissions($path); - - /** - * see http://php.net/manual/en/function.file_exists.php - * - * @param string $path - * @return bool - */ - public function file_exists($path); - - /** - * see http://php.net/manual/en/function.filemtime.php - * - * @param string $path - * @return int - */ - public function filemtime($path); - - /** - * see http://php.net/manual/en/function.file_get_contents.php - * - * @param string $path - * @return string - */ - public function file_get_contents($path); - - /** - * see http://php.net/manual/en/function.file_put_contents.php - * - * @param string $path - * @param string $data - * @return bool - */ - public function file_put_contents($path, $data); - - /** - * see http://php.net/manual/en/function.unlink.php - * - * @param string $path - * @return bool - */ - public function unlink($path); - - /** - * see http://php.net/manual/en/function.rename.php - * - * @param string $path1 - * @param string $path2 - * @return bool - */ - public function rename($path1, $path2); - - /** - * see http://php.net/manual/en/function.copy.php - * - * @param string $path1 - * @param string $path2 - * @return bool - */ - public function copy($path1, $path2); - - /** - * see http://php.net/manual/en/function.fopen.php - * - * @param string $path - * @param string $mode - * @return resource - */ - public function fopen($path, $mode); - - /** - * get the mimetype for a file or folder - * The mimetype for a folder is required to be "httpd/unix-directory" - * - * @param string $path - * @return string - */ - public function getMimeType($path); - - /** - * see http://php.net/manual/en/function.hash.php - * - * @param string $type - * @param string $path - * @param bool $raw - * @return string - */ - public function hash($type, $path, $raw = false); - - /** - * see http://php.net/manual/en/function.free_space.php - * - * @param string $path - * @return int - */ - public function free_space($path); - - /** - * search for occurrences of $query in file names - * - * @param string $query - * @return array - */ - public function search($query); - - /** - * see http://php.net/manual/en/function.touch.php - * If the backend does not support the operation, false should be returned - * - * @param string $path - * @param int $mtime - * @return bool - */ - public function touch($path, $mtime = null); - - /** - * get the path to a local version of the file. - * The local version of the file can be temporary and doesn't have to be persistent across requests - * - * @param string $path - * @return string - */ - public function getLocalFile($path); - - /** - * get the path to a local version of the folder. - * The local version of the folder can be temporary and doesn't have to be persistent across requests - * - * @param string $path - * @return string - */ - public function getLocalFolder($path); - /** - * check if a file or folder has been updated since $time - * - * @param string $path - * @param int $time - * @return bool - * - * hasUpdated for folders should return at least true if a file inside the folder is add, removed or renamed. - * returning true for other changes in the folder is optional - */ - public function hasUpdated($path, $time); /** * get a cache instance for the storage @@ -333,11 +61,4 @@ interface Storage extends \OCP\Files\Storage { */ public function getStorageCache(); - /** - * get the ETag for a file or folder - * - * @param string $path - * @return string - */ - public function getETag($path); } diff --git a/lib/private/files/storage/wrapper/quota.php b/lib/private/files/storage/wrapper/quota.php index e2da8cf2e05a396ca1376fcbb56031fa0e72e617..a430e3e46170a76e13d52a1d217f0244da4abb4d 100644 --- a/lib/private/files/storage/wrapper/quota.php +++ b/lib/private/files/storage/wrapper/quota.php @@ -95,7 +95,7 @@ class Quota extends Wrapper { public function fopen($path, $mode) { $source = $this->storage->fopen($path, $mode); $free = $this->free_space(''); - if ($free >= 0) { + if ($source && $free >= 0 && $mode !== 'r' && $mode !== 'rb') { return \OC\Files\Stream\Quota::wrap($source, $free); } else { return $source; diff --git a/lib/private/files/storage/wrapper/wrapper.php b/lib/private/files/storage/wrapper/wrapper.php index 0336c27efa1241558066847f6ddcdef1931eda23..f9adda803142657acccaebee1c30caf34c9f14a7 100644 --- a/lib/private/files/storage/wrapper/wrapper.php +++ b/lib/private/files/storage/wrapper/wrapper.php @@ -424,4 +424,12 @@ class Wrapper implements \OC\Files\Storage\Storage { public function getETag($path) { return $this->storage->getETag($path); } + + /** + * Returns true + * @return true + */ + public function test() { + return $this->storage->test(); + } } diff --git a/lib/private/files/stream/quota.php b/lib/private/files/stream/quota.php index 53d8a03d30f6e135d517ef869ef7593fd94ea76b..60e60da8e67a204b8ae6490f29d5842e72f702e0 100644 --- a/lib/private/files/stream/quota.php +++ b/lib/private/files/stream/quota.php @@ -66,12 +66,24 @@ class Quota { } public function stream_seek($offset, $whence = SEEK_SET) { - if ($whence === SEEK_SET) { + if ($whence === SEEK_END){ + // go to the end to find out last position's offset + $oldOffset = $this->stream_tell(); + if (fseek($this->source, 0, $whence) !== 0){ + return false; + } + $whence = SEEK_SET; + $offset = $this->stream_tell() + $offset; + $this->limit += $oldOffset - $offset; + } + else if ($whence === SEEK_SET) { $this->limit += $this->stream_tell() - $offset; } else { $this->limit -= $offset; } - fseek($this->source, $offset, $whence); + // this wrapper needs to return "true" for success. + // the fseek call itself returns 0 on succeess + return !fseek($this->source, $offset, $whence); } public function stream_tell() { diff --git a/lib/private/files/type/detection.php b/lib/private/files/type/detection.php index 242a81cb5a4f1097123c9a9c0d7a6732a4231cbd..d7cc9ebbf4e9a5cb905bf9b8f5e25a989d9c0986 100644 --- a/lib/private/files/type/detection.php +++ b/lib/private/files/type/detection.php @@ -61,8 +61,6 @@ class Detection { * @return string */ public function detect($path) { - $isWrapped = (strpos($path, '://') !== false) and (substr($path, 0, 7) === 'file://'); - if (@is_dir($path)) { // directories are easy return "httpd/unix-directory"; @@ -76,9 +74,11 @@ class Detection { $info = @strtolower(finfo_file($finfo, $path)); if ($info) { $mimeType = substr($info, 0, strpos($info, ';')); + return empty($mimeType) ? 'application/octet-stream' : $mimeType; } finfo_close($finfo); } + $isWrapped = (strpos($path, '://') !== false) and (substr($path, 0, 7) === 'file://'); if (!$isWrapped and $mimeType === 'application/octet-stream' && function_exists("mime_content_type")) { // use mime magic extension if available $mimeType = mime_content_type($path); @@ -94,6 +94,10 @@ class Detection { //trim the newline $mimeType = trim($reply); + if (empty($mimeType)) { + $mimeType = 'application/octet-stream'; + } + } return $mimeType; } diff --git a/lib/private/files/view.php b/lib/private/files/view.php index aa08a5f7cc9f2ad48ec756068283281850ff6d22..d97544b865e53885ff698bfaecbb3610da8f307a 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -110,7 +110,9 @@ class View { * @return array consisting of the storage and the internal path */ public function resolvePath($path) { - return Filesystem::resolvePath($this->getAbsolutePath($path)); + $a = $this->getAbsolutePath($path); + $p = Filesystem::normalizePath($a); + return Filesystem::resolvePath($p); } /** @@ -157,7 +159,11 @@ class View { } public function rmdir($path) { - return $this->basicOperation('rmdir', $path, array('delete')); + if ($this->is_dir($path)) { + return $this->basicOperation('rmdir', $path, array('delete')); + } else { + return false; + } } public function opendir($path) { @@ -324,11 +330,25 @@ class View { return false; } } else { - return $this->basicOperation('file_put_contents', $path, array('create', 'write'), $data); + $hooks = ($this->file_exists($path)) ? array('write') : array('create', 'write'); + return $this->basicOperation('file_put_contents', $path, $hooks, $data); } } public function unlink($path) { + if ($path === '' || $path === '/') { + // do not allow deleting the root + return false; + } + $postFix = (substr($path, -1, 1) === '/') ? '/' : ''; + $absolutePath = Filesystem::normalizePath($this->getAbsolutePath($path)); + list($storage, $internalPath) = Filesystem::resolvePath($absolutePath . $postFix); + if (!$internalPath || $internalPath === '' || $internalPath === '/') { + // do not allow deleting the storage's root / the mount point + // because for some storages it might delete the whole contents + // but isn't supposed to work that way + return false; + } return $this->basicOperation('unlink', $path, array('delete')); } @@ -709,7 +729,10 @@ class View { return false; } $defaultRoot = Filesystem::getRoot(); - return (strlen($this->fakeRoot) >= strlen($defaultRoot)) && (substr($this->fakeRoot, 0, strlen($defaultRoot)) === $defaultRoot); + if ($this->fakeRoot === $defaultRoot) { + return true; + } + return (strlen($this->fakeRoot) > strlen($defaultRoot)) && (substr($this->fakeRoot, 0, strlen($defaultRoot) + 1) === $defaultRoot . '/'); } private function runHooks($hooks, $path, $post = false) { @@ -756,6 +779,8 @@ class View { * get the filesystem info * * @param string $path + * @param boolean $includeMountPoints whether to add mountpoint sizes, + * defaults to true * @return array * * returns an associative array with the following keys: @@ -765,7 +790,7 @@ class View { * - encrypted * - versioned */ - public function getFileInfo($path) { + public function getFileInfo($path, $includeMountPoints = true) { $data = array(); if (!Filesystem::isValidPath($path)) { return $data; @@ -776,6 +801,7 @@ class View { * @var string $internalPath */ list($storage, $internalPath) = Filesystem::resolvePath($path); + $data = null; if ($storage) { $cache = $storage->getCache($internalPath); $permissionsCache = $storage->getPermissionsCache($internalPath); @@ -786,13 +812,15 @@ class View { $scanner->scan($internalPath, Cache\Scanner::SCAN_SHALLOW); } else { $watcher = $storage->getWatcher($internalPath); - $watcher->checkUpdate($internalPath); + $data = $watcher->checkUpdate($internalPath); } - $data = $cache->get($internalPath); + if (!is_array($data)) { + $data = $cache->get($internalPath); + } if ($data and $data['fileid']) { - if ($data['mimetype'] === 'httpd/unix-directory') { + if ($includeMountPoints and $data['mimetype'] === 'httpd/unix-directory') { //add the sizes of other mountpoints to the folder $mountPoints = Filesystem::getMountPoints($path); foreach ($mountPoints as $mountPoint) { @@ -898,7 +926,8 @@ class View { $permissions = $subStorage->getPermissions($rootEntry['path']); $subPermissionsCache->set($rootEntry['fileid'], $user, $permissions); } - $rootEntry['permissions'] = $permissions; + // do not allow renaming/deleting the mount point + $rootEntry['permissions'] = $permissions & (\OCP\PERMISSION_ALL - (\OCP\PERMISSION_UPDATE | \OCP\PERMISSION_DELETE)); //remove any existing entry with the same name foreach ($files as $i => $file) { diff --git a/lib/private/group.php b/lib/private/group.php index ba93dc129a11f09c3972446246af9f94f235ca3d..444788c97f1fdd1193447a5aeaf2ebe08f9e9ba4 100644 --- a/lib/private/group.php +++ b/lib/private/group.php @@ -265,10 +265,10 @@ class OC_Group { public static function displayNamesInGroup($gid, $search = '', $limit = -1, $offset = 0) { $group = self::getManager()->get($gid); if ($group) { - $users = $group->searchDisplayName($search . $limit, $offset); + $users = $group->searchDisplayName($search, $limit, $offset); $displayNames = array(); foreach ($users as $user) { - $displayNames[] = $user->getDisplayName(); + $displayNames[$user->getUID()] = $user->getDisplayName(); } return $displayNames; } else { diff --git a/lib/private/group/group.php b/lib/private/group/group.php index bcd2419b309b5964e43ca5353e6da4bb059d2b3b..8d2aa87a788fc160c3e6fe4ad5f071ec1df93d83 100644 --- a/lib/private/group/group.php +++ b/lib/private/group/group.php @@ -18,7 +18,12 @@ class Group { /** * @var \OC\User\User[] $users */ - private $users; + private $users = array(); + + /** + * @var bool $usersLoaded + */ + private $usersLoaded; /** * @var \OC_Group_Backend[] | \OC_Group_Database[] $backend @@ -26,7 +31,7 @@ class Group { private $backends; /** - * @var \OC\Hooks\PublicEmitter $emitter; + * @var \OC\Hooks\PublicEmitter $emitter */ private $emitter; @@ -58,7 +63,7 @@ class Group { * @return \OC\User\User[] */ public function getUsers() { - if ($this->users) { + if ($this->usersLoaded) { return $this->users; } @@ -74,6 +79,7 @@ class Group { } $this->users = $this->getVerifiedUsers($userIds); + $this->usersLoaded = true; return $this->users; } @@ -84,8 +90,12 @@ class Group { * @return bool */ public function inGroup($user) { + if (isset($this->users[$user->getUID()])) { + return true; + } foreach ($this->backends as $backend) { if ($backend->inGroup($user->getUID(), $this->gid)) { + $this->users[$user->getUID()] = $user; return true; } } @@ -185,6 +195,7 @@ class Group { * @return \OC\User\User[] */ public function searchDisplayName($search, $limit = null, $offset = null) { + $users = array(); foreach ($this->backends as $backend) { if ($backend->implementsActions(OC_GROUP_BACKEND_GET_DISPLAYNAME)) { $userIds = array_keys($backend->displayNamesInGroup($this->gid, $search, $limit, $offset)); @@ -229,17 +240,17 @@ class Group { /** * @brief returns all the Users from an array that really exists - * @param $userIds an array containing user IDs - * @return an Array with the userId as Key and \OC\User\User as value + * @param string[] $userIds an array containing user IDs + * @return \OC\User\User[] an Array with the userId as Key and \OC\User\User as value */ private function getVerifiedUsers($userIds) { - if(!is_array($userIds)) { + if (!is_array($userIds)) { return array(); } $users = array(); foreach ($userIds as $userId) { $user = $this->userManager->get($userId); - if(!is_null($user)) { + if (!is_null($user)) { $users[$userId] = $user; } } diff --git a/lib/private/helper.php b/lib/private/helper.php index 66e7acb407a7d69d7f7c17353f911c9af1e1b9d5..58bee9c6300e26e2706b7dec7849ae9c341d6b45 100644 --- a/lib/private/helper.php +++ b/lib/private/helper.php @@ -41,8 +41,7 @@ class OC_Helper { * Returns a url to the given app and file. */ public static function linkToRoute($route, $parameters = array()) { - $urlLinkTo = OC::getRouter()->generate($route, $parameters); - return $urlLinkTo; + return OC::$server->getURLGenerator()->linkToRoute($route, $parameters); } /** @@ -56,32 +55,16 @@ class OC_Helper { * Returns a url to the given app and file. */ public static function linkTo( $app, $file, $args = array() ) { - if( $app != '' ) { - $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') { - $urlLinkTo = OC::$WEBROOT . '/index.php/apps/' . $app; - $urlLinkTo .= ($file != 'index.php') ? '/' . $file : ''; - } else { - $urlLinkTo = OC_App::getAppWebPath($app) . '/' . $file; - } - } else { - $urlLinkTo = OC::$WEBROOT . '/' . $app . '/' . $file; - } - } else { - if (file_exists(OC::$SERVERROOT . '/core/' . $file)) { - $urlLinkTo = OC::$WEBROOT . '/core/' . $file; - } else { - $urlLinkTo = OC::$WEBROOT . '/' . $file; - } - } - - if ($args && $query = http_build_query($args, '', '&')) { - $urlLinkTo .= '?' . $query; - } + return OC::$server->getURLGenerator()->linkTo($app, $file, $args); + } - return $urlLinkTo; + /** + * @param $key + * @return string url to the online documentation + */ + public static function linkToDocs($key) { + $theme = new OC_Defaults(); + return $theme->getDocBaseUrl() . '/server/6.0/go.php?to=' . $key; } /** @@ -107,7 +90,7 @@ class OC_Helper { * Returns a absolute url to the given app and file. */ public static function makeURLAbsolute($url) { - return OC_Request::serverProtocol() . '://' . OC_Request::serverHost() . $url; + return OC::$server->getURLGenerator()->getAbsoluteURL($url); } /** @@ -156,25 +139,7 @@ class OC_Helper { * Returns the path to the image. */ public static function imagePath($app, $image) { - // Read the selected theme from the config file - $theme = OC_Util::getTheme(); - - // Check if the app is in the app folder - if (file_exists(OC::$SERVERROOT . "/themes/$theme/apps/$app/img/$image")) { - return OC::$WEBROOT . "/themes/$theme/apps/$app/img/$image"; - } elseif (file_exists(OC_App::getAppPath($app) . "/img/$image")) { - return OC_App::getAppWebPath($app) . "/img/$image"; - } elseif (!empty($app) and file_exists(OC::$SERVERROOT . "/themes/$theme/$app/img/$image")) { - return OC::$WEBROOT . "/themes/$theme/$app/img/$image"; - } elseif (!empty($app) and file_exists(OC::$SERVERROOT . "/$app/img/$image")) { - return OC::$WEBROOT . "/$app/img/$image"; - } elseif (file_exists(OC::$SERVERROOT . "/themes/$theme/core/img/$image")) { - return OC::$WEBROOT . "/themes/$theme/core/img/$image"; - } elseif (file_exists(OC::$SERVERROOT . "/core/img/$image")) { - return OC::$WEBROOT . "/core/img/$image"; - } else { - throw new RuntimeException('image not found: image:' . $image . ' webroot:' . OC::$WEBROOT . ' serverroot:' . OC::$SERVERROOT); - } + return OC::$server->getURLGenerator()->imagePath($app, $image); } /** @@ -196,6 +161,7 @@ class OC_Helper { 'application/vnd.oasis.opendocument.text-template' => 'x-office/document', 'application/vnd.oasis.opendocument.text-web' => 'x-office/document', 'application/vnd.oasis.opendocument.text-master' => 'x-office/document', + 'application/mspowerpoint' => 'x-office/presentation', 'application/vnd.ms-powerpoint' => 'x-office/presentation', 'application/vnd.openxmlformats-officedocument.presentationml.presentation' => 'x-office/presentation', 'application/vnd.openxmlformats-officedocument.presentationml.template' => 'x-office/presentation', @@ -206,6 +172,7 @@ class OC_Helper { 'application/vnd.ms-powerpoint.slideshow.macroEnabled.12' => 'x-office/presentation', 'application/vnd.oasis.opendocument.presentation' => 'x-office/presentation', 'application/vnd.oasis.opendocument.presentation-template' => 'x-office/presentation', + 'application/msexcel' => 'x-office/spreadsheet', 'application/vnd.ms-excel' => 'x-office/spreadsheet', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' => 'x-office/spreadsheet', 'application/vnd.openxmlformats-officedocument.spreadsheetml.template' => 'x-office/spreadsheet', @@ -215,6 +182,7 @@ class OC_Helper { 'application/vnd.ms-excel.sheet.binary.macroEnabled.12' => 'x-office/spreadsheet', 'application/vnd.oasis.opendocument.spreadsheet' => 'x-office/spreadsheet', 'application/vnd.oasis.opendocument.spreadsheet-template' => 'x-office/spreadsheet', + 'application/msaccess' => 'database', ); if (isset($alias[$mimetype])) { @@ -266,11 +234,11 @@ class OC_Helper { * Returns the path to the preview of the file. */ public static function previewIcon($path) { - return self::linkToRoute( 'core_ajax_preview', array('x' => 36, 'y' => 36, 'file' => urlencode($path) )); + return self::linkToRoute( 'core_ajax_preview', array('x' => 36, 'y' => 36, 'file' => $path )); } public static function publicPreviewIcon( $path, $token ) { - return self::linkToRoute( 'core_ajax_public_preview', array('x' => 36, 'y' => 36, 'file' => urlencode($path), 't' => $token)); + return self::linkToRoute( 'core_ajax_public_preview', array('x' => 36, 'y' => 36, 'file' => $path, 't' => $token)); } /** @@ -287,7 +255,7 @@ class OC_Helper { if ($bytes < 1024) { return "$bytes B"; } - $bytes = round($bytes / 1024, 1); + $bytes = round($bytes / 1024, 0); if ($bytes < 1024) { return "$bytes kB"; } @@ -553,11 +521,11 @@ class OC_Helper { * * @param resource $source * @param resource $target - * @return int the number of bytes copied + * @return array the number of bytes copied and result */ public static function streamCopy($source, $target) { if (!$source or !$target) { - return false; + return array(0, false); } $result = true; $count = 0; @@ -893,11 +861,13 @@ class OC_Helper { if (!function_exists($function_name)) { return false; } - $disabled = explode(', ', ini_get('disable_functions')); + $disabled = explode(',', ini_get('disable_functions')); + $disabled = array_map('trim', $disabled); if (in_array($function_name, $disabled)) { return false; } - $disabled = explode(', ', ini_get('suhosin.executor.func.blacklist')); + $disabled = explode(',', ini_get('suhosin.executor.func.blacklist')); + $disabled = array_map('trim', $disabled); if (in_array($function_name, $disabled)) { return false; } @@ -911,7 +881,8 @@ class OC_Helper { * @return array */ public static function getStorageInfo($path) { - $rootInfo = \OC\Files\Filesystem::getFileInfo($path); + // return storage info without adding mount points + $rootInfo = \OC\Files\Filesystem::getFileInfo($path, false); $used = $rootInfo['size']; if ($used < 0) { $used = 0; diff --git a/lib/private/hook.php b/lib/private/hook.php index 8516cf0dcff40b6b04ca8c616e77821dfb32dc3e..b63b442c31b852653db61107e17f61e5bbe1356c 100644 --- a/lib/private/hook.php +++ b/lib/private/hook.php @@ -97,4 +97,12 @@ class OC_Hook{ self::$registered=array(); } } + + /** + * DO NOT USE! + * For unit tests ONLY! + */ + static public function getHooks() { + return self::$registered; + } } diff --git a/lib/private/installer.php b/lib/private/installer.php index e082c7eeee9d0772ee40011f9ae1e5378ccbff5f..835b6b4c01abaa7006961e5f752be0e4092038cb 100644 --- a/lib/private/installer.php +++ b/lib/private/installer.php @@ -147,7 +147,14 @@ class OC_Installer{ } // check if the ocs version is the same as the version in info.xml/version - if(!isset($info['version']) or ($info['version']<>$data['appdata']['version'])) { + $versionFile= $extractDir.'/appinfo/version'; + if(is_file($versionFile)) { + $version = trim(file_get_contents($versionFile)); + }else{ + $version = trim($info['version']); + } + + if($version<>trim($data['appdata']['version'])) { OC_Helper::rmdirr($extractDir); throw new \Exception($l->t("App can't be installed because the version in info.xml/version is not the same as the version reported from the app store")); } @@ -181,7 +188,11 @@ class OC_Installer{ //install the database if(is_file($basedir.'/appinfo/database.xml')) { - OC_DB::createDbFromStructure($basedir.'/appinfo/database.xml'); + if (OC_Appconfig::getValue($info['id'], 'installed_version') === null) { + OC_DB::createDbFromStructure($basedir.'/appinfo/database.xml'); + } else { + OC_DB::updateDbFromStructure($basedir.'/appinfo/database.xml'); + } } //run appinfo/install.php @@ -259,7 +270,7 @@ class OC_Installer{ /** * @brief Check if an update for the app is available * @param $name name of the application - * @returns empty string is no update available or the version number of the update + * @return boolean false or the version number of the update * * The function will check if an update for a version is available */ @@ -275,11 +286,11 @@ class OC_Installer{ return($ocsversion); }else{ - return(''); + return false; } }else{ - return(''); + return false; } } @@ -396,6 +407,9 @@ class OC_Installer{ include OC_App::getAppPath($app)."/appinfo/install.php"; } $info=OC_App::getAppInfo($app); + if (is_null($info)) { + return false; + } OC_Appconfig::setValue($app, 'installed_version', OC_App::getAppVersion($app)); //set remote/public handelers @@ -449,8 +463,7 @@ class OC_Installer{ ); // is the code checker enabled? - if(OC_Config::getValue('appcodechecker', false)) { - + if(OC_Config::getValue('appcodechecker', true)) { // check if grep is installed $grep = exec('which grep'); if($grep=='') { diff --git a/lib/private/json.php b/lib/private/json.php index 6ba0b13806b19fe78f45565290116f9de68212b0..5c5d7e3a3da5a93dacbd127329150aefb319654b 100644 --- a/lib/private/json.php +++ b/lib/private/json.php @@ -64,6 +64,20 @@ class OC_JSON{ } } + /** + * Check is a given user exists - send json error msg if not + * @param string $user + */ + public static function checkUserExists($user) { + if (!OCP\User::userExists($user)) { + $l = OC_L10N::get('lib'); + OCP\JSON::error(array('data' => array('message' => $l->t('Unknown user')))); + exit; + } + } + + + /** * Check if the user is a subadmin, send json error msg if not */ @@ -109,7 +123,16 @@ class OC_JSON{ if($setContentType) { self::setContentTypeHeader(); } - array_walk_recursive($data, array('OC_JSON', 'to_string')); - echo json_encode($data); + echo self::encode($data); + } + + /** + * Encode JSON + */ + public static function encode($data) { + if (is_array($data)) { + array_walk_recursive($data, array('OC_JSON', 'to_string')); + } + return json_encode($data); } } diff --git a/lib/private/l10n.php b/lib/private/l10n.php index f93443b886a52e1794e2f39c5a14e13c2f588d7a..98665c84c55f30c28823f8d59dbf1dd8ecf9c6cb 100644 --- a/lib/private/l10n.php +++ b/lib/private/l10n.php @@ -25,12 +25,7 @@ /** * This class is for i18n and l10n */ -class OC_L10N { - /** - * cached instances - */ - protected static $instances=array(); - +class OC_L10N implements \OCP\IL10N { /** * cache */ @@ -83,13 +78,10 @@ class OC_L10N { * @return OC_L10N */ public static function get($app, $lang=null) { - if(is_null($lang)) { - if(!isset(self::$instances[$app])) { - self::$instances[$app]=new OC_L10N($app); - } - return self::$instances[$app]; - }else{ - return new OC_L10N($app, $lang); + if (is_null($lang)) { + return OC::$server->getL10N($app); + } else { + return new \OC_L10N($app, $lang); } } @@ -270,7 +262,7 @@ class OC_L10N { */ public function n($text_singular, $text_plural, $count, $parameters = array()) { $this->init(); - $identifier = "_${text_singular}__${text_plural}_"; + $identifier = "_${text_singular}_::_${text_plural}_"; if( array_key_exists($identifier, $this->translations)) { return new OC_L10N_String( $this, $identifier, $parameters, $count ); } @@ -427,7 +419,7 @@ class OC_L10N { /** * @brief find the best language * @param $app Array or string, details below - * @returns language + * @returns string language * * If $app is an array, ownCloud assumes that these are the available * languages. Otherwise ownCloud tries to find the files in the l10n @@ -446,8 +438,7 @@ class OC_L10N { if(is_array($app)) { $available = $app; $lang_exists = array_search($lang, $available) !== false; - } - else { + } else { $lang_exists = self::languageExists($app, $lang); } if($lang_exists) { @@ -455,35 +446,40 @@ class OC_L10N { } } - $default_language = OC_Config::getValue('default_language', false); + $default_language = OC_Config::getValue('default_language', false); - if($default_language !== false) { - return $default_language; - } + if($default_language !== false) { + return $default_language; + } if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) { - $accepted_languages = preg_split('/,\s*/', strtolower($_SERVER['HTTP_ACCEPT_LANGUAGE'])); if(is_array($app)) { $available = $app; - } - else{ + } else { $available = self::findAvailableLanguages($app); } - foreach($accepted_languages as $i) { - $temp = explode(';', $i); - $temp[0] = str_replace('-', '_', $temp[0]); - if( ($key = array_search($temp[0], $available)) !== false) { - if (is_null($app)) { - self::$language = $available[$key]; + + // E.g. make sure that 'de' is before 'de_DE'. + sort($available); + + $preferences = preg_split('/,\s*/', strtolower($_SERVER['HTTP_ACCEPT_LANGUAGE'])); + foreach($preferences as $preference) { + list($preferred_language) = explode(';', $preference); + $preferred_language = str_replace('-', '_', $preferred_language); + foreach($available as $available_language) { + if ($preferred_language === strtolower($available_language)) { + if (is_null($app)) { + self::$language = $available_language; + } + return $available_language; } - return $available[$key]; } - foreach($available as $l) { - if ( $temp[0] == substr($l, 0, 2) ) { + foreach($available as $available_language) { + if (substr($preferred_language, 0, 2) === $available_language) { if (is_null($app)) { - self::$language = $l; + self::$language = $available_language; } - return $l; + return $available_language; } } } diff --git a/lib/private/l10n/factory.php b/lib/private/l10n/factory.php new file mode 100644 index 0000000000000000000000000000000000000000..8c65f3681718db28b7e3b74beefa9067adfa6a86 --- /dev/null +++ b/lib/private/l10n/factory.php @@ -0,0 +1,34 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + * + */ + +namespace OC\L10N; + +/** + * TODO: Description + */ +class Factory { + /** + * cached instances + */ + protected $instances = array(); + + /** + * get an L10N instance + * @param $app string + * @param $lang string|null + * @return \OC_L10N + */ + public function get($app) { + if (!isset($this->instances[$app])) { + $this->instances[$app] = new \OC_L10N($app); + } + return $this->instances[$app]; + } + +} diff --git a/lib/private/l10n/id.php b/lib/private/l10n/id.php deleted file mode 100644 index 080faddb3218071baa1d2c4d7224ddaaca5e92db..0000000000000000000000000000000000000000 --- a/lib/private/l10n/id.php +++ /dev/null @@ -1,50 +0,0 @@ - "Bantuan", -"Personal" => "Pribadi", -"Settings" => "Setelan", -"Users" => "Pengguna", -"Admin" => "Admin", -"web services under your control" => "layanan web dalam kontrol Anda", -"ZIP download is turned off." => "Pengunduhan ZIP dimatikan.", -"Files need to be downloaded one by one." => "Berkas harus diunduh satu persatu.", -"Back to Files" => "Kembali ke Daftar Berkas", -"Selected files too large to generate zip file." => "Berkas yang dipilih terlalu besar untuk dibuat berkas zip-nya.", -"Application is not enabled" => "Aplikasi tidak diaktifkan", -"Authentication error" => "Galat saat autentikasi", -"Token expired. Please reload page." => "Token kedaluwarsa. Silakan muat ulang halaman.", -"Files" => "Berkas", -"Text" => "Teks", -"Images" => "Gambar", -"%s enter the database username." => "%s masukkan nama pengguna basis data.", -"%s enter the database name." => "%s masukkan nama basis data.", -"%s you may not use dots in the database name" => "%sAnda tidak boleh menggunakan karakter titik pada nama basis data", -"MS SQL username and/or password not valid: %s" => "Nama pengguna dan/atau sandi MySQL tidak valid: %s", -"You need to enter either an existing account or the administrator." => "Anda harus memasukkan akun yang sudah ada atau administrator.", -"MySQL username and/or password not valid" => "Nama pengguna dan/atau sandi MySQL tidak valid", -"DB Error: \"%s\"" => "Galat Basis Data: \"%s\"", -"Offending command was: \"%s\"" => "Perintah yang bermasalah: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "Pengguna MySQL '%s'@'localhost' sudah ada.", -"Drop this user from MySQL" => "Hapus pengguna ini dari MySQL", -"MySQL user '%s'@'%%' already exists" => "Pengguna MySQL '%s'@'%%' sudah ada.", -"Drop this user from MySQL." => "Hapus pengguna ini dari MySQL.", -"Oracle username and/or password not valid" => "Nama pengguna dan/atau sandi Oracle tidak valid", -"Offending command was: \"%s\", name: %s, password: %s" => "Perintah yang bermasalah: \"%s\", nama pengguna: %s, sandi: %s", -"PostgreSQL username and/or password not valid" => "Nama pengguna dan/atau sandi PostgreSQL tidak valid", -"Set an admin username." => "Setel nama pengguna admin.", -"Set an admin password." => "Setel sandi admin.", -"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak.", -"Please double check the installation guides." => "Silakan periksa ulang panduan instalasi.", -"seconds ago" => "beberapa detik yang lalu", -"_%n minute ago_::_%n minutes ago_" => array(""), -"_%n hour ago_::_%n hours ago_" => array(""), -"today" => "hari ini", -"yesterday" => "kemarin", -"_%n day go_::_%n days ago_" => array(""), -"last month" => "bulan kemarin", -"_%n month ago_::_%n months ago_" => array(""), -"last year" => "tahun kemarin", -"years ago" => "beberapa tahun lalu", -"Could not find category \"%s\"" => "Tidak dapat menemukan kategori \"%s\"" -); -$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/private/l10n/sl.php b/lib/private/l10n/sl.php deleted file mode 100644 index 5722191aedf9c240f2b4baaa437d0b6a8ff94e06..0000000000000000000000000000000000000000 --- a/lib/private/l10n/sl.php +++ /dev/null @@ -1,51 +0,0 @@ - "Pomoč", -"Personal" => "Osebno", -"Settings" => "Nastavitve", -"Users" => "Uporabniki", -"Admin" => "Skrbništvo", -"web services under your control" => "spletne storitve pod vašim nadzorom", -"ZIP download is turned off." => "Prejemanje datotek v paketu ZIP je onemogočeno.", -"Files need to be downloaded one by one." => "Datoteke je mogoče prejeti le posamično.", -"Back to Files" => "Nazaj na datoteke", -"Selected files too large to generate zip file." => "Izbrane datoteke so prevelike za ustvarjanje datoteke arhiva zip.", -"Application is not enabled" => "Program ni omogočen", -"Authentication error" => "Napaka pri overjanju", -"Token expired. Please reload page." => "Žeton je potekel. Stran je treba ponovno naložiti.", -"Files" => "Datoteke", -"Text" => "Besedilo", -"Images" => "Slike", -"%s enter the database username." => "%s - vnos uporabniškega imena podatkovne zbirke.", -"%s enter the database name." => "%s - vnos imena podatkovne zbirke.", -"%s you may not use dots in the database name" => "%s - v imenu podatkovne zbirke ni dovoljeno uporabljati pik.", -"MS SQL username and/or password not valid: %s" => "Uporabniško ime ali geslo MS SQL ni veljavno: %s", -"You need to enter either an existing account or the administrator." => "Prijaviti se je treba v obstoječi ali pa skrbniški račun.", -"MySQL username and/or password not valid" => "Uporabniško ime ali geslo MySQL ni veljavno", -"DB Error: \"%s\"" => "Napaka podatkovne zbirke: \"%s\"", -"Offending command was: \"%s\"" => "Napačni ukaz je: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "Uporabnik MySQL '%s'@'localhost' že obstaja.", -"Drop this user from MySQL" => "Odstrani uporabnika s podatkovne zbirke MySQL", -"MySQL user '%s'@'%%' already exists" => "Uporabnik MySQL '%s'@'%%' že obstaja.", -"Drop this user from MySQL." => "Odstrani uporabnika s podatkovne zbirke MySQL", -"Oracle connection could not be established" => "Povezava z bazo Oracle ni uspela.", -"Oracle username and/or password not valid" => "Uporabniško ime ali geslo Oracle ni veljavno", -"Offending command was: \"%s\", name: %s, password: %s" => "Napačni ukaz je: \"%s\", ime: %s, geslo: %s", -"PostgreSQL username and/or password not valid" => "Uporabniško ime ali geslo PostgreSQL ni veljavno", -"Set an admin username." => "Nastavi uporabniško ime skrbnika.", -"Set an admin password." => "Nastavi geslo skrbnika.", -"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena.", -"Please double check the installation guides." => "Preverite navodila namestitve.", -"seconds ago" => "pred nekaj sekundami", -"_%n minute ago_::_%n minutes ago_" => array("","","",""), -"_%n hour ago_::_%n hours ago_" => array("","","",""), -"today" => "danes", -"yesterday" => "včeraj", -"_%n day go_::_%n days ago_" => array("","","",""), -"last month" => "zadnji mesec", -"_%n month ago_::_%n months ago_" => array("","","",""), -"last year" => "lansko leto", -"years ago" => "let nazaj", -"Could not find category \"%s\"" => "Kategorije \"%s\" ni mogoče najti." -); -$PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/lib/private/legacy/cache/fileglobalgc.php b/lib/private/legacy/cache/fileglobalgc.php new file mode 100644 index 0000000000000000000000000000000000000000..385f6406673f5d89a6a017012751bfe8c9755f26 --- /dev/null +++ b/lib/private/legacy/cache/fileglobalgc.php @@ -0,0 +1,4 @@ +setValue($key, $value); - } catch (\OC\HintException $e) { - \OC_Template::printErrorPage($e->getMessage(), $e->getHint()); - } + self::$object->setValue($key, $value); } /** @@ -98,10 +93,6 @@ class OC_Config { * */ public static function deleteKey($key) { - try { - self::$object->deleteKey($key); - } catch (\OC\HintException $e) { - \OC_Template::printErrorPage($e->getMessage(), $e->getHint()); - } + self::$object->deleteKey($key); } } diff --git a/lib/private/log/owncloud.php b/lib/private/log/owncloud.php index d16b9537a1658ca4f9835494e2d9265433dd0b41..4c86d0e45e0da61a4fe0480fcefe1db7cd1cb6f8 100644 --- a/lib/private/log/owncloud.php +++ b/lib/private/log/owncloud.php @@ -35,7 +35,17 @@ class OC_Log_Owncloud { public static function init() { $defaultLogFile = OC_Config::getValue("datadirectory", OC::$SERVERROOT.'/data').'/owncloud.log'; self::$logFile = OC_Config::getValue("logfile", $defaultLogFile); - if (!file_exists(self::$logFile)) { + + /* + * Fall back to default log file if specified logfile does not exist + * and can not be created. Error suppression is required in order to + * not end up in the error handler which will try to log the error. + * A better solution (compared to error suppression) would be checking + * !is_writable(dirname(self::$logFile)) before touch(), but + * is_writable() on directories used to be pretty unreliable on Windows + * for at least some time. + */ + if (!file_exists(self::$logFile) && !@touch(self::$logFile)) { self::$logFile = $defaultLogFile; } } @@ -51,12 +61,25 @@ class OC_Log_Owncloud { if($level>=$minLevel) { // default to ISO8601 $format = OC_Config::getValue('logdateformat', 'c'); - $time = date($format, time()); - $entry=array('app'=>$app, 'message'=>$message, 'level'=>$level, 'time'=> $time); + $logtimezone=OC_Config::getValue( "logtimezone", 'UTC' ); + try { + $timezone = new DateTimeZone($logtimezone); + } catch (Exception $e) { + $timezone = new DateTimeZone('UTC'); + } + $time = new DateTime(null, $timezone); + // remove username/passswords from URLs before writing the to the log file + $message = preg_replace('/\/\/(.*):(.*)@/', '//xxx:xxx@', $message); + $entry=array('app'=>$app, 'message'=>$message, 'level'=>$level, 'time'=> $time->format($format)); + $entry = json_encode($entry); $handle = @fopen(self::$logFile, 'a'); + @chmod(self::$logFile, 0640); if ($handle) { - fwrite($handle, json_encode($entry)."\n"); + fwrite($handle, $entry."\n"); fclose($handle); + } else { + // Fall back to error_log + error_log($entry); } } } diff --git a/lib/private/memcache/apc.php b/lib/private/memcache/apc.php index 575ee4427db6d5773466ec573e906026fcc3f740..e995cbc526eaa00cb70511bf9cc9b4a4d76a570b 100644 --- a/lib/private/memcache/apc.php +++ b/lib/private/memcache/apc.php @@ -50,6 +50,8 @@ class APC extends Cache { static public function isAvailable() { if (!extension_loaded('apc')) { return false; + } elseif (!ini_get('apc.enabled')) { + return false; } elseif (!ini_get('apc.enable_cli') && \OC::$CLI) { return false; } else { diff --git a/lib/private/memcache/apcu.php b/lib/private/memcache/apcu.php index ccc1aa6e5622652d9c43bfaef608bbb8d75472ce..dac0f5f208aaa61f7d56668da870f8dceebad927 100644 --- a/lib/private/memcache/apcu.php +++ b/lib/private/memcache/apcu.php @@ -12,7 +12,7 @@ class APCu extends APC { public function clear($prefix = '') { $ns = $this->getNamespace() . $prefix; $ns = preg_quote($ns, '/'); - $iter = new \APCIterator('/^'.$ns.'/'); + $iter = new \APCIterator('user', '/^'.$ns.'/'); return apc_delete($iter); } diff --git a/lib/private/memcache/xcache.php b/lib/private/memcache/xcache.php index 33de30562f901e7bbaef111cc823f70db700ec95..1337a7ad612f03a5dcad4f6b779f70e986a19000 100644 --- a/lib/private/memcache/xcache.php +++ b/lib/private/memcache/xcache.php @@ -8,9 +8,13 @@ namespace OC\Memcache; +/** + * See http://xcache.lighttpd.net/wiki/XcacheApi for provided constants and + * functions etc. + */ class XCache extends Cache { /** - * entries in XCache gets namespaced to prevent collisions between owncloud instances and users + * entries in XCache gets namespaced to prevent collisions between ownCloud instances and users */ protected function getNameSpace() { return $this->prefix; @@ -37,24 +41,32 @@ class XCache extends Cache { } public function clear($prefix='') { - xcache_unset_by_prefix($this->getNamespace().$prefix); + if (function_exists('xcache_unset_by_prefix')) { + return xcache_unset_by_prefix($this->getNamespace().$prefix); + } else { + // Since we can not clear by prefix, we just clear the whole cache. + xcache_clear_cache(\XC_TYPE_VAR, 0); + } return true; } static public function isAvailable(){ if (!extension_loaded('xcache')) { return false; - } elseif (\OC::$CLI) { + } + if (\OC::$CLI) { return false; - }else{ - return true; } - } -} - -if(!function_exists('xcache_unset_by_prefix')) { - function xcache_unset_by_prefix($prefix) { - // Since we can't clear targetted cache, we'll clear all. :( - xcache_clear_cache(\XC_TYPE_VAR, 0); + if (!function_exists('xcache_unset_by_prefix') && ini_get('xcache.admin.enable_auth')) { + // We do not want to use XCache if we can not clear it without + // using the administration function xcache_clear_cache() + // AND administration functions are password-protected. + return false; + } + $var_size = (int) ini_get('xcache.var_size'); + if (!$var_size) { + return false; + } + return true; } } diff --git a/lib/private/mimetypes.list.php b/lib/private/mimetypes.list.php index 8ab8ac81bd83025a911e60cfa647bc17210f892e..40fb1d2d97d120a0cf4d043b12105d014c709772 100644 --- a/lib/private/mimetypes.list.php +++ b/lib/private/mimetypes.list.php @@ -21,87 +21,91 @@ */ /** - * list of mimetypes by extension + * Array mapping file extensions to mimetypes (in alphabetical order). */ - return array( + 'accdb'=>'application/msaccess', + 'ai' => 'application/illustrator', + 'avi'=>'video/x-msvideo', + 'bash' => 'text/x-shellscript', + 'blend'=>'application/x-blender', + 'cc' => 'text/x-c', + 'cdr' => 'application/coreldraw', + 'cpp' => 'text/x-c++src', 'css'=>'text/css', + 'c' => 'text/x-c', + 'c++' => 'text/x-c++src', + 'doc'=>'application/msword', + 'docx'=>'application/vnd.openxmlformats-officedocument.wordprocessingml.document', + 'dot'=>'application/msword', + 'dotx'=>'application/vnd.openxmlformats-officedocument.wordprocessingml.template', + 'dv'=>'video/dv', + 'epub' => 'application/epub+zip', + 'exe'=>'application/x-ms-dos-executable', 'flac'=>'audio/flac', 'gif'=>'image/gif', - 'gzip'=>'application/x-gzip', 'gz'=>'application/x-gzip', + 'gzip'=>'application/x-gzip', 'html'=>'text/html', 'htm'=>'text/html', - 'ics'=>'text/calendar', 'ical'=>'text/calendar', + 'ics'=>'text/calendar', + 'impress' => 'text/impress', 'jpeg'=>'image/jpeg', 'jpg'=>'image/jpeg', 'js'=>'application/javascript', + 'keynote'=>'application/x-iwork-keynote-sffkey', + 'kra'=>'application/x-krita', + 'm2t'=>'video/mp2t', + 'm4v'=>'video/mp4', + 'markdown' => 'text/markdown', + 'mdown' => 'text/markdown', + 'md' => 'text/markdown', + 'mdb'=>'application/msaccess', + 'mdwn' => 'text/markdown', + 'mobi' => 'application/x-mobipocket-ebook', + 'mov'=>'video/quicktime', + 'mp3'=>'audio/mpeg', + 'mp4'=>'video/mp4', + 'mpeg'=>'video/mpeg', + 'mpg'=>'video/mpeg', + 'msi'=>'application/x-msi', + 'numbers'=>'application/x-iwork-numbers-sffnumbers', + 'odg'=>'application/vnd.oasis.opendocument.graphics', + 'odp'=>'application/vnd.oasis.opendocument.presentation', + 'ods'=>'application/vnd.oasis.opendocument.spreadsheet', + 'odt'=>'application/vnd.oasis.opendocument.text', 'oga'=>'audio/ogg', 'ogg'=>'audio/ogg', 'ogv'=>'video/ogg', + 'pages'=>'application/x-iwork-pages-sffpages', 'pdf'=>'application/pdf', + 'php'=>'application/x-php', + 'pl'=>'application/x-pearl', 'png'=>'image/png', + 'ppt'=>'application/mspowerpoint', + 'pptx'=>'application/vnd.openxmlformats-officedocument.presentationml.presentation', + 'psd'=>'application/x-photoshop', + 'py'=>'text/x-script.python', + 'reveal' => 'text/reveal', + 'sgf' => 'application/sgf', + 'sh-lib' => 'text/x-shellscript', + 'sh' => 'text/x-shellscript', 'svg'=>'image/svg+xml', 'tar'=>'application/x-tar', - 'tgz'=>'application/x-compressed', 'tar.gz'=>'application/x-compressed', - 'tif'=>'image/tiff', + 'tgz'=>'application/x-compressed', 'tiff'=>'image/tiff', + 'tif'=>'image/tiff', 'txt'=>'text/plain', - 'zip'=>'application/zip', + 'vcard' => 'text/vcard', + 'vcf' => 'text/vcard', 'wav'=>'audio/wav', - 'odt'=>'application/vnd.oasis.opendocument.text', - 'ods'=>'application/vnd.oasis.opendocument.spreadsheet', - 'odg'=>'application/vnd.oasis.opendocument.graphics', - 'odp'=>'application/vnd.oasis.opendocument.presentation', - 'pages'=>'application/x-iwork-pages-sffpages', - 'numbers'=>'application/x-iwork-numbers-sffnumbers', - 'keynote'=>'application/x-iwork-keynote-sffkey', - 'kra'=>'application/x-krita', - 'mp3'=>'audio/mpeg', - 'doc'=>'application/msword', - 'docx'=>'application/msword', - 'xls'=>'application/msexcel', - 'xlsx'=>'application/msexcel', - 'php'=>'application/x-php', - 'exe'=>'application/x-ms-dos-executable', - 'pl'=>'application/x-pearl', - 'py'=>'application/x-python', - 'blend'=>'application/x-blender', - 'xcf'=>'application/x-gimp', - 'psd'=>'application/x-photoshop', - 'xml'=>'application/xml', - 'avi'=>'video/x-msvideo', - 'dv'=>'video/dv', - 'm2t'=>'video/mp2t', - 'mp4'=>'video/mp4', - 'm4v'=>'video/mp4', - 'mpg'=>'video/mpeg', - 'mpeg'=>'video/mpeg', - 'mov'=>'video/quicktime', 'webm'=>'video/webm', 'wmv'=>'video/x-ms-asf', - 'py'=>'text/x-script.phyton', - 'vcf' => 'text/vcard', - 'vcard' => 'text/vcard', - 'doc'=>'application/msword', - 'docx'=>'application/vnd.openxmlformats-officedocument.wordprocessingml.document', + 'xcf'=>'application/x-gimp', 'xls'=>'application/msexcel', 'xlsx'=>'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', - 'ppt'=>'application/mspowerpoint', - 'pptx'=>'application/vnd.openxmlformats-officedocument.presentationml.presentation', - 'sgf' => 'application/sgf', - 'cdr' => 'application/coreldraw', - 'impress' => 'text/impress', - 'ai' => 'application/illustrator', - 'epub' => 'application/epub+zip', - 'mobi' => 'application/x-mobipocket-ebook', - 'exe' => 'application', - 'msi' => 'application', - 'md' => 'text/markdown', - 'markdown' => 'text/markdown', - 'mdown' => 'text/markdown', - 'mdwn' => 'text/markdown', - 'reveal' => 'text/reveal' + 'xml'=>'application/xml', + 'zip'=>'application/zip', ); diff --git a/lib/private/ocs.php b/lib/private/ocs.php index 93e8931ce2eabe9603610d83624f500c05bcb54a..e067196cf11132667ff58188483de0d7c8211765 100644 --- a/lib/private/ocs.php +++ b/lib/private/ocs.php @@ -228,36 +228,4 @@ class OC_OCS { } } } - - /** - * get private data - * @param string $user - * @param string $app - * @param string $key - * @param bool $like use LIKE instead of = when comparing keys - * @return array - */ - public static function getData($user, $app="", $key="") { - if($app) { - $apps=array($app); - }else{ - $apps=OC_Preferences::getApps($user); - } - if($key) { - $keys=array($key); - }else{ - foreach($apps as $app) { - $keys=OC_Preferences::getKeys($user, $app); - } - } - $result=array(); - foreach($apps as $app) { - foreach($keys as $key) { - $value=OC_Preferences::getValue($user, $app, $key); - $result[]=array('app'=>$app, 'key'=>$key, 'value'=>$value); - } - } - return $result; - } - } diff --git a/lib/private/ocs/cloud.php b/lib/private/ocs/cloud.php index 2dd99319057792de24bdfd7e4f0660682d994ad7..cbbf3b626f5ae736d6a26cd4258db6590e407143 100644 --- a/lib/private/ocs/cloud.php +++ b/lib/private/ocs/cloud.php @@ -64,8 +64,7 @@ class OC_OCS_Cloud { // Check if they are viewing information on themselves if($parameters['userid'] === OC_User::getUser()) { // Self lookup - $quota = array(); - $storage = OC_Helper::getStorageInfo(); + $storage = OC_Helper::getStorageInfo('/'); $quota = array( 'free' => $storage['free'], 'used' => $storage['used'], @@ -79,6 +78,16 @@ class OC_OCS_Cloud { } } + public static function getCurrentUser() { + $email=OC_Preferences::getValue(OC_User::getUser(), 'settings', 'email', ''); + $data = array( + 'id' => OC_User::getUser(), + 'display-name' => OC_User::getDisplayName(), + 'email' => $email, + ); + return new OC_OCS_Result($data); + } + public static function getUserPublickey($parameters) { if(OC_User::userExists($parameters['user'])) { diff --git a/lib/private/ocs/privatedata.php b/lib/private/ocs/privatedata.php index 4dfd0a6e66e3482edc454319471f644426a41b5b..932413711b8b8674573285d62e6877562d85cc64 100644 --- a/lib/private/ocs/privatedata.php +++ b/lib/private/ocs/privatedata.php @@ -22,45 +22,87 @@ * */ + class OC_OCS_Privatedata { + /** + * read keys + * test: curl http://login:passwd@oc/core/ocs/v1.php/privatedata/getattribute/testy/123 + * test: curl http://login:passwd@oc/core/ocs/v1.php/privatedata/getattribute/testy + * @param array $parameters The OCS parameter + * @return \OC_OCS_Result + */ public static function get($parameters) { - OC_Util::checkLoggedIn(); $user = OC_User::getUser(); $app = addslashes(strip_tags($parameters['app'])); - $key = addslashes(strip_tags($parameters['key'])); - $result = OC_OCS::getData($user, $app, $key); + $key = isset($parameters['key']) ? addslashes(strip_tags($parameters['key'])) : null; + + if(empty($key)) { + $query = \OCP\DB::prepare('SELECT `key`, `app`, `value` FROM `*PREFIX*privatedata` WHERE `user` = ? AND `app` = ? '); + $result = $query->execute(array($user, $app)); + } else { + $query = \OCP\DB::prepare('SELECT `key`, `app`, `value` FROM `*PREFIX*privatedata` WHERE `user` = ? AND `app` = ? AND `key` = ? '); + $result = $query->execute(array($user, $app, $key)); + } + $xml = array(); - foreach($result as $i=>$log) { - $xml[$i]['key']=$log['key']; - $xml[$i]['app']=$log['app']; - $xml[$i]['value']=$log['value']; + while ($row = $result->fetchRow()) { + $data=array(); + $data['key']=$row['key']; + $data['app']=$row['app']; + $data['value']=$row['value']; + $xml[] = $data; } + return new OC_OCS_Result($xml); - //TODO: replace 'privatedata' with 'attribute' once a new libattice has been released that works with it } + /** + * set a key + * test: curl http://login:passwd@oc/core/ocs/v1.php/privatedata/setattribute/testy/123 --data "value=foobar" + * @param array $parameters The OCS parameter + * @return \OC_OCS_Result + */ public static function set($parameters) { - OC_Util::checkLoggedIn(); $user = OC_User::getUser(); $app = addslashes(strip_tags($parameters['app'])); $key = addslashes(strip_tags($parameters['key'])); $value = OC_OCS::readData('post', 'value', 'text'); - if(OC_Preferences::setValue($user, $app, $key, $value)) { - return new OC_OCS_Result(null, 100); + + // update in DB + $query = \OCP\DB::prepare('UPDATE `*PREFIX*privatedata` SET `value` = ? WHERE `user` = ? AND `app` = ? AND `key` = ?'); + $numRows = $query->execute(array($value, $user, $app, $key)); + + if ($numRows === false || $numRows === 0) { + // store in DB + $query = \OCP\DB::prepare('INSERT INTO `*PREFIX*privatedata` (`user`, `app`, `key`, `value`)' . ' VALUES(?, ?, ?, ?)'); + $query->execute(array($user, $app, $key, $value)); } + + return new OC_OCS_Result(null, 100); } + /** + * delete a key + * test: curl http://login:passwd@oc/core/ocs/v1.php/privatedata/deleteattribute/testy/123 --data "post=1" + * @param array $parameters The OCS parameter + * @return \OC_OCS_Result + */ public static function delete($parameters) { - OC_Util::checkLoggedIn(); $user = OC_User::getUser(); + if (!isset($parameters['app']) or !isset($parameters['key'])) { + //key and app are NOT optional here + return new OC_OCS_Result(null, 101); + } + $app = addslashes(strip_tags($parameters['app'])); $key = addslashes(strip_tags($parameters['key'])); - if($key==="" or $app==="") { - return new OC_OCS_Result(null, 101); //key and app are NOT optional here - } - if(OC_Preferences::deleteKey($user, $app, $key)) { - return new OC_OCS_Result(null, 100); - } + + // delete in DB + $query = \OCP\DB::prepare('DELETE FROM `*PREFIX*privatedata` WHERE `user` = ? AND `app` = ? AND `key` = ? '); + $query->execute(array($user, $app, $key )); + + return new OC_OCS_Result(null, 100); } } + diff --git a/lib/private/preview.php b/lib/private/preview.php index 266f7795f12f420402c9809b67cbcc376e51444e..ff93f438f7325b2cc05ca6157a88b95c2b94dade 100755 --- a/lib/private/preview.php +++ b/lib/private/preview.php @@ -9,7 +9,7 @@ * Thumbnails: * structure of filename: * /data/user/thumbnails/pathhash/x-y.png - * + * */ namespace OC; @@ -40,6 +40,7 @@ class Preview { private $maxX; private $maxY; private $scalingup; + private $mimetype; //preview images object /** @@ -59,11 +60,18 @@ class Preview { * @param int $maxX The maximum X size of the thumbnail. It can be smaller depending on the shape of the image * @param int $maxY The maximum Y size of the thumbnail. It can be smaller depending on the shape of the image * @param bool $scalingUp Disable/Enable upscaling of previews - * @return mixed (bool / string) + * @return mixed (bool / string) * false if thumbnail does not exist * path to thumbnail if thumbnail exists */ public function __construct($user='', $root='/', $file='', $maxX=1, $maxY=1, $scalingUp=true) { + //init fileviews + if($user === ''){ + $user = \OC_User::getUser(); + } + $this->fileView = new \OC\Files\View('/' . $user . '/' . $root); + $this->userView = new \OC\Files\View('/' . $user); + //set config $this->configMaxX = \OC_Config::getValue('preview_max_x', null); $this->configMaxY = \OC_Config::getValue('preview_max_y', null); @@ -75,13 +83,6 @@ class Preview { $this->setMaxY($maxY); $this->setScalingUp($scalingUp); - //init fileviews - if($user === ''){ - $user = \OC_User::getUser(); - } - $this->fileView = new \OC\Files\View('/' . $user . '/' . $root); - $this->userView = new \OC\Files\View('/' . $user); - $this->preview = null; //check if there are preview backends @@ -166,9 +167,20 @@ class Preview { */ public function setFile($file) { $this->file = $file; + if ($file !== '') { + $this->mimetype = $this->fileView->getMimeType($this->file); + } return $this; } + /** + * @brief set mimetype explicitely + * @param string $mimetype + */ + public function setMimetype($mimetype) { + $this->mimetype = $mimetype; + } + /** * @brief set the the max width of the preview * @param int $maxX @@ -265,7 +277,7 @@ class Preview { $fileInfo = $this->fileView->getFileInfo($file); $fileId = $fileInfo['fileid']; - + $previewPath = $this->getThumbnailsFolder() . '/' . $fileId . '/'; $this->userView->deleteAll($previewPath); $this->userView->rmdir($previewPath); @@ -274,7 +286,7 @@ class Preview { /** * @brief check if thumbnail or bigger version of thumbnail of file is cached - * @return mixed (bool / string) + * @return mixed (bool / string) * false if thumbnail does not exist * path to thumbnail if thumbnail exists */ @@ -386,11 +398,10 @@ class Preview { } if(is_null($this->preview)) { - $mimetype = $this->fileView->getMimeType($file); $preview = null; foreach(self::$providers as $supportedMimetype => $provider) { - if(!preg_match($supportedMimetype, $mimetype)) { + if(!preg_match($supportedMimetype, $this->mimetype)) { continue; } @@ -516,7 +527,7 @@ class Preview { $cropY = 0; $image->crop($cropX, $cropY, $x, $y); - + $this->preview = $image; return; } @@ -598,7 +609,7 @@ class Preview { public static function post_write($args) { self::post_delete($args); } - + public static function post_delete($args) { $path = $args['path']; if(substr($path, 0, 1) === '/') { diff --git a/lib/private/preview/image.php b/lib/private/preview/image.php index 9aec967282d5768c29941ec4367da06a73c825a0..84343df2608b1ad3129fceacaba84f081a0470ee 100644 --- a/lib/private/preview/image.php +++ b/lib/private/preview/image.php @@ -21,11 +21,11 @@ class Image extends Provider { return false; } + $image = new \OC_Image(); //check if file is encrypted if($fileInfo['encrypted'] === true) { - $image = new \OC_Image(stream_get_contents($fileview->fopen($path, 'r'))); + $image->loadFromData(stream_get_contents($fileview->fopen($path, 'r'))); }else{ - $image = new \OC_Image(); $image->loadFromFile($fileview->getLocalFile($path)); } diff --git a/lib/private/preview/movies.php b/lib/private/preview/movies.php index c318137ff0e06b9ca24836b60455114938003954..71cd3bae0573d299ffc9806be234d76b0ec5a4bd 100644 --- a/lib/private/preview/movies.php +++ b/lib/private/preview/movies.php @@ -8,40 +8,83 @@ */ namespace OC\Preview; -$isShellExecEnabled = !in_array('shell_exec', explode(', ', ini_get('disable_functions'))); -$whichAVCONV = shell_exec('which avconv'); -$isAVCONVAvailable = !empty($whichAVCONV); - -if($isShellExecEnabled && $isAVCONVAvailable) { +function findBinaryPath($program) { + exec('which ' . escapeshellarg($program) . ' 2> /dev/null', $output, $returnCode); + if ($returnCode === 0 && count($output) > 0) { + return escapeshellcmd($output[0]); + } + return null; +} - class Movie extends Provider { +// movie preview is currently not supported on Windows +if (!\OC_Util::runningOnWindows()) { + $isExecEnabled = \OC_Helper::is_function_enabled('exec'); + $ffmpegBinary = null; + $avconvBinary = null; - public function getMimeType() { - return '/video\/.*/'; + if ($isExecEnabled) { + $avconvBinary = findBinaryPath('avconv'); + if (!$avconvBinary) { + $ffmpegBinary = findBinaryPath('ffmpeg'); } + } + + if($isExecEnabled && ( $avconvBinary || $ffmpegBinary )) { - public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) { - $absPath = \OC_Helper::tmpFile(); - $tmpPath = \OC_Helper::tmpFile(); + class Movie extends Provider { + public static $avconvBinary; + public static $ffmpegBinary; - $handle = $fileview->fopen($path, 'rb'); + public function getMimeType() { + return '/video\/.*/'; + } - $firstmb = stream_get_contents($handle, 1048576); //1024 * 1024 = 1048576 - file_put_contents($absPath, $firstmb); + public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) { + // TODO: use proc_open() and stream the source file ? + $absPath = \OC_Helper::tmpFile(); + $tmpPath = \OC_Helper::tmpFile(); - //$cmd = 'ffmpeg -y -i ' . escapeshellarg($absPath) . ' -f mjpeg -vframes 1 -ss 1 -s ' . escapeshellarg($maxX) . 'x' . escapeshellarg($maxY) . ' ' . $tmpPath; - $cmd = 'avconv -an -y -ss 1 -i ' . escapeshellarg($absPath) . ' -f mjpeg -vframes 1 ' . escapeshellarg($tmpPath); - - shell_exec($cmd); + $handle = $fileview->fopen($path, 'rb'); - $image = new \OC_Image($tmpPath); + // we better use 5MB (1024 * 1024 * 5 = 5242880) instead of 1MB. + // in some cases 1MB was no enough to generate thumbnail + $firstmb = stream_get_contents($handle, 5242880); + file_put_contents($absPath, $firstmb); - unlink($absPath); - unlink($tmpPath); + if (self::$avconvBinary) { + $cmd = self::$avconvBinary . ' -an -y -ss 5'. + ' -i ' . escapeshellarg($absPath) . + ' -f mjpeg -vframes 1 -vsync 1 ' . escapeshellarg($tmpPath) . + ' > /dev/null 2>&1'; + } + else { + $cmd = self::$ffmpegBinary . ' -y -ss 5' . + ' -i ' . escapeshellarg($absPath) . + ' -f mjpeg -vframes 1' . + ' -s ' . escapeshellarg($maxX) . 'x' . escapeshellarg($maxY) . + ' ' . escapeshellarg($tmpPath) . + ' > /dev/null 2>&1'; + } - return $image->valid() ? $image : false; + exec($cmd, $output, $returnCode); + + unlink($absPath); + + if ($returnCode === 0) { + $image = new \OC_Image(); + $image->loadFromFile($tmpPath); + unlink($tmpPath); + return $image->valid() ? $image : false; + } + return false; + } } + + // a bit hacky but didn't want to use subclasses + Movie::$avconvBinary = $avconvBinary; + Movie::$ffmpegBinary = $ffmpegBinary; + + \OC\Preview::registerProvider('OC\Preview\Movie'); } +} - \OC\Preview::registerProvider('OC\Preview\Movie'); -} \ No newline at end of file diff --git a/lib/private/preview/mp3.php b/lib/private/preview/mp3.php index 1eed566315c7bb187f25cb35b1b69b0695760efe..3fc0ab0490cadfff428346b11fdaa58669cdb3f9 100644 --- a/lib/private/preview/mp3.php +++ b/lib/private/preview/mp3.php @@ -25,7 +25,8 @@ class MP3 extends Provider { if(isset($tags['id3v2']['APIC'][0]['data'])) { $picture = @$tags['id3v2']['APIC'][0]['data']; unlink($tmpPath); - $image = new \OC_Image($picture); + $image = new \OC_Image(); + $image->loadFromData($picture); return $image->valid() ? $image : $this->getNoCoverThumbnail(); } @@ -39,7 +40,8 @@ class MP3 extends Provider { return false; } - $image = new \OC_Image($icon); + $image = new \OC_Image(); + $image->loadFromFile($icon); return $image->valid() ? $image : false; } diff --git a/lib/private/preview/office-cl.php b/lib/private/preview/office-cl.php index 112909d652352c9d806a0fd98adeee4e8b806d93..b11fed13ba1ad5c145a8fb293b191e895aaea309 100644 --- a/lib/private/preview/office-cl.php +++ b/lib/private/preview/office-cl.php @@ -7,128 +7,133 @@ */ namespace OC\Preview; -//we need imagick to convert -class Office extends Provider { +// office preview is currently not supported on Windows +if (!\OC_Util::runningOnWindows()) { - private $cmd; + //we need imagick to convert + class Office extends Provider { - public function getMimeType() { - return null; - } + private $cmd; - public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) { - $this->initCmd(); - if(is_null($this->cmd)) { - return false; + public function getMimeType() { + return null; } - $absPath = $fileview->toTmpFile($path); + public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) { + $this->initCmd(); + if(is_null($this->cmd)) { + return false; + } + + $absPath = $fileview->toTmpFile($path); + + $tmpDir = get_temp_dir(); - $tmpDir = get_temp_dir(); + $defaultParameters = ' --headless --nologo --nofirststartwizard --invisible --norestore -convert-to pdf -outdir '; + $clParameters = \OCP\Config::getSystemValue('preview_office_cl_parameters', $defaultParameters); - $defaultParameters = ' --headless --nologo --nofirststartwizard --invisible --norestore -convert-to pdf -outdir '; - $clParameters = \OCP\Config::getSystemValue('preview_office_cl_parameters', $defaultParameters); + $exec = $this->cmd . $clParameters . escapeshellarg($tmpDir) . ' ' . escapeshellarg($absPath); + $export = 'export HOME=/' . $tmpDir; - $exec = $this->cmd . $clParameters . escapeshellarg($tmpDir) . ' ' . escapeshellarg($absPath); - $export = 'export HOME=/' . $tmpDir; + shell_exec($export . "\n" . $exec); - shell_exec($export . "\n" . $exec); + //create imagick object from pdf + try{ + $pdf = new \imagick($absPath . '.pdf' . '[0]'); + $pdf->setImageFormat('jpg'); + } catch (\Exception $e) { + unlink($absPath); + unlink($absPath . '.pdf'); + \OC_Log::write('core', $e->getmessage(), \OC_Log::ERROR); + return false; + } + + $image = new \OC_Image(); + $image->loadFromData($pdf); - //create imagick object from pdf - try{ - $pdf = new \imagick($absPath . '.pdf' . '[0]'); - $pdf->setImageFormat('jpg'); - } catch (\Exception $e) { unlink($absPath); unlink($absPath . '.pdf'); - \OC_Log::write('core', $e->getmessage(), \OC_Log::ERROR); - return false; + + return $image->valid() ? $image : false; } - $image = new \OC_Image($pdf); + private function initCmd() { + $cmd = ''; - unlink($absPath); - unlink($absPath . '.pdf'); + if(is_string(\OC_Config::getValue('preview_libreoffice_path', null))) { + $cmd = \OC_Config::getValue('preview_libreoffice_path', null); + } - return $image->valid() ? $image : false; - } + $whichLibreOffice = shell_exec('which libreoffice'); + if($cmd === '' && !empty($whichLibreOffice)) { + $cmd = 'libreoffice'; + } - private function initCmd() { - $cmd = ''; + $whichOpenOffice = shell_exec('which openoffice'); + if($cmd === '' && !empty($whichOpenOffice)) { + $cmd = 'openoffice'; + } - if(is_string(\OC_Config::getValue('preview_libreoffice_path', null))) { - $cmd = \OC_Config::getValue('preview_libreoffice_path', null); - } + if($cmd === '') { + $cmd = null; + } - $whichLibreOffice = shell_exec('which libreoffice'); - if($cmd === '' && !empty($whichLibreOffice)) { - $cmd = 'libreoffice'; + $this->cmd = $cmd; } + } - $whichOpenOffice = shell_exec('which openoffice'); - if($cmd === '' && !empty($whichOpenOffice)) { - $cmd = 'openoffice'; - } + //.doc, .dot + class MSOfficeDoc extends Office { - if($cmd === '') { - $cmd = null; + public function getMimeType() { + return '/application\/msword/'; } - $this->cmd = $cmd; - } -} - -//.doc, .dot -class MSOfficeDoc extends Office { - - public function getMimeType() { - return '/application\/msword/'; } -} + \OC\Preview::registerProvider('OC\Preview\MSOfficeDoc'); -\OC\Preview::registerProvider('OC\Preview\MSOfficeDoc'); + //.docm, .dotm, .xls(m), .xlt(m), .xla(m), .ppt(m), .pot(m), .pps(m), .ppa(m) + class MSOffice2003 extends Office { -//.docm, .dotm, .xls(m), .xlt(m), .xla(m), .ppt(m), .pot(m), .pps(m), .ppa(m) -class MSOffice2003 extends Office { + public function getMimeType() { + return '/application\/vnd.ms-.*/'; + } - public function getMimeType() { - return '/application\/vnd.ms-.*/'; } -} + \OC\Preview::registerProvider('OC\Preview\MSOffice2003'); -\OC\Preview::registerProvider('OC\Preview\MSOffice2003'); + //.docx, .dotx, .xlsx, .xltx, .pptx, .potx, .ppsx + class MSOffice2007 extends Office { -//.docx, .dotx, .xlsx, .xltx, .pptx, .potx, .ppsx -class MSOffice2007 extends Office { + public function getMimeType() { + return '/application\/vnd.openxmlformats-officedocument.*/'; + } - public function getMimeType() { - return '/application\/vnd.openxmlformats-officedocument.*/'; } -} + \OC\Preview::registerProvider('OC\Preview\MSOffice2007'); -\OC\Preview::registerProvider('OC\Preview\MSOffice2007'); + //.odt, .ott, .oth, .odm, .odg, .otg, .odp, .otp, .ods, .ots, .odc, .odf, .odb, .odi, .oxt + class OpenDocument extends Office { -//.odt, .ott, .oth, .odm, .odg, .otg, .odp, .otp, .ods, .ots, .odc, .odf, .odb, .odi, .oxt -class OpenDocument extends Office { + public function getMimeType() { + return '/application\/vnd.oasis.opendocument.*/'; + } - public function getMimeType() { - return '/application\/vnd.oasis.opendocument.*/'; } -} + \OC\Preview::registerProvider('OC\Preview\OpenDocument'); -\OC\Preview::registerProvider('OC\Preview\OpenDocument'); + //.sxw, .stw, .sxc, .stc, .sxd, .std, .sxi, .sti, .sxg, .sxm + class StarOffice extends Office { -//.sxw, .stw, .sxc, .stc, .sxd, .std, .sxi, .sti, .sxg, .sxm -class StarOffice extends Office { + public function getMimeType() { + return '/application\/vnd.sun.xml.*/'; + } - public function getMimeType() { - return '/application\/vnd.sun.xml.*/'; } + \OC\Preview::registerProvider('OC\Preview\StarOffice'); } - -\OC\Preview::registerProvider('OC\Preview\StarOffice'); \ No newline at end of file diff --git a/lib/private/preview/office-fallback.php b/lib/private/preview/office-fallback.php index e69ab0ab8cbe95b3e663ed40de633d2c0a29738c..f184b3149d58801b17a4a77d1025808b73aebd76 100644 --- a/lib/private/preview/office-fallback.php +++ b/lib/private/preview/office-fallback.php @@ -80,7 +80,8 @@ class MSOfficeExcel extends Provider { unlink($absPath); unlink($tmpPath); - $image = new \OC_Image($pdf); + $image = new \OC_Image(); + $image->loadFromData($pdf); return $image->valid() ? $image : false; } diff --git a/lib/private/preview/office.php b/lib/private/preview/office.php index 5287bbd6ac1c61ec47f580e88cf05718595124b5..7a4826c76ecbdb535ff22bce60770aac662bef64 100644 --- a/lib/private/preview/office.php +++ b/lib/private/preview/office.php @@ -7,16 +7,23 @@ */ //both, libreoffice backend and php fallback, need imagick if (extension_loaded('imagick')) { - $isShellExecEnabled = !in_array('shell_exec', explode(', ', ini_get('disable_functions'))); - $whichLibreOffice = shell_exec('which libreoffice'); - $isLibreOfficeAvailable = !empty($whichLibreOffice); - $whichOpenOffice = shell_exec('which libreoffice'); - $isOpenOfficeAvailable = !empty($whichOpenOffice); - //let's see if there is libreoffice or openoffice on this machine - if($isShellExecEnabled && ($isLibreOfficeAvailable || $isOpenOfficeAvailable || is_string(\OC_Config::getValue('preview_libreoffice_path', null)))) { - require_once('office-cl.php'); - }else{ + $isShellExecEnabled = \OC_Helper::is_function_enabled('shell_exec'); + + // LibreOffice preview is currently not supported on Windows + if (!\OC_Util::runningOnWindows()) { + $whichLibreOffice = ($isShellExecEnabled ? shell_exec('which libreoffice') : ''); + $isLibreOfficeAvailable = !empty($whichLibreOffice); + $whichOpenOffice = ($isShellExecEnabled ? shell_exec('which libreoffice') : ''); + $isOpenOfficeAvailable = !empty($whichOpenOffice); + //let's see if there is libreoffice or openoffice on this machine + if($isShellExecEnabled && ($isLibreOfficeAvailable || $isOpenOfficeAvailable || is_string(\OC_Config::getValue('preview_libreoffice_path', null)))) { + require_once('office-cl.php'); + }else{ + //in case there isn't, use our fallback + require_once('office-fallback.php'); + } + } else { //in case there isn't, use our fallback require_once('office-fallback.php'); } -} \ No newline at end of file +} diff --git a/lib/private/preview/provider.php b/lib/private/preview/provider.php index e4a730bafc8b3de7f08de41d7e98a5466e33fa4f..65d09705f40d32c27cdee9c5456aded4d5dc24df 100644 --- a/lib/private/preview/provider.php +++ b/lib/private/preview/provider.php @@ -11,9 +11,15 @@ abstract class Provider { abstract public function getMimeType(); /** - * search for $query - * @param string $query - * @return + * get thumbnail for file at path $path + * @param string $path Path of file + * @param int $maxX The maximum X size of the thumbnail. It can be smaller depending on the shape of the image + * @param int $maxY The maximum Y size of the thumbnail. It can be smaller depending on the shape of the image + * @param bool $scalingUp Disable/Enable upscaling of previews + * @param object $fileview fileview object of user folder + * @return mixed + * false if no preview was generated + * OC_Image object of the preview */ abstract public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview); } diff --git a/lib/private/preview/txt.php b/lib/private/preview/txt.php index 77e728eb3644d41476f2c38e3e07c0c5bd10388d..c9aa20968d862770afa061d29c89aa1dc3755634 100644 --- a/lib/private/preview/txt.php +++ b/lib/private/preview/txt.php @@ -9,20 +9,19 @@ namespace OC\Preview; class TXT extends Provider { - private static $blacklist = array( - 'text/calendar', - 'text/vcard', - ); - public function getMimeType() { - return '/text\/.*/'; + return '/text\/plain/'; } + /** + * @param string $path + * @param int $maxX + * @param int $maxY + * @param boolean $scalingup + * @param \OC\Files\View $fileview + * @return bool|\OC_Image + */ public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) { - $mimetype = $fileview->getMimeType($path); - if(in_array($mimetype, self::$blacklist)) { - return false; - } $content = $fileview->fopen($path, 'r'); $content = stream_get_contents($content); @@ -62,22 +61,12 @@ class TXT extends Provider { \OC\Preview::registerProvider('OC\Preview\TXT'); -class PHP extends TXT { - - public function getMimeType() { - return '/application\/x-php/'; - } - -} - -\OC\Preview::registerProvider('OC\Preview\PHP'); - -class JavaScript extends TXT { +class MarkDown extends TXT { public function getMimeType() { - return '/application\/javascript/'; + return '/text\/(x-)?markdown/'; } } -\OC\Preview::registerProvider('OC\Preview\JavaScript'); \ No newline at end of file +\OC\Preview::registerProvider('OC\Preview\MarkDown'); diff --git a/lib/private/preview/unknown.php b/lib/private/preview/unknown.php index 9e6cd68d401bae46ac24c38af26b8e9de56d0ee8..4747f9e25ed0633010d08eac3ea1d4249af515a0 100644 --- a/lib/private/preview/unknown.php +++ b/lib/private/preview/unknown.php @@ -20,8 +20,30 @@ class Unknown extends Provider { $path = \OC_Helper::mimetypeIcon($mimetype); $path = \OC::$SERVERROOT . substr($path, strlen(\OC::$WEBROOT)); - return new \OC_Image($path); + $svgPath = substr_replace($path, 'svg', -3); + + if (extension_loaded('imagick') && file_exists($svgPath)) { + + // http://www.php.net/manual/de/imagick.setresolution.php#85284 + $svg = new \Imagick(); + $svg->readImage($svgPath); + $res = $svg->getImageResolution(); + $x_ratio = $res['x'] / $svg->getImageWidth(); + $y_ratio = $res['y'] / $svg->getImageHeight(); + $svg->removeImage(); + $svg->setResolution($maxX * $x_ratio, $maxY * $y_ratio); + $svg->setBackgroundColor(new \ImagickPixel('transparent')); + $svg->readImage($svgPath); + $svg->setImageFormat('png32'); + + $image = new \OC_Image(); + $image->loadFromData($svg); + } else { + $image = new \OC_Image($path); + } + + return $image; } } -\OC\Preview::registerProvider('OC\Preview\Unknown'); \ No newline at end of file +\OC\Preview::registerProvider('OC\Preview\Unknown'); diff --git a/lib/private/repair.php b/lib/private/repair.php new file mode 100644 index 0000000000000000000000000000000000000000..e9de3baa7ce94b54f7c348efde5e458adc3e8a4f --- /dev/null +++ b/lib/private/repair.php @@ -0,0 +1,21 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC; + +use OC\Hooks\BasicEmitter; + +class Repair extends BasicEmitter { + /** + * run a series of repair steps for common problems + * progress can be reported by emitting \OC\Repair::step events + */ + public function run() { + $this->emit('\OC\Repair', 'step', array('No repair steps configured at the moment')); + } +} diff --git a/lib/private/request.php b/lib/private/request.php index df33217f95d65bde3bcddc1af2e0e37ea5e78816..d9d5ae08e283896bcb0bad374c60a9cba90e14b5 100755 --- a/lib/private/request.php +++ b/lib/private/request.php @@ -7,8 +7,14 @@ */ class OC_Request { + + const USER_AGENT_IE = '/MSIE/'; + // Android Chrome user agent: https://developers.google.com/chrome/mobile/docs/user-agent + const USER_AGENT_ANDROID_MOBILE_CHROME = '#Android.*Chrome/[.0-9]*#'; + /** * @brief Check overwrite condition + * @param string $type * @returns bool */ private static function isOverwriteCondition($type = '') { @@ -99,7 +105,7 @@ class OC_Request { public static function scriptName() { $name = $_SERVER['SCRIPT_NAME']; if (OC_Config::getValue('overwritewebroot', '') !== '' and self::isOverwriteCondition()) { - $serverroot = str_replace("\\", '/', substr(__DIR__, 0, -4)); + $serverroot = str_replace("\\", '/', substr(__DIR__, 0, -strlen('lib/private/'))); $suburi = str_replace("\\", "/", substr(realpath($_SERVER["SCRIPT_FILENAME"]), strlen($serverroot))); $name = OC_Config::getValue('overwritewebroot', '') . $suburi; } @@ -135,12 +141,40 @@ class OC_Request { * @returns string Path info or false when not found */ public static function getRawPathInfo() { - $path_info = substr($_SERVER['REQUEST_URI'], strlen($_SERVER['SCRIPT_NAME'])); + $requestUri = $_SERVER['REQUEST_URI']; + // remove too many leading slashes - can be caused by reverse proxy configuration + if (strpos($requestUri, '/') === 0) { + $requestUri = '/' . ltrim($requestUri, '/'); + } + // Remove the query string from REQUEST_URI - if ($pos = strpos($path_info, '?')) { - $path_info = substr($path_info, 0, $pos); + if ($pos = strpos($requestUri, '?')) { + $requestUri = substr($requestUri, 0, $pos); + } + + $scriptName = $_SERVER['SCRIPT_NAME']; + $path_info = $requestUri; + + // strip off the script name's dir and file name + list($path, $name) = \Sabre_DAV_URLUtil::splitPath($scriptName); + if (!empty($path)) { + if( $path === $path_info || strpos($path_info, $path.'/') === 0) { + $path_info = substr($path_info, strlen($path)); + } else { + throw new Exception("The requested uri($requestUri) cannot be processed by the script '$scriptName')"); + } + } + if (strpos($path_info, '/'.$name) === 0) { + $path_info = substr($path_info, strlen($name) + 1); + } + if (strpos($path_info, $name) === 0) { + $path_info = substr($path_info, strlen($name)); + } + if($path_info === '/'){ + return ''; + } else { + return $path_info; } - return $path_info; } /** @@ -181,4 +215,22 @@ class OC_Request { return false; } } + + /** + * Checks whether the user agent matches a given regex + * @param string|array $agent agent name or array of agent names + * @return boolean true if at least one of the given agent matches, + * false otherwise + */ + static public function isUserAgent($agent) { + if (!is_array($agent)) { + $agent = array($agent); + } + foreach ($agent as $regex) { + if (preg_match($regex, $_SERVER['HTTP_USER_AGENT'])) { + return true; + } + } + return false; + } } diff --git a/lib/private/response.php b/lib/private/response.php index 674176d078b2ffa34b78808560b77c13990b7a86..047464373472d50e0233a4e67a0036a542fb1cfe 100644 --- a/lib/private/response.php +++ b/lib/private/response.php @@ -147,6 +147,20 @@ class OC_Response { header('Last-Modified: '.$lastModified); } + /** + * Sets the content disposition header (with possible workarounds) + * @param string $filename file name + * @param string $type disposition type, either 'attachment' or 'inline' + */ + static public function setContentDispositionHeader( $filename, $type = 'attachment' ) { + if (OC_Request::isUserAgent(array(OC_Request::USER_AGENT_IE, OC_Request::USER_AGENT_ANDROID_MOBILE_CHROME))) { + header( 'Content-Disposition: ' . rawurlencode($type) . '; filename="' . rawurlencode( $filename ) . '"' ); + } else { + header( 'Content-Disposition: ' . rawurlencode($type) . '; filename*=UTF-8\'\'' . rawurlencode( $filename ) + . '; filename="' . rawurlencode( $filename ) . '"' ); + } + } + /** * @brief Send file as response, checking and setting caching headers * @param $filepath of file to send diff --git a/lib/private/route.php b/lib/private/route.php index 5901717c094430c54b81fd53b3090ad890895d11..fb7da456b62da5b26becf0d19bcf470169f548ad 100644 --- a/lib/private/route.php +++ b/lib/private/route.php @@ -51,6 +51,14 @@ class OC_Route extends Route { return $this; } + /** + * Specify PATCH as the method to use with this route + */ + public function patch() { + $this->method('PATCH'); + return $this; + } + /** * Defaults to use for this route * diff --git a/lib/private/router.php b/lib/private/router.php index dbaca9e0d5ddb1f4778b11a4e8b61434b1dfdc63..19c1e4473ecaeccc560ca46df5212292dd779a4c 100644 --- a/lib/private/router.php +++ b/lib/private/router.php @@ -67,7 +67,8 @@ class OC_Router { $this->useCollection($app); require_once $file; $collection = $this->getCollection($app); - $this->root->addCollection($collection, '/apps/'.$app); + $collection->addPrefix('/apps/'.$app); + $this->root->addCollection($collection); } $this->useCollection('root'); require_once 'settings/routes.php'; @@ -76,7 +77,8 @@ class OC_Router { // include ocs routes require_once 'ocs/routes.php'; $collection = $this->getCollection('ocs'); - $this->root->addCollection($collection, '/ocs'); + $collection->addPrefix('/ocs'); + $this->root->addCollection($collection); } protected function getCollection($name) { diff --git a/lib/private/server.php b/lib/private/server.php index cabb15324ec36169ff0d950211bf95af008ae3a4..2cbd37a97d71df84db180694b93cc423674c09ac 100644 --- a/lib/private/server.php +++ b/lib/private/server.php @@ -5,6 +5,7 @@ namespace OC; use OC\AppFramework\Http\Request; use OC\AppFramework\Utility\SimpleContainer; use OC\Cache\UserCache; +use OC\DB\ConnectionWrapper; use OC\Files\Node\Root; use OC\Files\View; use OCP\IServerContainer; @@ -22,12 +23,16 @@ class Server extends SimpleContainer implements IServerContainer { return new ContactsManager(); }); $this->registerService('Request', function($c) { - $params = array(); + if (isset($c['urlParams'])) { + $urlParams = $c['urlParams']; + } else { + $urlParams = array(); + } - // we json decode the body only in case of content type json - if (isset($_SERVER['CONTENT_TYPE']) && stripos($_SERVER['CONTENT_TYPE'],'json') !== false ) { - $params = json_decode(file_get_contents('php://input'), true); - $params = is_array($params) ? $params: array(); + if (\OC::$session->exists('requesttoken')) { + $requesttoken = \OC::$session->get('requesttoken'); + } else { + $requesttoken = false; } return new Request( @@ -41,8 +46,8 @@ class Server extends SimpleContainer implements IServerContainer { 'method' => (isset($_SERVER) && isset($_SERVER['REQUEST_METHOD'])) ? $_SERVER['REQUEST_METHOD'] : null, - 'params' => $params, - 'urlParams' => $c['urlParams'] + 'urlParams' => $urlParams, + 'requesttoken' => $requesttoken, ) ); }); @@ -64,10 +69,18 @@ class Server extends SimpleContainer implements IServerContainer { return new Root($manager, $view, $user); }); $this->registerService('UserManager', function($c) { - return new \OC\User\Manager(); + /** + * @var SimpleContainer $c + * @var \OC\AllConfig $config + */ + $config = $c->query('AllConfig'); + return new \OC\User\Manager($config); }); $this->registerService('UserSession', function($c) { - /** @var $c SimpleContainer */ + /** + * @var SimpleContainer $c + * @var \OC\User\Manager $manager + */ $manager = $c->query('UserManager'); $userSession = new \OC\User\Session($manager, \OC::$session); $userSession->listen('\OC\User', 'preCreateUser', function ($uid, $password) { @@ -111,9 +124,26 @@ class Server extends SimpleContainer implements IServerContainer { $this->registerService('AllConfig', function($c) { return new \OC\AllConfig(); }); + $this->registerService('L10NFactory', function($c) { + return new \OC\L10N\Factory(); + }); + $this->registerService('URLGenerator', function($c) { + /** @var $c SimpleContainer */ + $config = $c->query('AllConfig'); + return new \OC\URLGenerator($config); + }); + $this->registerService('AppHelper', function($c) { + return new \OC\AppHelper(); + }); $this->registerService('UserCache', function($c) { return new UserCache(); }); + $this->registerService('ActivityManager', function($c) { + return new ActivityManager(); + }); + $this->registerService('AvatarManager', function($c) { + return new AvatarManager(); + }); } /** @@ -153,6 +183,15 @@ class Server extends SimpleContainer implements IServerContainer { return $this->query('TagManager'); } + /** + * Returns the avatar manager, used for avatar functionality + * + * @return \OCP\IAvatarManager + */ + function getAvatarManager() { + return $this->query('AvatarManager'); + } + /** * Returns the root folder of ownCloud's data directory * @@ -220,12 +259,35 @@ class Server extends SimpleContainer implements IServerContainer { } /** - * @return \OC\Config + * @return \OCP\IConfig */ function getConfig() { return $this->query('AllConfig'); } + /** + * get an L10N instance + * @param $app string appid + * @return \OC_L10N + */ + function getL10N($app) { + return $this->query('L10NFactory')->get($app); + } + + /** + * @return \OC\URLGenerator + */ + function getURLGenerator() { + return $this->query('URLGenerator'); + } + + /** + * @return \OC\Helper + */ + function getHelper() { + return $this->query('AppHelper'); + } + /** * Returns an ICache instance * @@ -250,6 +312,15 @@ class Server extends SimpleContainer implements IServerContainer { * @return \OCP\IDBConnection */ function getDatabaseConnection() { - return \OC_DB::getConnection(); + return new ConnectionWrapper(\OC_DB::getConnection()); + } + + /** + * Returns the activity manager + * + * @return \OCP\Activity\IManager + */ + function getActivityManager() { + return $this->query('ActivityManager'); } } diff --git a/lib/private/session/internal.php b/lib/private/session/internal.php index 60aecccc8aac255ec08fb7f83cf4b572160c6fe9..a7c9e2fdefd36ed8620e403b85d1a59dcab73187 100644 --- a/lib/private/session/internal.php +++ b/lib/private/session/internal.php @@ -26,10 +26,21 @@ class Internal extends Memory { } public function __destruct() { - $_SESSION = $this->data; + $_SESSION = array_merge($_SESSION, $this->data); session_write_close(); } + /** + * @param string $key + */ + public function remove($key) { + // also remove it from $_SESSION to prevent re-setting the old value during the merge + if (isset($_SESSION[$key])) { + unset($_SESSION[$key]); + } + parent::remove($key); + } + public function clear() { session_unset(); @session_regenerate_id(true); diff --git a/lib/private/session/memory.php b/lib/private/session/memory.php index c148ff4b9b9928af848b7895e9132ce02ea73bd0..134cee582eda34c7bfc67f2b834d3a6081751aed 100644 --- a/lib/private/session/memory.php +++ b/lib/private/session/memory.php @@ -11,7 +11,7 @@ namespace OC\Session; /** * Class Internal * - * store session data in an in-memory array, not persistance + * store session data in an in-memory array, not persistent * * @package OC\Session */ diff --git a/lib/private/session/session.php b/lib/private/session/session.php index c55001eccaca570e9381679646be0526855580ee..fe160faa2679196079ced3e74490ba9fc4247dc6 100644 --- a/lib/private/session/session.php +++ b/lib/private/session/session.php @@ -8,7 +8,10 @@ namespace OC\Session; -abstract class Session implements \ArrayAccess, \OCP\ISession { +use OCP\ISession; + +abstract class Session implements \ArrayAccess, ISession { + /** * $name serves as a namespace for the session keys * @@ -16,36 +19,6 @@ abstract class Session implements \ArrayAccess, \OCP\ISession { */ abstract public function __construct($name); - /** - * @param string $key - * @param mixed $value - */ - abstract public function set($key, $value); - - /** - * @param string $key - * @return mixed should return null if $key does not exist - */ - abstract public function get($key); - - /** - * @param string $key - * @return bool - */ - abstract public function exists($key); - - /** - * should not throw any errors if $key does not exist - * - * @param string $key - */ - abstract public function remove($key); - - /** - * removes all entries within the cache namespace - */ - abstract public function clear(); - /** * @param mixed $offset * @return bool diff --git a/lib/private/setup.php b/lib/private/setup.php index 6bf3c88370f653d4067b59e833e8938e073d7b19..5232398d1d760253a9640f9e006938dd46df09aa 100644 --- a/lib/private/setup.php +++ b/lib/private/setup.php @@ -159,14 +159,28 @@ class OC_Setup { $content.= "\n"; $content.= "AddDefaultCharset utf-8\n"; $content.= "Options -Indexes\n"; + $content.= "\n"; + $content.= "ModPagespeed Off\n"; + $content.= "\n"; @file_put_contents(OC::$SERVERROOT.'/.htaccess', $content); //supress errors in case we don't have permissions for it self::protectDataDirectory(); } public static function protectDataDirectory() { - $content = "deny from all\n"; - $content.= "IndexIgnore *"; + //Require all denied + $now = date('Y-m-d H:i:s'); + $content = "# Generated by ownCloud on $now\n"; + $content.= "# line below if for Apache 2.4\n"; + $content.= "\n"; + $content.= "Require all denied\n"; + $content.= "\n\n"; + $content.= "# line below if for Apache 2.2\n"; + $content.= "\n"; + $content.= "deny from all\n"; + $content.= "\n\n"; + $content.= "# section for Apache 2.2 and 2.4\n"; + $content.= "IndexIgnore *\n"; file_put_contents(OC_Config::getValue('datadirectory', OC::$SERVERROOT.'/data').'/.htaccess', $content); file_put_contents(OC_Config::getValue('datadirectory', OC::$SERVERROOT.'/data').'/index.html', ''); } @@ -183,7 +197,7 @@ class OC_Setup { $error = $l->t('Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken.'); $hint = $l->t('Please double check the installation guides.', - 'http://doc.owncloud.org/server/5.0/admin_manual/installation.html'); + \OC_Helper::linkToDocs('admin-install')); OC_Template::printErrorPage($error, $hint); exit(); diff --git a/lib/private/setup/abstractdatabase.php b/lib/private/setup/abstractdatabase.php index 0beada7bd299d2151e24842e2ad271f6c867a4d3..84625a217ee974968479c13feb6c54fb027d4812 100644 --- a/lib/private/setup/abstractdatabase.php +++ b/lib/private/setup/abstractdatabase.php @@ -3,6 +3,10 @@ namespace OC\Setup; abstract class AbstractDatabase { + + /** + * @var \OC_L10N + */ protected $trans; protected $dbDefinitionFile; protected $dbuser; diff --git a/lib/private/setup/oci.php b/lib/private/setup/oci.php index 326d7a005317321940ee563894329d95ced0cdb3..24863b9e38a23238fc99bccd614010953854512e 100644 --- a/lib/private/setup/oci.php +++ b/lib/private/setup/oci.php @@ -29,10 +29,10 @@ class OCI extends AbstractDatabase { \OC_Log::write('setup oracle', 'connect string: ' . $easy_connect_string, \OC_Log::DEBUG); $connection = @oci_connect($this->dbuser, $this->dbpassword, $easy_connect_string); if(!$connection) { - $e = oci_error(); - if (is_array ($e) && isset ($e['message'])) { + $errorMessage = $this->getLastError(); + if ($errorMessage) { throw new \DatabaseSetupException($this->trans->t('Oracle connection could not be established'), - $e['message'].' Check environment: ORACLE_HOME='.getenv('ORACLE_HOME') + $errorMessage.' Check environment: ORACLE_HOME='.getenv('ORACLE_HOME') .' ORACLE_SID='.getenv('ORACLE_SID') .' LD_LIBRARY_PATH='.getenv('LD_LIBRARY_PATH') .' NLS_LANG='.getenv('NLS_LANG') @@ -51,7 +51,7 @@ class OCI extends AbstractDatabase { ." WHERE user_role_privs.granted_role = role_sys_privs.role AND privilege = 'CREATE ROLE'"; $stmt = oci_parse($connection, $query); if (!$stmt) { - $entry = $this->trans->t('DB Error: "%s"', array(oci_last_error($connection))) . '
    '; + $entry = $this->trans->t('DB Error: "%s"', array($this->getLastError($connection))) . '
    '; $entry .= $this->trans->t('Offending command was: "%s"', array($query)) . '
    '; \OC_Log::write('setup.oci', $entry, \OC_Log::WARN); } @@ -68,25 +68,25 @@ class OCI extends AbstractDatabase { $this->dbpassword=\OC_Util::generateRandomBytes(30); //oracle passwords are treated as identifiers: - // must start with aphanumeric char + // must start with alphanumeric char // needs to be shortened to 30 bytes, as the two " needed to escape the identifier count towards the identifier length. $this->dbpassword=substr($this->dbpassword, 0, 30); $this->createDBUser($connection); - \OC_Config::setValue('dbuser', $this->dbusername); - \OC_Config::setValue('dbname', $this->dbusername); + \OC_Config::setValue('dbuser', $this->dbuser); + \OC_Config::setValue('dbname', $this->dbuser); \OC_Config::setValue('dbpassword', $this->dbpassword); - //create the database not neccessary, oracle implies user = schema - //$this->createDatabase($this->dbname, $this->dbusername, $connection); + //create the database not necessary, oracle implies user = schema + //$this->createDatabase($this->dbname, $this->dbuser, $connection); } else { \OC_Config::setValue('dbuser', $this->dbuser); \OC_Config::setValue('dbname', $this->dbname); \OC_Config::setValue('dbpassword', $this->dbpassword); - //create the database not neccessary, oracle implies user = schema + //create the database not necessary, oracle implies user = schema //$this->createDatabase($this->dbname, $this->dbuser, $connection); } @@ -115,10 +115,10 @@ class OCI extends AbstractDatabase { } $query = "SELECT count(*) FROM user_tables WHERE table_name = :un"; $stmt = oci_parse($connection, $query); - $un = $this->dbtableprefix.'users'; + $un = $this->tableprefix.'users'; oci_bind_by_name($stmt, ':un', $un); if (!$stmt) { - $entry = $this->trans->t('DB Error: "%s"', array(oci_error($connection))) . '
    '; + $entry = $this->trans->t('DB Error: "%s"', array($this->getLastError($connection))) . '
    '; $entry .= $this->trans->t('Offending command was: "%s"', array($query)) . '
    '; \OC_Log::write('setup.oci', $entry, \OC_Log::WARN); } @@ -133,25 +133,22 @@ class OCI extends AbstractDatabase { } /** - * - * @param String $name - * @param String $password * @param resource $connection */ private function createDBUser($connection) { $name = $this->dbuser; - $password = $this->password; + $password = $this->dbpassword; $query = "SELECT * FROM all_users WHERE USERNAME = :un"; $stmt = oci_parse($connection, $query); if (!$stmt) { - $entry = $this->trans->t('DB Error: "%s"', array(oci_error($connection))) . '
    '; + $entry = $this->trans->t('DB Error: "%s"', array($this->getLastError($connection))) . '
    '; $entry .= $this->trans->t('Offending command was: "%s"', array($query)) . '
    '; \OC_Log::write('setup.oci', $entry, \OC_Log::WARN); } oci_bind_by_name($stmt, ':un', $name); $result = oci_execute($stmt); if(!$result) { - $entry = $this->trans->t('DB Error: "%s"', array(oci_error($connection))) . '
    '; + $entry = $this->trans->t('DB Error: "%s"', array($this->getLastError($connection))) . '
    '; $entry .= $this->trans->t('Offending command was: "%s"', array($query)) . '
    '; \OC_Log::write('setup.oci', $entry, \OC_Log::WARN); } @@ -162,14 +159,14 @@ class OCI extends AbstractDatabase { $query = 'CREATE USER '.$name.' IDENTIFIED BY "'.$password.'" DEFAULT TABLESPACE '.$this->dbtablespace; $stmt = oci_parse($connection, $query); if (!$stmt) { - $entry = $this->trans->t('DB Error: "%s"', array(oci_error($connection))) . '
    '; + $entry = $this->trans->t('DB Error: "%s"', array($this->getLastError($connection))) . '
    '; $entry .= $this->trans->t('Offending command was: "%s"', array($query)) . '
    '; \OC_Log::write('setup.oci', $entry, \OC_Log::WARN); } //oci_bind_by_name($stmt, ':un', $name); $result = oci_execute($stmt); if(!$result) { - $entry = $this->trans->t('DB Error: "%s"', array(oci_error($connection))) . '
    '; + $entry = $this->trans->t('DB Error: "%s"', array($this->getLastError($connection))) . '
    '; $entry .= $this->trans->t('Offending command was: "%s", name: %s, password: %s', array($query, $name, $password)) . '
    '; \OC_Log::write('setup.oci', $entry, \OC_Log::WARN); @@ -178,7 +175,7 @@ class OCI extends AbstractDatabase { $query = "ALTER USER :un IDENTIFIED BY :pw"; $stmt = oci_parse($connection, $query); if (!$stmt) { - $entry = $this->trans->t('DB Error: "%s"', array(oci_error($connection))) . '
    '; + $entry = $this->trans->t('DB Error: "%s"', array($this->getLastError($connection))) . '
    '; $entry .= $this->trans->t('Offending command was: "%s"', array($query)) . '
    '; \OC_Log::write('setup.oci', $entry, \OC_Log::WARN); } @@ -186,7 +183,7 @@ class OCI extends AbstractDatabase { oci_bind_by_name($stmt, ':pw', $password); $result = oci_execute($stmt); if(!$result) { - $entry = $this->trans->t('DB Error: "%s"', array(oci_error($connection))) . '
    '; + $entry = $this->trans->t('DB Error: "%s"', array($this->getLastError($connection))) . '
    '; $entry .= $this->trans->t('Offending command was: "%s"', array($query)) . '
    '; \OC_Log::write('setup.oci', $entry, \OC_Log::WARN); } @@ -195,16 +192,34 @@ class OCI extends AbstractDatabase { $query = 'GRANT CREATE SESSION, CREATE TABLE, CREATE SEQUENCE, CREATE TRIGGER, UNLIMITED TABLESPACE TO '.$name; $stmt = oci_parse($connection, $query); if (!$stmt) { - $entry = $this->trans->t('DB Error: "%s"', array(oci_error($connection))) . '
    '; + $entry = $this->trans->t('DB Error: "%s"', array($this->getLastError($connection))) . '
    '; $entry .= $this->trans->t('Offending command was: "%s"', array($query)) . '
    '; \OC_Log::write('setup.oci', $entry, \OC_Log::WARN); } $result = oci_execute($stmt); if(!$result) { - $entry = $this->trans->t('DB Error: "%s"', array(oci_error($connection))) . '
    '; + $entry = $this->trans->t('DB Error: "%s"', array($this->getLastError($connection))) . '
    '; $entry .= $this->trans->t('Offending command was: "%s", name: %s, password: %s', array($query, $name, $password)) . '
    '; \OC_Log::write('setup.oci', $entry, \OC_Log::WARN); } } + + /** + * @param resource $connection + * @return string + */ + protected function getLastError($connection = null) { + if ($connection) { + $error = oci_error($connection); + } else { + $error = oci_error(); + } + foreach (array('message', 'code') as $key) { + if (isset($error[$key])) { + return $error[$key]; + } + } + return ''; + } } diff --git a/lib/private/tags.php b/lib/private/tags.php index 9fdb35a7d6e54c0021db3ba9c693756cceb8e8a9..fe7de1073a0242dbf54b10ae5a77c28ea4e0a244 100644 --- a/lib/private/tags.php +++ b/lib/private/tags.php @@ -480,7 +480,7 @@ class Tags implements \OCP\ITags { return $this->getIdsForTag(self::TAG_FAVORITE); } catch(\Exception $e) { \OCP\Util::writeLog('core', __METHOD__.', exception: ' . $e->getMessage(), - \OCP\Util::ERROR); + \OCP\Util::DEBUG); return array(); } } diff --git a/lib/private/template.php b/lib/private/template.php index 9b2c1211e61c8e2b3dbb21c02c2dabfe87a5399d..b2c3a20f281056d8515f8a36d2d09759ee9d493c 100644 --- a/lib/private/template.php +++ b/lib/private/template.php @@ -292,9 +292,8 @@ class OC_Template extends \OC\Template\Base { if (!empty($hint)) { $hint = '
    '.$hint.'
    '; } - $l = OC_L10N::get('lib'); while (method_exists($exception, 'previous') && $exception = $exception->previous()) { - $error_msg .= '
    '.$l->t('Caused by:').' '; + $error_msg .= '
    Caused by:' . ' '; if ($exception->getCode()) { $error_msg .= '['.$exception->getCode().'] '; } diff --git a/lib/private/template/functions.php b/lib/private/template/functions.php index 501f8081bff9969d2d3b4b4317c03176d92d0395..ce42633b364e55d44b6bc4efbb44612805db37a4 100644 --- a/lib/private/template/functions.php +++ b/lib/private/template/functions.php @@ -35,6 +35,14 @@ function link_to( $app, $file, $args = array() ) { return OC_Helper::linkTo( $app, $file, $args ); } +/** + * @param $key + * @return string url to the online documentation + */ +function link_to_docs($key) { + return OC_Helper::linkToDocs($key); +} + /** * @brief make OC_Helper::imagePath available as a simple function * @param string $app app @@ -85,22 +93,51 @@ function human_file_size( $bytes ) { return OC_Helper::humanFileSize( $bytes ); } -function relative_modified_date($timestamp) { +/** + * @brief Strips the timestamp of its time value + * @param int $timestamp UNIX timestamp to strip + * @return $timestamp without time value + */ +function strip_time($timestamp){ + $date = new \DateTime("@{$timestamp}"); + $date->setTime(0, 0, 0); + return intval($date->format('U')); +} + +/** + * @brief Formats timestamp relatively to the current time using + * a human-friendly format like "x minutes ago" or "yesterday" + * @param int $timestamp timestamp to format + * @param int $fromTime timestamp to compare from, defaults to current time + * @param bool $dateOnly whether to strip time information + * @return formatted timestamp + */ +function relative_modified_date($timestamp, $fromTime = null, $dateOnly = false) { $l=OC_L10N::get('lib'); - $timediff = time() - $timestamp; + if (!isset($fromTime) || $fromTime === null){ + $fromTime = time(); + } + if ($dateOnly){ + $fromTime = strip_time($fromTime); + $timestamp = strip_time($timestamp); + } + $timediff = $fromTime - $timestamp; $diffminutes = round($timediff/60); $diffhours = round($diffminutes/60); $diffdays = round($diffhours/24); $diffmonths = round($diffdays/31); - if($timediff < 60) { return $l->t('seconds ago'); } - else if($timediff < 3600) { return $l->n('%n minute ago', '%n minutes ago', $diffminutes); } - else if($timediff < 86400) { return $l->n('%n hour ago', '%n hours ago', $diffhours); } - else if((date('G')-$diffhours) > 0) { return $l->t('today'); } - else if((date('G')-$diffhours) > -24) { return $l->t('yesterday'); } + if(!$dateOnly && $timediff < 60) { return $l->t('seconds ago'); } + else if(!$dateOnly && $timediff < 3600) { return $l->n('%n minute ago', '%n minutes ago', $diffminutes); } + else if(!$dateOnly && $timediff < 86400) { return $l->n('%n hour ago', '%n hours ago', $diffhours); } + else if((date('G', $fromTime)-$diffhours) >= 0) { return $l->t('today'); } + else if((date('G', $fromTime)-$diffhours) >= -24) { return $l->t('yesterday'); } + // 86400 * 31 days = 2678400 else if($timediff < 2678400) { return $l->n('%n day go', '%n days ago', $diffdays); } + // 86400 * 60 days = 518400 else if($timediff < 5184000) { return $l->t('last month'); } - else if((date('n')-$diffmonths) > 0) { return $l->n('%n month ago', '%n months ago', $diffmonths); } + else if((date('n', $fromTime)-$diffmonths) > 0) { return $l->n('%n month ago', '%n months ago', $diffmonths); } + // 86400 * 365.25 days * 2 = 63113852 else if($timediff < 63113852) { return $l->t('last year'); } else { return $l->t('years ago'); } } diff --git a/lib/private/templatelayout.php b/lib/private/templatelayout.php index 625f3424a0473ce9dbde867bdb276683df6b9fb9..d5cd50397536aea3c76791d4faf5a6a9b45a0805 100644 --- a/lib/private/templatelayout.php +++ b/lib/private/templatelayout.php @@ -46,6 +46,7 @@ class OC_TemplateLayout extends OC_Template { $user_displayname = OC_User::getDisplayName(); $this->assign( 'user_displayname', $user_displayname ); $this->assign( 'user_uid', OC_User::getUser() ); + $this->assign( 'appsmanagement_active', strpos(OC_Request::requestUri(), OC_Helper::linkToRoute('settings_apps')) === 0 ); $this->assign('enableAvatars', \OC_Config::getValue('enable_avatars', true)); } else if ($renderas == 'guest' || $renderas == 'error') { parent::__construct('core', 'layout.guest'); diff --git a/lib/private/updater.php b/lib/private/updater.php index 9827d8a8c12d7084e5f9eab3e10a63c560a0184c..764a0f1412086ac68342875c0f31e1725fbf2f68 100644 --- a/lib/private/updater.php +++ b/lib/private/updater.php @@ -37,7 +37,7 @@ class Updater extends BasicEmitter { /** * Check if a new version is available - * @param string $updateUrl the url to check, i.e. 'http://apps.owncloud.com/updater.php' + * @param string $updaterUrl the url to check, i.e. 'http://apps.owncloud.com/updater.php' * @return array | bool */ public function check($updaterUrl) { @@ -58,6 +58,7 @@ class Updater extends BasicEmitter { $version['updated'] = \OC_Appconfig::getValue('core', 'lastupdatedat'); $version['updatechannel'] = \OC_Util::getChannel(); $version['edition'] = \OC_Util::getEditionString(); + $version['build'] = \OC_Util::getBuild(); $versionString = implode('x', $version); //fetch xml data from updater @@ -115,6 +116,10 @@ class Updater extends BasicEmitter { \OC_App::checkAppsRequirements(); // load all apps to also upgrade enabled apps \OC_App::loadApps(); + + $repair = new Repair(); + $repair->run(); + \OC_Config::setValue('maintenance', false); $this->emit('\OC\Updater', 'maintenanceEnd'); } diff --git a/lib/private/urlgenerator.php b/lib/private/urlgenerator.php new file mode 100644 index 0000000000000000000000000000000000000000..4e3c11090007fdb23b91d52c7e9491659694665a --- /dev/null +++ b/lib/private/urlgenerator.php @@ -0,0 +1,152 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + * + */ + +namespace OC; +use OCP\IURLGenerator; +use RuntimeException; + +/** + * Class to generate URLs + */ +class URLGenerator implements IURLGenerator { + + /** + * @var \OCP\IConfig + */ + private $config; + + /** + * @param \OCP\IConfig $config + */ + public function __construct($config) { + $this->config = $config; + } + + /** + * @brief Creates an url using a defined route + * @param $route + * @param array $parameters + * @return + * @internal param array $args with param=>value, will be appended to the returned url + * @returns string the url + * + * Returns a url to the given app and file. + */ + public function linkToRoute($route, $parameters = array()) { + $urlLinkTo = \OC::getRouter()->generate($route, $parameters); + return $urlLinkTo; + } + + /** + * @brief Creates an url + * @param string $app app + * @param string $file file + * @param array $args array with param=>value, will be appended to the returned url + * The value of $args will be urlencoded + * @return string the url + * + * Returns a url to the given app and file. + */ + public function linkTo( $app, $file, $args = array() ) { + $frontControllerActive=($this->config->getSystemValue('front_controller_active', 'false') == 'true'); + + if( $app != '' ) { + $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') { + + $urlLinkTo = \OC::$WEBROOT . '/index.php/apps/' . $app; + if ($frontControllerActive) { + $urlLinkTo = \OC::$WEBROOT . '/apps/' . $app; + } + $urlLinkTo .= ($file != 'index.php') ? '/' . $file : ''; + } else { + $urlLinkTo = \OC_App::getAppWebPath($app) . '/' . $file; + } + } else { + $urlLinkTo = \OC::$WEBROOT . '/' . $app . '/' . $file; + } + } else { + if (file_exists(\OC::$SERVERROOT . '/core/' . $file)) { + $urlLinkTo = \OC::$WEBROOT . '/core/' . $file; + } else { + if ($frontControllerActive && $file === 'index.php') { + $urlLinkTo = \OC::$WEBROOT; + } else { + $urlLinkTo = \OC::$WEBROOT . '/' . $file; + } + } + } + + if ($args && $query = http_build_query($args, '', '&')) { + $urlLinkTo .= '?' . $query; + } + + return $urlLinkTo; + } + + /** + * @brief Creates path to an image + * @param string $app app + * @param string $image image name + * @return string the url + * + * Returns the path to the image. + */ + public function imagePath($app, $image) { + // Read the selected theme from the config file + $theme = \OC_Util::getTheme(); + + //if a theme has a png but not an svg always use the png + $basename = substr(basename($image),0,-4); + + // Check if the app is in the app folder + if (file_exists(\OC::$SERVERROOT . "/themes/$theme/apps/$app/img/$image")) { + return \OC::$WEBROOT . "/themes/$theme/apps/$app/img/$image"; + } elseif (!file_exists(\OC::$SERVERROOT . "/themes/$theme/apps/$app/img/$basename.svg") + && file_exists(\OC::$SERVERROOT . "/themes/$theme/apps/$app/img/$basename.png")) { + return \OC::$WEBROOT . "/themes/$theme/apps/$app/img/$basename.png"; + } elseif (file_exists(\OC_App::getAppPath($app) . "/img/$image")) { + return \OC_App::getAppWebPath($app) . "/img/$image"; + } elseif (!file_exists(\OC_App::getAppPath($app) . "/img/$basename.svg") + && file_exists(\OC_App::getAppPath($app) . "/img/$basename.png")) { + return \OC_App::getAppPath($app) . "/img/$basename.png"; + } elseif (!empty($app) and file_exists(\OC::$SERVERROOT . "/themes/$theme/$app/img/$image")) { + return \OC::$WEBROOT . "/themes/$theme/$app/img/$image"; + } elseif (!empty($app) and (!file_exists(\OC::$SERVERROOT . "/themes/$theme/$app/img/$basename.svg") + && file_exists(\OC::$SERVERROOT . "/themes/$theme/$app/img/$basename.png"))) { + return \OC::$WEBROOT . "/themes/$theme/$app/img/$basename.png"; + } elseif (!empty($app) and file_exists(\OC::$SERVERROOT . "/$app/img/$image")) { + return \OC::$WEBROOT . "/$app/img/$image"; + } elseif (!empty($app) and (!file_exists(\OC::$SERVERROOT . "/$app/img/$basename.svg") + && file_exists(\OC::$SERVERROOT . "/$app/img/$basename.png"))) { + return \OC::$WEBROOT . "/$app/img/$basename.png"; + } elseif (file_exists(\OC::$SERVERROOT . "/themes/$theme/core/img/$image")) { + return \OC::$WEBROOT . "/themes/$theme/core/img/$image"; + } elseif (!file_exists(\OC::$SERVERROOT . "/themes/$theme/core/img/$basename.svg") + && file_exists(\OC::$SERVERROOT . "/themes/$theme/core/img/$basename.png")) { + return \OC::$WEBROOT . "/themes/$theme/core/img/$basename.png"; + } elseif (file_exists(\OC::$SERVERROOT . "/core/img/$image")) { + return \OC::$WEBROOT . "/core/img/$image"; + } else { + throw new RuntimeException('image not found: image:' . $image . ' webroot:' . \OC::$WEBROOT . ' serverroot:' . \OC::$SERVERROOT); + } + } + + + /** + * Makes an URL absolute + * @param string $url the url in the owncloud host + * @return string the absolute version of the url + */ + public function getAbsoluteURL($url) { + return \OC_Request::serverProtocol() . '://' . \OC_Request::serverHost() . $url; + } +} diff --git a/lib/private/user.php b/lib/private/user.php index 15e807088b4c8e731116d978f94f74ee4217c65a..98ebebbe5c18bb0a153f8f51c4355eccd72ecb88 100644 --- a/lib/private/user.php +++ b/lib/private/user.php @@ -54,6 +54,9 @@ class OC_User { private static $_setupedBackends = array(); + // bool, stores if a user want to access a resource anonymously, e.g if he opens a public link + private static $incognitoMode = false; + /** * @brief registers backend * @param string $backend name of the backend @@ -187,17 +190,28 @@ class OC_User { public static function deleteUser($uid) { $user = self::getManager()->get($uid); if ($user) { - $user->delete(); + $result = $user->delete(); + + // if delete was successful we clean-up the rest + if ($result) { + + // We have to delete the user from all groups + foreach (OC_Group::getUserGroups($uid) as $i) { + OC_Group::removeFromGroup($uid, $i); + } + // Delete the user's keys in preferences + OC_Preferences::deleteUser($uid); - // We have to delete the user from all groups - foreach (OC_Group::getUserGroups($uid) as $i) { - OC_Group::removeFromGroup($uid, $i); + // Delete user files in /data/ + OC_Helper::rmdirr(\OC_User::getHome($uid)); + + // Remove it from the Cache + self::getManager()->delete($uid); } - // Delete the user's keys in preferences - OC_Preferences::deleteUser($uid); - // Delete user files in /data/ - OC_Helper::rmdirr(OC_Config::getValue('datadirectory', OC::$SERVERROOT . '/data') . '/' . $uid . '/'); + return true; + } else { + return false; } } @@ -213,6 +227,57 @@ class OC_User { return self::getUserSession()->login($uid, $password); } + /** + * @brief Try to login a user, assuming authentication + * has already happened (e.g. via Single Sign On). + * + * Log in a user and regenerate a new session. + * + * @param \OCP\Authentication\IApacheBackend $backend + * @return bool + */ + public static function loginWithApache(\OCP\Authentication\IApacheBackend $backend) { + + $uid = $backend->getCurrentUserId(); + $run = true; + OC_Hook::emit( "OC_User", "pre_login", array( "run" => &$run, "uid" => $uid )); + + if($uid) { + session_regenerate_id(true); + self::setUserId($uid); + self::setDisplayName($uid); + self::getUserSession()->setLoginName($uid); + + OC_Hook::emit( "OC_User", "post_login", array( "uid" => $uid, 'password'=>'' )); + return true; + } + return false; + } + + /** + * @brief Verify with Apache whether user is authenticated. + * + * @return boolean|null + * true: authenticated + * false: not authenticated + * null: not handled / no backend available + */ + public static function handleApacheAuth() { + $backend = self::findFirstActiveUsedBackend(); + if ($backend) { + OC_App::loadApps(); + + //setup extra user backends + self::setupBackends(); + self::unsetMagicInCookie(); + + return self::loginWithApache($backend); + } + + return null; + } + + /** * @brief Sets user id for session and triggers emit */ @@ -251,7 +316,7 @@ class OC_User { * Checks if the user is logged in */ public static function isLoggedIn() { - if (\OC::$session->get('user_id')) { + if (\OC::$session->get('user_id') && self::$incognitoMode === false) { OC_App::loadApps(array('authentication')); self::setupBackends(); return self::userExists(\OC::$session->get('user_id')); @@ -259,13 +324,38 @@ class OC_User { return false; } + /** + * @brief set incognito mode, e.g. if a user wants to open a public link + * @param bool $status + */ + public static function setIncognitoMode($status) { + self::$incognitoMode = $status; + + } + + /** + * Supplies an attribute to the logout hyperlink. The default behaviour + * is to return an href with '?logout=true' appended. However, it can + * supply any attribute(s) which are valid for . + * + * @return string with one or more HTML attributes. + */ + public static function getLogoutAttribute() { + $backend = self::findFirstActiveUsedBackend(); + if ($backend) { + return $backend->getLogoutAttribute(); + } + + return 'href="' . link_to('', 'index.php') . '?logout=true"'; + } + /** * @brief Check if the user is an admin user * @param string $uid uid of the admin * @return bool */ public static function isAdminUser($uid) { - if (OC_Group::inGroup($uid, 'admin')) { + if (OC_Group::inGroup($uid, 'admin') && self::$incognitoMode === false) { return true; } return false; @@ -278,7 +368,7 @@ class OC_User { */ public static function getUser() { $uid = OC::$session ? OC::$session->get('user_id') : null; - if (!is_null($uid)) { + if (!is_null($uid) && self::$incognitoMode === false) { return $uid; } else { return false; @@ -336,6 +426,22 @@ class OC_User { } } + /** + * @brief Check whether user can change his avatar + * @param string $uid The username + * @return bool + * + * Check whether a specified user can change his avatar + */ + public static function canUserChangeAvatar($uid) { + $user = self::getManager()->get($uid); + if ($user) { + return $user->canChangeAvatar(); + } else { + return false; + } + } + /** * @brief Check whether user can change his password * @param string $uid The username @@ -497,4 +603,20 @@ class OC_User { public static function unsetMagicInCookie() { self::getUserSession()->unsetMagicInCookie(); } + + /** + * @brief Returns the first active backend from self::$_usedBackends. + * @return null if no backend active, otherwise OCP\Authentication\IApacheBackend + */ + private static function findFirstActiveUsedBackend() { + foreach (self::$_usedBackends as $backend) { + if ($backend instanceof OCP\Authentication\IApacheBackend) { + if ($backend->isSessionActive()) { + return $backend; + } + } + } + + return null; + } } diff --git a/lib/private/user/backend.php b/lib/private/user/backend.php index e9be08e429cb12b5ea06bfb0133fca668f37ac63..f4e5618e04ad11c93dff1e626596cc1fd3d900bb 100644 --- a/lib/private/user/backend.php +++ b/lib/private/user/backend.php @@ -31,13 +31,15 @@ define('OC_USER_BACKEND_NOT_IMPLEMENTED', -501); /** * actions that user backends can define */ -define('OC_USER_BACKEND_CREATE_USER', 0x000001); -define('OC_USER_BACKEND_SET_PASSWORD', 0x000010); -define('OC_USER_BACKEND_CHECK_PASSWORD', 0x000100); -define('OC_USER_BACKEND_GET_HOME', 0x001000); -define('OC_USER_BACKEND_GET_DISPLAYNAME', 0x010000); -define('OC_USER_BACKEND_SET_DISPLAYNAME', 0x100000); - +define('OC_USER_BACKEND_CREATE_USER', 0x00000001); +define('OC_USER_BACKEND_SET_PASSWORD', 0x00000010); +define('OC_USER_BACKEND_CHECK_PASSWORD', 0x00000100); +define('OC_USER_BACKEND_GET_HOME', 0x00001000); +define('OC_USER_BACKEND_GET_DISPLAYNAME', 0x00010000); +define('OC_USER_BACKEND_SET_DISPLAYNAME', 0x00100000); +define('OC_USER_BACKEND_PROVIDE_AVATAR', 0x01000000); +define('OC_USER_BACKEND_COUNT_USERS', 0x10000000); +//more actions cannot be defined without breaking 32bit platforms! /** * Abstract base class for user management. Provides methods for querying backend @@ -54,6 +56,8 @@ abstract class OC_User_Backend implements OC_User_Interface { OC_USER_BACKEND_GET_HOME => 'getHome', OC_USER_BACKEND_GET_DISPLAYNAME => 'getDisplayName', OC_USER_BACKEND_SET_DISPLAYNAME => 'setDisplayName', + OC_USER_BACKEND_PROVIDE_AVATAR => 'canChangeAvatar', + OC_USER_BACKEND_COUNT_USERS => 'countUsers', ); /** diff --git a/lib/private/user/database.php b/lib/private/user/database.php index 9f00a022d9fa59ced26ff23d213b935a97545423..1a63755b980f652e7034fe85a004a0931ad6ddee 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -42,13 +42,13 @@ class OC_User_Database extends OC_User_Backend { /** * @var PasswordHash */ - static private $hasher=null; + static private $hasher = null; private function getHasher() { - if(!self::$hasher) { + if (!self::$hasher) { //we don't want to use DES based crypt(), since it doesn't return a hash with a recognisable prefix - $forcePortable=(CRYPT_BLOWFISH!=1); - self::$hasher=new PasswordHash(8, $forcePortable); + $forcePortable = (CRYPT_BLOWFISH != 1); + self::$hasher = new PasswordHash(8, $forcePortable); } return self::$hasher; @@ -63,14 +63,14 @@ class OC_User_Database extends OC_User_Backend { * Creates a new user. Basic checking of username is done in OC_User * itself, not in its subclasses. */ - public function createUser( $uid, $password ) { - if( $this->userExists($uid) ) { + public function createUser($uid, $password) { + if ($this->userExists($uid)) { return false; - }else{ - $hasher=$this->getHasher(); - $hash = $hasher->HashPassword($password.OC_Config::getValue('passwordsalt', '')); - $query = OC_DB::prepare( 'INSERT INTO `*PREFIX*users` ( `uid`, `password` ) VALUES( ?, ? )' ); - $result = $query->execute( array( $uid, $hash)); + } else { + $hasher = $this->getHasher(); + $hash = $hasher->HashPassword($password . OC_Config::getValue('passwordsalt', '')); + $query = OC_DB::prepare('INSERT INTO `*PREFIX*users` ( `uid`, `password` ) VALUES( ?, ? )'); + $result = $query->execute(array($uid, $hash)); return $result ? true : false; } @@ -83,10 +83,10 @@ class OC_User_Database extends OC_User_Backend { * * Deletes a user */ - public function deleteUser( $uid ) { + public function deleteUser($uid) { // Delete user-group-relation - $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*users` WHERE `uid` = ?' ); - $query->execute( array( $uid )); + $query = OC_DB::prepare('DELETE FROM `*PREFIX*users` WHERE `uid` = ?'); + $query->execute(array($uid)); return true; } @@ -98,15 +98,15 @@ class OC_User_Database extends OC_User_Backend { * * Change the password of a user */ - public function setPassword( $uid, $password ) { - if( $this->userExists($uid) ) { - $hasher=$this->getHasher(); - $hash = $hasher->HashPassword($password.OC_Config::getValue('passwordsalt', '')); - $query = OC_DB::prepare( 'UPDATE `*PREFIX*users` SET `password` = ? WHERE `uid` = ?' ); - $query->execute( array( $hash, $uid )); + public function setPassword($uid, $password) { + if ($this->userExists($uid)) { + $hasher = $this->getHasher(); + $hash = $hasher->HashPassword($password . OC_Config::getValue('passwordsalt', '')); + $query = OC_DB::prepare('UPDATE `*PREFIX*users` SET `password` = ? WHERE `uid` = ?'); + $query->execute(array($hash, $uid)); return true; - }else{ + } else { return false; } } @@ -119,12 +119,12 @@ class OC_User_Database extends OC_User_Backend { * * Change the display name of a user */ - public function setDisplayName( $uid, $displayName ) { - if( $this->userExists($uid) ) { - $query = OC_DB::prepare( 'UPDATE `*PREFIX*users` SET `displayname` = ? WHERE `uid` = ?' ); - $query->execute( array( $displayName, $uid )); + public function setDisplayName($uid, $displayName) { + if ($this->userExists($uid)) { + $query = OC_DB::prepare('UPDATE `*PREFIX*users` SET `displayname` = ? WHERE LOWER(`uid`) = ?'); + $query->execute(array($displayName, $uid)); return true; - }else{ + } else { return false; } } @@ -132,18 +132,16 @@ class OC_User_Database extends OC_User_Backend { /** * @brief get display name of the user * @param $uid user ID of the user - * @return display name + * @return string display name */ public function getDisplayName($uid) { - if( $this->userExists($uid) ) { - $query = OC_DB::prepare( 'SELECT `displayname` FROM `*PREFIX*users` WHERE `uid` = ?' ); - $result = $query->execute( array( $uid ))->fetchAll(); - $displayName = trim($result[0]['displayname'], ' '); - if ( !empty($displayName) ) { - return $displayName; - } else { - return $uid; - } + $query = OC_DB::prepare('SELECT `displayname` FROM `*PREFIX*users` WHERE `uid` = ?'); + $result = $query->execute(array($uid))->fetchAll(); + $displayName = trim($result[0]['displayname'], ' '); + if (!empty($displayName)) { + return $displayName; + } else { + return $uid; } } @@ -156,25 +154,14 @@ class OC_User_Database extends OC_User_Backend { public function getDisplayNames($search = '', $limit = null, $offset = null) { $displayNames = array(); $query = OC_DB::prepare('SELECT `uid`, `displayname` FROM `*PREFIX*users`' - .' WHERE LOWER(`displayname`) LIKE LOWER(?)', $limit, $offset); - $result = $query->execute(array($search.'%')); + . ' WHERE LOWER(`displayname`) LIKE LOWER(?) OR ' + . 'LOWER(`uid`) LIKE LOWER(?)', $limit, $offset); + $result = $query->execute(array($search . '%', $search . '%')); $users = array(); while ($row = $result->fetchRow()) { $displayNames[$row['uid']] = $row['displayname']; } - // let's see if we can also find some users who don't have a display name yet - $query = OC_DB::prepare('SELECT `uid`, `displayname` FROM `*PREFIX*users`' - .' WHERE LOWER(`uid`) LIKE LOWER(?)', $limit, $offset); - $result = $query->execute(array($search.'%')); - while ($row = $result->fetchRow()) { - $displayName = trim($row['displayname'], ' '); - if ( empty($displayName) ) { - $displayNames[$row['uid']] = $row['uid']; - } - } - - return $displayNames; } @@ -187,30 +174,30 @@ class OC_User_Database extends OC_User_Backend { * Check if the password is correct without logging in the user * returns the user id or false */ - public function checkPassword( $uid, $password ) { - $query = OC_DB::prepare( 'SELECT `uid`, `password` FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)' ); - $result = $query->execute( array( $uid)); + public function checkPassword($uid, $password) { + $query = OC_DB::prepare('SELECT `uid`, `password` FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)'); + $result = $query->execute(array($uid)); - $row=$result->fetchRow(); - if($row) { - $storedHash=$row['password']; - if ($storedHash[0]=='$') {//the new phpass based hashing - $hasher=$this->getHasher(); - if($hasher->CheckPassword($password.OC_Config::getValue('passwordsalt', ''), $storedHash)) { + $row = $result->fetchRow(); + if ($row) { + $storedHash = $row['password']; + if ($storedHash[0] == '$') { //the new phpass based hashing + $hasher = $this->getHasher(); + if ($hasher->CheckPassword($password . OC_Config::getValue('passwordsalt', ''), $storedHash)) { return $row['uid']; - }else{ + } else { return false; } - }else{//old sha1 based hashing - if(sha1($password)==$storedHash) { + } else { //old sha1 based hashing + if (sha1($password) == $storedHash) { //upgrade to new hashing $this->setPassword($row['uid'], $password); return $row['uid']; - }else{ + } else { return false; } } - }else{ + } else { return false; } } @@ -223,7 +210,7 @@ class OC_User_Database extends OC_User_Backend { */ public function getUsers($search = '', $limit = null, $offset = null) { $query = OC_DB::prepare('SELECT `uid` FROM `*PREFIX*users` WHERE LOWER(`uid`) LIKE LOWER(?)', $limit, $offset); - $result = $query->execute(array($search.'%')); + $result = $query->execute(array($search . '%')); $users = array(); while ($row = $result->fetchRow()) { $users[] = $row['uid']; @@ -237,8 +224,8 @@ class OC_User_Database extends OC_User_Backend { * @return boolean */ public function userExists($uid) { - $query = OC_DB::prepare( 'SELECT COUNT(*) FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)' ); - $result = $query->execute( array( $uid )); + $query = OC_DB::prepare('SELECT COUNT(*) FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)'); + $result = $query->execute(array($uid)); if (OC_DB::isError($result)) { OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR); return false; @@ -247,14 +234,14 @@ class OC_User_Database extends OC_User_Backend { } /** - * @brief get the user's home directory - * @param string $uid the username - * @return boolean - */ + * @brief get the user's home directory + * @param string $uid the username + * @return boolean + */ public function getHome($uid) { - if($this->userExists($uid)) { - return OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" ) . '/' . $uid; - }else{ + if ($this->userExists($uid)) { + return OC_Config::getValue("datadirectory", OC::$SERVERROOT . "/data") . '/' . $uid; + } else { return false; } } @@ -266,4 +253,19 @@ class OC_User_Database extends OC_User_Backend { return true; } + /** + * counts the users in the database + * + * @return int | bool + */ + public function countUsers() { + $query = OC_DB::prepare('SELECT COUNT(*) FROM `*PREFIX*users`'); + $result = $query->execute(); + if (OC_DB::isError($result)) { + OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR); + return false; + } + return $result->fetchOne(); + } + } diff --git a/lib/private/user/dummy.php b/lib/private/user/dummy.php index b5b7a6c3c7ac7b135cc5abc0520a7d2b4246f155..fc15a630cf3991b13246b73d7e6840c6c05a7551 100644 --- a/lib/private/user/dummy.php +++ b/lib/private/user/dummy.php @@ -88,8 +88,8 @@ class OC_User_Dummy extends OC_User_Backend { * returns the user id or false */ public function checkPassword($uid, $password) { - if (isset($this->users[$uid])) { - return ($this->users[$uid] == $password); + if (isset($this->users[$uid]) && $this->users[$uid] === $password) { + return $uid; } else { return false; } @@ -123,4 +123,13 @@ class OC_User_Dummy extends OC_User_Backend { public function hasUserListings() { return true; } + + /** + * counts the users in the database + * + * @return int | bool + */ + public function countUsers() { + return 0; + } } diff --git a/lib/private/user/manager.php b/lib/private/user/manager.php index 13286bc28a48ad964ca7278de0373c554e8654c9..90970ef996349a44254fc51b78b49f084eee12eb 100644 --- a/lib/private/user/manager.php +++ b/lib/private/user/manager.php @@ -35,7 +35,16 @@ class Manager extends PublicEmitter { */ private $cachedUsers = array(); - public function __construct() { + /** + * @var \OC\AllConfig $config + */ + private $config; + + /** + * @param \OC\AllConfig $config + */ + public function __construct($config = null) { + $this->config = $config; $cachedUsers = $this->cachedUsers; $this->listen('\OC\User', 'postDelete', function ($user) use (&$cachedUsers) { $i = array_search($user, $cachedUsers); @@ -103,7 +112,7 @@ class Manager extends PublicEmitter { if (isset($this->cachedUsers[$uid])) { return $this->cachedUsers[$uid]; } - $this->cachedUsers[$uid] = new User($uid, $backend, $this); + $this->cachedUsers[$uid] = new User($uid, $backend, $this, $this->config); return $this->cachedUsers[$uid]; } @@ -118,6 +127,20 @@ class Manager extends PublicEmitter { return ($user !== null); } + /** + * remove deleted user from cache + * + * @param string $uid + * @return bool + */ + public function delete($uid) { + if (isset($this->cachedUsers[$uid])) { + unset($this->cachedUsers[$uid]); + return true; + } + return false; + } + /** * Check if the password is valid for the user * @@ -127,7 +150,7 @@ class Manager extends PublicEmitter { */ public function checkPassword($loginname, $password) { foreach ($this->backends as $backend) { - if($backend->implementsActions(\OC_USER_BACKEND_CHECK_PASSWORD)) { + if ($backend->implementsActions(\OC_USER_BACKEND_CHECK_PASSWORD)) { $uid = $backend->checkPassword($loginname, $password); if ($uid !== false) { return $this->getUserObject($uid, $backend); @@ -220,7 +243,7 @@ class Manager extends PublicEmitter { // Allowed are: "a-z", "A-Z", "0-9" and "_.@-" if (preg_match('/[^a-zA-Z0-9 _\.@\-]/', $uid)) { throw new \Exception('Only the following characters are allowed in a username:' - . ' "a-z", "A-Z", "0-9", and "_.@-"'); + . ' "a-z", "A-Z", "0-9", and "_.@-"'); } // No empty username if (trim($uid) == '') { @@ -247,4 +270,26 @@ class Manager extends PublicEmitter { } return false; } + + /** + * returns how many users per backend exist (if supported by backend) + * + * @return array with backend class as key and count number as value + */ + public function countUsers() { + $userCountStatistics = array(); + foreach ($this->backends as $backend) { + if ($backend->implementsActions(\OC_USER_BACKEND_COUNT_USERS)) { + $backendusers = $backend->countUsers(); + if($backendusers !== false) { + if(isset($userCountStatistics[get_class($backend)])) { + $userCountStatistics[get_class($backend)] += $backendusers; + } else { + $userCountStatistics[get_class($backend)] = $backendusers; + } + } + } + } + return $userCountStatistics; + } } diff --git a/lib/private/user/session.php b/lib/private/user/session.php index 525c65ab8a15e3b86af5bacb0c704f368c7840db..1e299416fb32bbbaed69d22e676112ae84494c86 100644 --- a/lib/private/user/session.php +++ b/lib/private/user/session.php @@ -112,6 +112,38 @@ class Session implements Emitter, \OCP\IUserSession { } } + /** + * set the login name + * + * @param string $loginName for the logged in user + */ + public function setLoginName($loginName) { + if (is_null($loginName)) { + $this->session->remove('loginname'); + } else { + $this->session->set('loginname', $loginName); + } + } + + /** + * get the login name of the current user + * + * @return string + */ + public function getLoginName() { + if ($this->activeUser) { + return $this->session->get('loginname'); + } else { + $uid = $this->session->get('user_id'); + if ($uid) { + $this->activeUser = $this->manager->get($uid); + return $this->session->get('loginname'); + } else { + return null; + } + } + } + /** * try to login with the provided credentials * @@ -126,6 +158,7 @@ class Session implements Emitter, \OCP\IUserSession { if (!is_null($user)) { if ($user->isEnabled()) { $this->setUser($user); + $this->setLoginName($uid); $this->manager->emit('\OC\User', 'postLogin', array($user, $password)); return true; } else { @@ -143,6 +176,7 @@ class Session implements Emitter, \OCP\IUserSession { public function logout() { $this->manager->emit('\OC\User', 'logout'); $this->setUser(null); + $this->setLoginName(null); $this->unsetMagicInCookie(); } @@ -170,5 +204,10 @@ class Session implements Emitter, \OCP\IUserSession { setcookie('oc_username', '', time()-3600, \OC::$WEBROOT); setcookie('oc_token', '', time()-3600, \OC::$WEBROOT); setcookie('oc_remember_login', '', time()-3600, \OC::$WEBROOT); + // old cookies might be stored under /webroot/ instead of /webroot + // and Firefox doesn't like it! + setcookie('oc_username', '', time()-3600, \OC::$WEBROOT . '/'); + setcookie('oc_token', '', time()-3600, \OC::$WEBROOT . '/'); + setcookie('oc_remember_login', '', time()-3600, \OC::$WEBROOT . '/'); } } diff --git a/lib/private/user/user.php b/lib/private/user/user.php index e5f842944f105c021c6cd29643c34d50dba1ae7b..ef5364cbf7b50d3c0fdbd8332194a134ae5d8e21 100644 --- a/lib/private/user/user.php +++ b/lib/private/user/user.php @@ -37,12 +37,23 @@ class User { */ private $emitter; + /** + * @var string $home + */ + private $home; + + /** + * @var \OC\AllConfig $config + */ + private $config; + /** * @param string $uid * @param \OC_User_Backend $backend - * @param Emitter $emitter + * @param \OC\Hooks\Emitter $emitter + * @param \OC\AllConfig $config */ - public function __construct($uid, $backend, $emitter = null) { + public function __construct($uid, $backend, $emitter = null, $config = null) { $this->uid = $uid; if ($backend and $backend->implementsActions(OC_USER_BACKEND_GET_DISPLAYNAME)) { $this->displayName = $backend->getDisplayName($uid); @@ -51,8 +62,13 @@ class User { } $this->backend = $backend; $this->emitter = $emitter; - $enabled = \OC_Preferences::getValue($uid, 'core', 'enabled', 'true'); //TODO: DI for OC_Preferences - $this->enabled = ($enabled === 'true'); + $this->config = $config; + if ($this->config) { + $enabled = $this->config->getUserValue($uid, 'core', 'enabled', 'true'); + $this->enabled = ($enabled === 'true'); + } else { + $this->enabled = true; + } } /** @@ -133,10 +149,28 @@ class User { * @return string */ public function getHome() { - if ($this->backend->implementsActions(\OC_USER_BACKEND_GET_HOME) and $home = $this->backend->getHome($this->uid)) { - return $home; + if (!$this->home) { + if ($this->backend->implementsActions(\OC_USER_BACKEND_GET_HOME) and $home = $this->backend->getHome($this->uid)) { + $this->home = $home; + } elseif ($this->config) { + $this->home = $this->config->getSystemValue('datadirectory') . '/' . $this->uid; + } else { + $this->home = \OC::$SERVERROOT . '/data/' . $this->uid; + } + } + return $this->home; + } + + /** + * check if the backend allows the user to change his avatar on Personal page + * + * @return bool + */ + public function canChangeAvatar() { + if ($this->backend->implementsActions(\OC_USER_BACKEND_PROVIDE_AVATAR)) { + return $this->backend->canChangeAvatar($this->uid); } - return \OC_Config::getValue("datadirectory", \OC::$SERVERROOT . "/data") . '/' . $this->uid; //TODO switch to Config object once implemented + return true; } /** @@ -154,7 +188,11 @@ class User { * @return bool */ public function canChangeDisplayName() { - return $this->backend->implementsActions(\OC_USER_BACKEND_SET_DISPLAYNAME); + if ($this->config and $this->config->getSystemValue('allow_user_to_change_display_name') === false) { + return false; + } else { + return $this->backend->implementsActions(\OC_USER_BACKEND_SET_DISPLAYNAME); + } } /** @@ -173,7 +211,9 @@ class User { */ public function setEnabled($enabled) { $this->enabled = $enabled; - $enabled = ($enabled) ? 'true' : 'false'; - \OC_Preferences::setValue($this->uid, 'core', 'enabled', $enabled); + if ($this->config) { + $enabled = ($enabled) ? 'true' : 'false'; + $this->config->setUserValue($this->uid, 'core', 'enabled', $enabled); + } } } diff --git a/lib/private/util.php b/lib/private/util.php index 43d1d393da77932718ab7d96bffb1886306d3dae..0585749d615f62e67cc03a30384582cc2f78b387 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -51,23 +51,33 @@ class OC_Util { self::$rootMounted = true; } + if ($user != '' && !OCP\User::userExists($user)) { + return false; + } + //if we aren't logged in, there is no use to set up the filesystem if( $user != "" ) { - $quota = self::getUserQuota($user); - if ($quota !== \OC\Files\SPACE_UNLIMITED) { - \OC\Files\Filesystem::addStorageWrapper(function($mountPoint, $storage) use ($quota, $user) { - if ($mountPoint === '/' . $user . '/'){ + \OC\Files\Filesystem::addStorageWrapper(function($mountPoint, $storage){ + // set up quota for home storages, even for other users + // which can happen when using sharing + + if ($storage instanceof \OC\Files\Storage\Home) { + $user = $storage->getUser()->getUID(); + $quota = OC_Util::getUserQuota($user); + if ($quota !== \OC\Files\SPACE_UNLIMITED) { return new \OC\Files\Storage\Wrapper\Quota(array('storage' => $storage, 'quota' => $quota)); - } else { - return $storage; } - }); - } + } + + return $storage; + }); + $userDir = '/'.$user.'/files'; $userRoot = OC_User::getHome($user); $userDirectory = $userRoot . '/files'; if( !is_dir( $userDirectory )) { mkdir( $userDirectory, 0755, true ); + OC_Util::copySkeleton($userDirectory); } //jail the user into his "home" directory \OC\Files\Filesystem::init($user, $userDir); @@ -92,6 +102,35 @@ class OC_Util { } } + /** + * @brief copies the user skeleton files into the fresh user home files + * @param string $userDirectory + */ + public static function copySkeleton($userDirectory) { + OC_Util::copyr(\OC::$SERVERROOT.'/core/skeleton' , $userDirectory); + } + + /** + * @brief copies a directory recursively + * @param string $source + * @param string $target + * @return void + */ + public static function copyr($source,$target) { + $dir = opendir($source); + @mkdir($target); + while(false !== ( $file = readdir($dir)) ) { + if ( !\OC\Files\Filesystem::isIgnoredDir($file) ) { + if ( is_dir($source . '/' . $file) ) { + OC_Util::copyr($source . '/' . $file , $target . '/' . $file); + } else { + copy($source . '/' . $file,$target . '/' . $file); + } + } + } + closedir($dir); + } + /** * @return void */ @@ -138,7 +177,7 @@ class OC_Util { OC_Util::loadVersion(); return \OC::$server->getSession()->get('OC_Channel'); } - + /** * @description get the build number of the current installed of ownCloud. * @return string @@ -152,9 +191,12 @@ class OC_Util { * @description load the version.php into the session as cache */ private static function loadVersion() { - if(!\OC::$server->getSession()->exists('OC_Version')) { + $timestamp = filemtime(OC::$SERVERROOT.'/version.php'); + if(!\OC::$server->getSession()->exists('OC_Version') or OC::$server->getSession()->get('OC_Version_Timestamp') != $timestamp) { require 'version.php'; $session = \OC::$server->getSession(); + /** @var $timestamp int */ + $session->set('OC_Version_Timestamp', $timestamp); /** @var $OC_Version string */ $session->set('OC_Version', $OC_Version); /** @var $OC_VersionString string */ @@ -270,16 +312,16 @@ class OC_Util { //common hint for all file permissions error messages $permissionsHint = 'Permissions can usually be fixed by ' - .'giving the webserver write access to the root directory.'; + .'giving the webserver write access to the root directory.'; // Check if config folder is writable. - if(!is_writable(OC::$SERVERROOT."/config/") or !is_readable(OC::$SERVERROOT."/config/")) { + if(!is_writable(OC::$configDir) or !is_readable(OC::$configDir)) { $errors[] = array( 'error' => "Can't write into config directory", 'hint' => 'This can usually be fixed by ' - .'giving the webserver write access to the config directory.' + .'giving the webserver write access to the config directory.' ); } @@ -291,8 +333,8 @@ class OC_Util { $errors[] = array( 'error' => "Can't write into apps directory", 'hint' => 'This can usually be fixed by ' - .'giving the webserver write access to the apps directory ' + .'giving the webserver write access to the apps directory ' .'or disabling the appstore in the config file.' ); } @@ -307,8 +349,8 @@ class OC_Util { $errors[] = array( 'error' => "Can't create data directory (".$CONFIG_DATADIRECTORY.")", 'hint' => 'This can usually be fixed by ' - .'giving the webserver write access to the root directory.' + .'giving the webserver write access to the root directory.' ); } } else if(!is_writable($CONFIG_DATADIRECTORY) or !is_readable($CONFIG_DATADIRECTORY)) { @@ -320,6 +362,13 @@ class OC_Util { $errors = array_merge($errors, self::checkDataDirectoryPermissions($CONFIG_DATADIRECTORY)); } + if(!OC_Util::isSetLocaleWorking()) { + $errors[] = array( + 'error' => 'Setting locale to en_US.UTF-8/fr_FR.UTF-8/es_ES.UTF-8/de_DE.UTF-8/ru_RU.UTF-8/pt_BR.UTF-8/it_IT.UTF-8/ja_JP.UTF-8/zh_CN.UTF-8 failed', + 'hint' => 'Please install one of theses locales on your system and restart your webserver.' + ); + } + $moduleHint = "Please ask your server administrator to install the module."; // check if all required php modules are present if(!class_exists('ZipArchive')) { @@ -392,11 +441,11 @@ class OC_Util { ); $webServerRestart = true; } - if(floatval(phpversion()) < 5.3) { + if(version_compare(phpversion(), '5.3.3', '<')) { $errors[] = array( - 'error'=>'PHP 5.3 is required.', - 'hint'=>'Please ask your server administrator to update PHP to version 5.3 or higher.' - .' PHP 5.2 is no longer supported by ownCloud and the PHP community.' + 'error'=>'PHP 5.3.3 or higher is required.', + 'hint'=>'Please ask your server administrator to update PHP to the latest version.' + .' Your PHP version is no longer supported by ownCloud and the PHP community.' ); $webServerRestart = true; } @@ -535,7 +584,7 @@ class OC_Util { // Check if we are a user if( !OC_User::isLoggedIn()) { header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php', - array('redirectUrl' => OC_Request::requestUri()) + array('redirect_url' => OC_Request::requestUri()) )); exit(); } @@ -546,6 +595,7 @@ class OC_Util { * @return void */ public static function checkAdminUser() { + OC_Util::checkLoggedIn(); if( !OC_User::isAdminUser(OC_User::getUser())) { header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php' )); exit(); @@ -578,6 +628,7 @@ class OC_Util { * @return array $groups where the current user is subadmin */ public static function checkSubAdminUser() { + OC_Util::checkLoggedIn(); if(!OC_SubAdmin::isSubAdmin(OC_User::getUser())) { header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php' )); exit(); @@ -665,29 +716,7 @@ class OC_Util { * @see OC_Util::callRegister() */ public static function isCallRegistered() { - if(!\OC::$session->exists('requesttoken')) { - return false; - } - - if(isset($_GET['requesttoken'])) { - $token = $_GET['requesttoken']; - } elseif(isset($_POST['requesttoken'])) { - $token = $_POST['requesttoken']; - } elseif(isset($_SERVER['HTTP_REQUESTTOKEN'])) { - $token = $_SERVER['HTTP_REQUESTTOKEN']; - } else { - //no token found. - return false; - } - - // Check if the token is valid - if($token !== \OC::$session->get('requesttoken')) { - // Not valid - return false; - } else { - // Valid token - return true; - } + return \OC::$server->getRequest()->passesCSRFCheck(); } /** @@ -743,6 +772,10 @@ class OC_Util { * file in the data directory and trying to access via http */ public static function isHtAccessWorking() { + if (!\OC_Config::getValue("check_for_working_htaccess", true)) { + return true; + } + // testdata $fileName = '/htaccesstest.txt'; $testContent = 'testcontent'; @@ -795,11 +828,16 @@ class OC_Util { if (!function_exists('curl_init')) { return true; } + if (!\OC_Config::getValue("check_for_working_webdav", true)) { + return true; + } $settings = array( 'baseUri' => OC_Helper::linkToRemote('webdav'), ); - $client = new \Sabre_DAV_Client($settings); + $client = new \OC_DAVClient($settings); + + $client->setRequestTimeout(10); // for this self test we don't care if the ssl certificate is self signed and the peer cannot be verified. $client->setVerifyPeer(false); @@ -829,8 +867,8 @@ class OC_Util { return true; } - $result = setlocale(LC_ALL, 'en_US.UTF-8', 'en_US.UTF8'); - if($result == false) { + \Patchwork\Utf8\Bootup::initLocale(); + if ('' === basename('§')) { return false; } return true; @@ -844,6 +882,14 @@ class OC_Util { return function_exists('finfo_open'); } + /** + * @brief Check if a PHP version older then 5.3.8 is installed. + * @return bool + */ + public static function isPHPoutdated() { + return version_compare(phpversion(), '5.3.8', '<'); + } + /** * @brief Check if the ownCloud server can connect to the internet * @return bool @@ -854,6 +900,11 @@ class OC_Util { return false; } + // in case the connection is via proxy return true to avoid connecting to owncloud.org + if(OC_Config::getValue('proxy', '') != '') { + return true; + } + // try to connect to owncloud.org to see if http connections to the internet are possible. $connected = @fsockopen("www.owncloud.org", 80); if ($connected) { @@ -956,9 +1007,9 @@ class OC_Util { * @param string $url Url to get content * @return string of the response or false on error * This function get the content of a page via curl, if curl is enabled. - * If not, file_get_element is used. + * If not, file_get_contents is used. */ - public static function getUrlContent($url){ + public static function getUrlContent($url) { if (function_exists('curl_init')) { $curl = curl_init(); @@ -1047,7 +1098,11 @@ class OC_Util { } // XCache if (function_exists('xcache_clear_cache')) { - xcache_clear_cache(XC_TYPE_VAR, 0); + if (ini_get('xcache.admin.enable_auth')) { + OC_Log::write('core', 'XCache opcode cache will not be cleared because "xcache.admin.enable_auth" is enabled.', \OC_Log::WARN); + } else { + xcache_clear_cache(XC_TYPE_PHP, 0); + } } // Opcache (PHP >= 5.5) if (function_exists('opcache_reset')) { @@ -1081,4 +1136,17 @@ class OC_Util { $t = explode('/', $file); return array_pop($t); } + + /** + * A human readable string is generated based on version, channel and build number + * @return string + */ + public static function getHumanVersion() { + $version = OC_Util::getVersionString().' ('.OC_Util::getChannel().')'; + $build = OC_Util::getBuild(); + if(!empty($build) and OC_Util::getChannel() === 'daily') { + $version .= ' Build:' . $build; + } + return $version; + } } diff --git a/lib/public/activity/iconsumer.php b/lib/public/activity/iconsumer.php new file mode 100644 index 0000000000000000000000000000000000000000..9afacf4e745533c22c33d1c5ec31d10e908e1977 --- /dev/null +++ b/lib/public/activity/iconsumer.php @@ -0,0 +1,48 @@ +. + * + */ + +/** + * Public interface of ownCloud for apps to use. + * Activity/IConsumer interface + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes +namespace OCP\Activity; + +interface IConsumer { + /** + * @param $app + * @param $subject + * @param $subjectParams + * @param $message + * @param $messageParams + * @param $file + * @param $link + * @param $affectedUser + * @param $type + * @param $priority + * @return mixed + */ + function receive($app, $subject, $subjectParams, $message, $messageParams, $file, $link, $affectedUser, $type, $priority ); +} + diff --git a/lib/public/activity/imanager.php b/lib/public/activity/imanager.php new file mode 100644 index 0000000000000000000000000000000000000000..086e430d677d480419b5206420ad421484e06883 --- /dev/null +++ b/lib/public/activity/imanager.php @@ -0,0 +1,59 @@ +. + * + */ + +/** + * Public interface of ownCloud for apps to use. + * Activity/IManager interface + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes +namespace OCP\Activity; + +interface IManager { + + /** + * @param $app + * @param $subject + * @param $subjectParams + * @param $message + * @param $messageParams + * @param $file + * @param $link + * @param $affectedUser + * @param $type + * @param $priority + * @return mixed + */ + function publishActivity($app, $subject, $subjectParams, $message, $messageParams, $file, $link, $affectedUser, $type, $priority); + + /** + * In order to improve lazy loading a closure can be registered which will be called in case + * activity consumers are actually requested + * + * $callable has to return an instance of OCA\Activity\IConsumer + * + * @param \Closure $callable + */ + function registerConsumer(\Closure $callable); + +} diff --git a/lib/public/api.php b/lib/public/api.php index d94b68e908a58680373cda50d4335e0821431cee..f53188d2721ec6c95eea4a959822815e0383cbe3 100644 --- a/lib/public/api.php +++ b/lib/public/api.php @@ -1,25 +1,33 @@ . -* -*/ + * ownCloud + * + * @author Tom Needham + * @copyright 2012 Tom Needham tom@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 . + * + */ + +/** + * Public interface of ownCloud for apps to use. + * API Class + * + */ +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; /** diff --git a/lib/public/app.php b/lib/public/app.php index 0a5721b334e090413c7c9429795fa35d0c566b22..e0b5682242b8a99013dcfa3f8b2b9fcdb5388f86 100644 --- a/lib/public/app.php +++ b/lib/public/app.php @@ -1,28 +1,28 @@ . -* -*/ + * ownCloud + * + * @author Frank Karlitschek + * @copyright 2012 Frank Karlitschek frank@owncloud.org + * + * 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 . + * + */ /** * Public interface of ownCloud for apps to use. - * App Class. + * App Class * */ @@ -35,14 +35,12 @@ namespace OCP; */ class App { /** - * @brief Makes ownCloud aware of this app - * @brief This call is deprecated and not necessary to use. - * @param $data array with all information - * @returns boolean + * Makes ownCloud aware of this app + * @param array with all information + * @return boolean * - * @deprecated this method is deprecated - * Do not call it anymore - * It'll remain in our public API for compatibility reasons + * @deprecated This method is deprecated. Do not call it anymore. + * It'll remain in our public API for compatibility reasons. * */ public static function register( $data ) { @@ -50,9 +48,9 @@ class App { } /** - * @brief adds an entry to the navigation - * @param $data array containing the data - * @returns boolean + * Adds an entry to the navigation + * @param array containing the data + * @return boolean * * This function adds a new entry to the navigation visible to users. $data * is an associative array. @@ -71,9 +69,9 @@ class App { } /** - * @brief marks a navigation entry as active - * @param $id string id of the entry - * @returns boolean + * Marks a navigation entry as active + * @param string id of the entry + * @return boolean * * This function sets a navigation entry as active and removes the 'active' * property from all other entries. The templates can use this for @@ -84,7 +82,7 @@ class App { } /** - * @brief Register a Configuration Screen that should appear in the personal settings section. + * Register a Configuration Screen that should appear in the personal settings section. * @param $app string appid * @param $page string page to be included */ @@ -93,7 +91,7 @@ class App { } /** - * @brief Register a Configuration Screen that should appear in the Admin section. + * Register a Configuration Screen that should appear in the Admin section. * @param $app string appid * @param $page string page to be included */ @@ -102,19 +100,19 @@ class App { } /** - * @brief Read app metadata from the info.xml file + * Read app metadata from the info.xml file * @param string $app id of the app or the path of the info.xml file * @param boolean $path (optional) - * @returns array + * @return array */ public static function getAppInfo( $app, $path=false ) { return \OC_App::getAppInfo( $app, $path); } /** - * @brief checks whether or not an app is enabled - * @param $app app - * @returns boolean + * checks whether or not an app is enabled + * @param string + * @return boolean * * This function checks whether or not an app is enabled. */ @@ -123,17 +121,17 @@ class App { } /** - * @brief Check if the app is enabled, redirects to home if not - * @param $app app + * Check if the app is enabled, redirects to home if not + * @param string */ public static function checkAppEnabled( $app ) { \OC_Util::checkAppEnabled( $app ); } /** - * @brief Get the last version of the app, either from appinfo/version or from appinfo/info.xml - * @param $app app - * @returns boolean + * Get the last version of the app, either from appinfo/version or from appinfo/info.xml + * @param string + * @return boolean */ public static function getAppVersion( $app ) { return \OC_App::getAppVersion( $app ); diff --git a/lib/public/appframework/app.php b/lib/public/appframework/app.php index d97c5c81848861b6b6aea43ea23bddfdcdc3f32b..90150245c419abbf43dce37f7f35489f7fecdc92 100644 --- a/lib/public/appframework/app.php +++ b/lib/public/appframework/app.php @@ -20,7 +20,13 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * AppFramework/App class + */ + namespace OCP\AppFramework; +use OC\AppFramework\routing\RouteConfig; /** @@ -31,8 +37,11 @@ namespace OCP\AppFramework; * to be registered using IContainer::registerService */ class App { - public function __construct($appName) { - $this->container = new \OC\AppFramework\DependencyInjection\DIContainer($appName); + /** + * @param array $urlParams an array with variables extracted from the routes + */ + public function __construct($appName, $urlParams = array()) { + $this->container = new \OC\AppFramework\DependencyInjection\DIContainer($appName, $urlParams); } private $container; @@ -44,14 +53,36 @@ class App { return $this->container; } + /** + * This function is to be called to create single routes and restful routes based on the given $routes array. + * + * Example code in routes.php of tasks app (it will register two restful resources): + * $routes = array( + * 'resources' => array( + * 'lists' => array('url' => '/tasklists'), + * 'tasks' => array('url' => '/tasklists/{listId}/tasks') + * ) + * ); + * + * $a = new TasksApp(); + * $a->registerRoutes($this, $routes); + * + * @param \OC_Router $router + * @param array $routes + */ + public function registerRoutes($router, $routes) { + $routeConfig = new RouteConfig($this->container, $router, $routes); + $routeConfig->register(); + } + /** * This function is called by the routing component to fire up the frameworks dispatch mechanism. * * Example code in routes.php of the task app: * $this->create('tasks_index', '/')->get()->action( * function($params){ - * $app = new TaskApp(); - * $app->dispatch('PageController', 'index', $params); + * $app = new TaskApp($params); + * $app->dispatch('PageController', 'index'); * } * ); * @@ -59,8 +90,8 @@ class App { * Example for for TaskApp implementation: * class TaskApp extends \OCP\AppFramework\App { * - * public function __construct(){ - * parent::__construct('tasks'); + * public function __construct($params){ + * parent::__construct('tasks', $params); * * $this->getContainer()->registerService('PageController', function(IAppContainer $c){ * $a = $c->query('API'); @@ -73,9 +104,8 @@ class App { * @param string $controllerName the name of the controller under which it is * stored in the DI container * @param string $methodName the method that you want to call - * @param array $urlParams an array with variables extracted from the routes */ - public function dispatch($controllerName, $methodName, array $urlParams) { - \OC\AppFramework\App::main($controllerName, $methodName, $urlParams, $this->container); + public function dispatch($controllerName, $methodName) { + \OC\AppFramework\App::main($controllerName, $methodName, $this->container); } } diff --git a/lib/private/appframework/controller/controller.php b/lib/public/appframework/controller.php similarity index 85% rename from lib/private/appframework/controller/controller.php rename to lib/public/appframework/controller.php index 0ea0a38cc090e36906de3a9782edc603a8567481..dc8da96787168ed41ff290b61fb730e9eb68108d 100644 --- a/lib/private/appframework/controller/controller.php +++ b/lib/public/appframework/controller.php @@ -1,5 +1,4 @@ api = $api; + public function __construct(IAppContainer $app, IRequest $request){ + $this->app = $app; $this->request = $request; } @@ -127,7 +136,7 @@ abstract class Controller { */ public function render($templateName, array $params=array(), $renderAs='user', array $headers=array()){ - $response = new TemplateResponse($this->api, $templateName); + $response = new TemplateResponse($this->app->getAppName(), $templateName); $response->setParams($params); $response->renderAs($renderAs); diff --git a/lib/public/appframework/http/http.php b/lib/public/appframework/http.php similarity index 94% rename from lib/public/appframework/http/http.php rename to lib/public/appframework/http.php index 9eafe782726ac58d78042a7dc90a439eb30b51aa..60f314202cc9e93f484cddf6901e5322196dde5c 100644 --- a/lib/public/appframework/http/http.php +++ b/lib/public/appframework/http.php @@ -1,5 +1,4 @@ 'no-cache, must-revalidate'] + * @var array */ private $headers = array( 'Cache-Control' => 'no-cache, must-revalidate' @@ -39,18 +46,21 @@ class Response { /** + * HTTP status code - defaults to STATUS OK * @var string */ private $status = Http::STATUS_OK; /** + * Last modified date * @var \DateTime */ private $lastModified; /** + * ETag * @var string */ private $ETag; @@ -64,7 +74,7 @@ class Response { public function cacheFor($cacheSeconds) { if($cacheSeconds > 0) { - $this->addHeader('Cache-Control', 'max-age=' . $cacheSeconds . + $this->addHeader('Cache-Control', 'max-age=' . $cacheSeconds . ', must-revalidate'); } else { $this->addHeader('Cache-Control', 'no-cache, must-revalidate'); @@ -94,16 +104,16 @@ class Response { */ public function getHeaders() { $mergeWith = array(); - + if($this->lastModified) { - $mergeWith['Last-Modified'] = + $mergeWith['Last-Modified'] = $this->lastModified->format(\DateTime::RFC2822); } if($this->ETag) { $mergeWith['ETag'] = '"' . $this->ETag . '"'; } - + return array_merge($mergeWith, $this->headers); } @@ -135,6 +145,7 @@ class Response { /** + * Get the ETag * @return string the etag */ public function getETag() { @@ -143,6 +154,7 @@ class Response { /** + * Get "last modified" date * @return string RFC2822 formatted last modified date */ public function getLastModified() { @@ -151,6 +163,7 @@ class Response { /** + * Set the ETag * @param string $ETag */ public function setETag($ETag) { @@ -159,6 +172,7 @@ class Response { /** + * Set "last modified" date * @param \DateTime $lastModified */ public function setLastModified($lastModified) { diff --git a/lib/public/appframework/http/templateresponse.php b/lib/public/appframework/http/templateresponse.php index 97678c96cbaffb6cc592516fe6b3c2b0e3235350..2200a38beca93d4c60307e1071ca7f5146a39f89 100644 --- a/lib/public/appframework/http/templateresponse.php +++ b/lib/public/appframework/http/templateresponse.php @@ -1,5 +1,4 @@ templateName = $templateName; $this->appName = $appName; - $this->api = $api; $this->params = array(); $this->renderAs = 'user'; } @@ -108,13 +125,7 @@ class TemplateResponse extends Response { */ public function render(){ - if($this->appName !== null){ - $appName = $this->appName; - } else { - $appName = $this->api->getAppName(); - } - - $template = $this->api->getTemplate($this->templateName, $this->renderAs, $appName); + $template = new \OCP\Template($this->appName, $this->templateName, $this->renderAs); foreach($this->params as $key => $value){ $template->assign($key, $value); diff --git a/lib/public/appframework/iapi.php b/lib/public/appframework/iapi.php index fa6af5f596593c6ba1d6b3e42c20f89a063c9d92..963e870f79bd5311f4d35a09db459bb52eacec9e 100644 --- a/lib/public/appframework/iapi.php +++ b/lib/public/appframework/iapi.php @@ -1,5 +1,4 @@ . - * - */ - - -namespace OCP\AppFramework; -use OCP\AppFramework\Http\Response; - - -/** - * Middleware is used to provide hooks before or after controller methods and - * deal with possible exceptions raised in the controller methods. - * They're modeled after Django's middleware system: - * https://docs.djangoproject.com/en/dev/topics/http/middleware/ - */ -interface IMiddleWare { - - - /** - * This is being run in normal order before the controller is being - * called which allows several modifications and checks - * - * @param Controller $controller the controller that is being called - * @param string $methodName the name of the method that will be called on - * the controller - */ - function beforeController($controller, $methodName); - - - /** - * This is being run when either the beforeController method or the - * controller method itself is throwing an exception. The middleware is - * asked in reverse order to handle the exception and to return a response. - * If the response is null, it is assumed that the exception could not be - * handled and the error will be thrown again - * - * @param Controller $controller the controller that is being called - * @param string $methodName the name of the method that will be called on - * the controller - * @param \Exception $exception the thrown exception - * @throws \Exception the passed in exception if it cant handle it - * @return Response a Response object in case that the exception was handled - */ - function afterException($controller, $methodName, \Exception $exception); - - /** - * This is being run after a successful controller method call and allows - * the manipulation of a Response object. The middleware is run in reverse order - * - * @param Controller $controller the controller that is being called - * @param string $methodName the name of the method that will be called on - * the controller - * @param Response $response the generated response from the controller - * @return Response a Response object - */ - function afterController($controller, $methodName, Response $response); - - /** - * This is being run after the response object has been rendered and - * allows the manipulation of the output. The middleware is run in reverse order - * - * @param Controller $controller the controller that is being called - * @param string $methodName the name of the method that will be called on - * the controller - * @param string $output the generated output from a response - * @return string the output that should be printed - */ - function beforeOutput($controller, $methodName, $output); -} diff --git a/lib/private/appframework/middleware/middleware.php b/lib/public/appframework/middleware.php similarity index 95% rename from lib/private/appframework/middleware/middleware.php rename to lib/public/appframework/middleware.php index b12c03c3eb8da3627077f148679bc5d8aa8dd09e..24f3193993547fd12db0169de3439037a170fcdc 100644 --- a/lib/private/appframework/middleware/middleware.php +++ b/lib/public/appframework/middleware.php @@ -1,5 +1,4 @@ . + * + */ + +/** + * Public interface of ownCloud for apps to use. + * Authentication/IApacheBackend interface + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes +namespace OCP\Authentication; + +interface IApacheBackend { + + /** + * In case the user has been authenticated by Apache true is returned. + * + * @return boolean whether Apache reports a user as currently logged in. + */ + public function isSessionActive(); + + /** + * Creates an attribute which is added to the logout hyperlink. It can + * supply any attribute(s) which are valid for . + * + * @return string with one or more HTML attributes. + */ + public function getLogoutAttribute(); + + /** + * Return the id of the current user + * @return string + */ + public function getCurrentUserId(); + +} diff --git a/lib/public/backgroundjob.php b/lib/public/backgroundjob.php index cc076a3a845ad2944721cc8346c686434475dc9c..a7f54491dfabf16f047f0a54e04baf39e0b6dfd1 100644 --- a/lib/public/backgroundjob.php +++ b/lib/public/backgroundjob.php @@ -44,7 +44,8 @@ use \OC\BackgroundJob\JobList; */ class BackgroundJob { /** - * @brief get the execution type of background jobs + * get the execution type of background jobs + * * @return string * * This method returns the type how background jobs are executed. If the user @@ -55,7 +56,8 @@ class BackgroundJob { } /** - * @brief sets the background jobs execution type + * sets the background jobs execution type + * * @param string $type execution type * @return boolean * @@ -77,19 +79,21 @@ class BackgroundJob { /** * @deprecated - * @brief creates a regular task + * creates a regular task * @param string $klass class name * @param string $method method name * @return true */ public static function addRegularTask($klass, $method) { - self::registerJob('OC\BackgroundJob\Legacy\RegularJob', array($klass, $method)); - return true; + if (!\OC::needUpgrade()) { + self::registerJob('OC\BackgroundJob\Legacy\RegularJob', array($klass, $method)); + return true; + } } /** * @deprecated - * @brief gets all regular tasks + * gets all regular tasks * @return associative array * * key is string "$klass-$method", value is array( $klass, $method ) @@ -109,7 +113,7 @@ class BackgroundJob { /** * @deprecated - * @brief Gets one queued task + * Gets one queued task * @param int $id ID of the task * @return associative array */ @@ -120,7 +124,7 @@ class BackgroundJob { /** * @deprecated - * @brief Gets all queued tasks + * Gets all queued tasks * @return array with associative arrays */ public static function allQueuedTasks() { @@ -139,7 +143,7 @@ class BackgroundJob { /** * @deprecated - * @brief Gets all queued tasks of a specific app + * Gets all queued tasks of a specific app * @param string $app app name * @return array with associative arrays */ @@ -161,7 +165,7 @@ class BackgroundJob { /** * @deprecated - * @brief queues a task + * queues a task * @param string $app app name * @param string $class class name * @param string $method method name @@ -175,7 +179,7 @@ class BackgroundJob { /** * @deprecated - * @brief deletes a queued task + * deletes a queued task * @param int $id id of task * @return bool * diff --git a/lib/public/config.php b/lib/public/config.php index 73476d7551ddffb391aa0aeff4e8d783cacec076..d9355a0605f5cf29354a9d5dfe7faeed507c3fed 100644 --- a/lib/public/config.php +++ b/lib/public/config.php @@ -1,24 +1,24 @@ . -* -*/ + * ownCloud + * + * @author Frank Karlitschek + * @copyright 2012 Frank Karlitschek frank@owncloud.org + * + * 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 . + * + */ /** * Public interface of ownCloud for apps to use. @@ -27,7 +27,7 @@ */ /** - * @brief use OCP namespace for all classes that are considered public. + * Use OCP namespace for all classes that are considered public. * * Classes that use this namespace are for use by apps, and not for use by internal * OC classes @@ -40,7 +40,7 @@ namespace OCP; */ class Config { /** - * @brief Gets a value from config.php + * Gets a value from config.php * @param string $key key * @param string $default = null default value * @return string the value or $default @@ -53,7 +53,7 @@ class Config { } /** - * @brief Sets a value + * Sets a value * @param string $key key * @param string $value value * @return bool @@ -71,7 +71,7 @@ class Config { } /** - * @brief Gets the config value + * Gets the config value * @param string $app app * @param string $key key * @param string $default = null, default value if the key does not exist @@ -85,7 +85,7 @@ class Config { } /** - * @brief sets a value in the appconfig + * Sets a value in the appconfig * @param string $app app * @param string $key key * @param string $value value @@ -103,7 +103,7 @@ class Config { } /** - * @brief Gets the preference + * Gets the preference * @param string $user user * @param string $app app * @param string $key key @@ -118,12 +118,12 @@ class Config { } /** - * @brief sets a value in the preferences + * Sets a value in the preferences * @param string $user user * @param string $app app * @param string $key key * @param string $value value - * @returns bool + * @return bool * * Adds a value to the preferences. If the key did not exist before, it * will be added automagically. diff --git a/lib/public/contacts/imanager.php b/lib/public/contacts/imanager.php index 3bfbca7be501ecee5b502277a3ae74294e2c6315..973d48be5ec46f2ad3e1f9d4bd44b5f89ad87b3b 100644 --- a/lib/public/contacts/imanager.php +++ b/lib/public/contacts/imanager.php @@ -119,11 +119,15 @@ namespace OCP\Contacts { function isEnabled(); /** + * Registers an address book + * * @param \OCP\IAddressBook $address_book */ function registerAddressBook(\OCP\IAddressBook $address_book); /** + * Unregisters an address book + * * @param \OCP\IAddressBook $address_book */ function unregisterAddressBook(\OCP\IAddressBook $address_book); diff --git a/lib/public/db.php b/lib/public/db.php index 9512cca2d19d30398eb85de376b80fef6630b686..4a19d78d444c596ed2199c8f9b1067ca3378e5dc 100644 --- a/lib/public/db.php +++ b/lib/public/db.php @@ -1,24 +1,24 @@ . -* -*/ + * ownCloud + * + * @author Frank Karlitschek + * @copyright 2012 Frank Karlitschek frank@owncloud.org + * + * 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 . + * + */ /** * Public interface of ownCloud for apps to use. @@ -35,18 +35,20 @@ namespace OCP; */ class DB { /** - * @brief Prepare a SQL query + * Prepare a SQL query * @param string $query Query string - * @return \MDB2_Statement_Common prepared SQL query + * @param int $limit Limit of the SQL statement + * @param int $offset Offset of the SQL statement + * @return \Doctrine\DBAL\Statement prepared SQL query * - * SQL query via MDB2 prepare(), needs to be execute()'d! + * SQL query via Doctrine prepare(), needs to be execute()'d! */ static public function prepare( $query, $limit=null, $offset=null ) { return(\OC_DB::prepare($query, $limit, $offset)); } /** - * @brief Insert a row if a matching row doesn't exists. + * Insert a row if a matching row doesn't exists. * @param $table string The table name (will replace *PREFIX*) to perform the replace on. * @param $input array * @@ -67,11 +69,11 @@ class DB { } /** - * @brief gets last value of autoincrement + * Gets last value of autoincrement * @param $table string The optional table name (will replace *PREFIX*) and add sequence suffix * @return int * - * MDB2 lastInsertID() + * \Doctrine\DBAL\Connection lastInsertID() * * Call this method right after the insert command or other functions may * cause trouble! @@ -81,21 +83,21 @@ class DB { } /** - * @brief Start a transaction + * Start a transaction */ public static function beginTransaction() { - return(\OC_DB::beginTransaction()); + \OC_DB::beginTransaction(); } /** - * @brief Commit the database changes done during a transaction that is in progress + * Commit the database changes done during a transaction that is in progress */ public static function commit() { - return(\OC_DB::commit()); + \OC_DB::commit(); } /** - * @brief check if a result is an error, works with MDB2 and PDOException + * Check if a result is an error, works with Doctrine * @param mixed $result * @return bool */ diff --git a/lib/public/defaults.php b/lib/public/defaults.php index 147f23e341f3e583e856962c036429ae4c9939cc..34b68903ee815d5d1238a149d5f72b4c90b81971 100644 --- a/lib/public/defaults.php +++ b/lib/public/defaults.php @@ -1,41 +1,56 @@ . -* -*/ + * ownCloud + * + * @author Björn Schießle + * @copyright 2013 Björn Schießle 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 . + * + */ + +/** + * Public interface of ownCloud for apps to use. + * Defaults Class + * + */ +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; -/* +/** * public api to access default strings and urls for your templates */ - class Defaults { + /** + * \OC_Defaults instance to retrieve the defaults + * @return string + */ private $defaults; + /** + * creates a \OC_Defaults instance which is used in all methods to retrieve the + * actual defaults + */ function __construct() { $this->defaults = new \OC_Defaults(); } /** - * @breif get base URL for the organisation behind your ownCloud instance + * get base URL for the organisation behind your ownCloud instance * @return string */ public function getBaseUrl() { @@ -43,7 +58,7 @@ class Defaults { } /** - * @breif link to the desktop sync client + * link to the desktop sync client * @return string */ public function getSyncClientUrl() { @@ -51,7 +66,7 @@ class Defaults { } /** - * @breif base URL to the documentation of your ownCloud instance + * base URL to the documentation of your ownCloud instance * @return string */ public function getDocBaseUrl() { @@ -59,7 +74,7 @@ class Defaults { } /** - * @breif name of your ownCloud instance + * name of your ownCloud instance * @return string */ public function getName() { @@ -67,7 +82,7 @@ class Defaults { } /** - * @breif Entity behind your onwCloud instance + * Entity behind your onwCloud instance * @return string */ public function getEntity() { @@ -75,7 +90,7 @@ class Defaults { } /** - * @breif ownCloud slogan + * ownCloud slogan * @return string */ public function getSlogan() { @@ -83,7 +98,7 @@ class Defaults { } /** - * @breif logo claim + * logo claim * @return string */ public function getLogoClaim() { @@ -91,7 +106,7 @@ class Defaults { } /** - * @breif footer, short version + * footer, short version * @return string */ public function getShortFooter() { @@ -99,7 +114,7 @@ class Defaults { } /** - * @breif footer, long version + * footer, long version * @return string */ public function getLongFooter() { diff --git a/lib/public/files.php b/lib/public/files.php index 852b041eefb1bc1af72cce4640bff5d41c6f44e7..d36d74fdf775a8c68731f4853be1da85d84b83e2 100644 --- a/lib/public/files.php +++ b/lib/public/files.php @@ -1,24 +1,24 @@ . -* -*/ + * ownCloud + * + * @author Frank Karlitschek + * @copyright 2012 Frank Karlitschek frank@owncloud.org + * + * 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 . + * + */ /** * Public interface of ownCloud for apps to use. @@ -36,9 +36,8 @@ namespace OCP; */ class Files { /** - * @brief Recusive deletion of folders - * @param string $dir path to the folder - * + * Recusive deletion of folders + * @param string path to the folder * @return bool */ static function rmdirr( $dir ) { @@ -46,7 +45,7 @@ class Files { } /** - * get the mimetype form a local file + * Get the mimetype form a local file * @param string path * @return string * does NOT work for ownClouds filesystem, use OC_FileSystem::getMimeType instead @@ -56,17 +55,16 @@ class Files { } /** - * search for files by mimetype - * - * @param string $query + * Search for files by mimetype + * @param string mimetype * @return array */ - static public function searchByMime($mimetype) { + static public function searchByMime( $mimetype ) { return(\OC\Files\Filesystem::searchByMime( $mimetype )); } /** - * copy the contents of one stream to another + * Copy the contents of one stream to another * @param resource source * @param resource target * @return int the number of bytes copied @@ -77,7 +75,7 @@ class Files { } /** - * create a temporary file with an unique filename + * Create a temporary file with an unique filename * @param string postfix * @return string * @@ -88,7 +86,7 @@ class Files { } /** - * create a temporary folder with an unique filename + * Create a temporary folder with an unique filename * @return string * * temporary files are automatically cleaned up after the script is finished @@ -99,9 +97,8 @@ class Files { /** * Adds a suffix to the name in case the file exists - * - * @param $path - * @param $filename + * @param string path + * @param string filename * @return string */ public static function buildNotExistingFileName( $path, $filename ) { @@ -109,8 +106,9 @@ class Files { } /** + * Gets the Storage for an app - creates the needed folder if they are not + * existant * @param string appid - * @param $app app * @return \OC\Files\View */ public static function getStorage( $app ) { diff --git a/lib/public/files/alreadyexistsexception.php b/lib/public/files/alreadyexistsexception.php index 32947c7a5c309614eee6dd9e9b2a0ee904e730a5..7bea947aef0ee1a48a701a7606a4e765a3492b43 100644 --- a/lib/public/files/alreadyexistsexception.php +++ b/lib/public/files/alreadyexistsexception.php @@ -1,11 +1,35 @@ - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. + * ownCloud + * + * @author Robin Appelman + * @copyright 2013 Robin Appelman icewind@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 . + * */ +/** + * Public interface of ownCloud for apps to use. + * Files/AlreadyExistsException class + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; +/** + * Exception for already existing files/folders + */ class AlreadyExistsException extends \Exception {} diff --git a/lib/public/files/entitytoolargeexception.php b/lib/public/files/entitytoolargeexception.php new file mode 100644 index 0000000000000000000000000000000000000000..eaa68a548b9e7477d89bf0a3bdb0867da076a2c6 --- /dev/null +++ b/lib/public/files/entitytoolargeexception.php @@ -0,0 +1,35 @@ +. + * + */ + +/** + * Public interface of ownCloud for apps to use. + * Files/EntityTooLargeException class + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes +namespace OCP\Files; + +/** + * Exception for too large entity + */ +class EntityTooLargeException extends \Exception {} diff --git a/lib/public/files/file.php b/lib/public/files/file.php index 916b2edd6c45ab44259debc25797a269c5360da8..c6cda59f9b08b1e64694f48473a518b4da4d067c 100644 --- a/lib/public/files/file.php +++ b/lib/public/files/file.php @@ -1,11 +1,32 @@ - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. + * ownCloud + * + * @author Robin Appelman + * @copyright 2013 Robin Appelman icewind@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 . + * */ +/** + * Public interface of ownCloud for apps to use. + * Files/File interface + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; interface File extends Node { diff --git a/lib/public/files/folder.php b/lib/public/files/folder.php index da7f20fd3666afec5117a0c032123201bebeb071..7fec1c529a598f31f9f5e7734568552676776806 100644 --- a/lib/public/files/folder.php +++ b/lib/public/files/folder.php @@ -1,11 +1,32 @@ - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. + * ownCloud + * + * @author Robin Appelman + * @copyright 2013 Robin Appelman icewind@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 . + * */ +/** + * Public interface of ownCloud for apps to use. + * Files/Folder interface + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; interface Folder extends Node { diff --git a/lib/public/files/invalidcontentexception.php b/lib/public/files/invalidcontentexception.php new file mode 100644 index 0000000000000000000000000000000000000000..3dfe7378c4db97e5fab7cf0f882c07134046e3d2 --- /dev/null +++ b/lib/public/files/invalidcontentexception.php @@ -0,0 +1,35 @@ +. + * + */ + +/** + * Public interface of ownCloud for apps to use. + * Files/InvalidContentException class + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes +namespace OCP\Files; + +/** + * Exception for invalid content + */ +class InvalidContentException extends \Exception {} diff --git a/lib/public/files/invalidpathexception.php b/lib/public/files/invalidpathexception.php new file mode 100644 index 0000000000000000000000000000000000000000..8ecfa7d89ad9ba91f2d9d63afdfbc1250b6130a9 --- /dev/null +++ b/lib/public/files/invalidpathexception.php @@ -0,0 +1,35 @@ +. + * + */ + +/** + * Public interface of ownCloud for apps to use. + * Files/InvalidPathException class + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes +namespace OCP\Files; + +/** + * Exception for invalid path + */ +class InvalidPathException extends \Exception {} diff --git a/lib/public/files/node.php b/lib/public/files/node.php index b3ddf6de6212bee19708747caa32fb02debf853f..972b1cfa492b0e6361659bd4125ff6db2d3661a9 100644 --- a/lib/public/files/node.php +++ b/lib/public/files/node.php @@ -1,11 +1,32 @@ - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. + * ownCloud + * + * @author Robin Appelman + * @copyright 2013 Robin Appelman icewind@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 . + * */ +/** + * Public interface of ownCloud for apps to use. + * Files/Node interface + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; interface Node { diff --git a/lib/public/files/notenoughspaceexception.php b/lib/public/files/notenoughspaceexception.php index e51806666ad139e2c3b9c3e91b1d3738c9fc7d0e..17f91b31bfca5be21231e7453e79d5c3304c994a 100644 --- a/lib/public/files/notenoughspaceexception.php +++ b/lib/public/files/notenoughspaceexception.php @@ -1,11 +1,35 @@ - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. + * ownCloud + * + * @author Robin Appelman + * @copyright 2013 Robin Appelman icewind@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 . + * */ +/** + * Public interface of ownCloud for apps to use. + * Files/NotEnoughSpaceException class + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; +/** + * Exception for not enough space + */ class NotEnoughSpaceException extends \Exception {} diff --git a/lib/public/files/notfoundexception.php b/lib/public/files/notfoundexception.php index 1ff426a40c6e405a0c5c9ffa812c747b230add73..cb35199220b004c6891622f706175b9693ec6787 100644 --- a/lib/public/files/notfoundexception.php +++ b/lib/public/files/notfoundexception.php @@ -1,11 +1,35 @@ - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. + * ownCloud + * + * @author Robin Appelman + * @copyright 2013 Robin Appelman icewind@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 . + * */ +/** + * Public interface of ownCloud for apps to use. + * Files/NotFoundException class + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; +/** + * Exception for not found entity + */ class NotFoundException extends \Exception {} diff --git a/lib/public/files/notpermittedexception.php b/lib/public/files/notpermittedexception.php index 0509de7e8291b580d01f948c4253929c8f7f6ae3..e37bd6fad3c50759422e367a1a2663a050d2c488 100644 --- a/lib/public/files/notpermittedexception.php +++ b/lib/public/files/notpermittedexception.php @@ -1,11 +1,35 @@ - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. + * ownCloud + * + * @author Robin Appelman + * @copyright 2013 Robin Appelman icewind@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 . + * */ +/** + * Public interface of ownCloud for apps to use. + * Files/NotPermittedException class + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; +/** + * Exception for not permitted action + */ class NotPermittedException extends \Exception {} diff --git a/lib/public/files/storage.php b/lib/public/files/storage.php index f32f20734836c998803ddbb52dee3135241d636a..194b42a6481c83b8d135f35529d5b5856442cfa1 100644 --- a/lib/public/files/storage.php +++ b/lib/public/files/storage.php @@ -1,11 +1,32 @@ - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. + * ownCloud + * + * @author Robin Appelman + * @copyright 2012 Robin Appelman icewind@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 . + * + */ + +/** + * Public interface of ownCloud for apps to use. + * Files/Storage interface */ +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; /** diff --git a/lib/public/groupinterface.php b/lib/public/groupinterface.php index 5603faa8265470d07106e421663a457b349993e2..625e0b12a87fcb5b6818aeb7c6753ae7dcf38016 100644 --- a/lib/public/groupinterface.php +++ b/lib/public/groupinterface.php @@ -1,24 +1,24 @@ . -* -*/ + * ownCloud + * + * @author Arthur Schiwon + * @copyright 2012 Arthur Schiwon blizzz@owncloud.org + * + * 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 . + * + */ /** * Public interface of ownCloud for apps to use. @@ -26,6 +26,8 @@ * */ +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; interface GroupInterface extends \OC_Group_Interface {} diff --git a/lib/public/iaddressbook.php b/lib/public/iaddressbook.php index 77e8750d9da50fa9da03a21f6a884dbadc47eb43..dcfe08012e67dbfc74a358883a30bcda976c90e4 100644 --- a/lib/public/iaddressbook.php +++ b/lib/public/iaddressbook.php @@ -20,6 +20,11 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * IAddressBook interface + */ + // use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP { diff --git a/lib/public/iavatar.php b/lib/public/iavatar.php new file mode 100644 index 0000000000000000000000000000000000000000..2cbec0d45c3f7f6af70114de93905a734f339d07 --- /dev/null +++ b/lib/public/iavatar.php @@ -0,0 +1,38 @@ +. + * */ + +/** + * Public interface of ownCloud for apps to use. + * Cache interface + * + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; /** @@ -14,7 +37,6 @@ interface ICache { /** * Get a value from the user cache - * * @param string $key * @return mixed */ @@ -22,7 +44,6 @@ interface ICache { /** * Set a value in the user cache - * * @param string $key * @param mixed $value * @param int $ttl Time To Live in seconds. Defaults to 60*60*24 @@ -32,7 +53,6 @@ interface ICache { /** * Check if a value is set in the user cache - * * @param string $key * @return bool */ @@ -40,14 +60,13 @@ interface ICache { /** * Remove an item from the user cache - * * @param string $key * @return bool */ public function remove($key); /** - * clear the user cache of all entries starting with a prefix + * Clear the user cache of all entries starting with a prefix * @param string $prefix (optional) * @return bool */ diff --git a/lib/public/iconfig.php b/lib/public/iconfig.php index 850bddf6935fce77b22c71b597481f77fb67c8bb..1d0f8e0015ccf2a7de038f109aba5239bcf8fa29 100644 --- a/lib/public/iconfig.php +++ b/lib/public/iconfig.php @@ -1,12 +1,33 @@ - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - * + * ownCloud + * + * @author Bart Visscher + * @copyright 2013 Bart Visscher bartv@thisnet.nl + * + * 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 . + * */ +/** + * Public interface of ownCloud for apps to use. + * Config interface + * + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; /** @@ -15,6 +36,7 @@ namespace OCP; interface IConfig { /** * Sets a new system wide value + * * @param string $key the key of the value, under which will be saved * @param string $value the value that should be stored * @todo need a use case for this @@ -23,14 +45,17 @@ interface IConfig { /** * Looks up a system wide defined value + * * @param string $key the key of the value, under which it was saved + * @param string $default the default value to be returned if the value isn't set * @return string the saved value */ - public function getSystemValue($key); + public function getSystemValue($key, $default = ''); /** * Writes a new app wide value + * * @param string $appName the appName that we want to store the value under * @param string $key the key of the value, under which will be saved * @param string $value the value that should be stored @@ -39,15 +64,18 @@ interface IConfig { /** * Looks up an app wide defined value + * * @param string $appName the appName that we stored the value under * @param string $key the key of the value, under which it was saved + * @param string $default the default value to be returned if the value isn't set * @return string the saved value */ - public function getAppValue($appName, $key); + public function getAppValue($appName, $key, $default = ''); /** * Set a user defined value + * * @param string $userId the userId of the user that we want to store the value under * @param string $appName the appName that we want to store the value under * @param string $key the key under which the value is being stored @@ -57,9 +85,11 @@ interface IConfig { /** * Shortcut for getting a user defined value + * * @param string $userId the userId of the user that we want to store the value under * @param string $appName the appName that we stored the value under * @param string $key the key under which the value is being stored + * @param string $default the default value to be returned if the value isn't set */ - public function getUserValue($userId, $appName, $key); + public function getUserValue($userId, $appName, $key, $default = ''); } diff --git a/lib/public/icontainer.php b/lib/public/icontainer.php index d43c1c90f11dbca405f259a442a3d829cfbae509..eaffa5d5a0627f17e47f7103f783ed8ce21325df 100644 --- a/lib/public/icontainer.php +++ b/lib/public/icontainer.php @@ -20,6 +20,14 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * Container interface + * + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; /** @@ -56,7 +64,7 @@ interface IContainer { * In case the parameter is false the service will be recreated on every call. * * @param string $name - * @param callable $closure + * @param \Closure $closure * @param bool $shared * @return void */ diff --git a/lib/public/idbconnection.php b/lib/public/idbconnection.php index c741a0f061ac19d49614c1bd547759e1e366ba87..656b5e7e5b299723c76f6737f3a1a262d09509a5 100644 --- a/lib/public/idbconnection.php +++ b/lib/public/idbconnection.php @@ -1,12 +1,33 @@ - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - * + * ownCloud + * + * @author Bart Visscher + * @copyright 2013 Bart Visscher bartv@thisnet.nl + * + * 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 . + * */ +/** + * Public interface of ownCloud for apps to use. + * DBConnection interface + * + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; /** @@ -24,15 +45,15 @@ interface IDBConnection { /** * Used to get the id of the just inserted element - * @param string $tableName the name of the table where we inserted the item + * @param string $table the name of the table where we inserted the item * @return int the id of the inserted element */ public function lastInsertId($table = null); /** - * @brief Insert a row if a matching row doesn't exists. - * @param $table string The table name (will replace *PREFIX*) to perform the replace on. - * @param $input array + * Insert a row if a matching row doesn't exists. + * @param string The table name (will replace *PREFIX*) to perform the replace on. + * @param array * * The input array if in the form: * @@ -49,25 +70,25 @@ interface IDBConnection { public function insertIfNotExist($table, $input); /** - * @brief Start a transaction + * Start a transaction * @return bool TRUE on success or FALSE on failure */ public function beginTransaction(); /** - * @brief Commit the database changes done during a transaction that is in progress + * Commit the database changes done during a transaction that is in progress * @return bool TRUE on success or FALSE on failure */ public function commit(); /** - * @brief Rollback the database changes done during a transaction that is in progress + * Rollback the database changes done during a transaction that is in progress * @return bool TRUE on success or FALSE on failure */ public function rollBack(); /** - * returns the error code and message as a string for logging + * Gets the error code and message as a string for logging * @return string */ public function getError(); diff --git a/lib/public/ihelper.php b/lib/public/ihelper.php new file mode 100644 index 0000000000000000000000000000000000000000..c0723b8edc7c2aeb77b8da910b3fb12cd4f6019c --- /dev/null +++ b/lib/public/ihelper.php @@ -0,0 +1,44 @@ +. + * + */ + +/** + * Public interface of ownCloud for apps to use. + * Helper interface + * + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes +namespace OCP; + +/** + * Functions that don't have any specific interface to place + */ +interface IHelper { + /** + * Gets the content of an URL by using CURL or a fallback if it is not + * installed + * @param string $url the url that should be fetched + * @return string the content of the webpage + */ + public function getUrlContent($url); +} diff --git a/lib/public/il10n.php b/lib/public/il10n.php new file mode 100644 index 0000000000000000000000000000000000000000..817b299b0b76f6c6b3896e206ef42dce6c7fd4a4 --- /dev/null +++ b/lib/public/il10n.php @@ -0,0 +1,75 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + * + */ + +/** + * Public interface of ownCloud for apps to use. + * L10n interface + * + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes +namespace OCP; + +/** + * TODO: Description + */ +interface IL10N { + /** + * Translating + * @param $text String The text we need a translation for + * @param array $parameters default:array() Parameters for sprintf + * @return \OC_L10N_String|string Translation or the same text + * + * Returns the translation. If no translation is found, $text will be + * returned. + */ + public function t($text, $parameters = array()); + + /** + * Translating + * @param $text_singular String the string to translate for exactly one object + * @param $text_plural String the string to translate for n objects + * @param $count Integer Number of objects + * @param array $parameters default:array() Parameters for sprintf + * @return \OC_L10N_String|string Translation or the same text + * + * Returns the translation. If no translation is found, $text will be + * returned. %n will be replaced with the number of objects. + * + * The correct plural is determined by the plural_forms-function + * provided by the po file. + * + */ + public function n($text_singular, $text_plural, $count, $parameters = array()); + + /** + * Localization + * @param $type Type of localization + * @param $params parameters for this localization + * @return String or false + * + * Returns the localized data. + * + * Implemented types: + * - date + * - Creates a date + * - l10n-field: date + * - params: timestamp (int/string) + * - datetime + * - Creates date and time + * - l10n-field: datetime + * - params: timestamp (int/string) + * - time + * - Creates a time + * - l10n-field: time + * - params: timestamp (int/string) + */ + public function l($type, $data); +} diff --git a/lib/public/image.php b/lib/public/image.php index c6dd9a113ab81a50665ec327d69b81e6d3e4df2d..a9e2bfa724e46e839ef8d1f064f8bea49371c8c5 100644 --- a/lib/public/image.php +++ b/lib/public/image.php @@ -1,25 +1,33 @@ -* -* 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 . -* -*/ + * ownCloud + * + * @author Bart Visscher + * @copyright 2013 Bart Visscher + * + * 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 . + * + */ + +/** + * Public interface of ownCloud for apps to use. + * Image class + * + */ +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; /** diff --git a/lib/public/inavigationmanager.php b/lib/public/inavigationmanager.php index f89e790c1d0f6bbf70f8cf51db8a12c194781a83..73e85d0376181bbce81e13877587307f886b8f6d 100644 --- a/lib/public/inavigationmanager.php +++ b/lib/public/inavigationmanager.php @@ -1,12 +1,33 @@ - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - * + * ownCloud + * + * @author Bart Visscher + * @copyright 2013 Bart Visscher bartv@thisnet.nl + * + * 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 . + * */ +/** + * Public interface of ownCloud for apps to use. + * Navigation manager interface + * + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; /** diff --git a/lib/public/ipreview.php b/lib/public/ipreview.php index b01e7f5b539918f7cee5549af7233080511daabe..f74472ad368e9980d3e1f323ca44ae7c3fa4bdce 100644 --- a/lib/public/ipreview.php +++ b/lib/public/ipreview.php @@ -1,11 +1,36 @@ . + * */ + +/** + * Public interface of ownCloud for apps to use. + * Preview interface + * + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; /** @@ -15,7 +40,7 @@ interface IPreview { /** - * @brief return a preview of a file + * Return a preview of a file * @param string $file The path to the file where you want a thumbnail from * @param int $maxX The maximum X size of the thumbnail. It can be smaller depending on the shape of the image * @param int $maxY The maximum Y size of the thumbnail. It can be smaller depending on the shape of the image @@ -26,7 +51,7 @@ interface IPreview /** - * @brief returns true if the passed mime type is supported + * Returns true if the passed mime type is supported * @param string $mimeType * @return boolean */ diff --git a/lib/public/irequest.php b/lib/public/irequest.php index 9f335b06f2ac85093f6ff92f6749d8dbd48d2129..ca23e12b7f5fc200be68b8e0105a45d5ec99f15f 100644 --- a/lib/public/irequest.php +++ b/lib/public/irequest.php @@ -20,8 +20,38 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * Request interface + * + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; +/** + * This interface provides an immutable object with with accessors to + * request variables and headers. + * + * Access request variables by method and name. + * + * Examples: + * + * $request->post['myvar']; // Only look for POST variables + * $request->myvar; or $request->{'myvar'}; or $request->{$myvar} + * Looks in the combined GET, POST and urlParams array. + * + * If you access e.g. ->post but the current HTTP request method + * is GET a \LogicException will be thrown. + * + * NOTE: + * - When accessing ->put a stream resource is returned and the accessor + * will return false on subsequent access to ->put or ->patch. + * - When accessing ->patch and the Content-Type is either application/json + * or application/x-www-form-urlencoded (most cases) it will act like ->get + * and ->post and return an array. Otherwise the raw data will be returned. + */ interface IRequest { @@ -86,11 +116,8 @@ interface IRequest { /** - * Returns the request body content. - * - * @param Boolean $asResource If true, a resource will be returned - * @return string|resource The request body content or a resource to read the body stream. - * @throws \LogicException + * Checks if the CSRF check was correct + * @return bool true if CSRF check passed */ - function getContent($asResource = false); + public function passesCSRFCheck(); } diff --git a/lib/public/iservercontainer.php b/lib/public/iservercontainer.php index f4045faefeff98ed52343d0b63b86a02b055b473..b958d2d03f40d26471840f7ab0fbe7be81d66a7e 100644 --- a/lib/public/iservercontainer.php +++ b/lib/public/iservercontainer.php @@ -20,6 +20,14 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * Server container interface + * + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; @@ -92,15 +100,40 @@ interface IServerContainer { function getUserSession(); /** + * Returns the navigation manager + * * @return \OCP\INavigationManager */ function getNavigationManager(); /** + * Returns the config manager + * * @return \OCP\IConfig */ function getConfig(); + /** + * get an L10N instance + * @param $app string appid + * @return \OCP\IL10N + */ + function getL10N($app); + + /** + * Returns the URL generator + * + * @return \OCP\IURLGenerator + */ + function getURLGenerator(); + + /** + * Returns the Helper + * + * @return \OCP\IHelper + */ + function getHelper(); + /** * Returns an ICache instance * @@ -115,6 +148,13 @@ interface IServerContainer { */ function getSession(); + /** + * Returns the activity manager + * + * @return \OCP\Activity\IManager + */ + function getActivityManager(); + /** * Returns the current session * @@ -122,4 +162,11 @@ interface IServerContainer { */ function getDatabaseConnection(); + /** + * Returns an avatar manager, used for avatar functionality + * + * @return \OCP\IAvatarManager + */ + function getAvatarManager(); + } diff --git a/lib/public/isession.php b/lib/public/isession.php index 0a77b0c823b042cef5d840bc66723bcf4adc2bea..20da712cda3079426526a9de8edc6faf66137269 100644 --- a/lib/public/isession.php +++ b/lib/public/isession.php @@ -1,13 +1,35 @@ . + * + */ + +/** + * Public interface of ownCloud for apps to use. + * Session interface + * */ +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; /** diff --git a/lib/public/itagmanager.php b/lib/public/itagmanager.php index 07e1d12fc0f53ee132d3b546d89534b72e7d0743..40487de42b4aa28b865490e15095a159299c8d1b 100644 --- a/lib/public/itagmanager.php +++ b/lib/public/itagmanager.php @@ -1,24 +1,34 @@ -* -* 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 . -* -*/ + * ownCloud + * + * @author Thomas Tanghus + * @copyright 2013 Thomas Tanghus + * + * 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 . + * + */ + +/** + * Public interface of ownCloud for apps to use. + * Tag manager interface + * + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes +namespace OCP; /** * Factory class creating instances of \OCP\ITags @@ -30,9 +40,6 @@ * are entered in. If a user already has a tag 'family' for a type, and * tries to add a tag named 'Family' it will be silently ignored. */ - -namespace OCP; - interface ITagManager { /** diff --git a/lib/public/itags.php b/lib/public/itags.php index 5b1ebd189da25e4fb11ea168eb7a614a9930f5fd..ea62fb38ecb026e1530906d64ab8902ece815761 100644 --- a/lib/public/itags.php +++ b/lib/public/itags.php @@ -1,25 +1,33 @@ -* -* 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 . -* -*/ + * ownCloud + * + * @author Thomas Tanghus + * @copyright 2013 Thomas Tanghus + * + * 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 . + * + */ + +/** + * Public interface of ownCloud for apps to use. + * Tags interface + * + */ +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; // FIXME: Where should I put this? Or should it be implemented as a Listener? diff --git a/lib/public/iurlgenerator.php b/lib/public/iurlgenerator.php new file mode 100644 index 0000000000000000000000000000000000000000..afdf1b6f299af879769faa39c64fe0a7e62ec4c9 --- /dev/null +++ b/lib/public/iurlgenerator.php @@ -0,0 +1,68 @@ +. + * + */ + +/** + * Public interface of ownCloud for apps to use. + * URL generator interface + * + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes +namespace OCP; + +/** + * Class to generate URLs + */ +interface IURLGenerator { + /** + * Returns the URL for a route + * @param string $routeName the name of the route + * @param array $arguments an array with arguments which will be filled into the url + * @return string the url + */ + public function linkToRoute($routeName, $arguments = array()); + + /** + * Returns an URL for an image or file + * @param string $appName the name of the app + * @param string $file the name of the file + * @return string the url + */ + public function linkTo($appName, $file); + + /** + * Returns the link to an image, like linkTo but only with prepending img/ + * @param string $appName the name of the app + * @param string $file the name of the file + * @return string the url + */ + public function imagePath($appName, $file); + + + /** + * Makes an URL absolute + * @param string $url the url in the owncloud host + * @return string the absolute version of the url + */ + public function getAbsoluteURL($url); +} diff --git a/lib/public/iusersession.php b/lib/public/iusersession.php index 5dc1ecf71e647b14dba6676f5f6d59d2853e2687..131b326ab90041fc76db1aeffa85ff21523d84cf 100644 --- a/lib/public/iusersession.php +++ b/lib/public/iusersession.php @@ -1,12 +1,33 @@ - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - * + * ownCloud + * + * @author Bart Visscher + * @copyright 2013 Bart Visscher bartv@thisnet.nl + * + * 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 . + * */ +/** + * Public interface of ownCloud for apps to use. + * User session interface + * + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; /** @@ -22,7 +43,7 @@ interface IUserSession { public function login($user, $password); /** - * @brief Logs the user out including all the session data + * Logs the user out including all the session data * Logout, destroys session */ public function logout(); diff --git a/lib/public/json.php b/lib/public/json.php index 2186dd8ee49bb5221184a34bade66594e1930ce6..cd5d233ef90d114169d00320128946afe1887278 100644 --- a/lib/public/json.php +++ b/lib/public/json.php @@ -1,24 +1,24 @@ . -* -*/ + * ownCloud + * + * @author Frank Karlitschek + * @copyright 2012 Frank Karlitschek frank@owncloud.org + * + * 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 . + * + */ /** * Public interface of ownCloud for apps to use. @@ -35,7 +35,7 @@ namespace OCP; */ class JSON { /** - * @brief Encode and print $data in JSON format + * Encode and print $data in JSON format * @param array $data The data to use * @param string $setContentType the optional content type * @return string json formatted string. @@ -123,7 +123,7 @@ class JSON { } /** - * @brief set Content-Type header to jsonrequest + * Set Content-Type header to jsonrequest * @param array $type The contwnt type header * @return string json formatted string. */ @@ -167,6 +167,22 @@ class JSON { * @return string json formatted string if not admin user. */ public static function checkAdminUser() { - return(\OC_JSON::checkAdminUser()); + \OC_JSON::checkAdminUser(); + } + + /** + * Encode JSON + * @param array $data + */ + public static function encode($data) { + return(\OC_JSON::encode($data)); + } + + /** + * Check is a given user exists - send json error msg if not + * @param string $user + */ + public static function checkUserExists($user) { + \OC_JSON::checkUserExists($user); } } diff --git a/lib/public/response.php b/lib/public/response.php index de0c3f253471c83a49de84b0bab357f80d15272e..24d3c81d62807c8104be70e70de7a0bc04049f24 100644 --- a/lib/public/response.php +++ b/lib/public/response.php @@ -1,24 +1,24 @@ . -* -*/ + * ownCloud + * + * @author Frank Karlitschek + * @copyright 2012 Frank Karlitschek frank@owncloud.org + * + * 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 . + * + */ /** * Public interface of ownCloud for apps to use. @@ -35,64 +35,73 @@ namespace OCP; */ class Response { /** - * @brief Enable response caching by sending correct HTTP headers - * @param int $cache_time time to cache the response - * >0 cache time in seconds - * 0 and <0 enable default browser caching - * null cache indefinitly - */ + * Enable response caching by sending correct HTTP headers + * @param int $cache_time time to cache the response + * >0 cache time in seconds + * 0 and <0 enable default browser caching + * null cache indefinitly + */ static public function enableCaching( $cache_time = null ) { \OC_Response::enableCaching( $cache_time ); } /** - * Checks and set Last-Modified header, when the request matches sends a - * 'not modified' response - * @param string $lastModified time when the reponse was last modified - */ + * Checks and set Last-Modified header, when the request matches sends a + * 'not modified' response + * @param string $lastModified time when the reponse was last modified + */ static public function setLastModifiedHeader( $lastModified ) { \OC_Response::setLastModifiedHeader( $lastModified ); } /** - * @brief disable browser caching - * @see enableCaching with cache_time = 0 - */ + * Sets the content disposition header (with possible workarounds) + * @param string $filename file name + * @param string $type disposition type, either 'attachment' or 'inline' + */ + static public function setContentDispositionHeader( $filename, $type = 'attachment' ) { + \OC_Response::setContentDispositionHeader( $filename, $type ); + } + + /** + * Disable browser caching + * @see enableCaching with cache_time = 0 + */ static public function disableCaching() { \OC_Response::disableCaching(); } /** - * Checks and set ETag header, when the request matches sends a - * 'not modified' response - * @param string $etag token to use for modification check - */ + * Checks and set ETag header, when the request matches sends a + * 'not modified' response + * @param string $etag token to use for modification check + */ static public function setETagHeader( $etag ) { \OC_Response::setETagHeader( $etag ); } /** - * @brief Send file as response, checking and setting caching headers - * @param string $filepath of file to send - */ + * Send file as response, checking and setting caching headers + * @param string $filepath of file to send + */ static public function sendFile( $filepath ) { \OC_Response::sendFile( $filepath ); } /** - * @brief Set response expire time - * @param string|\DateTime $expires date-time when the response expires - * string for DateInterval from now - * DateTime object when to expire response - */ + * Set response expire time + * @param string|\DateTime $expires date-time when the response expires + * string for DateInterval from now + * DateTime object when to expire response + */ static public function setExpiresHeader( $expires ) { \OC_Response::setExpiresHeader( $expires ); } /** - * @brief Send redirect response - * @param string $location to redirect to - */ + * Send redirect response + * @param string $location to redirect to + */ static public function redirect( $location ) { \OC_Response::redirect( $location ); } diff --git a/lib/public/share.php b/lib/public/share.php index 6c5783f1179014c8897514a5df4c3008d2d25171..f832d04a70f6292dc28268258983b4d2d27c9777 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -1,32 +1,41 @@ . -*/ + * ownCloud + * + * @author Michael Gapczynski + * @copyright 2012 Michael Gapczynski mtgap@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 . + */ + +/** + * Public interface of ownCloud for apps to use. + * Share Class + * + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; /** -* 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 -*/ + * 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 { const SHARE_TYPE_USER = 0; @@ -37,19 +46,19 @@ class Share { 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 - */ + * 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; @@ -64,13 +73,13 @@ class Share { private static $isResharingAllowed; /** - * @brief 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 - */ + * 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])) { @@ -94,12 +103,11 @@ class Share { } /** - * @brief Check if the Share API is enabled - * @return Returns true if enabled or false - * - * The Share API is enabled by default if not configured - * - */ + * 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; @@ -108,9 +116,10 @@ class Share { } /** - * @brief Prepare a path to be passed to DB as file_target - * @return string Prepared path - */ + * 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 @@ -125,14 +134,14 @@ class Share { } /** - * @brief 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' - */ + * 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(); @@ -155,13 +164,13 @@ class Share { while ($source !== -1) { - // Fetch all shares of this file path from DB + // Fetch all shares with another user $query = \OC_DB::prepare( 'SELECT `share_with` FROM `*PREFIX*share` WHERE - `item_source` = ? AND `share_type` = ?' + `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' ); $result = $query->execute(array($source, self::SHARE_TYPE_USER)); @@ -180,7 +189,7 @@ class Share { FROM `*PREFIX*share` WHERE - `item_source` = ? AND `share_type` = ?' + `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' ); $result = $query->execute(array($source, self::SHARE_TYPE_GROUP)); @@ -201,7 +210,7 @@ class Share { FROM `*PREFIX*share` WHERE - `item_source` = ? AND `share_type` = ?' + `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' ); $result = $query->execute(array($source, self::SHARE_TYPE_LINK)); @@ -232,12 +241,14 @@ class Share { } /** - * @brief 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 int Number of items to return (optional) Returns all by default - * @return Return depends on format - */ + * 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, @@ -245,12 +256,14 @@ class Share { } /** - * @brief Get the item of item type shared with the current user - * @param string Item type - * @param string Item target - * @param int Format (optional) Format type must be defined by the backend - * @return Return depends on format - */ + * 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, @@ -258,12 +271,63 @@ class Share { } /** - * @brief 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 - * @return Return depends on format - */ + * 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, @@ -271,44 +335,46 @@ class Share { } /** - * @brief 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 - */ + * 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); } /** - * @brief Get the item shared by a token - * @param string token - * @return Item + * 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) { + 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; + } - if (!empty($row['expiration'])) { - $now = new \DateTime(); - $expirationDate = new \DateTime($row['expiration'], new \DateTimeZone('UTC')); - if ($now > $expirationDate) { - self::delete($row['id']); - return false; - } + // password protected shares need to be authenticated + if ($checkPasswordProtection && !\OCP\Share::checkPasswordProtectedShare($row)) { + return false; } return $row; } /** - * @brief resolves reshares down to the last real share + * resolves reshares down to the last real share * @param $linkItem * @return $fileOwner */ @@ -331,12 +397,14 @@ class Share { /** - * @brief 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 int Number of items to return (optional) Returns all by default - * @return Return depends on format - */ + * 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, @@ -344,12 +412,14 @@ class Share { } /** - * @brief 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 - * @return Return depends on format - */ + * 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, @@ -357,16 +427,18 @@ class Share { } /** - * Get all users an item is shared with - * @param string Item type - * @param string Item source - * @param string Owner - * @param bool Include collections - * @return Return array of users - */ - public static function getUsersItemShared($itemType, $itemSource, $uidOwner, $includeCollections = false) { + * 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); + $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) { @@ -380,33 +452,45 @@ class Share { } /** - * @brief Share an item with a user, group, or via 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 - * @param int CRUDS 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) { + * 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 '.$itemSource.' failed, because the user '.$shareWith.' is the item owner'; + $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 '.$itemSource.' failed, because the user '.$shareWith.' does not exist'; + $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 '.$itemSource.' failed, because the user ' + $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); @@ -419,19 +503,19 @@ class Share { // 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 '.$itemSource.' failed, because this item is already shared with '.$shareWith; + $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 '.$itemSource.' failed, because the group '.$shareWith.' does not exist'; + $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 '.$itemSource.' failed, because ' + $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); @@ -444,7 +528,7 @@ class Share { // 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 '.$itemSource.' failed, because this item is already shared with '.$shareWith; + $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); } @@ -486,14 +570,14 @@ class Share { $token = \OC_Util::generateRandomBytes(self::TOKEN_LENGTH); } $result = self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, - null, $token); + null, $token, $itemSourceName); if ($result) { return $token; } else { return false; } } - $message = 'Sharing '.$itemSource.' failed, because sharing with links is not allowed'; + $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; @@ -552,79 +636,67 @@ class Share { // return false; // } else { // Put the item into the database - return self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions); + return self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, null, null, $itemSourceName); // } } /** - * @brief 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 - */ + * 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) { if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), self::FORMAT_NONE, null, 1)) { - // Pass all the vars we have for now, they may be useful - \OC_Hook::emit('OCP\Share', 'pre_unshare', array( - 'itemType' => $itemType, - 'itemSource' => $itemSource, - 'fileSource' => $item['file_source'], - 'shareType' => $shareType, - 'shareWith' => $shareWith, - 'itemParent' => $item['parent'], - )); - self::delete($item['id']); - \OC_Hook::emit('OCP\Share', 'post_unshare', array( - 'itemType' => $itemType, - 'itemSource' => $itemSource, - 'shareType' => $shareType, - 'shareWith' => $shareWith, - 'itemParent' => $item['parent'], - )); + self::unshareItem($item); return true; } return false; } /** - * @brief 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 - */ + * 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) { - if ($shares = self::getItemShared($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 - \OC_Hook::emit('OCP\Share', 'pre_unshareAll', array( + $hookParams = array( 'itemType' => $itemType, 'itemSource' => $itemSource, - 'shares' => $shares - )); + 'shares' => $shares, + ); + \OC_Hook::emit('OCP\Share', 'pre_unshareAll', $hookParams); foreach ($shares as $share) { - self::delete($share['id']); + self::unshareItem($share); } - \OC_Hook::emit('OCP\Share', 'post_unshareAll', array( - 'itemType' => $itemType, - 'itemSource' => $itemSource, - 'shares' => $shares - )); + \OC_Hook::emit('OCP\Share', 'post_unshareAll', $hookParams); return true; } return false; } /** - * @brief 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 - * - */ + * 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) { if ($item = self::getItemSharedWith($itemType, $itemTarget)) { if ((int)$item['share_type'] === self::SHARE_TYPE_GROUP) { @@ -653,16 +725,37 @@ class Share { } 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); + } + } /** - * @brief 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 - */ + * 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)) { @@ -738,6 +831,13 @@ class Share { throw new \Exception($message); } + /** + * Set expiration date for a share + * @param string $itemType + * @param string $itemSource + * @param string $date expiration date + * @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)) { @@ -746,11 +846,12 @@ class Share { $date = null; } else { $date = new \DateTime($date); - $date = date('Y-m-d H:i', $date->format('U') - $date->getOffset()); } $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `expiration` = ? WHERE `id` = ?'); + $query->bindValue(1, $date, 'datetime'); foreach ($items as $item) { - $query->execute(array($date, $item['id'])); + $query->bindValue(2, (int) $item['id']); + $query->execute(); } return true; } @@ -759,10 +860,50 @@ class Share { } /** - * @brief Get the backend class for the specified item type - * @param string $itemType - * @return Share_Backend - */ + * 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); + } + + /** + * Get the backend class for the specified item type + * @param string $itemType + * @return Share_Backend + */ public static function getBackend($itemType) { if (isset(self::$backends[$itemType])) { return self::$backends[$itemType]; @@ -788,12 +929,11 @@ class Share { } /** - * @brief Check if resharing is allowed - * @return Returns true if allowed or false - * - * Resharing is allowed by default if not configured - * - */ + * 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') { @@ -806,10 +946,10 @@ class Share { } /** - * @brief Get a list of collection item types for the specified item type - * @param string Item type - * @return array - */ + * 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) { @@ -830,24 +970,26 @@ class Share { } /** - * @brief 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) - * @return mixed - * - * See public functions getItem(s)... for parameter usage - * - */ + * 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) { + $includeCollections = false, $itemShareWithBySource = false, $checkExpireDate = true) { if (!self::isEnabled()) { if ($limit == 1 || (isset($uidOwner) && isset($item))) { return false; @@ -889,6 +1031,10 @@ class Share { $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)) { @@ -982,20 +1128,20 @@ class Share { // TODO Optimize selects if ($format == self::FORMAT_STATUSES) { if ($itemType == 'file' || $itemType == 'folder') { - $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`,' - .' `share_type`, `file_source`, `path`, `expiration`, `storage`'; + $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`, `expiration`'; + $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`, `*PREFIX*share`.`parent`,' + $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`,' .' `share_type`, `share_with`, `file_source`, `path`, `permissions`, `stime`,' - .' `expiration`, `token`, `storage`'; + .' `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`'; + .' `stime`, `file_source`, `expiration`, `token`, `mail_send`, `uid_owner`'; } } else { if ($fileDependent) { @@ -1003,14 +1149,14 @@ class Share { && $format == \OC_Share_Backend_File::FORMAT_GET_FOLDER_CONTENTS || $format == \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT ) { - $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `uid_owner`, ' + $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`, `encrypted`, `etag`'; + .'`name`, `mtime`, `mimetype`, `mimepart`, `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`'; + `file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`, `token`, `storage`, `mail_send`'; } } else { $select = '*'; @@ -1109,10 +1255,8 @@ class Share { } } } - if (isset($row['expiration'])) { - $time = new \DateTime(); - if ($row['expiration'] < date('Y-m-d H:i', $time->format('U') - $time->getOffset())) { - self::delete($row['id']); + if($checkExpireDate) { + if (self::expireItem($row)) { continue; } } @@ -1235,30 +1379,35 @@ class Share { } /** - * @brief 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 int CRUDS permissions - * @param bool|array Parent folder target (optional) - * @return bool Returns true on success or false on failure - */ + * 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) { + $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 '.$itemSource.' failed, because the user '.$shareWith.' is the original sharer'; + $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 '.$itemSource + $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); @@ -1272,7 +1421,7 @@ class Share { $filePath = $checkReshare['file_target']; } } else { - $message = 'Sharing '.$itemSource.' failed, because resharing is not allowed'; + $message = 'Sharing '.$itemSourceName.' failed, because resharing is not allowed'; \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); throw new \Exception($message); } @@ -1400,6 +1549,7 @@ class Share { 'id' => $parent, 'token' => $token )); + if ($parentFolder === true) { // Return parent folders to preserve file target paths for potential children return $parentFolders; @@ -1471,15 +1621,16 @@ class Share { } /** - * @brief 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 The suggested target originating from a reshare (optional) - * @param int The id of the parent group share (optional) - * @return string Item target - */ + * 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 + */ private static function generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $suggestedTarget = null, $groupParent = null) { $backend = self::getBackend($itemType); @@ -1587,11 +1738,11 @@ class Share { } /** - * @brief 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) - */ + * 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); @@ -1647,9 +1798,25 @@ class Share { } /** - * Hook Listeners - */ + * 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`' @@ -1663,6 +1830,11 @@ class Share { } } + /** + * 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` = ?'); @@ -1693,6 +1865,10 @@ class 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`' @@ -1709,6 +1885,10 @@ class Share { } } + /** + * 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'])); @@ -1717,90 +1897,117 @@ class Share { } } + /** + * 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; + } } /** -* Interface that apps must implement to share content. -*/ + * Interface that apps must implement to share content. + */ interface Share_Backend { /** - * @brief Get the source of the item to be stored in the database - * @param string Item source - * @param string Owner of the item - * @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 - * - * The formatItems() function will translate the source returned back into the item - */ + * Get the source of the item to be stored in the database + * @param string Item source + * @param string Owner of the item + * @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 + * + * The formatItems() function will translate the source returned back into the item + */ public function isValidSource($itemSource, $uidOwner); /** - * @brief Get a unique name of the item for the specified user - * @param string Item source - * @param string|false User the item is being shared with - * @param array|null List of similar item names already existing as shared items - * @return string Target name - * - * This function needs to verify that the user does not already have an item with this name. - * If it does generate a new name e.g. name_# - */ + * Get a unique name of the item for the specified user + * @param string Item source + * @param string|false User the item is being shared with + * @param array|null List of similar item names already existing as shared items + * @return string Target name + * + * This function needs to verify that the user does not already have an item with this name. + * If it does generate a new name e.g. name_# + */ public function generateTarget($itemSource, $shareWith, $exclude = null); /** - * @brief Converts the shared item sources back into the item in the specified format - * @param array Shared items - * @param int Format - * @return ? - * - * The items array is a 3-dimensional array with the item_source as the - * first key and the share id as the second key to an array with the share - * info. - * - * The key/value pairs included in the share info depend on the function originally called: - * If called by getItem(s)Shared: id, item_type, item, item_source, - * share_type, share_with, permissions, stime, file_source - * - * If called by getItem(s)SharedWith: id, item_type, item, item_source, - * item_target, share_type, share_with, permissions, stime, file_source, - * file_target - * - * This function allows the backend to control the output of shared items with custom formats. - * It is only called through calls to the public getItem(s)Shared(With) functions. - */ + * Converts the shared item sources back into the item in the specified format + * @param array Shared items + * @param int Format + * @return TODO + * + * The items array is a 3-dimensional array with the item_source as the + * first key and the share id as the second key to an array with the share + * info. + * + * The key/value pairs included in the share info depend on the function originally called: + * If called by getItem(s)Shared: id, item_type, item, item_source, + * share_type, share_with, permissions, stime, file_source + * + * If called by getItem(s)SharedWith: id, item_type, item, item_source, + * item_target, share_type, share_with, permissions, stime, file_source, + * file_target + * + * This function allows the backend to control the output of shared items with custom formats. + * It is only called through calls to the public getItem(s)Shared(With) functions. + */ public function formatItems($items, $format, $parameters = null); } /** -* Interface for share backends that share content that is dependent on files. -* Extends the Share_Backend interface. -*/ + * Interface for share backends that share content that is dependent on files. + * Extends the Share_Backend interface. + */ interface Share_Backend_File_Dependent extends Share_Backend { /** - * @brief Get the file path of the item - * @param - * @param - * @return - */ + * Get the file path of the item + * @param string Item source + * @param string User that is the owner of shared item + */ public function getFilePath($itemSource, $uidOwner); } /** -* Interface for collections of of items implemented by another share backend. -* Extends the Share_Backend interface. -*/ + * Interface for collections of of items implemented by another share backend. + * Extends the Share_Backend interface. + */ interface Share_Backend_Collection extends Share_Backend { /** - * @brief Get the sources of the children of the item - * @param string Item source - * @return array Returns an array of children each inside an array with the keys: source, target, and file_path if applicable - */ + * Get the sources of the children of the item + * @param string Item source + * @return array Returns an array of children each inside an array with the keys: source, target, and file_path if applicable + */ public function getChildren($itemSource); } diff --git a/lib/public/template.php b/lib/public/template.php index 3b1a4ed4906763fae906314ec3fcc436c86e4771..320b7c6393fd66be4e142e77a443fc7b092f8be0 100644 --- a/lib/public/template.php +++ b/lib/public/template.php @@ -1,24 +1,24 @@ . -* -*/ + * ownCloud + * + * @author Frank Karlitschek + * @copyright 2012 Frank Karlitschek frank@owncloud.org + * + * 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 . + * + */ /** * Public interface of ownCloud for apps to use. @@ -32,12 +32,12 @@ namespace OCP; /** - * @brief make OC_Helper::imagePath available as a simple function - * @param $app app - * @param $image image - * @returns link to the image + * Make OC_Helper::imagePath available as a simple function + * @param string app + * @param string image + * @return link to the image * - * For further information have a look at OC_Helper::imagePath + * @see OC_Helper::imagePath */ function image_path( $app, $image ) { return(\image_path( $app, $image )); @@ -45,40 +45,39 @@ function image_path( $app, $image ) { /** - * @brief make OC_Helper::mimetypeIcon available as a simple function - * Returns the path to the image of this file type. - * @param $mimetype mimetype - * @returns link to the image + * Make OC_Helper::mimetypeIcon available as a simple function + * @param string mimetype + * @return path to the image of this file type. */ function mimetype_icon( $mimetype ) { return(\mimetype_icon( $mimetype )); } /** - * @brief make preview_icon available as a simple function - * Returns the path to the preview of the image. - * @param $path path of file - * @returns link to the preview + * Make preview_icon available as a simple function + * @param string path of file + * @return path to the preview of the image */ function preview_icon( $path ) { return(\preview_icon( $path )); } /** - * @brief make publicpreview_icon available as a simple function + * Make publicpreview_icon available as a simple function * Returns the path to the preview of the image. - * @param $path path of file - * @returns link to the preview + * @param string path of file + * @param string token + * @return link to the preview */ function publicPreview_icon ( $path, $token ) { return(\publicPreview_icon( $path, $token )); } /** - * @brief make OC_Helper::humanFileSize available as a simple function - * Makes 2048 to 2 kB. - * @param $bytes size in bytes - * @returns size as string + * Make OC_Helper::humanFileSize available as a simple function + * Example: 2048 to 2 kB. + * @param int size in bytes + * @return size as string */ function human_file_size( $bytes ) { return(\human_file_size( $bytes )); @@ -86,20 +85,21 @@ function human_file_size( $bytes ) { /** - * @brief Return the relative date in relation to today. Returns something like "last hour" or "two month ago" - * @param $timestamp unix timestamp - * @returns human readable interpretation of the timestamp + * Return the relative date in relation to today. Returns something like "last hour" or "two month ago" + * @param int unix timestamp + * @param boolean date only + * @return human readable interpretation of the timestamp */ -function relative_modified_date($timestamp) { - return(\relative_modified_date($timestamp)); +function relative_modified_date( $timestamp, $dateOnly = false ) { + return(\relative_modified_date($timestamp, null, $dateOnly)); } /** - * @brief DEPRECATED Return a human readable outout for a file size. + * Return a human readable outout for a file size. * @deprecated human_file_size() instead - * @param $byte size of a file in byte - * @returns human readable interpretation of a file size + * @param integer size of a file in byte + * @return human readable interpretation of a file size */ function simple_file_size($bytes) { return(\human_file_size($bytes)); @@ -107,11 +107,11 @@ function simple_file_size($bytes) { /** - * @brief Generate html code for an options block. + * Generate html code for an options block. * @param $options the options * @param $selected which one is selected? - * @param $params the parameters - * @returns html options + * @param array the parameters + * @return html options */ function html_select_options($options, $selected, $params=array()) { return(\html_select_options($options, $selected, $params)); diff --git a/lib/public/user.php b/lib/public/user.php index 576a64d70489d0f5deb2f573d645a316e3968a8c..acc0e3b737b7461961378d3578e6c79792faab45 100644 --- a/lib/public/user.php +++ b/lib/public/user.php @@ -1,28 +1,28 @@ . -* -*/ + * ownCloud + * + * @author Frank Karlitschek + * @copyright 2012 Frank Karlitschek frank@owncloud.org + * + * 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 . + * + */ /** * Public interface of ownCloud for apps to use. - * User Class. + * User Class * */ @@ -36,7 +36,7 @@ namespace OCP; */ class User { /** - * @brief get the user id of the user currently logged in. + * Get the user id of the user currently logged in. * @return string uid or false */ public static function getUser() { @@ -44,45 +44,46 @@ class User { } /** - * @brief Get a list of all users - * @returns array with all uids - * - * Get a list of all users. + * Get a list of all users + * @param string search pattern + * @param int limit + * @param int offset + * @return array with all uids */ - public static function getUsers($search = '', $limit = null, $offset = null) { - return \OC_User::getUsers($search, $limit, $offset); + public static function getUsers( $search = '', $limit = null, $offset = null ) { + return \OC_User::getUsers( $search, $limit, $offset ); } /** - * @brief get the user display name of the user currently logged in. + * Get the user display name of the user currently logged in. + * @param string user id or null for current user * @return string display name */ - public static function getDisplayName($user=null) { - return \OC_User::getDisplayName($user); + public static function getDisplayName( $user = null ) { + return \OC_User::getDisplayName( $user ); } /** - * @brief Get a list of all display names - * @returns array with all display names (value) and the correspondig uids (key) - * * Get a list of all display names and user ids. + * @param string search pattern + * @param int limit + * @param int offset + * @return array with all display names (value) and the correspondig uids (key) */ - public static function getDisplayNames($search = '', $limit = null, $offset = null) { - return \OC_User::getDisplayNames($search, $limit, $offset); + public static function getDisplayNames( $search = '', $limit = null, $offset = null ) { + return \OC_User::getDisplayNames( $search, $limit, $offset ); } /** - * @brief Check if the user is logged in - * @returns true/false - * - * Checks if the user is logged in + * Check if the user is logged in + * @return boolean */ public static function isLoggedIn() { return \OC_User::isLoggedIn(); } /** - * @brief check if a user exists + * Check if a user exists * @param string $uid the username * @param string $excludingBackend (default none) * @return boolean @@ -91,7 +92,7 @@ class User { return \OC_User::userExists( $uid, $excludingBackend ); } /** - * @brief Loggs the user out including all the session data + * Logs the user out including all the session data * Logout, destroys session */ public static function logout() { @@ -99,10 +100,10 @@ class User { } /** - * @brief Check if the password is correct - * @param $uid The username - * @param $password The password - * @returns mixed username on success, false otherwise + * Check if the password is correct + * @param string The username + * @param string The password + * @return mixed username on success, false otherwise * * Check if the password is correct without logging in the user */ diff --git a/lib/public/userinterface.php b/lib/public/userinterface.php index 53d9faf7a5e08e2e75394d07411a988ed49a6029..1f6c2f7292b3d3a55e5542b924fdf6abec19c84b 100644 --- a/lib/public/userinterface.php +++ b/lib/public/userinterface.php @@ -1,31 +1,33 @@ . -* -*/ + * ownCloud + * + * @author Arthur Schiwon + * @copyright 2012 Arthur Schiwon blizzz@owncloud.org + * + * 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 . + * + */ /** * Public interface of ownCloud for apps to use. - * User Class. + * User Interface * */ +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; interface UserInterface extends \OC_User_Interface {} diff --git a/lib/public/util.php b/lib/public/util.php index b33f07b55e64396296d06d6cd41b94bee36fce84..26c5a15cff2fd27c20c7140690c1726b1064be6d 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -1,24 +1,24 @@ . -* -*/ + * ownCloud + * + * @author Frank Karlitschek + * @copyright 2012 Frank Karlitschek frank@owncloud.org + * + * 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 . + * + */ /** * Public interface of ownCloud for apps to use. @@ -42,7 +42,7 @@ class Util { const FATAL=4; /** - * @brief get the current installed version of ownCloud + * get the current installed version of ownCloud * @return array */ public static function getVersion() { @@ -50,7 +50,7 @@ class Util { } /** - * @brief send an email + * send an email * @param string $toaddress * @param string $toname * @param string $subject @@ -58,6 +58,10 @@ class Util { * @param string $fromaddress * @param string $fromname * @param bool $html + * @param string $altbody + * @param string $ccaddress + * @param string $ccname + * @param string $bcc */ public static function sendMail( $toaddress, $toname, $subject, $mailtext, $fromaddress, $fromname, $html = 0, $altbody = '', $ccaddress = '', $ccname = '', $bcc = '') { @@ -67,7 +71,7 @@ class Util { } /** - * @brief write a message in the log + * write a message in the log * @param string $app * @param string $message * @param int $level @@ -78,8 +82,45 @@ class Util { } /** - * @brief get l10n object - * @param string $app + * write exception into the log. Include the stack trace + * if DEBUG mode is enabled + * @param string $app app name + * @param Exception $ex exception to log + */ + public static function logException( $app, \Exception $ex ) { + $class = get_class($ex); + if ($class !== 'Exception') { + $message = $class . ': '; + } + $message .= $ex->getMessage(); + if ($ex->getCode()) { + $message .= ' [' . $ex->getCode() . ']'; + } + \OCP\Util::writeLog($app, 'Exception: ' . $message, \OCP\Util::FATAL); + if (defined('DEBUG') and DEBUG) { + // also log stack trace + $stack = explode("\n", $ex->getTraceAsString()); + // first element is empty + array_shift($stack); + foreach ($stack as $s) { + \OCP\Util::writeLog($app, 'Exception: ' . $s, \OCP\Util::FATAL); + } + + // include cause + while (method_exists($ex, 'getPrevious') && $ex = $ex->getPrevious()) { + $message .= ' - Caused by:' . ' '; + $message .= $ex->getMessage(); + if ($ex->getCode()) { + $message .= '[' . $ex->getCode() . '] '; + } + \OCP\Util::writeLog($app, 'Exception: ' . $message, \OCP\Util::FATAL); + } + } + } + + /** + * get l10n object + * @param string $application * @return OC_L10N */ public static function getL10N( $application ) { @@ -87,24 +128,25 @@ class Util { } /** - * @brief add a css file - * @param string $url + * add a css file + * @param string $application + * @param string $file */ public static function addStyle( $application, $file = null ) { \OC_Util::addStyle( $application, $file ); } /** - * @brief add a javascript file + * add a javascript file * @param string $application - * @param string $file + * @param string $file */ public static function addScript( $application, $file = null ) { \OC_Util::addScript( $application, $file ); } /** - * @brief Add a custom element to the header + * Add a custom element to the header * @param string $tag tag name of the element * @param array $attributes array of attributes for the element * @param string $text the text content for the element @@ -114,7 +156,7 @@ class Util { } /** - * @brief formats a timestamp in the "right" way + * formats a timestamp in the "right" way * @param int $timestamp $timestamp * @param bool $dateOnly option to omit time from the result */ @@ -123,93 +165,78 @@ class Util { } /** - * @brief check if some encrypted files are stored + * check if some encrypted files are stored * @return bool */ public static function encryptedFiles() { return \OC_Util::encryptedFiles(); } - + /** - * @brief Creates an absolute url + * Creates an absolute url to the given app and file. * @param string $app app * @param string $file file * @param array $args array with param=>value, will be appended to the returned url * The value of $args will be urlencoded - * @returns string the url - * - * Returns a absolute url to the given app and file. + * @return string the url */ public static function linkToAbsolute( $app, $file, $args = array() ) { return(\OC_Helper::linkToAbsolute( $app, $file, $args )); } /** - * @brief Creates an absolute url for remote use + * Creates an absolute url for remote use. * @param string $service id - * @returns string the url - * - * Returns a absolute url to the given app and file. + * @return string the url */ public static function linkToRemote( $service ) { return(\OC_Helper::linkToRemote( $service )); } /** - * @brief Creates an absolute url for public use + * Creates an absolute url for public use * @param string $service id - * @returns string the url - * - * Returns a absolute url to the given app and file. + * @return string the url */ public static function linkToPublic($service) { return \OC_Helper::linkToPublic($service); } /** - * @brief Creates an url using a defined route + * Creates an url using a defined route * @param $route * @param array $parameters * @return * @internal param array $args with param=>value, will be appended to the returned url - * @returns the url - * - * Returns a url to the given app and file. + * @return the url */ public static function linkToRoute( $route, $parameters = array() ) { return \OC_Helper::linkToRoute($route, $parameters); } /** - * @brief Creates an url + * Creates an url to the given app and file * @param string $app app * @param string $file file * @param array $args array with param=>value, will be appended to the returned url * The value of $args will be urlencoded - * @returns string the url - * - * Returns a url to the given app and file. + * @return string the url */ public static function linkTo( $app, $file, $args = array() ) { return(\OC_Helper::linkTo( $app, $file, $args )); } /** - * @brief Returns the server host - * @returns string the server host - * - * Returns the server host, even if the website uses one or more - * reverse proxies + * Returns the server host, even if the website uses one or more reverse proxy + * @return string the server host */ public static function getServerHost() { return(\OC_Request::serverHost()); } /** - * @brief returns the server hostname - * @returns string the server hostname - * * Returns the server host name without an eventual port number + * @return string the server hostname */ public static function getServerHostName() { $host_name = self::getServerHost(); @@ -222,17 +249,22 @@ class Util { } /** - * @brief Returns the default email address + * Returns the default email address * @param string $user_part the user part of the address - * @returns string the default email address + * @return string the default email address * * Assembles a default email address (using the server hostname * and the given user part, and returns it * Example: when given lostpassword-noreply as $user_part param, * and is currently accessed via http(s)://example.com/, * it would return 'lostpassword-noreply@example.com' + * + * If the configuration value 'mail_from_address' is set in + * config.php, this value will override the $user_part that + * is passed to this function */ public static function getDefaultEmailAddress($user_part) { + $user_part = \OC_Config::getValue('mail_from_address', $user_part); $host_name = self::getServerHostName(); $host_name = \OC_Config::getValue('mail_domain', $host_name); $defaultEmailAddress = $user_part.'@'.$host_name; @@ -246,66 +278,54 @@ class Util { } /** - * @brief Returns the server protocol - * @returns string the server protocol - * * Returns the server protocol. It respects reverse proxy servers and load balancers + * @return string the server protocol */ public static function getServerProtocol() { return(\OC_Request::serverProtocol()); } /** - * @brief Returns the request uri - * @returns the request uri + * Returns the request uri, even if the website uses one or more reverse proxies * - * Returns the request uri, even if the website uses one or more - * reverse proxies + * @return the request uri */ public static function getRequestUri() { return(\OC_Request::requestUri()); } /** - * @brief Returns the script name - * @returns the script name + * Returns the script name, even if the website uses one or more reverse proxies * - * Returns the script name, even if the website uses one or more - * reverse proxies + * @return the script name */ public static function getScriptName() { return(\OC_Request::scriptName()); } /** - * @brief Creates path to an image + * Creates path to an image * @param string $app app * @param string $image image name - * @returns string the url - * - * Returns the path to the image. + * @return string the url */ public static function imagePath( $app, $image ) { return(\OC_Helper::imagePath( $app, $image )); } /** - * @brief Make a human file size + * Make a human file size (2048 to 2 kB) * @param int $bytes file size in bytes - * @returns string a human readable file size - * - * Makes 2048 to 2 kB. + * @return string a human readable file size */ public static function humanFileSize( $bytes ) { return(\OC_Helper::humanFileSize( $bytes )); } /** - * @brief Make a computer file size + * Make a computer file size (2 kB to 2048) * @param string $str file size in a fancy format - * @returns int a file size in bytes - * - * Makes 2kB to 2048. + * @return int a file size in bytes * * Inspired by: http://www.php.net/manual/en/function.filesize.php#92418 */ @@ -314,12 +334,12 @@ class Util { } /** - * @brief connects a function to a hook + * connects a function to a hook * @param string $signalclass class name of emitter * @param string $signalname name of signal * @param string $slotclass class name of slot * @param string $slotname name of slot - * @returns bool + * @return bool * * This function makes it very easy to connect to use hooks. * @@ -330,13 +350,11 @@ class Util { } /** - * @brief emitts a signal + * Emits a signal. To get data from the slot use references! * @param string $signalclass class name of emitter * @param string $signalname name of signal * @param string $params defautl: array() array with additional data - * @returns bool true if slots exists or false if not - * - * Emits a signal. To get data from the slot use references! + * @return bool true if slots exists or false if not * * TODO: write example */ @@ -361,7 +379,7 @@ class Util { } /** - * @brief Used to sanitize HTML + * Used to sanitize HTML * * This function is used to sanitize HTML and should be applied on any * string or array of strings before displaying it on a web page. @@ -372,78 +390,75 @@ class Util { public static function sanitizeHTML( $value ) { return(\OC_Util::sanitizeHTML($value)); } - + /** - * @brief Public function to encode url parameters + * Public function to encode url parameters * * This function is used to encode path to file before output. * Encoding is done according to RFC 3986 with one exception: - * Character '/' is preserved as is. + * Character '/' is preserved as is. * * @param string $component part of URI to encode - * @return string + * @return string */ public static function encodePath($component) { return(\OC_Util::encodePath($component)); } /** - * @brief Returns an array with all keys from input lowercased or uppercased. Numbered indices are left as is. - * - * @param array $input The array to work on - * @param int $case Either MB_CASE_UPPER or MB_CASE_LOWER (default) - * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8 - * @return array - * - * - */ + * Returns an array with all keys from input lowercased or uppercased. Numbered indices are left as is. + * + * @param array $input The array to work on + * @param int $case Either MB_CASE_UPPER or MB_CASE_LOWER (default) + * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8 + * @return array + */ public static function mb_array_change_key_case($input, $case = MB_CASE_LOWER, $encoding = 'UTF-8') { return(\OC_Helper::mb_array_change_key_case($input, $case, $encoding)); } /** - * @brief replaces a copy of string delimited by the start and (optionally) length parameters with the string given in replacement. - * - * @param string $input The input string. .Opposite to the PHP build-in function does not accept an array. - * @param string $replacement The replacement string. - * @param int $start If start is positive, the replacing will begin at the start'th offset into string. If start is negative, the replacing will begin at the start'th character from the end of string. - * @param int $length Length of the part to be replaced - * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8 - * @return string - * - */ + * replaces a copy of string delimited by the start and (optionally) length parameters with the string given in replacement. + * + * @param string $string The input string. Opposite to the PHP build-in function does not accept an array. + * @param string $replacement The replacement string. + * @param int $start If start is positive, the replacing will begin at the start'th offset into string. If start is negative, the replacing will begin at the start'th character from the end of string. + * @param int $length Length of the part to be replaced + * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8 + * @return string + */ public static function mb_substr_replace($string, $replacement, $start, $length = null, $encoding = 'UTF-8') { return(\OC_Helper::mb_substr_replace($string, $replacement, $start, $length, $encoding)); } /** - * @brief Replace all occurrences of the search string with the replacement string - * - * @param string $search The value being searched for, otherwise known as the needle. String. - * @param string $replace The replacement string. - * @param string $subject The string or array being searched and replaced on, otherwise known as the haystack. - * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8 - * @param int $count If passed, this will be set to the number of replacements performed. - * @return string - * - */ + * Replace all occurrences of the search string with the replacement string + * + * @param string $search The value being searched for, otherwise known as the needle. String. + * @param string $replace The replacement string. + * @param string $subject The string or array being searched and replaced on, otherwise known as the haystack. + * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8 + * @param int $count If passed, this will be set to the number of replacements performed. + * @return string + */ public static function mb_str_replace($search, $replace, $subject, $encoding = 'UTF-8', &$count = null) { return(\OC_Helper::mb_str_replace($search, $replace, $subject, $encoding, $count)); } /** - * @brief performs a search in a nested array - * @param array $haystack the array to be searched - * @param string $needle the search string - * @param int $index optional, only search this key name - * @return mixed the key of the matching field, otherwise false - */ + * performs a search in a nested array + * + * @param array $haystack the array to be searched + * @param string $needle the search string + * @param int $index optional, only search this key name + * @return mixed the key of the matching field, otherwise false + */ public static function recursiveArraySearch($haystack, $needle, $index = null) { return(\OC_Helper::recursiveArraySearch($haystack, $needle, $index)); } /** - * @brief calculates the maximum upload size respecting system settings, free space and user quota + * calculates the maximum upload size respecting system settings, free space and user quota * * @param $dir the current folder where the user currently operates * @return number of bytes representing diff --git a/ocs/routes.php b/ocs/routes.php index c4a74d779001cefe6c4623dc55c038447373913c..845ee49a46d2bd7812e2c1fd19e0e3dae9995d3d 100644 --- a/ocs/routes.php +++ b/ocs/routes.php @@ -73,4 +73,11 @@ OC_API::register( array('OC_OCS_Cloud', 'getUser'), 'core', OC_API::USER_AUTH - ); +); +OC_API::register( + 'get', + '/cloud/user', + array('OC_OCS_Cloud', 'getCurrentUser'), + 'core', + OC_API::USER_AUTH +); diff --git a/public.php b/public.php index 1781632bc78570d56d1988ecbbdc902120646a8a..767295b98db100476f1119488443df88191a3835 100644 --- a/public.php +++ b/public.php @@ -5,6 +5,7 @@ try { require_once 'lib/base.php'; OC::checkMaintenanceMode(); + OC::checkSingleUserMode(); if (!isset($_GET['service'])) { header('HTTP/1.0 404 Not Found'); exit; @@ -20,6 +21,7 @@ try { OC_Util::checkAppEnabled($app); OC_App::loadApp($app); + OC_User::setIncognitoMode(true); require_once OC_App::getAppPath($app) .'/'. $parts[1]; diff --git a/settings/admin.php b/settings/admin.php index dd36790907df7621733938c032479ce648cba290..c0e4570658ad8f3504188260e0c39db66c2350ed 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -25,24 +25,26 @@ $tmpl->assign('entries', $entries); $tmpl->assign('entriesremain', $entriesremain); $tmpl->assign('htaccessworking', $htaccessworking); $tmpl->assign('internetconnectionworking', OC_Util::isInternetConnectionEnabled() ? OC_Util::isInternetConnectionWorking() : false); -$tmpl->assign('islocaleworking', OC_Util::isSetLocaleWorking()); +$tmpl->assign('isLocaleWorking', OC_Util::isSetLocaleWorking()); $tmpl->assign('isWebDavWorking', OC_Util::isWebDAVWorking()); $tmpl->assign('has_fileinfo', OC_Util::fileInfoLoaded()); +$tmpl->assign('old_php', OC_Util::isPHPoutdated()); $tmpl->assign('backgroundjobs_mode', OC_Appconfig::getValue('core', 'backgroundjobs_mode', 'ajax')); $tmpl->assign('shareAPIEnabled', OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes')); // Check if connected using HTTPS if (OC_Request::serverProtocol() === 'https') { - $connectedHTTPS = true; + $connectedHTTPS = true; } else { $connectedHTTPS = false; -} +} $tmpl->assign('isConnectedViaHTTPS', $connectedHTTPS); $tmpl->assign('enforceHTTPSEnabled', OC_Config::getValue( "forcessl", false)); $tmpl->assign('allowLinks', OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes')); $tmpl->assign('allowPublicUpload', OC_Appconfig::getValue('core', 'shareapi_allow_public_upload', 'yes')); $tmpl->assign('allowResharing', OC_Appconfig::getValue('core', 'shareapi_allow_resharing', 'yes')); +$tmpl->assign('allowMailNotification', OC_Appconfig::getValue('core', 'shareapi_allow_mail_notification', 'yes')); $tmpl->assign('sharePolicy', OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global')); $tmpl->assign('forms', array()); foreach($forms as $form) { diff --git a/settings/ajax/changedisplayname.php b/settings/ajax/changedisplayname.php index 4bb41fa3d3b1a146da9c107eea0221663892ea48..ef23826e50bddf0daa89d4795ae8a62acfd40149 100644 --- a/settings/ajax/changedisplayname.php +++ b/settings/ajax/changedisplayname.php @@ -28,8 +28,8 @@ if(is_null($userstatus)) { // Return Success story if( OC_User::setDisplayName( $username, $displayName )) { - OC_JSON::success(array("data" => array( "message" => $l->t('Your display name has been changed.'), "username" => $username, 'displayName' => $displayName ))); + OC_JSON::success(array("data" => array( "message" => $l->t('Your full name has been changed.'), "username" => $username, 'displayName' => $displayName ))); } else{ - OC_JSON::error(array("data" => array( "message" => $l->t("Unable to change display name"), 'displayName' => OC_User::getDisplayName($username) ))); + OC_JSON::error(array("data" => array( "message" => $l->t("Unable to change full name"), 'displayName' => OC_User::getDisplayName($username) ))); } diff --git a/settings/ajax/createuser.php b/settings/ajax/createuser.php index ccc2a5d402e8756bb5be46796baa7519e92e5aa2..94b56fa03494667f993144e09402fde30d0757b6 100644 --- a/settings/ajax/createuser.php +++ b/settings/ajax/createuser.php @@ -28,6 +28,10 @@ $password = $_POST["password"]; // Return Success story try { + // check whether the user's files home exists + $userDirectory = OC_User::getHome($username) . '/files/'; + $homeExists = file_exists($userDirectory); + if (!OC_User::createUser($username, $password)) { OC_JSON::error(array('data' => array( 'message' => 'User creation failed for '.$username ))); exit(); @@ -38,8 +42,11 @@ try { } OC_Group::addToGroup( $username, $i ); } + OC_JSON::success(array("data" => array( + // returns whether the home already existed + "homeExists" => $homeExists, "username" => $username, "groups" => OC_Group::getUserGroups( $username )))); } catch (Exception $exception) { diff --git a/settings/ajax/decryptall.php b/settings/ajax/decryptall.php index e53067931e894aabcf746b61a690508a965c08ae..ebc17aacfaa3c45fc232264c9c2a18e6ffad11d0 100644 --- a/settings/ajax/decryptall.php +++ b/settings/ajax/decryptall.php @@ -1,5 +1,8 @@ img,td.displayName>img, td.remove>a, td.quota>img { visibility:hidden; } td.password, td.quota, td.displayName { width:12em; cursor:pointer; } @@ -45,20 +62,37 @@ tr:hover>td.password>span, tr:hover>td.displayName>span { margin:0; cursor:point tr:hover>td.remove>a, tr:hover>td.password>img,tr:hover>td.displayName>img, tr:hover>td.quota>img { visibility:visible; cursor:pointer; } tr:hover>td.remove>a { float:right; } li.selected { background-color:#ddd; } -table:not(.nostyle) { width:100%; } -#rightcontent { padding-left: 1em; } -div.quota { float:right; display:block; position:absolute; right:25em; top:-1px; } +table.grid { width:100%; } +#rightcontent { padding-left: 10px; } +div.quota { + float: right; + display: block; +} div.quota-select-wrapper { position: relative; } div.recoveryPassword { left:50em; display:block; position:absolute; top:-1px; } input#recoveryPassword {width:15em;} -select.quota { position:absolute; left:0; top:0; width:10em; } +#controls select.quota { + margin: 3px; + margin-right: 10px; + height: 37px; +} select.quota-user { position:relative; left:0; top:0; width:10em; } -div.quota>span { position:absolute; right:0; white-space:nowrap; top:.7em; color:#888; text-shadow:0 1px 0 #fff; } +div.quota>span { + white-space: nowrap; + color: #888; + text-shadow: 0 1px 0 #fff; +} select.quota.active { background: #fff; } /* positioning fixes */ -#newuser { position:relative; top:-3px; } -#newuser .multiselect { top:1px; } +#newuser .multiselect { + min-width: 150px !important; +} +#newuser .multiselect, +#newusergroups + input[type='submit'] { + position: relative; + top: 1px; +} #headerGroups, #headerSubAdmins, #headerQuota { padding-left:18px; } .ie8 table.hascontrols{border-collapse:collapse;width: 100%;} @@ -97,9 +131,18 @@ span.version { margin-left:1em; margin-right:1em; color:#555; } .appslink { text-decoration: underline; } .score { color:#666; font-weight:bold; font-size:0.8em; } +.appinfo .documentation { + margin-top: 1em; + margin-bottom: 1em; +} + + /* LOG */ #log { white-space:normal; } #lessLog { display:none; } +table.grid td.date{ + white-space: nowrap; +} /* ADMIN */ span.securitywarning {color:#C33; font-weight:bold; } @@ -110,3 +153,16 @@ table.shareAPI td { padding-bottom: 0.8em; } /* HELP */ .pressed {background-color:#DDD;} +/* PASSWORD */ +.strengthify-wrapper { + position: absolute; + left: 189px; + width: 131px; + margin-top: -7px; +} + +/* OPERA hack for strengthify*/ +doesnotexist:-o-prefocus, .strengthify-wrapper { + left: 185px; + width: 129px; +} diff --git a/settings/img/log Icon License b/settings/img/log Icon License deleted file mode 100644 index b5c3167d733d1ca1c3c18919d560e30ec341cae1..0000000000000000000000000000000000000000 --- a/settings/img/log Icon License +++ /dev/null @@ -1,2 +0,0 @@ -CC BY 3.0 -http://thenounproject.com/en-us/noun/printer/#icon-No109 \ No newline at end of file diff --git a/settings/img/log.png b/settings/img/log.png deleted file mode 100644 index b34a58f844cdcb1005b58cd488da2701802ca0b2..0000000000000000000000000000000000000000 Binary files a/settings/img/log.png and /dev/null differ diff --git a/settings/img/log.svg b/settings/img/log.svg deleted file mode 100644 index a3939b730934866b75cb11723460fd2f56831cc1..0000000000000000000000000000000000000000 --- a/settings/img/log.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/settings/js/admin.js b/settings/js/admin.js index f2d6f37a51a3494269e36240920be665311cf1a0..e957bd68f1fa309f4b8fe09345aeaf4ceba03fcb 100644 --- a/settings/js/admin.js +++ b/settings/js/admin.js @@ -32,6 +32,6 @@ $(document).ready(function(){ }); $('#security').change(function(){ - $.post(OC.filePath('settings','ajax','setsecurity.php'), { enforceHTTPS: $('#enforceHTTPSEnabled').val() },function(){} ); + $.post(OC.filePath('settings','ajax','setsecurity.php'), { enforceHTTPS: $('#forcessl').val() },function(){} ); }); }); diff --git a/settings/js/apps.js b/settings/js/apps.js index a55c55e24cf4ccd64462fe722754570490d6fef2..2c6f77d9314caae3d1cc59b5eca5387b01f01ab4 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -37,6 +37,30 @@ OC.Settings.Apps = OC.Settings.Apps || { } page.find('span.licence').text(appLicense); + var userDocumentation = false; + var adminDocumentation = false; + if (typeof(app.documentation) !== 'undefined') { + if (typeof(app.documentation.user) !== 'undefined') { + userDocumentation = true; + page.find('span.userDocumentation').html("" + t('settings', 'User Documentation') + ""); + page.find('p.documentation').show(); + } + if (typeof(app.documentation.admin) !== 'undefined') { + adminDocumentation = true; + page.find('span.adminDocumentation').html("" + t('settings', 'Admin Documentation') + ""); + page.find('p.documentation').show(); + } + + if(userDocumentation && adminDocumentation) { + page.find('span.userDocumentation').after(', '); + } + } + + if (typeof(app.website) !== 'undefined') { + page.find('p.website').show(); + page.find('a#websitelink').attr('href', app.website); + } + if (app.update !== false) { page.find('input.update').show(); page.find('input.update').data('appid', app.id); @@ -51,8 +75,8 @@ OC.Settings.Apps = OC.Settings.Apps || { page.find('input.enable').data('active', app.active); if (app.internal === false) { page.find('span.score').show(); - page.find('p.appslink').show(); - page.find('a').attr('href', 'http://apps.owncloud.com/content/show.php?content=' + app.id); + page.find('p.appstore').show(); + page.find('a#appstorelink').attr('href', 'http://apps.owncloud.com/content/show.php?content=' + app.id); page.find('small.externalapp').hide(); } else { page.find('p.appslink').hide(); @@ -110,7 +134,7 @@ OC.Settings.Apps = OC.Settings.Apps || { element.val(t('settings','Disable')); } },'json') - .fail(function() { + .fail(function() { OC.Settings.Apps.showErrorMessage(t('settings', 'Error while enabling app')); appitem.data('errormsg', t('settings', 'Error while enabling app')); appitem.data('active',false); diff --git a/settings/js/personal.js b/settings/js/personal.js index a923b47573145e16d2c8dca45b1cef76734afc5a..e6e1d538a194d5fba98cc9738c8d2aa638ef9848 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -1,5 +1,6 @@ /** * Copyright (c) 2011, Robin Appelman + * 2013, Morris Jobke * This file is licensed under the Affero General Public License version 3 or later. * See the COPYING-README file. */ @@ -31,7 +32,7 @@ function changeDisplayName(){ // Ajax foo $.post( 'ajax/changedisplayname.php', post, function(data){ if( data.status === "success" ){ - $('#oldDisplayName').text($('#displayName').val()); + $('#oldDisplayName').val($('#displayName').val()); // update displayName on the top right expand button $('#expandDisplayName').text($('#displayName').val()); updateAvatar(); @@ -45,12 +46,16 @@ function changeDisplayName(){ } } -function updateAvatar () { +function updateAvatar (hidedefault) { $headerdiv = $('#header .avatardiv'); $displaydiv = $('#displayavatar .avatardiv'); - $headerdiv.css({'background-color': ''}); - $headerdiv.avatar(OC.currentUser, 32, true); + if(hidedefault) { + $headerdiv.hide(); + } else { + $headerdiv.css({'background-color': ''}); + $headerdiv.avatar(OC.currentUser, 32, true); + } $displaydiv.css({'background-color': ''}); $displaydiv.avatar(OC.currentUser, 128, true); } @@ -160,6 +165,11 @@ $(document).ready(function(){ $('#email').keyup(function(){ if ($('#email').val() !== '' ){ + // if this is the enter key changeEmailAddress() is already invoked + // so it doesn't need to be triggered again + if(event.keyCode === 13) { + return; + } if(typeof timeout !== 'undefined'){ clearTimeout(timeout); } @@ -167,10 +177,17 @@ $(document).ready(function(){ } }); - $("#languageinput").chosen(); - // Show only the not selectable optgroup - // Choosen only shows optgroup-labels if there are options in the optgroup - $(".languagedivider").hide(); + $('#email').keypress(function(event){ + // check for enter key and non empty email + if (event.keyCode === 13 && $('#email').val() !== '' ){ + event.preventDefault() + // clear timeout of previous keyup event - prevents duplicate changeEmailAddress call + if(typeof timeout !== 'undefined'){ + clearTimeout(timeout); + } + changeEmailAddress(); + } + }); $("#languageinput").change( function(){ // Serialize the data @@ -189,21 +206,25 @@ $(document).ready(function(){ $('button:button[name="submitDecryptAll"]').click(function() { var privateKeyPassword = $('#decryptAll input:password[id="privateKeyPassword"]').val(); + $('#decryptAll button:button[name="submitDecryptAll"]').prop("disabled", true); + $('#decryptAll input:password[name="privateKeyPassword"]').prop("disabled", true); OC.Encryption.decryptAll(privateKeyPassword); }); - + $('#decryptAll input:password[name="privateKeyPassword"]').keyup(function(event) { var privateKeyPassword = $('#decryptAll input:password[id="privateKeyPassword"]').val(); if (privateKeyPassword !== '' ) { $('#decryptAll button:button[name="submitDecryptAll"]').removeAttr("disabled"); if(event.which === 13) { + $('#decryptAll button:button[name="submitDecryptAll"]').prop("disabled", true); + $('#decryptAll input:password[name="privateKeyPassword"]').prop("disabled", true); OC.Encryption.decryptAll(privateKeyPassword); } } else { $('#decryptAll button:button[name="submitDecryptAll"]').attr("disabled", "true"); } }); - + var uploadparms = { done: function(e, data) { avatarResponseHandler(data.result); @@ -232,7 +253,7 @@ $(document).ready(function(){ type: 'DELETE', url: OC.Router.generate('core_avatar_delete'), success: function(msg) { - updateAvatar(); + updateAvatar(true); } }); }); @@ -244,6 +265,17 @@ $(document).ready(function(){ $('#sendcropperbutton').click(function(){ sendCropData(); }); + + $('#pass2').strengthify({ + zxcvbn: OC.linkTo('3rdparty','zxcvbn/js/zxcvbn.js'), + titles: [ + t('core', 'Very weak password'), + t('core', 'Weak password'), + t('core', 'So-so password'), + t('core', 'Good password'), + t('core', 'Strong password') + ] + }); } ); OC.Encryption = { @@ -252,18 +284,19 @@ OC.Encryption = { $.post('ajax/decryptall.php', {password:password}, function(data) { if (data.status === "error") { OC.Encryption.msg.finishedDecrypting('#decryptAll .msg', data); + $('#decryptAll input:password[name="privateKeyPassword"]').removeAttr("disabled"); } else { OC.Encryption.msg.finishedDecrypting('#decryptAll .msg', data); } - } - ); + }); } -} +}; OC.Encryption.msg={ startDecrypting:function(selector){ + var spinner = ''; $(selector) - .html( t('files_encryption', 'Decrypting files... Please wait, this can take some time.') ) + .html( t('files_encryption', 'Decrypting files... Please wait, this can take some time.') + ' ' + spinner ) .removeClass('success') .removeClass('error') .stop(true, true) @@ -274,8 +307,7 @@ OC.Encryption.msg={ $(selector).html( data.data.message ) .addClass('success') .stop(true, true) - .delay(3000) - .fadeOut(900); + .delay(3000); }else{ $(selector).html( data.data.message ).addClass('error'); } diff --git a/settings/js/users.js b/settings/js/users.js index 48c4529527ba93913e1de425797a5dfd546a6a8d..6886db668b501ef626eba7108ce6c554764918a6 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -44,7 +44,7 @@ var UserList = { // Provide user with option to undo $('#notification').data('deleteuser', true); - OC.Notification.showHtml(t('users', 'deleted') + ' ' + escapeHTML(uid) + '' + t('users', 'undo') + ''); + OC.Notification.showHtml(t('settings', 'deleted') + ' ' + escapeHTML(uid) + '' + t('settings', 'undo') + ''); }, /** @@ -85,6 +85,9 @@ var UserList = { add: function (username, displayname, groups, subadmin, quota, sort) { var tr = $('tbody tr').first().clone(); + if (tr.find('div.avatardiv')){ + $('div.avatardiv', tr).avatar(username, 32); + } tr.attr('data-uid', username); tr.attr('data-displayName', displayname); tr.find('td.name').text(username); @@ -144,7 +147,11 @@ var UserList = { quotaSelect.on('change', function () { var uid = $(this).parent().parent().attr('data-uid'); var quota = $(this).val(); - setQuota(uid, quota); + setQuota(uid, quota, function(returnedQuota){ + if (quota !== returnedQuota) { + $(quotaSelect).find(':selected').text(returnedQuota); + } + }); }); }, // From http://my.opera.com/GreyWyvern/blog/show.dml/1671288 @@ -404,6 +411,9 @@ $(document).ready(function () { OC.filePath('settings', 'ajax', 'changedisplayname.php'), {username: uid, displayName: $(this).val()}, function (result) { + if (result && result.status==='success'){ + img.parent().parent().find('div.avatardiv').avatar(result.data.username, 32); + } } ); input.blur(); @@ -413,7 +423,10 @@ $(document).ready(function () { } }); input.blur(function () { - $(this).replaceWith(escapeHTML($(this).val())); + var input = $(this), + displayName = input.val(); + input.closest('tr').attr('data-displayName', displayName); + input.replaceWith('' + escapeHTML(displayName) + ''); img.css('display', ''); }); }); @@ -422,9 +435,14 @@ $(document).ready(function () { }); $('select.quota, select.quota-user').singleSelect().on('change', function () { + var select = $(this); var uid = $(this).parent().parent().attr('data-uid'); var quota = $(this).val(); - setQuota(uid, quota); + setQuota(uid, quota, function(returnedQuota){ + if (quota !== returnedQuota) { + select.find(':selected').text(returnedQuota); + } + }); }); $('#newuser').submit(function (event) { @@ -461,6 +479,18 @@ $(document).ready(function () { var addedGroups = result.data.groups; UserList.availableGroups = $.unique($.merge(UserList.availableGroups, addedGroups)); } + if (result.data.homeExists){ + OC.Notification.hide(); + OC.Notification.show(t('settings', 'Warning: Home directory for user "{user}" already exists', {user: result.data.username})); + if (UserList.notificationTimeout){ + window.clearTimeout(UserList.notificationTimeout); + } + UserList.notificationTimeout = window.setTimeout( + function(){ + OC.Notification.hide(); + UserList.notificationTimeout = null; + }, 10000); + } if($('tr[data-uid="' + username + '"]').length === 0) { UserList.add(username, username, result.data.groups, null, 'default', true); } diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index 378bd8dd91fc7748a27a49c2dc370dfda75112f6..67cbc6655dda947c3176effce4f6d01722923939 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "فشل تحميل القائمة من الآب ستور", "Authentication error" => "لم يتم التأكد من الشخصية بنجاح", -"Unable to change display name" => "تعذر تغيير اسم الحساب", "Group already exists" => "المجموعة موجودة مسبقاً", "Unable to add group" => "فشل إضافة المجموعة", "Email saved" => "تم حفظ البريد الإلكتروني", @@ -82,10 +81,10 @@ $TRANSLATIONS = array( "Current password" => "كلمات السر الحالية", "New password" => "كلمات سر جديدة", "Change password" => "عدل كلمة السر", -"Display Name" => "اسم الحساب", "Email" => "البريد الإلكترونى", "Your email address" => "عنوانك البريدي", "Fill in an email address to enable password recovery" => "أدخل عنوانك البريدي لتفعيل استرجاع كلمة المرور", +"Abort" => "إلغاء.", "Language" => "اللغة", "Help translate" => "ساعد في الترجمه", "WebDAV" => "WebDAV", @@ -97,7 +96,6 @@ $TRANSLATIONS = array( "Other" => "شيء آخر", "Username" => "إسم المستخدم", "Storage" => "وحدة التخزين", -"change display name" => "تغيير اسم الحساب", "set new password" => "اعداد كلمة مرور جديدة", "Default" => "افتراضي" ); diff --git a/settings/l10n/be.php b/settings/l10n/be.php new file mode 100644 index 0000000000000000000000000000000000000000..6a34f1fe246d28fe871ac9f85b0be7e2ea75723c --- /dev/null +++ b/settings/l10n/be.php @@ -0,0 +1,5 @@ + "Памылка" +); +$PLURAL_FORMS = "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php index a15dfa19e46ecce567f81c6d0db9ad88d4e1a3cd..17163027d490d408e512832a88659ac26cb49cfb 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -45,7 +45,6 @@ $TRANSLATIONS = array( "Current password" => "Текуща парола", "New password" => "Нова парола", "Change password" => "Промяна на паролата", -"Display Name" => "Екранно име", "Email" => "E-mail", "Your email address" => "Вашия email адрес", "Fill in an email address to enable password recovery" => "Въведете е-поща за възстановяване на паролата", diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index c4c61c0354af5814dc27df9f71a1a325a200aa2f..316eadc19a1396f1d4a3777f4645753f37c36f25 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "No s'ha pogut carregar la llista des de l'App Store", "Authentication error" => "Error d'autenticació", -"Your display name has been changed." => "El nom a mostrar ha canviat.", -"Unable to change display name" => "No s'ha pogut canviar el nom a mostrar", +"Your full name has been changed." => "El vostre nom complet ha canviat.", +"Unable to change full name" => "No s'ha pogut canviar el nom complet", "Group already exists" => "El grup ja existeix", "Unable to add group" => "No es pot afegir el grup", "Email saved" => "S'ha desat el correu electrònic", @@ -46,8 +46,15 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Heu de facilitar un nom d'usuari vàlid", "Error creating user" => "Error en crear l'usuari", "A valid password must be provided" => "Heu de facilitar una contrasenya vàlida", +"Warning: Home directory for user \"{user}\" already exists" => "Avís: la carpeta Home per l'usuari \"{user}\" ja existeix", "__language_name__" => "Català", +"Everything (fatal issues, errors, warnings, info, debug)" => "Tot (problemes fatals, errors, avisos, informació, depuració)", +"Info, warnings, errors and fatal issues" => "Informació, avisos, errors i problemes fatals", +"Warnings, errors and fatal issues" => "Avisos, errors i problemes fatals", +"Errors and fatal issues" => "Errors i problemes fatals", +"Fatal issues only" => "Només problemes fatals", "Security Warning" => "Avís de seguretat", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Esteu accedint %s a través de HTTP. Us recomanem fermament que configureu el servidor perquè requereixi 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." => "La carpeta de dades i els vostres fitxersprobablement són accessibles des d'Internet. La fitxer .htaccess no funciona. Us recomanem que configureu el servidor web de tal manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de l'arrel de documents del servidor web.", "Setup Warning" => "Avís de configuració", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament.", @@ -55,13 +62,15 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "No s'ha trobat el mòdul 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "El mòdul de PHP 'fileinfo' no s'ha trobat. Us recomanem que habiliteu aquest mòdul per obtenir millors resultats amb la detecció mime-type.", "Locale not working" => "Locale no funciona", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Les locale del sistema no es poden establir en %s. Això significa que hi poden haver problemes amb alguns caràcters en el nom dels fitxers. Us recomanem instal·lar els paquets necessaris al sistema per donar suport a %s.", +"System locale can not be set to a one which supports UTF-8." => "No s'ha pogut establir cap localització del sistema amb suport per UTF-8.", +"This means that there might be problems with certain characters in file names." => "Això podria comportar problemes amb alguns caràcters en els noms dels fitxer.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Us recomanem que instal·leu els paquets necessaris en el sistema per donar suport a alguna de les localitzacions següents: %s", "Internet connection not working" => "La connexió a internet no funciona", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Aquest servidor no té cap connexió a internet que funcioni. Això significa que algunes de les característiques com el muntatge d'emmagatzemament extern, les notificacions quant a actualitzacions o la instal·lació d'aplicacions de tercers no funcionarà. L'accés remot a fitxers i l'enviament de correus electrònics podria tampoc no funcionar. Us suggerim que habiliteu la connexió a internet per aquest servidor si voleu tenir totes les característiques.", "Cron" => "Cron", "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 once a minute over http." => "cron.php està registrat en un servei webcron que fa una crida cada minut a la pàgina cron.php a través de http.", -"Use systems cron service to call the cron.php file once a minute." => "Utilitzeu el sistema de servei cron per cridar el fitxer cron.php cada minut.", +"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.", "Sharing" => "Compartir", "Enable Share API" => "Habilita l'API de compartir", "Allow apps to use the Share API" => "Permet que les aplicacions utilitzin l'API de compartir", @@ -73,6 +82,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Permet als usuaris compartir de nou elements ja compartits amb ells", "Allow users to share with anyone" => "Permet compartir amb qualsevol", "Allow users to only share with users in their groups" => "Permet als usuaris compartir només amb els usuaris del seu grup", +"Allow mail notification" => "Permet notificacions per correu electrónic", +"Allow user to send mail notification for shared files" => "Permet a l'usuari enviar notificacions de fitxers compartits per correu ", "Security" => "Seguretat", "Enforce HTTPS" => "Força HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Força la connexió dels clients a %s a través d'una connexió encriptada.", @@ -103,7 +114,7 @@ $TRANSLATIONS = array( "Current password" => "Contrasenya actual", "New password" => "Contrasenya nova", "Change password" => "Canvia la contrasenya", -"Display Name" => "Nom a mostrar", +"Full Name" => "Nom complet", "Email" => "Correu electrònic", "Your email address" => "Correu electrònic", "Fill in an email address to enable password recovery" => "Ompliu el correu electrònic per activar la recuperació de contrasenya", @@ -112,14 +123,15 @@ $TRANSLATIONS = array( "Select new from Files" => "Selecciona'n una de nova dels fitxers", "Remove image" => "Elimina imatge", "Either png or jpg. Ideally square but you will be able to crop it." => "Pot ser png o jpg. Idealment quadrada, però podreu retallar-la.", +"Your avatar is provided by your original account." => "El vostre compte original proporciona l'avatar.", "Abort" => "Cancel·la", "Choose as profile image" => "Selecciona com a imatge de perfil", "Language" => "Idioma", "Help translate" => "Ajudeu-nos amb la traducció", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Useu aquesta adreça per accedir als fitxers via WebDAV", +"Use this address to access your Files via WebDAV" => "Useu aquesta adreça per accedir als fitxers via WebDAV", "Encryption" => "Xifrat", -"The encryption app is no longer enabled, decrypt all your file" => "L'aplicació d'encriptació ja no està activada, desencripteu tots els vostres fitxers.", +"The encryption app is no longer enabled, please decrypt all your files" => "L'aplicació d'encriptació ja no està activada, desencripteu tots els vostres fitxers", "Log-in password" => "Contrasenya d'accés", "Decrypt all Files" => "Desencripta tots els fitxers", "Login Name" => "Nom d'accés", @@ -127,11 +139,12 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "Recuperació de contrasenya d'administrador", "Enter the recovery password in order to recover the users files during password change" => "Escriviu la contrasenya de recuperació per a poder recuperar els fitxers dels usuaris en canviar la contrasenya", "Default Storage" => "Emmagatzemament per defecte", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Escriviu la quota d'emmagatzemament (per ex.: \"512 MB\" o \"12 GB\")", "Unlimited" => "Il·limitat", "Other" => "Un altre", "Username" => "Nom d'usuari", "Storage" => "Emmagatzemament", -"change display name" => "canvia el nom a mostrar", +"change full name" => "canvia el nom complet", "set new password" => "estableix nova contrasenya", "Default" => "Per defecte" ); diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 9873d4d20acf62a2eda0eeea94c3d2394ad5ca19..c89b3b6a5deecf618576459b84c472c5798e9e19 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Nelze načíst seznam z App Store", "Authentication error" => "Chyba přihlášení", -"Your display name has been changed." => "Vaše zobrazované jméno bylo změněno.", -"Unable to change display name" => "Nelze změnit zobrazované jméno", +"Your full name has been changed." => "Vaše celé jméno bylo změněno.", +"Unable to change full name" => "Nelze změnit celé jméno", "Group already exists" => "Skupina již existuje", "Unable to add group" => "Nelze přidat skupinu", "Email saved" => "E-mail uložen", @@ -46,22 +46,33 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Musíte zadat platné uživatelské jméno", "Error creating user" => "Chyba při vytváření užiatele", "A valid password must be provided" => "Musíte zadat platné heslo", +"Warning: Home directory for user \"{user}\" already exists" => "Varování: Osobní složka uživatele \"{user}\" již existuje.", "__language_name__" => "Česky", +"Everything (fatal issues, errors, warnings, info, debug)" => "Vše (fatální problémy, chyby, varování, informační, ladící)", +"Info, warnings, errors and fatal issues" => "Informace, varování, chyby a fatální problémy", +"Warnings, errors and fatal issues" => "Varování, chyby a fatální problémy", +"Errors and fatal issues" => "Chyby a fatální problémy", +"Fatal issues only" => "Pouze fatální problémy", "Security Warning" => "Bezpečnostní upozornění", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Přistupujete na %s protokolem HTTP. Důrazně doporučujeme nakonfigurovat server pro použití 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." => "Váš datový adresář i vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess nefunguje. Důrazně doporučujeme nakonfigurovat webový server tak, aby datový adresář nebyl nadále přístupný, nebo přesunout datový adresář mimo prostor zpřístupňovaný webovým serverem.", "Setup Warning" => "Upozornění nastavení", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Váš webový server není správně nastaven pro umožnění synchronizace, protože rozhraní WebDAV se zdá nefunkční.", "Please double check the installation guides." => "Zkontrolujte prosím znovu instalační příručku.", "Module 'fileinfo' missing" => "Schází modul 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Schází PHP modul 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME.", +"Your PHP version is outdated" => "Tato verze PHP je zastaralá.", +"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." => "Tato verze PHP je zastaralá. Důrazně doporučujeme aktualizovat na verzi 5.3.8 nebo novější, protože starší verze jsou chybné. Je možné, že tato instalace nebude fungovat správně.", "Locale not working" => "Lokalizace nefunguje", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Systémové nastavení lokalizace nemohlo být nastaveno na %s. To znamená, že se mohou vyskytnout problémy s některými znaky v názvech souborů. Důrazně doporučujeme nainstalovat do vašeho systému balíčky potřebné pro podporu %s.", +"System locale can not be set to a one which supports UTF-8." => "Není možné nastavit znakovou sadu, která podporuje UTF-8.", +"This means that there might be problems with certain characters in file names." => "To znamená, že se mohou vyskytnout problémy s určitými znaky v názvech souborů.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Důrazně doporučujeme nainstalovat do vašeho systém balíčky nutné pro podporu některé z následujících znakových sad: %s.", "Internet connection not working" => "Připojení k internetu nefunguje", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Server nemá funkční připojení k internetu. Některé moduly jako např. externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru.", "Cron" => "Cron", "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 once a minute over http." => "cron.php je registrován u služby webcron pro zavolání stránky cron.php jednou za minutu přes HTTP.", -"Use systems cron service to call the cron.php file once a minute." => "Použít systémovou službu cron pro spouštění souboru cron.php jednou za minutu.", +"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.", "Sharing" => "Sdílení", "Enable Share API" => "Povolit API sdílení", "Allow apps to use the Share API" => "Povolit aplikacím používat API sdílení", @@ -73,6 +84,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny", "Allow users to share with anyone" => "Povolit uživatelům sdílet s kýmkoliv", "Allow users to only share with users in their groups" => "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách", +"Allow mail notification" => "Povolit e-mailová upozornění", +"Allow user to send mail notification for shared files" => "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory", "Security" => "Zabezpečení", "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.", @@ -103,23 +116,24 @@ $TRANSLATIONS = array( "Current password" => "Současné heslo", "New password" => "Nové heslo", "Change password" => "Změnit heslo", -"Display Name" => "Zobrazované jméno", +"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" => "Pro povolení obnovy hesla vyplňte e-mailovou adresu", -"Profile picture" => "Profilová fotka", +"Profile picture" => "Profilový obrázek", "Upload new" => "Nahrát nový", "Select new from Files" => "Vyberte nový ze souborů", "Remove image" => "Odebrat obrázek", "Either png or jpg. Ideally square but you will be able to crop it." => "png nebo jpg, nejlépe čtvercový, ale budete mít možnost jej oříznout.", +"Your avatar is provided by your original account." => "Váš avatar je poskytován Vaším původním účtem.", "Abort" => "Přerušit", "Choose as profile image" => "Vybrat jako profilový obrázek", "Language" => "Jazyk", "Help translate" => "Pomoci s překladem", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Použijte tuto adresu pro přístup k vašim souborům přes WebDAV", +"Use this address to access your Files via WebDAV" => "Použijte tuto adresu pro přístup k vašim souborům přes WebDAV", "Encryption" => "Šifrování", -"The encryption app is no longer enabled, decrypt all your file" => "Šifrovací aplikace již není zapnuta, odšifrujte všechny své soubory", +"The encryption app is no longer enabled, please decrypt all your files" => "Šifrovací aplikace již není spuštěna, dešifrujte prosím všechny své soubory", "Log-in password" => "Přihlašovací heslo", "Decrypt all Files" => "Odšifrovat všechny soubory", "Login Name" => "Přihlašovací jméno", @@ -127,11 +141,12 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "Heslo obnovy správce", "Enter the recovery password in order to recover the users files during password change" => "Zadejte heslo obnovy pro obnovení souborů uživatele při změně hesla", "Default Storage" => "Výchozí úložiště", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Zvolte prosím kvótu pro úložiště (např. \"512 MB\" nebo \"12 GB\")", "Unlimited" => "Neomezeně", "Other" => "Jiný", "Username" => "Uživatelské jméno", "Storage" => "Úložiště", -"change display name" => "změnit zobrazované jméno", +"change full name" => "změnit celé jméno", "set new password" => "nastavit nové heslo", "Default" => "Výchozí" ); diff --git a/settings/l10n/da.php b/settings/l10n/da.php index f86559d6752b121d3cff35b75eb7cdad7cd37da7..6fe3cf6c396496fca3e2f9f88106b507df6f73e4 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Kunne ikke indlæse listen fra App Store", "Authentication error" => "Adgangsfejl", -"Your display name has been changed." => "Dit skærmnavn blev ændret.", -"Unable to change display name" => "Kunne ikke skifte skærmnavn", +"Your full name has been changed." => "Dit fulde navn er blevet ændret.", +"Unable to change full name" => "Ikke i stand til at ændre dit fulde navn", "Group already exists" => "Gruppen findes allerede", "Unable to add group" => "Gruppen kan ikke oprettes", "Email saved" => "Email adresse gemt", @@ -46,22 +46,33 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Et gyldigt brugernavn skal angives", "Error creating user" => "Fejl ved oprettelse af bruger", "A valid password must be provided" => "En gyldig adgangskode skal angives", +"Warning: Home directory for user \"{user}\" already exists" => "Advarsel: Hjemmemappen for bruger \"{user}\" findes allerede", "__language_name__" => "Dansk", +"Everything (fatal issues, errors, warnings, info, debug)" => "Alt (alvorlige fejl, fejl, advarsler, info, debug)", +"Info, warnings, errors and fatal issues" => "Info, advarsler, fejl og alvorlige fejl", +"Warnings, errors and fatal issues" => "Advarsler, fejl og alvorlige fejl", +"Errors and fatal issues" => "Fejl og alvorlige fejl", +"Fatal issues only" => "Kun alvorlige fejl", "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. ", "Setup Warning" => "Opsætnings Advarsel", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt.", "Please double check the installation guides." => "Dobbelttjek venligst installations vejledningerne.", "Module 'fileinfo' missing" => "Module 'fileinfo' mangler", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP modulet 'fileinfo' mangler. Vi anbefaler stærkt at aktivere dette modul til at få de bedste resultater med mime-type detektion.", +"Your PHP version is outdated" => "Din PHP-version er forældet", +"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." => "Din PHP-version er forældet. Vi anbefaler at du opgraderer til 5.3.8 eller nyere, fordi ældre versioner har kendte fejl. Det er derfor muligt at installationen ikke fungerer korrekt.", "Locale not working" => "Landestandard fungerer ikke", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Systemet kan ikke indstille systemets landestandard for %s. Det betyder, at der kan være problemer med visse tegn i filnavne. Vi anbefaler kraftigt, at installere de nødvendige pakker på dit system til at understøtte %s.", +"System locale can not be set to a one which supports UTF-8." => "Systemets locale kan ikke sættes til et der bruger UTF-8.", +"This means that there might be problems with certain characters in file names." => "Det betyder at der kan være problemer med visse tegn i filnavne.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Vi anbefaler at du installerer den krævede pakke på dit system, for at understøtte følgende locales: %s.", "Internet connection not working" => "Internetforbindelse fungerer ikke", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Denne ownCloud-server har ikke en fungerende forbindelse til internettet. Det betyder, at visse funktioner som montering af eksterne drev, oplysninger om opdatering eller installation af 3.-parts applikationer ikke fungerer. Det vil sandsynligvis heller ikke fungere at tilgå filer fra eksterne drev eller informationsemails. Vi opfordrer til at etablere forbindelse til internettet for denne server, såfremt du ønsker samtlige funktioner.", "Cron" => "Cron", "Execute one task with each page loaded" => "Udføre en opgave med hver side indlæst", -"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php er registeret hos en webcron-tjeneste til at kalde cron.php en gang i minuttet over http.", -"Use systems cron service to call the cron.php file once a minute." => "Brug systemets cron service til at kalde cron.php filen en gang i minuttet", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php er registreret til at en webcron service skal kalde cron.php hvert 15 minut over http.", +"Use systems cron service to call the cron.php file every 15 minutes." => "Brug systemets cron service til at kalde cron.php hvert 15. minut.", "Sharing" => "Deling", "Enable Share API" => "Aktiver Share API", "Allow apps to use the Share API" => "Tillad apps til at bruge Share API", @@ -73,6 +84,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Tillad brugere at dele elementer delt med dem igen", "Allow users to share with anyone" => "Tillad brugere at dele med alle", "Allow users to only share with users in their groups" => "Tillad brugere at kun dele med brugerne i deres grupper", +"Allow mail notification" => "Tillad mail underretninger", +"Allow user to send mail notification for shared files" => "Tillad brugere at sende mail underretninger for delte filer", "Security" => "Sikkerhed", "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.", @@ -103,7 +116,7 @@ $TRANSLATIONS = array( "Current password" => "Nuværende adgangskode", "New password" => "Nyt kodeord", "Change password" => "Skift kodeord", -"Display Name" => "Skærmnavn", +"Full Name" => "Fulde navn", "Email" => "E-mail", "Your email address" => "Din emailadresse", "Fill in an email address to enable password recovery" => "Indtast en emailadresse for at kunne få påmindelse om adgangskode", @@ -112,14 +125,15 @@ $TRANSLATIONS = array( "Select new from Files" => "Vælg nyt fra Filer", "Remove image" => "Fjern billede", "Either png or jpg. Ideally square but you will be able to crop it." => "Enten png eller jpg. Ideelt firkantet men du har mulighed for at beskære det. ", +"Your avatar is provided by your original account." => "Din avatar kommer fra din oprindelige konto.", "Abort" => "Afbryd", "Choose as profile image" => "Vælg som profilbillede", "Language" => "Sprog", "Help translate" => "Hjælp med oversættelsen", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Anvend denne adresse til at tilgå dine filer via WebDAV", +"Use this address to access your Files via WebDAV" => "Brug denne adresse for at tilgå dine filer via WebDAV", "Encryption" => "Kryptering", -"The encryption app is no longer enabled, decrypt all your file" => "Krypterings app'en er ikke længere aktiv. Dekrypter alle dine filer. ", +"The encryption app is no longer enabled, please decrypt all your files" => "Krypteringsprogrammet er ikke længere aktiveret. Dekrypter venligst alle dine filer", "Log-in password" => "Log-in kodeord", "Decrypt all Files" => "Dekrypter alle Filer ", "Login Name" => "Loginnavn", @@ -127,11 +141,12 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "Administrator gendannelse kodeord", "Enter the recovery password in order to recover the users files during password change" => "Indtast et gendannelse kodeord for, at kunne gendanne brugerens filer ved ændring af kodeord", "Default Storage" => "Standard opbevaring", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Indtast venligst lagerkvote (f.eks. \"512 MB\" eller \"12 GB\")", "Unlimited" => "Ubegrænset", "Other" => "Andet", "Username" => "Brugernavn", "Storage" => "Opbevaring", -"change display name" => "skift skærmnavn", +"change full name" => "ændre fulde navn", "set new password" => "skift kodeord", "Default" => "Standard" ); diff --git a/settings/l10n/de.php b/settings/l10n/de.php index ae2165873ea9b2256b3e9465dfde8af2dfe8423d..b9432f187e9ede50ec5912f43635c693ff998cb3 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Die Liste der Anwendungen im Store konnte nicht geladen werden.", "Authentication error" => "Fehler bei der Anmeldung", -"Your display name has been changed." => "Dein Anzeigename ist geändert worden.", -"Unable to change display name" => "Das Ändern des Anzeigenamens ist nicht möglich", +"Your full name has been changed." => "Dein vollständiger Name ist geändert worden.", +"Unable to change full name" => "Der vollständige Name konnte nicht geändert werden", "Group already exists" => "Gruppe existiert bereits", "Unable to add group" => "Gruppe konnte nicht angelegt werden", "Email saved" => "E-Mail Adresse gespeichert", @@ -46,22 +46,33 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Es muss ein gültiger Benutzername angegeben werden", "Error creating user" => "Beim Anlegen des Benutzers ist ein Fehler aufgetreten", "A valid password must be provided" => "Es muss ein gültiges Passwort angegeben werden", +"Warning: Home directory for user \"{user}\" already exists" => "Warnung: Das Benutzerverzeichnis für den Benutzer \"{user}\" existiert bereits", "__language_name__" => "Deutsch (Persönlich)", +"Everything (fatal issues, errors, warnings, info, debug)" => "Alles (fatale Probleme, Fehler, Warnungen, Infos, Debug-Meldungen)", +"Info, warnings, errors and fatal issues" => "Infos, Warnungen, Fehler und fatale Probleme", +"Warnings, errors and fatal issues" => "Warnungen, Fehler und fatale Probleme", +"Errors and fatal issues" => "Fehler und fatale Probleme", +"Fatal issues only" => "Nur fatale Probleme", "Security Warning" => "Sicherheitswarnung", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Du greifst auf %s via HTTP zu. Wir empfehlen Dir dringend, Deinen Server so konfigurieren, das stattdessen HTTPS verlangt wird.", "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." => "Dein Datenverzeichnis und deine Dateien sind möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten dir dringend, dass du deinen Webserver dahingehend konfigurierst, dass dein Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder du verschiebst das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.", "Setup Warning" => "Einrichtungswarnung", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist.", -"Please double check the installation guides." => "Bitte überprüfe die Instalationsanleitungen.", +"Please double check the installation guides." => "Bitte überprüfe die Installationsanleitungen.", "Module 'fileinfo' missing" => "Modul 'fileinfo' fehlt ", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen dieses Modul zu aktivieren um die besten Resultate bei der Erkennung der Dateitypen zu erreichen.", +"Your PHP version is outdated" => "Deine PHP-Version ist veraltet", +"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." => "Deine PHP-Version ist veraltet. Wir empfehlen dringend auf die Version 5.3.8 oder neuer zu aktualisieren, da ältere Versionen kompromittiert werden können. Es ist möglich, dass diese Installation nicht richtig funktioniert.", "Locale not working" => "Ländereinstellung funktioniert nicht", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Die System-Ländereinstellung kann nicht auf %s geändert werden. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren.", +"System locale can not be set to a one which supports UTF-8." => "Systemgebietsschema kann nicht auf eine UTF-8 unterstützende eingestellt werden.", +"This means that there might be problems with certain characters in file names." => "Dies bedeutet, dass Probleme mit bestimmten Zeichen in den Dateinamen geben kann.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eine der folgenden Gebietsschemas unterstützt wird: %s.", "Internet connection not working" => "Keine Netzwerkverbindung", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen.", "Cron" => "Cron", "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 once a minute over http." => "cron.php ist als Webcron-Dienst registriert, der die cron.php minütlich per HTTP aufruft.", -"Use systems cron service to call the cron.php file once a minute." => "Benutze den System-Crondienst um die cron.php minütlich aufzurufen.", +"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.", "Sharing" => "Teilen", "Enable Share API" => "Aktiviere Sharing-API", "Allow apps to use the Share API" => "Erlaubt Apps die Nutzung der Share-API", @@ -73,6 +84,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen", "Allow users to share with anyone" => "Erlaubt Benutzern, mit jedem zu teilen", "Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Benutzern ihrer Gruppe zu teilen", +"Allow mail notification" => "Mail-Benachrichtigung erlauben", +"Allow user to send mail notification for shared files" => "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden", "Security" => "Sicherheit", "Enforce HTTPS" => "Erzwinge HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden.", @@ -103,7 +116,7 @@ $TRANSLATIONS = array( "Current password" => "Aktuelles Passwort", "New password" => "Neues Passwort", "Change password" => "Passwort ändern", -"Display Name" => "Anzeigename", +"Full Name" => "Vollständiger Name", "Email" => "E-Mail", "Your email address" => "Deine E-Mail-Adresse", "Fill in an email address to enable password recovery" => "Trage eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", @@ -112,14 +125,15 @@ $TRANSLATIONS = array( "Select new from Files" => "Neues aus den Dateien wählen", "Remove image" => "Bild entfernen", "Either png or jpg. Ideally square but you will be able to crop it." => "Entweder PNG oder JPG. Im Idealfall quadratisch, aber du kannst es zuschneiden.", +"Your avatar is provided by your original account." => "Dein Avatar wird von Deinem ursprünglichenKonto verwendet.", "Abort" => "Abbrechen", "Choose as profile image" => "Als Profilbild wählen", "Language" => "Sprache", "Help translate" => "Hilf bei der Übersetzung", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Verwenden Sie diese Adresse, um via WebDAV auf Ihre Dateien zuzugreifen", +"Use this address to access your Files via WebDAV" => "Verwenden Sie diese Adresse, um via WebDAV auf Ihre Dateien zuzugreifen", "Encryption" => "Verschlüsselung", -"The encryption app is no longer enabled, decrypt all your file" => "Die Anwendung zur Verschlüsselung ist nicht länger aktiv, all Ihre Dateien werden entschlüsselt.", +"The encryption app is no longer enabled, please decrypt all your files" => "Die Verschlüsselungsanwendung ist nicht länger aktiviert, bitte entschlüsseln Sie alle ihre Daten.", "Log-in password" => "Login-Passwort", "Decrypt all Files" => "Alle Dateien entschlüsseln", "Login Name" => "Loginname", @@ -127,11 +141,12 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "Admin-Wiederherstellungspasswort", "Enter the recovery password in order to recover the users files during password change" => "Geben Sie das Wiederherstellungspasswort ein, um die Benutzerdateien während Passwortänderung wiederherzustellen", "Default Storage" => "Standard-Speicher", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Bitte Speicherkontingent eingeben (z.B.: \"512 MB\" oder \"12 GB\")", "Unlimited" => "Unbegrenzt", "Other" => "Andere", "Username" => "Benutzername", "Storage" => "Speicher", -"change display name" => "Anzeigenamen ändern", +"change full name" => "Vollständigen Namen ändern", "set new password" => "Neues Passwort setzen", "Default" => "Standard" ); diff --git a/settings/l10n/de_CH.php b/settings/l10n/de_CH.php index 558071b3cbfa83062ea3026698aaf69744051ec6..c313cd18b4605fba0f4ea4ed85fe35185ef97a81 100644 --- a/settings/l10n/de_CH.php +++ b/settings/l10n/de_CH.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Die Liste der Anwendungen im Store konnte nicht geladen werden.", "Authentication error" => "Authentifizierungs-Fehler", -"Your display name has been changed." => "Dein Anzeigename ist geändert worden.", -"Unable to change display name" => "Das Ändern des Anzeigenamens ist nicht möglich", "Group already exists" => "Die Gruppe existiert bereits", "Unable to add group" => "Die Gruppe konnte nicht angelegt werden", "Email saved" => "E-Mail-Adresse gespeichert", @@ -48,13 +46,10 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Das Modul 'fileinfo' fehlt", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen.", "Locale not working" => "Die Lokalisierung funktioniert nicht", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Die System-Ländereinstellung kann nicht auf %s geändert werden. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren.", "Internet connection not working" => "Keine Internetverbindung", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen.", "Cron" => "Cron", "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 once a minute over http." => "cron.php ist als Webcron-Dienst registriert, der die cron.php minütlich per HTTP aufruft.", -"Use systems cron service to call the cron.php file once a minute." => "Benutzen Sie den System-Crondienst um die cron.php minütlich aufzurufen.", "Sharing" => "Teilen", "Enable Share API" => "Share-API aktivieren", "Allow apps to use the Share API" => "Anwendungen erlauben, die Share-API zu benutzen", @@ -96,16 +91,13 @@ $TRANSLATIONS = array( "Current password" => "Aktuelles Passwort", "New password" => "Neues Passwort", "Change password" => "Passwort ändern", -"Display Name" => "Anzeigename", "Email" => "E-Mail", "Your email address" => "Ihre E-Mail-Adresse", "Fill in an email address to enable password recovery" => "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", "Language" => "Sprache", "Help translate" => "Helfen Sie bei der Übersetzung", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Verwenden Sie diese Adresse, um auf ihre Dateien per WebDAV zuzugreifen.", "Encryption" => "Verschlüsselung", -"The encryption app is no longer enabled, decrypt all your file" => "Die Anwendung zur Verschlüsselung ist nicht länger aktiv, all Ihre Dateien werden entschlüsselt. ", "Log-in password" => "Login-Passwort", "Decrypt all Files" => "Alle Dateien entschlüsseln", "Login Name" => "Loginname", @@ -117,7 +109,6 @@ $TRANSLATIONS = array( "Other" => "Andere", "Username" => "Benutzername", "Storage" => "Speicher", -"change display name" => "Anzeigenamen ändern", "set new password" => "Neues Passwort setzen", "Default" => "Standard" ); diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 924792aa62b720ca6156b23fd674e8c74d5d7811..ce349b5fcb7d388a9be3c6b923efb1d1b058c0a9 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Die Liste der Anwendungen im Store konnte nicht geladen werden.", "Authentication error" => "Authentifizierungs-Fehler", -"Your display name has been changed." => "Dein Anzeigename ist geändert worden.", -"Unable to change display name" => "Das Ändern des Anzeigenamens ist nicht möglich", +"Your full name has been changed." => "Ihr vollständiger Name ist geändert worden.", +"Unable to change full name" => "Der vollständige Name konnte nicht geändert werden", "Group already exists" => "Die Gruppe existiert bereits", "Unable to add group" => "Die Gruppe konnte nicht angelegt werden", "Email saved" => "E-Mail-Adresse gespeichert", @@ -46,22 +46,33 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Es muss ein gültiger Benutzername angegeben werden", "Error creating user" => "Beim Erstellen des Benutzers ist ein Fehler aufgetreten", "A valid password must be provided" => "Es muss ein gültiges Passwort angegeben werden", +"Warning: Home directory for user \"{user}\" already exists" => "Warnung: Das Benutzerverzeichnis für den Benutzer \"{user}\" existiert bereits", "__language_name__" => "Deutsch (Förmlich: Sie)", +"Everything (fatal issues, errors, warnings, info, debug)" => "Alles (fatale Probleme, Fehler, Warnungen, Infos, Debug-Meldungen)", +"Info, warnings, errors and fatal issues" => "Infos, Warnungen, Fehler und fatale Probleme", +"Warnings, errors and fatal issues" => "Warnungen, Fehler und fatale Probleme", +"Errors and fatal issues" => "Fehler und fatale Probleme", +"Fatal issues only" => "Nur fatale Probleme", "Security Warning" => "Sicherheitshinweis", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Sie greifen auf %s via HTTP zu. Wir empfehlen Ihnen dringend, Ihren Server so konfigurieren, das stattdessen HTTPS verlangt wird.", "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." => "Ihr Datenverzeichnis und Ihre Dateien sind möglicherweise 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 außerhalb des Wurzelverzeichnisses des Webservers.", "Setup Warning" => "Einrichtungswarnung", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist.", "Please double check the installation guides." => "Bitte überprüfen Sie die Instalationsanleitungen.", "Module 'fileinfo' missing" => "Das Modul 'fileinfo' fehlt", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen.", +"Your PHP version is outdated" => "Ihre PHP-Version ist veraltet", +"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." => "Ihre PHP-Version ist veraltet. Wir empfehlen dringend auf die Version 5.3.8 oder neuer zu aktualisieren, da ältere Versionen kompromittiert werden können. Es ist möglich, dass diese Installation nicht richtig funktioniert.", "Locale not working" => "Die Lokalisierung funktioniert nicht", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Die System-Ländereinstellung kann nicht auf %s geändert werden. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren.", +"System locale can not be set to a one which supports UTF-8." => "Systemgebietsschema kann nicht auf eine UTF-8 unterstützende eingestellt werden.", +"This means that there might be problems with certain characters in file names." => "Dies bedeutet, dass Probleme mit bestimmten Zeichen in den Dateinamen geben kann.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eine der folgenden Gebietsschemas unterstützt wird: %s.", "Internet connection not working" => "Keine Internetverbindung", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren, wenn Sie alle Funktionen nutzen wollen.", "Cron" => "Cron", "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 once a minute over http." => "cron.php ist als Webcron-Dienst registriert, der die cron.php minütlich per HTTP aufruft.", -"Use systems cron service to call the cron.php file once a minute." => "Benutzen Sie den System-Crondienst, um die cron.php minütlich aufzurufen.", +"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.", "Sharing" => "Teilen", "Enable Share API" => "Share-API aktivieren", "Allow apps to use the Share API" => "Anwendungen erlauben, die Share-API zu benutzen", @@ -73,6 +84,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen", "Allow users to share with anyone" => "Erlaubt Benutzern, mit jedem zu teilen", "Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen", +"Allow mail notification" => "Mail-Benachrichtigung erlauben", +"Allow user to send mail notification for shared files" => "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden", "Security" => "Sicherheit", "Enforce HTTPS" => "HTTPS erzwingen", "Forces the clients to connect to %s via an encrypted connection." => "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden.", @@ -103,7 +116,7 @@ $TRANSLATIONS = array( "Current password" => "Aktuelles Passwort", "New password" => "Neues Passwort", "Change password" => "Passwort ändern", -"Display Name" => "Anzeigename", +"Full Name" => "Vollständiger Name", "Email" => "E-Mail", "Your email address" => "Ihre E-Mail-Adresse", "Fill in an email address to enable password recovery" => "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", @@ -112,14 +125,15 @@ $TRANSLATIONS = array( "Select new from Files" => "Neues aus den Dateien wählen", "Remove image" => "Bild entfernen", "Either png or jpg. Ideally square but you will be able to crop it." => "Entweder PNG oder JPG. Im Idealfall quadratisch, aber Sie können es zuschneiden.", +"Your avatar is provided by your original account." => "Ihr Avatar wird von Ihrerem ursprünglichenKonto verwendet.", "Abort" => "Abbrechen", "Choose as profile image" => "Als Profilbild wählen", "Language" => "Sprache", "Help translate" => "Helfen Sie bei der Übersetzung", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Verwenden Sie diese Adresse, um auf ihre Dateien per WebDAV zuzugreifen.", +"Use this address to access your Files via WebDAV" => "Verwenden Sie diese Adresse, um via WebDAV auf Ihre Dateien zuzugreifen", "Encryption" => "Verschlüsselung", -"The encryption app is no longer enabled, decrypt all your file" => "Die Anwendung zur Verschlüsselung ist nicht länger aktiv, all Ihre Dateien werden entschlüsselt. ", +"The encryption app is no longer enabled, please decrypt all your files" => "Die Verschlüsselungsanwendung ist nicht länger aktiv, bitte entschlüsseln Sie alle ihre Daten", "Log-in password" => "Login-Passwort", "Decrypt all Files" => "Alle Dateien entschlüsseln", "Login Name" => "Loginname", @@ -127,11 +141,12 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "Admin-Passwort-Wiederherstellung", "Enter the recovery password in order to recover the users files during password change" => "Geben Sie das Wiederherstellungspasswort ein, um die Benutzerdateien während Passwortänderung wiederherzustellen", "Default Storage" => "Standard-Speicher", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Bitte Speicherkontingent eingeben (z.B.: \"512 MB\" oder \"12 GB\")", "Unlimited" => "Unbegrenzt", "Other" => "Andere", "Username" => "Benutzername", "Storage" => "Speicher", -"change display name" => "Anzeigenamen ändern", +"change full name" => "Vollständigen Namen ändern", "set new password" => "Neues Passwort setzen", "Default" => "Standard" ); diff --git a/settings/l10n/el.php b/settings/l10n/el.php index a4876d854df9fb2bcf299c346d0b1ba5ca7aafd6..ab285389a5c192aff8742c335c02257cc690cad7 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Σφάλμα στην φόρτωση της λίστας από το App Store", "Authentication error" => "Σφάλμα πιστοποίησης", -"Your display name has been changed." => "Το όνομα σας στην οθόνη άλλαξε. ", -"Unable to change display name" => "Δεν είναι δυνατή η αλλαγή του ονόματος εμφάνισης", +"Your full name has been changed." => "Το πλήρες όνομά σας άλλαξε.", +"Unable to change full name" => "Δεν ήταν δυνατή η αλλαγή του πλήρους ονόματός σας", "Group already exists" => "Η ομάδα υπάρχει ήδη", "Unable to add group" => "Αδυναμία προσθήκης ομάδας", "Email saved" => "Το email αποθηκεύτηκε ", @@ -16,15 +16,25 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "Αδυναμία προσθήκη χρήστη στην ομάδα %s", "Unable to remove user from group %s" => "Αδυναμία αφαίρεσης χρήστη από την ομάδα %s", "Couldn't update app." => "Αδυναμία ενημέρωσης εφαρμογής", +"Wrong password" => "Εσφαλμένο συνθηματικό", +"No user supplied" => "Δεν εισήχθη χρήστης", +"Please provide an admin recovery password, otherwise all user data will be lost" => "Παρακαλώ παρέχετε έναν κωδικό ανάκτησης διαχειριστή, διαφορετικά όλα τα δεδομένα χρήστη θα χαθούν", +"Wrong admin recovery password. Please check the password and try again." => "Λάθος κωδικός ανάκτησης διαχειριστή. Παρακαλώ ελέγξτε τον κωδικό και δοκιμάστε ξανά.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "Το βασικό πλαίσιο δεν υποστηρίζει αλλαγή κωδικού, αλλά το κλειδί κρυπτογράφησης των χρηστών ενημερώθηκε επιτυχώς.", +"Unable to change password" => "Αδυναμία αλλαγής συνθηματικού", "Update to {appversion}" => "Ενημέρωση σε {appversion}", "Disable" => "Απενεργοποίηση", "Enable" => "Ενεργοποίηση", "Please wait...." => "Παρακαλώ περιμένετε...", +"Error while disabling app" => "Σφάλμα κατά την απενεργοποίηση εισόδου", +"Error while enabling app" => "Σφάλμα κατά την ενεργοποίηση της εφαρμογής", "Updating...." => "Ενημέρωση...", "Error while updating app" => "Σφάλμα κατά την ενημέρωση της εφαρμογής", "Error" => "Σφάλμα", "Update" => "Ενημέρωση", "Updated" => "Ενημερώθηκε", +"Select a profile picture" => "Επιλογή εικόνας προφίλ", +"Decrypting files... Please wait, this can take some time." => "Αποκρυπτογράφηση αρχείων... Παρακαλώ περιμένετε, αυτό μπορεί να πάρει κάποιο χρόνο.", "Saving..." => "Γίνεται αποθήκευση...", "deleted" => "διαγράφηκε", "undo" => "αναίρεση", @@ -36,27 +46,50 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Πρέπει να δοθεί έγκυρο όνομα χρήστη", "Error creating user" => "Σφάλμα δημιουργίας χρήστη", "A valid password must be provided" => "Πρέπει να δοθεί έγκυρο συνθηματικό", +"Warning: Home directory for user \"{user}\" already exists" => "Προειδοποίηση: Ο μητρικός κατάλογος του χρήστη \"{user}\" υπάρχει ήδη", "__language_name__" => "__όνομα_γλώσσας__", +"Everything (fatal issues, errors, warnings, info, debug)" => "Όλα (καίρια ζητήματα, σφάλματα, προειδοποιήσεις, πληροφορίες, αποσφαλμάτωση)", +"Info, warnings, errors and fatal issues" => "Πληροφορίες, προειδοποιήσεις, σφάλματα και καίρια ζητήματα", +"Warnings, errors and fatal issues" => "Προειδοποιήσεις, σφάλματα και καίρια ζητήματα", +"Errors and fatal issues" => "Σφάλματα και καίρια ζητήματα", +"Fatal issues only" => "Καίρια ζητήματα μόνο", "Security Warning" => "Προειδοποίηση Ασφαλείας", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Έχετε πρόσβαση στο %s μέσω HTTP. Προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας ώστε να απαιτεί χρήση 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." => "Ο κατάλογος δεδομένων και τα αρχεία σας πιθανόν να είναι διαθέσιμα στο διαδίκτυο. Το αρχείο .htaccess δεν δουλεύει. Σας προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας με τέτοιο τρόπο ώστε ο κατάλογος δεδομένων να μην είναι πλέον προσβάσιμος ή να μετακινήσετε τον κατάλογο δεδομένων έξω από τη ρίζα του καταλόγου του διακομιστή.", "Setup Warning" => "Ρύθμιση Προειδοποίησης", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη.", +"Please double check the installation guides." => "Ελέγξτε ξανά τις οδηγίες εγκατάστασης.", "Module 'fileinfo' missing" => "Η ενοτητα 'fileinfo' λειπει", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Η PHP ενοτητα 'fileinfo' λειπει. Σας συνιστούμε να ενεργοποιήσετε αυτή την ενότητα για να έχετε καλύτερα αποτελέσματα με τον εντοπισμό τύπου MIME. ", +"Your PHP version is outdated" => "Η έκδοση PHP είναι απαρχαιωμένη", +"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." => "Η έκδοση PHP είναι απαρχαιωμένη. Συνιστούμε ανεπιφύλακτα να ενημερώσετε στην 5.3.8 ή νεώτερη καθώς παλαιότερες εκδόσεις είναι γνωστό πως περιέχουν σφάλματα. Είναι πιθανόν ότι αυτή η εγκατάσταση δεν λειτουργεί σωστά.", "Locale not working" => "Η μετάφραση δεν δουλεύει", +"System locale can not be set to a one which supports UTF-8." => "Οι ρυθμίσεις τοποθεσίας συστήματος δεν μπορούν να οριστούν σε κάποιες που δεν υποστηρίζουν UTF-8.", +"This means that there might be problems with certain characters in file names." => "Αυτό σημαίνει ότι μπορεί να υπάρχουν προβλήματα με κάποιους χαρακτήρες στα ονόματα αρχείων.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Συνιστούμε σοβαρά να εγκαταστήσετε τα απαιτούμενα πακέτα στο σύστημά σας ώστε να υποστηρίζεται μια από τις ακόλουθες ρυθμίσεις τοποθεσίας: %s.", "Internet connection not working" => "Η σύνδεση στο διαδίκτυο δεν δουλεύει", +"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." => "Αυτός ο διακομιστής δεν έχει ενεργή σύνδεση στο διαδίκτυο. Αυτό σημαίνει ότι κάποιες υπηρεσίες όπως η σύνδεση με εξωτερικούς αποθηκευτικούς χώρους, ειδοποιήσεις περί ενημερώσεων ή η εγκατάσταση 3ων εφαρμογών δεν θα είναι διαθέσιμες. Η πρόσβαση απομακρυσμένων αρχείων και η αποστολή ειδοποιήσεων μέσω ηλεκτρονικού ταχυδρομείου μπορεί επίσης να μην είναι διαθέσιμες. Προτείνουμε να ενεργοποιήσετε την πρόσβαση στο διαδίκτυο για αυτόν το διακομιστή εάν θέλετε να χρησιμοποιήσετε όλες τις υπηρεσίες.", "Cron" => "Cron", "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 είναι καταχωρημένο σε μια υπηρεσία webcron ώστε να καλεί το cron.php κάθε 15 λεπτά μέσω http.", +"Use systems cron service to call the cron.php file every 15 minutes." => "Χρήση της υπηρεσίας cron του συστήματος για να καλεστεί το αρχείο cron.php κάθε 15 λεπτά.", "Sharing" => "Διαμοιρασμός", "Enable Share API" => "Ενεργοποίηση API Διαμοιρασμού", "Allow apps to use the Share API" => "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού", "Allow links" => "Να επιτρέπονται σύνδεσμοι", "Allow users to share items to the public with links" => "Να επιτρέπεται στους χρήστες να διαμοιράζουν δημόσια με συνδέσμους", +"Allow public uploads" => "Επιτρέψτε κοινόχρηστο ανέβασμα", +"Allow users to enable others to upload into their publicly shared folders" => "Επιτρέψτε στους χρήστες να καθιστούν άλλους χρήστες ικανούς να ανεβάζουν στους κοινόχρηστους φακέλους τους", "Allow resharing" => "Να επιτρέπεται ο επαναδιαμοιρασμός", "Allow users to share items shared with them again" => "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί", "Allow users to share with anyone" => "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε", "Allow users to only share with users in their groups" => "Να επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας", +"Allow mail notification" => "Επιτρέψτε ειδοποιήσεις ηλεκτρονικού ταχυδρομείου", +"Allow user to send mail notification for shared files" => "Επιτρέψτε στο χρήστη να στέλνει ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία", "Security" => "Ασφάλεια", "Enforce HTTPS" => "Επιβολή χρήσης HTTPS", +"Forces the clients to connect to %s via an encrypted connection." => "Επιβάλλει τους δέκτες να συνδέονται με το %s μέσω κρυπογραφημένης σύνδεσης.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Παρακαλώ συνδεθείτε στο %s σας μέσω HTTPS για να ενεργοποιήσετε ή να απενεργοποιήσετε την επιβολή του SSL.", "Log" => "Καταγραφές", "Log level" => "Επίπεδο καταγραφής", "More" => "Περισσότερα", @@ -83,26 +116,37 @@ $TRANSLATIONS = array( "Current password" => "Τρέχων συνθηματικό", "New password" => "Νέο συνθηματικό", "Change password" => "Αλλαγή συνθηματικού", -"Display Name" => "Όνομα εμφάνισης", +"Full Name" => "Πλήρες όνομα", "Email" => "Ηλ. ταχυδρομείο", "Your email address" => "Η διεύθυνση ηλεκτρονικού ταχυδρομείου σας", "Fill in an email address to enable password recovery" => "Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί η ανάκτηση συνθηματικού", "Profile picture" => "Φωτογραφία προφίλ", +"Upload new" => "Μεταφόρτωση νέου", +"Select new from Files" => "Επιλογή νέου από τα Αρχεία", +"Remove image" => "Αφαίρεση εικόνας", +"Either png or jpg. Ideally square but you will be able to crop it." => "Είτε png ή jpg. Ιδανικά τετράγωνη αλλά θα είστε σε θέση να την περικόψετε.", +"Your avatar is provided by your original account." => "Το άβατάρ σας παρέχεται από τον αρχικό σας λογαριασμό.", +"Abort" => "Ματαίωση", +"Choose as profile image" => "Επιλογή εικόνας προφίλ", "Language" => "Γλώσσα", "Help translate" => "Βοηθήστε στη μετάφραση", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Χρήση αυτής της διεύθυνσης για πρόσβαση των αρχείων σας μέσω WebDAV", +"Use this address to access your Files via WebDAV" => "Χρήση αυτής της διεύθυνσης πρόσβαση των Αρχείων σας μέσω WebDAV", "Encryption" => "Κρυπτογράφηση", +"The encryption app is no longer enabled, please decrypt all your files" => "Η εφαρμογή κρυπτογράφησης δεν είναι πλέον ενεργοποιημένη, παρακαλώ αποκρυπτογραφήστε όλα τα αρχεία σας", +"Log-in password" => "Συνθηματικό εισόδου", +"Decrypt all Files" => "Αποκρυπτογράφηση όλων των Αρχείων", "Login Name" => "Όνομα Σύνδεσης", "Create" => "Δημιουργία", "Admin Recovery Password" => "Κωδικός Επαναφοράς Διαχειριστή ", "Enter the recovery password in order to recover the users files during password change" => "Εισάγετε το συνθηματικό ανάκτησης ώστε να ανακτήσετε τα αρχεία χρηστών κατά την αλλαγή συνθηματικού", "Default Storage" => "Προκαθορισμένη Αποθήκευση ", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Παρακαλώ εισάγετε επιτρεπόμενα μερίδια αποθηκευτικού χώρου (π.χ. \"512 MB\" ή \"12 GB\")", "Unlimited" => "Απεριόριστο", "Other" => "Άλλο", "Username" => "Όνομα χρήστη", "Storage" => "Αποθήκευση", -"change display name" => "αλλαγή ονόματος εμφάνισης", +"change full name" => "αλλαγή πλήρους ονόματος", "set new password" => "επιλογή νέου κωδικού", "Default" => "Προκαθορισμένο" ); diff --git a/settings/l10n/en_GB.php b/settings/l10n/en_GB.php index abbc92709e56688b9c50b480392307bc151f22ee..5f7b6e1fe0d1760107c73e9cebc83aa722142d0a 100644 --- a/settings/l10n/en_GB.php +++ b/settings/l10n/en_GB.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Unable to load list from App Store", "Authentication error" => "Authentication error", -"Your display name has been changed." => "Your display name has been changed.", -"Unable to change display name" => "Unable to change display name", +"Your full name has been changed." => "Your full name has been changed.", +"Unable to change full name" => "Unable to change full name", "Group already exists" => "Group already exists", "Unable to add group" => "Unable to add group", "Email saved" => "Email saved", @@ -46,22 +46,33 @@ $TRANSLATIONS = array( "A valid username must be provided" => "A valid username must be provided", "Error creating user" => "Error creating user", "A valid password must be provided" => "A valid password must be provided", +"Warning: Home directory for user \"{user}\" already exists" => "Warning: Home directory for user \"{user}\" already exists", "__language_name__" => "__language_name__", +"Everything (fatal issues, errors, warnings, info, debug)" => "Everything (fatal issues, errors, warnings, info, debug)", +"Info, warnings, errors and fatal issues" => "Info, warnings, errors and fatal issues", +"Warnings, errors and fatal issues" => "Warnings, errors and fatal issues", +"Errors and fatal issues" => "Errors and fatal issues", +"Fatal issues only" => "Fatal issues only", "Security Warning" => "Security Warning", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead.", "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." => "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.", "Setup Warning" => "Setup Warning", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Your web server is not yet properly setup to allow files synchronisation because the WebDAV interface seems to be broken.", "Please double check the installation guides." => "Please double check the installation guides.", "Module 'fileinfo' missing" => "Module 'fileinfo' missing", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "The PHP module 'fileinfo' is missing. We strongly recommend enabling this module to get best results with mime-type detection.", +"Your PHP version is outdated" => "Your PHP version is outdated", +"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." => "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.", "Locale not working" => "Locale not working", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s.", +"System locale can not be set to a one which supports UTF-8." => "System locale can not be set to a one which supports UTF-8.", +"This means that there might be problems with certain characters in file names." => "This means that there might be problems with certain characters in file names.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "We strongly suggest installing the required packages on your system to support one of the following locales: %s.", "Internet connection not working" => "Internet connection not working", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don't work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features.", "Cron" => "Cron", "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 once a minute over http." => "cron.php is registered at a webcron service to call cron.php once a minute over http.", -"Use systems cron service to call the cron.php file once a minute." => "Use systems cron service to call the cron.php file once a minute.", +"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.", "Sharing" => "Sharing", "Enable Share API" => "Enable Share API", "Allow apps to use the Share API" => "Allow apps to use the Share API", @@ -73,6 +84,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Allow users to share items shared with them again", "Allow users to share with anyone" => "Allow users to share with anyone", "Allow users to only share with users in their groups" => "Allow users to only share with users in their groups", +"Allow mail notification" => "Allow mail notification", +"Allow user to send mail notification for shared files" => "Allow user to send mail notification for shared files", "Security" => "Security", "Enforce HTTPS" => "Enforce HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forces the clients to connect to %s via an encrypted connection.", @@ -103,7 +116,7 @@ $TRANSLATIONS = array( "Current password" => "Current password", "New password" => "New password", "Change password" => "Change password", -"Display Name" => "Display Name", +"Full Name" => "Full Name", "Email" => "Email", "Your email address" => "Your email address", "Fill in an email address to enable password recovery" => "Fill in an email address to enable password recovery", @@ -112,14 +125,15 @@ $TRANSLATIONS = array( "Select new from Files" => "Select new from Files", "Remove image" => "Remove image", "Either png or jpg. Ideally square but you will be able to crop it." => "Either png or jpg. Ideally square but you will be able to crop it.", +"Your avatar is provided by your original account." => "Your avatar is provided by your original account.", "Abort" => "Abort", "Choose as profile image" => "Choose as profile image", "Language" => "Language", "Help translate" => "Help translate", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Use this address to access your Files via WebDAV", +"Use this address to access your Files via WebDAV" => "Use this address to access your Files via WebDAV", "Encryption" => "Encryption", -"The encryption app is no longer enabled, decrypt all your file" => "The encryption app is no longer enabled, decrypt all your files", +"The encryption app is no longer enabled, please decrypt all your files" => "The encryption app is no longer enabled, please decrypt all your files", "Log-in password" => "Log-in password", "Decrypt all Files" => "Decrypt all Files", "Login Name" => "Login Name", @@ -127,11 +141,12 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "Admin Recovery Password", "Enter the recovery password in order to recover the users files during password change" => "Enter the recovery password in order to recover the user's files during password change", "Default Storage" => "Default Storage", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Please enter storage quota (e.g. \"512 MB\" or \"12 GB\")", "Unlimited" => "Unlimited", "Other" => "Other", "Username" => "Username", "Storage" => "Storage", -"change display name" => "change display name", +"change full name" => "change full name", "set new password" => "set new password", "Default" => "Default" ); diff --git a/settings/l10n/es.php b/settings/l10n/es.php index b20a4acb29971c1696fb55df5d6228ae33060b3a..fbd984098219412a00fde0a35fff0d4d5f296082 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -1,13 +1,13 @@ "Imposible cargar la lista desde el App Store", +"Unable to load list from App Store" => "No se pudo cargar la lista desde el App Store", "Authentication error" => "Error de autenticación", -"Your display name has been changed." => "Su nombre de usuario ha sido cambiado.", -"Unable to change display name" => "No se pudo cambiar el nombre de usuario", +"Your full name has been changed." => "Se ha cambiado su nombre completo.", +"Unable to change full name" => "No se puede cambiar el nombre completo", "Group already exists" => "El grupo ya existe", "Unable to add group" => "No se pudo añadir el grupo", -"Email saved" => "E-mail guardado", -"Invalid email" => "Correo no válido", +"Email saved" => "Correo electrónico guardado", +"Invalid email" => "Correo electrónico no válido", "Unable to delete group" => "No se pudo eliminar el grupo", "Unable to delete user" => "No se pudo eliminar el usuario", "Language changed" => "Idioma cambiado", @@ -15,9 +15,12 @@ $TRANSLATIONS = array( "Admins can't remove themself from the admin group" => "Los administradores no se pueden eliminar a ellos mismos del grupo de administrador", "Unable to add user to group %s" => "No se pudo añadir el usuario al grupo %s", "Unable to remove user from group %s" => "No se pudo eliminar al usuario del grupo %s", -"Couldn't update app." => "No se pudo actualizar la aplicacion.", -"Please provide an admin recovery password, otherwise all user data will be lost" => "Por favor facilite una contraseña de recuperación de administrador, sino se perderán todos los datos de usuario", +"Couldn't update app." => "No se pudo actualizar la aplicación.", +"Wrong password" => "Contraseña incorrecta", +"No user supplied" => "No se especificó un usuario", +"Please provide an admin recovery password, otherwise all user data will be lost" => "Por favor facilite una contraseña de recuperación de administrador, sino podrían perderse todos los datos de usuario", "Wrong admin recovery password. Please check the password and try again." => "Contraseña de recuperación de administrador incorrecta. Por favor compruebe la contraseña e inténtelo de nuevo.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "El back-end no soporta cambios de contraseña, pero la clave de cifrado del usuario ha sido actualizada satisfactoriamente.", "Unable to change password" => "No se ha podido cambiar la contraseña", "Update to {appversion}" => "Actualizado a {appversion}", "Disable" => "Desactivar", @@ -33,32 +36,43 @@ $TRANSLATIONS = array( "Select a profile picture" => "Seleccionar una imagen de perfil", "Decrypting files... Please wait, this can take some time." => "Descifrando archivos... Espere por favor, esto puede llevar algo de tiempo.", "Saving..." => "Guardando...", -"deleted" => "Eliminado", +"deleted" => "eliminado", "undo" => "deshacer", -"Unable to remove user" => "No se puede eliminar el usuario", +"Unable to remove user" => "Imposible eliminar al usuario", "Groups" => "Grupos", "Group Admin" => "Administrador del Grupo", "Delete" => "Eliminar", "add group" => "añadir Grupo", -"A valid username must be provided" => "Se debe proporcionar un nombre de usuario válido", +"A valid username must be provided" => "Se debe proporcionar un nombre de usuario válido", "Error creating user" => "Error al crear usuario", -"A valid password must be provided" => "Se debe proporcionar una contraseña valida", +"A valid password must be provided" => "Se debe proporcionar una contraseña válida", +"Warning: Home directory for user \"{user}\" already exists" => "Atención: el directorio de inicio para el usuario \"{user}\" ya existe.", "__language_name__" => "Castellano", +"Everything (fatal issues, errors, warnings, info, debug)" => "Todo (Información, Avisos, Errores, debug y problemas fatales)", +"Info, warnings, errors and fatal issues" => "Información, Avisos, Errores y problemas fatales", +"Warnings, errors and fatal issues" => "Advertencias, errores y problemas fatales", +"Errors and fatal issues" => "Errores y problemas fatales", +"Fatal issues only" => "Problemas fatales solamente", "Security Warning" => "Advertencia de seguridad", -"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." => "Probablemente se puede acceder a su directorio de datos y sus archivos desde Internet. El archivo .htaccess no está funcionando. Nosotros le sugerimos encarecidamente que configure su servidor web de modo que el directorio de datos ya no sea accesible o que mueva el directorio de datos fuera de la raíz de documentos del servidor web.", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Está ingresando a %s vía HTTP. Le recomendamos encarecidamente que configure su servidor para que requiera 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." => "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.", "Setup Warning" => "Advertencia de configuración", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Su servidor web aún no está configurado adecuadamente para permitir la sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando.", "Please double check the installation guides." => "Por favor, vuelva a comprobar las guías de instalación.", "Module 'fileinfo' missing" => "No se ha encontrado el módulo \"fileinfo\"", -"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "No se ha encontrado el modulo PHP 'fileinfo'. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección del mime-type", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "No se ha encontrado el modulo PHP 'fileinfo'. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección de tipos MIME.", +"Your PHP version is outdated" => "Su versión de PHP ha caducado", +"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." => "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.", "Locale not working" => "La configuración regional no está funcionando", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "La configuración regional del sistema no se puede ajustar a %s. Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivo. Le recomendamos instalar los paquetes necesarios en el sistema para soportar % s.", -"Internet connection not working" => "La conexion a internet no esta funcionando", -"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor no tiene una conexión a Internet. Esto significa que algunas de las características como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones o instalación de aplicaciones de terceros no funcionan. Podría no funcionar el acceso a los archivos de forma remota y el envío de correos electrónicos de notificación. Sugerimos habilitar la conexión a Internet de este servidor, si quiere tener todas las funciones.", +"System locale can not be set to a one which supports UTF-8." => "No se puede escoger una configuración regional que soporte UTF-8.", +"This means that there might be problems with certain characters in file names." => "Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Es muy recomendable instalar los paquetes necesarios para poder soportar una de las siguientes configuraciones regionales: %s. ", +"Internet connection not working" => "La conexión a Internet no está funcionando", +"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor no tiene conexión a Internet. Esto significa que algunas de las características no funcionarán, como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones, la instalación de aplicaciones de terceros, el acceso a los archivos de forma remota o el envío de correos electrónicos de notificación. Sugerimos habilitar una conexión a Internet en este servidor para disfrutar de todas las funciones.", "Cron" => "Cron", "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 once a minute over http." => "cron.php está registrado en un servicio WebCron para llamar cron.php una vez por minuto a través de HTTP.", -"Use systems cron service to call the cron.php file once a minute." => "Usar el servicio cron del sistema para llamar al archivo cron.php una vez por minuto.", +"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.", "Sharing" => "Compartiendo", "Enable Share API" => "Activar API de Compartición", "Allow apps to use the Share API" => "Permitir a las aplicaciones utilizar la API de Compartición", @@ -68,12 +82,14 @@ $TRANSLATIONS = array( "Allow users to enable others to upload into their publicly shared folders" => "Permitir a los usuarios habilitar a otros para subir archivos en sus carpetas compartidas públicamente", "Allow resharing" => "Permitir re-compartición", "Allow users to share items shared with them again" => "Permitir a los usuarios compartir de nuevo elementos ya compartidos", -"Allow users to share with anyone" => "Permitir a los usuarios compartir con todo el mundo", +"Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquier persona", "Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los usuarios en sus grupos", +"Allow mail notification" => "Permitir notificaciones por correo electrónico", +"Allow user to send mail notification for shared files" => "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos", "Security" => "Seguridad", "Enforce HTTPS" => "Forzar HTTPS", -"Forces the clients to connect to %s via an encrypted connection." => "Forzar a los clientes a conectarse a %s por medio de una conexión encriptada.", -"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Por favor, conéctese a su %s a través de HTTPS para habilitar o deshabilitar la aplicación SSL.", +"Forces the clients to connect to %s via an encrypted connection." => "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Por favor, conéctese a su %s a través de HTTPS para habilitar o deshabilitar la aplicación de SSL.", "Log" => "Registro", "Log level" => "Nivel de registro", "More" => "Más", @@ -86,13 +102,13 @@ $TRANSLATIONS = array( "See application page at apps.owncloud.com" => "Ver la página de aplicaciones en apps.owncloud.com", "-licensed by " => "-licencia otorgada por ", "User Documentation" => "Documentación de usuario", -"Administrator Documentation" => "Documentación de adminstrador", -"Online Documentation" => "Documentación en linea", +"Administrator Documentation" => "Documentación de administrador", +"Online Documentation" => "Documentación en línea", "Forum" => "Foro", "Bugtracker" => "Rastreador de fallos", "Commercial Support" => "Soporte comercial", "Get the apps to sync your files" => "Obtener las aplicaciones para sincronizar sus archivos", -"Show First Run Wizard again" => "Mostrar asistente para iniciar de nuevo", +"Show First Run Wizard again" => "Mostrar nuevamente el Asistente de ejecución inicial", "You have used %s of the available %s" => "Ha usado %s de los %s disponibles", "Password" => "Contraseña", "Your password was changed" => "Su contraseña ha sido cambiada", @@ -100,35 +116,38 @@ $TRANSLATIONS = array( "Current password" => "Contraseña actual", "New password" => "Nueva contraseña", "Change password" => "Cambiar contraseña", -"Display Name" => "Nombre a mostrar", -"Email" => "E-mail", +"Full Name" => "Nombre completo", +"Email" => "Correo electrónico", "Your email address" => "Su dirección de correo", "Fill in an email address to enable password recovery" => "Escriba una dirección de correo electrónico para restablecer la contraseña", -"Profile picture" => "Foto del perfil", -"Upload new" => "Subir nuevo", -"Select new from Files" => "Seleccionar nuevo desde Ficheros", +"Profile picture" => "Foto de perfil", +"Upload new" => "Subir otra", +"Select new from Files" => "Seleccionar otra desde Archivos", "Remove image" => "Borrar imagen", -"Abort" => "Abortar", +"Either png or jpg. Ideally square but you will be able to crop it." => "Archivo PNG o JPG. Preferiblemente cuadrado, pero tendrás la posibilidad de recortarlo.", +"Your avatar is provided by your original account." => "Su avatar es proporcionado por su cuenta original.", +"Abort" => "Cancelar", "Choose as profile image" => "Seleccionar como imagen de perfil", "Language" => "Idioma", "Help translate" => "Ayúdanos a traducir", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Utilice esta dirección paraacceder a sus archivos a través de WebDAV", +"Use this address to access your Files via WebDAV" => "Utilice esta dirección para acceder a sus archivos vía WebDAV", "Encryption" => "Cifrado", -"The encryption app is no longer enabled, decrypt all your file" => "La aplicación de cifrado no está activada, descifre sus archivos", +"The encryption app is no longer enabled, please decrypt all your files" => "La aplicación de cifrado ya no está activada, descifre todos sus archivos", "Log-in password" => "Contraseña de acceso", "Decrypt all Files" => "Descifrar archivos", "Login Name" => "Nombre de usuario", "Create" => "Crear", "Admin Recovery Password" => "Recuperación de la contraseña de administración", -"Enter the recovery password in order to recover the users files during password change" => "Introduzca la contraseña de recuperación para recuperar los archivos de usuarios durante el cambio de contraseña.", +"Enter the recovery password in order to recover the users files during password change" => "Introduzca la contraseña de recuperación a fin de recuperar los archivos de los usuarios durante el cambio de contraseña.", "Default Storage" => "Almacenamiento predeterminado", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Por favor indique la cúota de almacenamiento (ej: \"512 MB\" o \"12 GB\")", "Unlimited" => "Ilimitado", "Other" => "Otro", "Username" => "Nombre de usuario", "Storage" => "Almacenamiento", -"change display name" => "Cambiar nombre a mostrar", -"set new password" => "Configurar nueva contraseña", +"change full name" => "cambiar el nombre completo", +"set new password" => "establecer nueva contraseña", "Default" => "Predeterminado" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index aba4b604a2dc4888e60e05931a98752e1510bb33..44c9964778c9f3ca21710f24b6b93100aac30a7a 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Imposible cargar la lista desde el App Store", "Authentication error" => "Error al autenticar", -"Your display name has been changed." => "El nombre mostrado que usás fue cambiado.", -"Unable to change display name" => "No fue posible cambiar el nombre mostrado", "Group already exists" => "El grupo ya existe", "Unable to add group" => "No fue posible añadir el grupo", "Email saved" => "e-mail guardado", @@ -48,13 +46,10 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "El módulo 'fileinfo' no existe", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "El módulo PHP 'fileinfo' no existe. Es recomendable que actives este módulo para obtener mejores resultados con la detección mime-type", "Locale not working" => "\"Locale\" no está funcionando", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "No se pudo asignar la localización del sistema a %s. Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos. Recomendamos fuertemente instalar los paquetes de sistema requeridos para poder dar soporte a %s.", "Internet connection not working" => "La conexión a Internet no esta funcionando. ", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "El servidor no posee una conexión a Internet activa. Esto significa que algunas características como el montaje de un almacenamiento externo, las notificaciones acerca de actualizaciones o la instalación de aplicaciones de terceros no funcionarán. El acceso a archivos de forma remota y el envío de correos con notificaciones es posible que tampoco funcionen. Sugerimos habilitar la conexión a Internet para este servidor si deseas tener todas estas características.", "Cron" => "Cron", "Execute one task with each page loaded" => "Ejecutá una tarea con cada pagina cargada.", -"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php está registrado al servicio webcron para que sea llamado una vez por cada minuto sobre http.", -"Use systems cron service to call the cron.php file once a minute." => "Usa el servicio cron del sistema para ejecutar al archivo cron.php por cada minuto.", "Sharing" => "Compartiendo", "Enable Share API" => "Habilitar Share API", "Allow apps to use the Share API" => "Permitir a las aplicaciones usar la Share API", @@ -96,7 +91,6 @@ $TRANSLATIONS = array( "Current password" => "Contraseña actual", "New password" => "Nueva contraseña:", "Change password" => "Cambiar contraseña", -"Display Name" => "Nombre a mostrar", "Email" => "e-mail", "Your email address" => "Tu dirección de e-mail", "Fill in an email address to enable password recovery" => "Escribí una dirección de e-mail para restablecer la contraseña", @@ -104,9 +98,7 @@ $TRANSLATIONS = array( "Language" => "Idioma", "Help translate" => "Ayudanos a traducir", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Usá esta dirección para acceder a tus archivos a través de WebDAV", "Encryption" => "Encriptación", -"The encryption app is no longer enabled, decrypt all your file" => "La aplicación de encriptación ya no está habilitada, desencriptando todos los archivos", "Log-in password" => "Clave de acceso", "Decrypt all Files" => "Desencriptar todos los archivos", "Login Name" => "Nombre de Usuario", @@ -118,7 +110,6 @@ $TRANSLATIONS = array( "Other" => "Otros", "Username" => "Nombre de usuario", "Storage" => "Almacenamiento", -"change display name" => "Cambiar el nombre mostrado", "set new password" => "Configurar nueva contraseña", "Default" => "Predeterminado" ); diff --git a/settings/l10n/es_CL.php b/settings/l10n/es_CL.php new file mode 100644 index 0000000000000000000000000000000000000000..86e66bd482571c42e1d96f0c49668e2ce451ef5f --- /dev/null +++ b/settings/l10n/es_CL.php @@ -0,0 +1,6 @@ + "Clave", +"Username" => "Usuario" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/es_MX.php b/settings/l10n/es_MX.php new file mode 100644 index 0000000000000000000000000000000000000000..520ab637ffc0cd94d06a68b1daadb8d184dc76ce --- /dev/null +++ b/settings/l10n/es_MX.php @@ -0,0 +1,153 @@ + "No se pudo cargar la lista desde el App Store", +"Authentication error" => "Error de autenticación", +"Your full name has been changed." => "Se ha cambiado su nombre completo.", +"Unable to change full name" => "No se puede cambiar el nombre completo", +"Group already exists" => "El grupo ya existe", +"Unable to add group" => "No se pudo añadir el grupo", +"Email saved" => "Correo electrónico guardado", +"Invalid email" => "Correo electrónico no válido", +"Unable to delete group" => "No se pudo eliminar el grupo", +"Unable to delete user" => "No se pudo eliminar el usuario", +"Language changed" => "Idioma cambiado", +"Invalid request" => "Petición no válida", +"Admins can't remove themself from the admin group" => "Los administradores no se pueden eliminar a ellos mismos del grupo de administrador", +"Unable to add user to group %s" => "No se pudo añadir el usuario al grupo %s", +"Unable to remove user from group %s" => "No se pudo eliminar al usuario del grupo %s", +"Couldn't update app." => "No se pudo actualizar la aplicación.", +"Wrong password" => "Contraseña incorrecta", +"No user supplied" => "No se especificó un usuario", +"Please provide an admin recovery password, otherwise all user data will be lost" => "Por favor facilite una contraseña de recuperación de administrador, sino podrían perderse todos los datos de usuario", +"Wrong admin recovery password. Please check the password and try again." => "Contraseña de recuperación de administrador incorrecta. Por favor compruebe la contraseña e inténtelo de nuevo.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "El back-end no soporta cambios de contraseña, pero la clave de cifrado del usuario ha sido actualizada satisfactoriamente.", +"Unable to change password" => "No se ha podido cambiar la contraseña", +"Update to {appversion}" => "Actualizado a {appversion}", +"Disable" => "Desactivar", +"Enable" => "Activar", +"Please wait...." => "Espere, por favor....", +"Error while disabling app" => "Error mientras se desactivaba la aplicación", +"Error while enabling app" => "Error mientras se activaba la aplicación", +"Updating...." => "Actualizando....", +"Error while updating app" => "Error mientras se actualizaba la aplicación", +"Error" => "Error", +"Update" => "Actualizar", +"Updated" => "Actualizado", +"Select a profile picture" => "Seleccionar una imagen de perfil", +"Decrypting files... Please wait, this can take some time." => "Descifrando archivos... Espere por favor, esto puede llevar algo de tiempo.", +"Saving..." => "Guardando...", +"deleted" => "eliminado", +"undo" => "deshacer", +"Unable to remove user" => "Imposible eliminar al usuario", +"Groups" => "Grupos", +"Group Admin" => "Administrador del Grupo", +"Delete" => "Eliminar", +"add group" => "añadir Grupo", +"A valid username must be provided" => "Se debe proporcionar un nombre de usuario válido", +"Error creating user" => "Error al crear usuario", +"A valid password must be provided" => "Se debe proporcionar una contraseña válida", +"Warning: Home directory for user \"{user}\" already exists" => "Atención: el directorio de inicio para el usuario \"{user}\" ya existe.", +"__language_name__" => "Español (México)", +"Everything (fatal issues, errors, warnings, info, debug)" => "Todo (Información, Avisos, Errores, debug y problemas fatales)", +"Info, warnings, errors and fatal issues" => "Información, Avisos, Errores y problemas fatales", +"Warnings, errors and fatal issues" => "Advertencias, errores y problemas fatales", +"Errors and fatal issues" => "Errores y problemas fatales", +"Fatal issues only" => "Problemas fatales solamente", +"Security Warning" => "Advertencia de seguridad", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Está ingresando a %s vía HTTP. Le recomendamos encarecidamente que configure su servidor para que requiera 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." => "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.", +"Setup Warning" => "Advertencia de configuración", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Su servidor web aún no está configurado adecuadamente para permitir la sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando.", +"Please double check the installation guides." => "Por favor, vuelva a comprobar las guías de instalación.", +"Module 'fileinfo' missing" => "No se ha encontrado el módulo \"fileinfo\"", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "No se ha encontrado el modulo PHP 'fileinfo'. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección de tipos MIME.", +"Your PHP version is outdated" => "Su versión de PHP ha caducado", +"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." => "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.", +"Locale not working" => "La configuración regional no está funcionando", +"System locale can not be set to a one which supports UTF-8." => "No se puede escoger una configuración regional que soporte UTF-8.", +"This means that there might be problems with certain characters in file names." => "Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Es muy recomendable instalar los paquetes necesarios para poder soportar una de las siguientes configuraciones regionales: %s. ", +"Internet connection not working" => "La conexión a Internet no está funcionando", +"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor no tiene conexión a Internet. Esto significa que algunas de las características no funcionarán, como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones, la instalación de aplicaciones de terceros, el acceso a los archivos de forma remota o el envío de correos electrónicos de notificación. Sugerimos habilitar una conexión a Internet en este servidor para disfrutar de todas las funciones.", +"Cron" => "Cron", +"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.", +"Sharing" => "Compartiendo", +"Enable Share API" => "Activar API de Compartición", +"Allow apps to use the Share API" => "Permitir a las aplicaciones utilizar la API de Compartición", +"Allow links" => "Permitir enlaces", +"Allow users to share items to the public with links" => "Permitir a los usuarios compartir elementos con el público mediante enlaces", +"Allow public uploads" => "Permitir subidas públicas", +"Allow users to enable others to upload into their publicly shared folders" => "Permitir a los usuarios habilitar a otros para subir archivos en sus carpetas compartidas públicamente", +"Allow resharing" => "Permitir re-compartición", +"Allow users to share items shared with them again" => "Permitir a los usuarios compartir de nuevo elementos ya compartidos", +"Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquier persona", +"Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los usuarios en sus grupos", +"Allow mail notification" => "Permitir notificaciones por correo electrónico", +"Allow user to send mail notification for shared files" => "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos", +"Security" => "Seguridad", +"Enforce HTTPS" => "Forzar HTTPS", +"Forces the clients to connect to %s via an encrypted connection." => "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Por favor, conéctese a su %s a través de HTTPS para habilitar o deshabilitar la aplicación de SSL.", +"Log" => "Registro", +"Log level" => "Nivel de registro", +"More" => "Más", +"Less" => "Menos", +"Version" => "Versión", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desarrollado por la comunidad ownCloud, el código fuente está bajo licencia AGPL.", +"Add your App" => "Añade tu aplicación", +"More Apps" => "Más aplicaciones", +"Select an App" => "Seleccionar una aplicación", +"See application page at apps.owncloud.com" => "Ver la página de aplicaciones en apps.owncloud.com", +"-licensed by " => "-licencia otorgada por ", +"User Documentation" => "Documentación de usuario", +"Administrator Documentation" => "Documentación de administrador", +"Online Documentation" => "Documentación en línea", +"Forum" => "Foro", +"Bugtracker" => "Rastreador de fallos", +"Commercial Support" => "Soporte comercial", +"Get the apps to sync your files" => "Obtener las aplicaciones para sincronizar sus archivos", +"Show First Run Wizard again" => "Mostrar nuevamente el Asistente de ejecución inicial", +"You have used %s of the available %s" => "Ha usado %s de los %s disponibles", +"Password" => "Contraseña", +"Your password was changed" => "Su contraseña ha sido cambiada", +"Unable to change your password" => "No se ha podido cambiar su contraseña", +"Current password" => "Contraseña actual", +"New password" => "Nueva contraseña", +"Change password" => "Cambiar contraseña", +"Full Name" => "Nombre completo", +"Email" => "Correo electrónico", +"Your email address" => "Su dirección de correo", +"Fill in an email address to enable password recovery" => "Escriba una dirección de correo electrónico para restablecer la contraseña", +"Profile picture" => "Foto de perfil", +"Upload new" => "Subir otra", +"Select new from Files" => "Seleccionar otra desde Archivos", +"Remove image" => "Borrar imagen", +"Either png or jpg. Ideally square but you will be able to crop it." => "Archivo PNG o JPG. Preferiblemente cuadrado, pero tendrás la posibilidad de recortarlo.", +"Your avatar is provided by your original account." => "Su avatar es proporcionado por su cuenta original.", +"Abort" => "Cancelar", +"Choose as profile image" => "Seleccionar como imagen de perfil", +"Language" => "Idioma", +"Help translate" => "Ayúdanos a traducir", +"WebDAV" => "WebDAV", +"Use this address to access your Files via WebDAV" => "Utilice esta dirección para acceder a sus archivos vía WebDAV", +"Encryption" => "Cifrado", +"The encryption app is no longer enabled, please decrypt all your files" => "La aplicación de cifrado ya no está activada, descifre todos sus archivos", +"Log-in password" => "Contraseña de acceso", +"Decrypt all Files" => "Descifrar archivos", +"Login Name" => "Nombre de usuario", +"Create" => "Crear", +"Admin Recovery Password" => "Recuperación de la contraseña de administración", +"Enter the recovery password in order to recover the users files during password change" => "Introduzca la contraseña de recuperación a fin de recuperar los archivos de los usuarios durante el cambio de contraseña.", +"Default Storage" => "Almacenamiento predeterminado", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Por favor indique la cúota de almacenamiento (ej: \"512 MB\" o \"12 GB\")", +"Unlimited" => "Ilimitado", +"Other" => "Otro", +"Username" => "Nombre de usuario", +"Storage" => "Almacenamiento", +"change full name" => "cambiar el nombre completo", +"set new password" => "establecer nueva contraseña", +"Default" => "Predeterminado" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index a93ea8174224e3837705ecdf4f0b56027915a248..f5436525828cbf907d128403820cabc062434f29 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "App Store'i nimekirja laadimine ebaõnnestus", "Authentication error" => "Autentimise viga", -"Your display name has been changed." => "Sinu näidatav nimi on muudetud.", -"Unable to change display name" => "Ei saa muuta näidatavat nime", +"Your full name has been changed." => "Sinu täispikk nimi on muudetud.", +"Unable to change full name" => "Täispika nime muutmine ebaõnnestus", "Group already exists" => "Grupp on juba olemas", "Unable to add group" => "Keela grupi lisamine", "Email saved" => "Kiri on salvestatud", @@ -12,7 +12,7 @@ $TRANSLATIONS = array( "Unable to delete user" => "Kasutaja kustutamine ebaõnnestus", "Language changed" => "Keel on muudetud", "Invalid request" => "Vigane päring", -"Admins can't remove themself from the admin group" => "Administraatorid ei saa ise end eemaldada admin grupist", +"Admins can't remove themself from the admin group" => "Administraatorid ei saa ise end admin grupist eemaldada", "Unable to add user to group %s" => "Kasutajat ei saa lisada gruppi %s", "Unable to remove user from group %s" => "Kasutajat ei saa eemaldada grupist %s", "Couldn't update app." => "Rakenduse uuendamine ebaõnnestus.", @@ -26,8 +26,8 @@ $TRANSLATIONS = array( "Disable" => "Lülita välja", "Enable" => "Lülita sisse", "Please wait...." => "Palun oota...", -"Error while disabling app" => "Viga rakendi keelamisel", -"Error while enabling app" => "Viga rakendi lubamisel", +"Error while disabling app" => "Viga rakenduse keelamisel", +"Error while enabling app" => "Viga rakenduse lubamisel", "Updating...." => "Uuendamine...", "Error while updating app" => "Viga rakenduse uuendamisel", "Error" => "Viga", @@ -46,22 +46,33 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Sisesta nõuetele vastav kasutajatunnus", "Error creating user" => "Viga kasutaja loomisel", "A valid password must be provided" => "Sisesta nõuetele vastav parool", +"Warning: Home directory for user \"{user}\" already exists" => "Hoiatus: kasutaja \"{user}\" kodukataloog on juba olemas", "__language_name__" => "Eesti", +"Everything (fatal issues, errors, warnings, info, debug)" => "Kõik (tõsised probleemid, veateated, hoiatused, info, veatuvastus)", +"Info, warnings, errors and fatal issues" => "Info, hoiatused, veateted ja tõsised probleemid", +"Warnings, errors and fatal issues" => "Hoiatused, veateated ja tõsised probleemid", +"Errors and fatal issues" => "Veateated ja tõsised probleemid", +"Fatal issues only" => "Ainult tõsised probleemid", "Security Warning" => "Turvahoiatus", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Sa kasutad %s ligipääsuks HTTP protokolli. Soovitame tungivalt seadistada oma server selle asemel kasutama HTTPS-i.", "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." => "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.", "Setup Warning" => "Paigalduse hoiatus", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv.", "Please double check the installation guides." => "Palun kontrolli uuesti paigaldusjuhendeid.", "Module 'fileinfo' missing" => "Moodul 'fileinfo' puudub", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks parimaid tulemusi failitüüpide tuvastamisel.", +"Your PHP version is outdated" => "PHP versioon on aegunud", +"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." => "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.", "Locale not working" => "Lokalisatsioon ei toimi", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Süsteemi lokaliseeringut ei saa panna %s. See tähendab, et võib esineda probleeme teatud tähemärkidega failide nimedes. Soovitame tungivalt paigaldada süsteemi vajalikud pakid toetamaks %s.", +"System locale can not be set to a one which supports UTF-8." => "Süsteemi lokaliseeringuks ei saa panna sellist, mis toetab UTF-8-t.", +"This means that there might be problems with certain characters in file names." => "See tähendab, et võib esineda probleeme failide nimedes mõnede sümbolitega.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Soovitame tungivalt paigaldada vajalikud paketid oma süsteemi tagamaks tuge järgmistele lokaliseeringutele: %s.", "Internet connection not working" => "Internetiühendus ei toimi", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Serveril puudub toimiv internetiühendus. See tähendab, et mõned funktsionaalsused, nagu näiteks väliste andmehoidlate ühendamine, teavitused uuendustest või kolmandate osapoolte rakenduste paigaldamine ei tööta. Eemalt failidele ligipääs ning teadete saatmine emailiga ei pruugi samuti toimida. Kui soovid täielikku funktsionaalsust, siis soovitame serverile tagada ligipääs internetti.", "Cron" => "Cron", -"Execute one task with each page loaded" => "Käivita toiming lehe laadimisel", -"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php on registreeritud webcron teenusena laadimaks cron.php iga minut üle http.", -"Use systems cron service to call the cron.php file once a minute." => "Kasuta süsteemi cron teenust käivitamaks faili cron.php kord minutis.", +"Execute one task with each page loaded" => "Käivita toiming igal lehe laadimisel", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php on registreeritud webcron teenuses, et käivitada fail cron.php iga 15 minuti tagant üle http.", +"Use systems cron service to call the cron.php file every 15 minutes." => "Kasuta süsteemi cron teenust, et käivitada fail cron.php iga 15 minuti tagant.", "Sharing" => "Jagamine", "Enable Share API" => "Luba Share API", "Allow apps to use the Share API" => "Luba rakendustel kasutada Share API-t", @@ -73,6 +84,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Luba kasutajatel jagada edasi kirjeid, mida on neile jagatud", "Allow users to share with anyone" => "Luba kasutajatel kõigiga jagada", "Allow users to only share with users in their groups" => "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad", +"Allow mail notification" => "Luba teavitused e-postiga", +"Allow user to send mail notification for shared files" => "Luba kasutajatel saata jagatud failide kohta e-postiga teavitusi", "Security" => "Turvalisus", "Enforce HTTPS" => "Sunni peale HTTPS-i kasutamine", "Forces the clients to connect to %s via an encrypted connection." => "Sunnib kliente %s ühenduma krüpteeritult.", @@ -103,35 +116,37 @@ $TRANSLATIONS = array( "Current password" => "Praegune parool", "New password" => "Uus parool", "Change password" => "Muuda parooli", -"Display Name" => "Näidatav nimi", +"Full Name" => "Täispikk nimi", "Email" => "E-post", "Your email address" => "Sinu e-posti aadress", "Fill in an email address to enable password recovery" => "Parooli taastamise sisse lülitamiseks sisesta e-posti aadress", "Profile picture" => "Profiili pilt", -"Upload new" => "Laadi uus", +"Upload new" => "Laadi uus üles", "Select new from Files" => "Vali failidest uus", "Remove image" => "Eemalda pilt", -"Either png or jpg. Ideally square but you will be able to crop it." => "Kas png või jpg. Võimalikult ruudukujuline, kuid Sul on võimalus veel lõigata.", +"Either png or jpg. Ideally square but you will be able to crop it." => "Kas png või jpg. Võimalikult ruudukujuline, kuid sul on võimalus seda veel lõigata.", +"Your avatar is provided by your original account." => "Sinu avatari pakub sinu algne konto.", "Abort" => "Katkesta", -"Choose as profile image" => "Vali kui profiili pilt", +"Choose as profile image" => "Vali profiilipildiks", "Language" => "Keel", "Help translate" => "Aita tõlkida", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Kasuta seda aadressi oma failidele ligipääsuks WebDAV kaudu", +"Use this address to access your Files via WebDAV" => "Kasuta seda aadressi oma failidele ligipääsuks WebDAV kaudu", "Encryption" => "Krüpteerimine", -"The encryption app is no longer enabled, decrypt all your file" => "Küpteeringu rakend pole lubatud, dekrüpteeri kõik oma failid", +"The encryption app is no longer enabled, please decrypt all your files" => "Küpteeringu rakend pole lubatud, dekrüpteeri kõik oma failid", "Log-in password" => "Sisselogimise parool", "Decrypt all Files" => "Dekrüpteeri kõik failid", "Login Name" => "Kasutajanimi", "Create" => "Lisa", -"Admin Recovery Password" => "Admin taasteparool", +"Admin Recovery Password" => "Admini parooli taastamine", "Enter the recovery password in order to recover the users files during password change" => "Sisesta taasteparool kasutaja failide taastamiseks paroolivahetuse käigus", "Default Storage" => "Vaikimisi maht", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Palun sisesta mahupiir (nt: \"512 MB\" või \"12 GB\")", "Unlimited" => "Piiramatult", "Other" => "Muu", "Username" => "Kasutajanimi", "Storage" => "Maht", -"change display name" => "muuda näidatavat nime", +"change full name" => "Muuda täispikka nime", "set new password" => "määra uus parool", "Default" => "Vaikeväärtus" ); diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index 63a3bf3f62bd1ab1002377f7e85b52ad69c468c6..0542deee3d1c42c5fc3026edc3248f1f72c2f64f 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Ezin izan da App Dendatik zerrenda kargatu", "Authentication error" => "Autentifikazio errorea", -"Your display name has been changed." => "Zure bistaratze izena aldatu egin da.", -"Unable to change display name" => "Ezin izan da bistaratze izena aldatu", +"Your full name has been changed." => "Zure izena aldatu egin da.", +"Unable to change full name" => "Ezin izan da izena aldatu", "Group already exists" => "Taldea dagoeneko existitzenda", "Unable to add group" => "Ezin izan da taldea gehitu", "Email saved" => "Eposta gorde da", @@ -16,15 +16,23 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "Ezin izan da erabiltzailea %s taldera gehitu", "Unable to remove user from group %s" => "Ezin izan da erabiltzailea %s taldetik ezabatu", "Couldn't update app." => "Ezin izan da aplikazioa eguneratu.", +"Wrong password" => "Pasahitz okerra", +"No user supplied" => "Ez da erabiltzailerik zehaztu", +"Please provide an admin recovery password, otherwise all user data will be lost" => "Mesedez eman berreskuratzeko administrazio pasahitza, bestela erabiltzaile datu guztiak galduko dira", +"Wrong admin recovery password. Please check the password and try again." => "Berreskuratze administradore pasahitz ez egokia. Medesez egiaztatu pasahitza eta saiatu berriz.", +"Unable to change password" => "Ezin izan da pasahitza aldatu", "Update to {appversion}" => "Eguneratu {appversion}-ra", "Disable" => "Ez-gaitu", "Enable" => "Gaitu", "Please wait...." => "Itxoin mesedez...", +"Error while disabling app" => "Erroea izan da aplikazioa desgaitzerakoan", +"Error while enabling app" => "Erroea izan da aplikazioa gaitzerakoan", "Updating...." => "Eguneratzen...", "Error while updating app" => "Errorea aplikazioa eguneratzen zen bitartean", "Error" => "Errorea", "Update" => "Eguneratu", "Updated" => "Eguneratuta", +"Select a profile picture" => "Profil argazkia aukeratu", "Saving..." => "Gordetzen...", "deleted" => "ezabatuta", "undo" => "desegin", @@ -36,19 +44,27 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Baliozko erabiltzaile izena eman behar da", "Error creating user" => "Errore bat egon da erabiltzailea sortzean", "A valid password must be provided" => "Baliozko pasahitza eman behar da", +"Warning: Home directory for user \"{user}\" already exists" => "Abisua: \"{user}\" erabiltzailearen Home karpeta dagoeneko exisititzen da", "__language_name__" => "Euskera", "Security Warning" => "Segurtasun abisua", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "%s HTTP bidez erabiltzen ari zara. Aholkatzen dizugu zure zerbitzaria HTTPS erabil dezan.", +"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." => "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.", "Setup Warning" => "Konfiguratu Abisuak", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sinkronizazioa egiteko, WebDAV interfazea ongi ez dagoela dirudi.", "Please double check the installation guides." => "Mesedez birpasatu instalazio gidak.", "Module 'fileinfo' missing" => "'fileinfo' Modulua falta da", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP 'fileinfo' modulua falta da. Modulu hau gaitzea aholkatzen dizugu mime-type ezberdinak hobe detektatzeko.", +"Your PHP version is outdated" => "Zure PHP bertsioa zaharkituta dago", +"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." => "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.", "Locale not working" => "Lokala ez dabil", +"System locale can not be set to a one which supports UTF-8." => "Sistemaren lokala ezin da UTF-8 onartzen duen batera ezarri.", +"This means that there might be problems with certain characters in file names." => "Honek esan nahi du fitxategien izenetako karaktere batzuekin arazoak egon daitezkeela.", "Internet connection not working" => "Interneteko konexioak ez du funtzionatzen", +"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." => "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.", "Cron" => "Cron", "Execute one task with each page loaded" => "Exekutatu zeregin bat orri karga bakoitzean", -"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php webcron zerbitzu batean erregistratua dago cron.php minuturo http bidez deitzeko.", -"Use systems cron service to call the cron.php file once a minute." => "Erabili sistemaren cron zerbitzua cron.php fitxategia minuturo deitzeko.", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php webcron zerbitzu batean erregistratua dago cron.php 15 minuturo http bidez deitzeko.", +"Use systems cron service to call the cron.php file every 15 minutes." => "Erabili sistemaren cron zerbitzua cron.php fitxategia 15 minuturo deitzeko.", "Sharing" => "Partekatzea", "Enable Share API" => "Gaitu Elkarbanatze APIa", "Allow apps to use the Share API" => "Baimendu aplikazioak Elkarbanatze APIa erabiltzeko", @@ -60,6 +76,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Baimendu erabiltzaileak haiekin elkarbanatutako fitxategiak berriz ere elkarbanatzen", "Allow users to share with anyone" => "Baimendu erabiltzaileak edonorekin elkarbanatzen", "Allow users to only share with users in their groups" => "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin elkarbanatzen", +"Allow mail notification" => "Baimendu posta bidezko jakinarazpenak", +"Allow user to send mail notification for shared files" => "Baimendu erabiltzailea posta bidezko jakinarazpenak bidaltzen partekatutako fitxategietarako", "Security" => "Segurtasuna", "Enforce HTTPS" => "Behartu HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Bezeroak %s-ra konexio enkriptatu baten bidez konektatzera behartzen ditu.", @@ -90,26 +108,36 @@ $TRANSLATIONS = array( "Current password" => "Uneko pasahitza", "New password" => "Pasahitz berria", "Change password" => "Aldatu pasahitza", -"Display Name" => "Bistaratze Izena", +"Full Name" => "Izena", "Email" => "E-posta", "Your email address" => "Zure e-posta", "Fill in an email address to enable password recovery" => "Idatz ezazu e-posta bat pasahitza berreskuratu ahal izateko", "Profile picture" => "Profilaren irudia", +"Upload new" => "Igo berria", +"Select new from Files" => "Hautatu berria Fitxategietatik", +"Remove image" => "Irudia ezabatu", +"Either png or jpg. Ideally square but you will be able to crop it." => "png edo jpg. Hobe karratua baina mozteko aukera izango duzu.", +"Abort" => "Bertan-behera utzi", +"Choose as profile image" => "Profil irudi bezala aukeratu", "Language" => "Hizkuntza", "Help translate" => "Lagundu itzultzen", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "helbidea erabili zure fitxategiak WebDAV bidez eskuratzeko", +"Use this address to access your Files via WebDAV" => "helbidea erabili zure fitxategiak WebDAV bidez eskuratzeko", "Encryption" => "Enkriptazioa", +"The encryption app is no longer enabled, please decrypt all your files" => "Enkriptazio aplikazioa ez dago jada gaiturik, mesedez desenkriptatu zure fitxategi guztiak.", +"Log-in password" => "Saioa hasteko pasahitza", +"Decrypt all Files" => "Desenkripattu fitxategi guztiak", "Login Name" => "Sarrera Izena", "Create" => "Sortu", "Admin Recovery Password" => "Kudeatzaile pasahitz berreskuratzea", "Enter the recovery password in order to recover the users files during password change" => "berreskuratze pasahitza idatzi pasahitz aldaketan erabiltzaileen fitxategiak berreskuratzeko", "Default Storage" => "Lehenetsitako Biltegiratzea", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Mesedez sartu biltegiratze kouta (adb: \"512 MB\" edo \"12 GB\")", "Unlimited" => "Mugarik gabe", "Other" => "Bestelakoa", "Username" => "Erabiltzaile izena", "Storage" => "Biltegiratzea", -"change display name" => "aldatu bistaratze izena", +"change full name" => "aldatu izena", "set new password" => "ezarri pasahitz berria", "Default" => "Lehenetsia" ); diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index b4ae186e300313b0d721aebd5601e042feec7cc2..e8582868f3b0438388fc28aba546c8ef7f7d4c0d 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "قادر به بارگذاری لیست از فروشگاه اپ نیستم", "Authentication error" => "خطا در اعتبار سنجی", -"Your display name has been changed." => "نام نمایش شما تغییر یافته است.", -"Unable to change display name" => "امکان تغییر نام نمایشی شما وجود ندارد", "Group already exists" => "این گروه در حال حاضر موجود است", "Unable to add group" => "افزودن گروه امکان پذیر نیست", "Email saved" => "ایمیل ذخیره شد", @@ -83,7 +81,6 @@ $TRANSLATIONS = array( "Current password" => "گذرواژه کنونی", "New password" => "گذرواژه جدید", "Change password" => "تغییر گذر واژه", -"Display Name" => "نام نمایشی", "Email" => "ایمیل", "Your email address" => "پست الکترونیکی شما", "Fill in an email address to enable password recovery" => "پست الکترونیکی را پرکنید تا بازیابی گذرواژه فعال شود", @@ -91,7 +88,6 @@ $TRANSLATIONS = array( "Language" => "زبان", "Help translate" => "به ترجمه آن کمک کنید", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "استفاده ابن آدرس برای دسترسی فایل های شما از طریق WebDAV ", "Encryption" => "رمزگذاری", "Login Name" => "نام کاربری", "Create" => "ایجاد کردن", @@ -102,7 +98,6 @@ $TRANSLATIONS = array( "Other" => "دیگر", "Username" => "نام کاربری", "Storage" => "حافظه", -"change display name" => "تغییر نام نمایشی", "set new password" => "تنظیم کلمه عبور جدید", "Default" => "پیش فرض" ); diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index d50dc87e0144dfdd43162e10371f68cec5ef5891..0451703cc75541e2a185429491e8bfecfc01993e 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Ei pystytä lataamaan listaa sovellusvarastosta (App Store)", "Authentication error" => "Tunnistautumisvirhe", -"Your display name has been changed." => "Näyttönimesi on muutettu.", -"Unable to change display name" => "Näyttönimen muuttaminen epäonnistui", +"Your full name has been changed." => "Koko nimesi on muutettu.", +"Unable to change full name" => "Koko nimen muuttaminen epäonnistui", "Group already exists" => "Ryhmä on jo olemassa", "Unable to add group" => "Ryhmän lisäys epäonnistui", "Email saved" => "Sähköposti tallennettu", @@ -42,21 +42,38 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Anna kelvollinen käyttäjätunnus", "Error creating user" => "Virhe käyttäjää luotaessa", "A valid password must be provided" => "Anna kelvollinen salasana", +"Warning: Home directory for user \"{user}\" already exists" => "Varoitus: käyttäjällä \"{user}\" on jo olemassa kotikansio", "__language_name__" => "_kielen_nimi_", +"Everything (fatal issues, errors, warnings, info, debug)" => "Kaikki (vakavat ongelmat, virheet, varoitukset, tiedot, vianjäljitys)", +"Info, warnings, errors and fatal issues" => "Tiedot, varoitukset, virheet ja vakavat ongelmat", +"Warnings, errors and fatal issues" => "Varoitukset, virheet ja vakavat ongelmat", +"Errors and fatal issues" => "Virheet ja vakavat ongelmat", +"Fatal issues only" => "Vain vakavat ongelmat", "Security Warning" => "Turvallisuusvaroitus", +"Setup Warning" => "Asetusvaroitus", "Please double check the installation guides." => "Lue asennusohjeet tarkasti.", "Module 'fileinfo' missing" => "Moduuli 'fileinfo' puuttuu", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP-moduuli \"fileinfo\" puuttuu. Sen käyttö on erittäin suositeltavaa, jotta MIME-tyypin havaitseminen onnistuu parhaalla mahdollisella tavalla.", +"Your PHP version is outdated" => "Käytössä oleva PHP-versio on vanhentunut", +"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." => "Käytössä oleva PHP on vanhentunut. Päivitä versioon 5.3.8 tai uudempaan, koska aiemmat versiot eivät ole toimivia. On mahdollista, että tämä ownCloud-asennus ei toimi kunnolla.", +"Locale not working" => "Maa-asetus ei toimi", +"System locale can not be set to a one which supports UTF-8." => "Järjestelmän maa-asetusta ei voi asettaa UTF-8:aa tukevaksi.", +"This means that there might be problems with certain characters in file names." => "Tämä tarkoittaa, että tiettyjen merkkien kanssa tiedostojen nimissä saattaa olla ongelmia.", "Internet connection not working" => "Internet-yhteys ei toimi", "Cron" => "Cron", +"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", "Allow apps to use the Share API" => "Salli sovellusten käyttää jakamisen ohjelmointirajapintaa", "Allow links" => "Salli linkit", "Allow users to share items to the public with links" => "Salli käyttäjien jakaa kohteita käyttäen linkkejä", +"Allow public uploads" => "Salli julkiset lähetykset", "Allow resharing" => "Salli uudelleenjakaminen", "Allow users to share items shared with them again" => "Mahdollistaa käyttäjien jakavan uudelleen heidän kanssaan jaettuja kohteita", "Allow users to share with anyone" => "Salli käyttäjien jakaa kenen tahansa kanssa", "Allow users to only share with users in their groups" => "Salli jakaminen vain samoissa ryhmissä olevien käyttäjien kesken", +"Allow mail notification" => "Salli sähköposti-ilmoitukset", +"Allow user to send mail notification for shared files" => "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista", "Security" => "Tietoturva", "Enforce HTTPS" => "Pakota HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Pakottaa asiakasohjelmistot ottamaan yhteyden %siin salatun yhteyden kautta.", @@ -86,7 +103,7 @@ $TRANSLATIONS = array( "Current password" => "Nykyinen salasana", "New password" => "Uusi salasana", "Change password" => "Vaihda salasana", -"Display Name" => "Näyttönimi", +"Full Name" => "Koko nimi", "Email" => "Sähköpostiosoite", "Your email address" => "Sähköpostiosoitteesi", "Fill in an email address to enable password recovery" => "Anna sähköpostiosoitteesi, jotta unohdettu salasana on mahdollista palauttaa", @@ -100,9 +117,9 @@ $TRANSLATIONS = array( "Language" => "Kieli", "Help translate" => "Auta kääntämisessä", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Käytä tätä osoitetta päästäksesi käsiksi tiedostoihisi WebDAVin kautta", +"Use this address to access your Files via WebDAV" => "Käytä tätä osoitetta käyttääksesi tiedostojasi WebDAVin kautta", "Encryption" => "Salaus", -"The encryption app is no longer enabled, decrypt all your file" => "Salaussovellus ei ole enää käytössä, pura kaikkien tiedostojesi salaus", +"The encryption app is no longer enabled, please decrypt all your files" => "Salaussovellus ei ole enää käytössä, joten pura kaikkien tiedostojesi salaus", "Decrypt all Files" => "Pura kaikkien tiedostojen salaus", "Login Name" => "Kirjautumisnimi", "Create" => "Luo", @@ -111,7 +128,7 @@ $TRANSLATIONS = array( "Other" => "Muu", "Username" => "Käyttäjätunnus", "Storage" => "Tallennustila", -"change display name" => "vaihda näyttönimi", +"change full name" => "muuta koko nimi", "set new password" => "aseta uusi salasana", "Default" => "Oletus" ); diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 10a7d764bc89b82567c248a023273bab9a98e281..156533f6fa08850102305751062a3bf4a211d3b8 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Impossible de charger la liste depuis l'App Store", "Authentication error" => "Erreur d'authentification", -"Your display name has been changed." => "Votre nom d'affichage a bien été modifié.", -"Unable to change display name" => "Impossible de modifier le nom d'affichage", +"Your full name has been changed." => "Votre nom complet a été modifié.", +"Unable to change full name" => "Impossible de changer le nom complet", "Group already exists" => "Ce groupe existe déjà", "Unable to add group" => "Impossible d'ajouter le groupe", "Email saved" => "E-mail sauvegardé", @@ -46,22 +46,33 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Un nom d'utilisateur valide doit être saisi", "Error creating user" => "Erreur lors de la création de l'utilisateur", "A valid password must be provided" => "Un mot de passe valide doit être saisi", +"Warning: Home directory for user \"{user}\" already exists" => "Attention : Le dossier Home pour l'utilisateur \"{user}\" existe déjà", "__language_name__" => "Français", +"Everything (fatal issues, errors, warnings, info, debug)" => "Tout (erreurs fatales, erreurs, avertissements, informations, debogage)", +"Info, warnings, errors and fatal issues" => "Informations, avertissements, erreurs et erreurs fatales", +"Warnings, errors and fatal issues" => "Avertissements, erreurs et erreurs fatales", +"Errors and fatal issues" => "Erreurs et erreurs fatales", +"Fatal issues only" => "Erreurs fatales uniquement", "Security Warning" => "Avertissement de sécurité", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Vous accédez à %s via HTTP. Nous vous recommandons fortement de configurer votre serveur pour forcer l'utilisation de HTTPS à la place.", "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." => "Votre dossier de données et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de façon à ce que ce dossier de données ne soit plus accessible, ou bien de le déplacer à l'extérieur de la racine du serveur web.", "Setup Warning" => "Avertissement, problème de configuration", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut.", "Please double check the installation guides." => "Veuillez consulter à nouveau les guides d'installation.", "Module 'fileinfo' missing" => "Module 'fileinfo' manquant", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Le module PHP 'fileinfo' est manquant. Il est vivement recommandé de l'activer afin d'obtenir de meilleurs résultats pour la détection des types de fichiers.", +"Your PHP version is outdated" => "Votre version de PHP est trop ancienne", +"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." => "Votre version de PHP est trop ancienne. Nous vous recommandons fortement de migrer vers une version 5.3.8 ou plus récente encore, car les versions antérieures sont réputées problématiques. Il est possible que cette installation ne fonctionne pas correctement.", "Locale not working" => "Localisation non fonctionnelle", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Le localisation du système n'a pu être configurée à %s. Cela signifie qu'il pourrait y avoir des problèmes avec certains caractères dans les noms de fichiers. Il est fortement recommandé d'installer les paquets requis pour le support de %s.", +"System locale can not be set to a one which supports UTF-8." => "Les paramètres régionaux ne peuvent pas être configurés avec un qui supporte UTF-8.", +"This means that there might be problems with certain characters in file names." => "Cela signifie qu'il pourrait y avoir des problèmes avec certains caractères dans les noms de fichier.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Nous conseillons vivement d'installer les paquets requis sur votre système pour supporter l'un des paramètres régionaux suivants : %s.", "Internet connection not working" => "La connexion internet ne fonctionne pas", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Ce serveur ne peut se connecter à internet. Cela signifie que certaines fonctionnalités, telles que le montage de supports de stockage distants, les notifications de mises à jour ou l'installation d'applications tierces ne fonctionneront pas. L'accès aux fichiers à distance, ainsi que les notifications par mails ne seront pas fonctionnels également. Il est recommandé d'activer la connexion internet pour ce serveur si vous souhaitez disposer de l'ensemble des fonctionnalités offertes.", "Cron" => "Cron", "Execute one task with each page loaded" => "Exécute une tâche à chaque chargement de page", -"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php est enregistré en tant que service webcron pour appeler cron.php une fois par minute via http.", -"Use systems cron service to call the cron.php file once a minute." => "Utilise le service cron du système pour appeler cron.php une fois par minute.", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php est enregistré en tant que service webcron pour appeler cron.php toutes les 15 minutes via http.", +"Use systems cron service to call the cron.php file every 15 minutes." => "Utilise le service cron du système pour appeler le fichier cron.php toutes les 15 minutes.", "Sharing" => "Partage", "Enable Share API" => "Activer l'API de partage", "Allow apps to use the Share API" => "Autoriser les applications à utiliser l'API de partage", @@ -73,6 +84,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Autoriser les utilisateurs à partager des éléments qui ont été partagés avec eux", "Allow users to share with anyone" => "Autoriser les utilisateurs à partager avec tout le monde", "Allow users to only share with users in their groups" => "Autoriser les utilisateurs à partager avec des utilisateurs de leur groupe uniquement", +"Allow mail notification" => "Autoriser les notifications par couriel", +"Allow user to send mail notification for shared files" => "Autoriser l'utilisateur à envoyer une notification par couriel concernant les fichiers partagés", "Security" => "Sécurité", "Enforce HTTPS" => "Forcer HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forcer les clients à se connecter à %s via une connexion chiffrée.", @@ -103,7 +116,7 @@ $TRANSLATIONS = array( "Current password" => "Mot de passe actuel", "New password" => "Nouveau mot de passe", "Change password" => "Changer de mot de passe", -"Display Name" => "Nom affiché", +"Full Name" => "Nom complet", "Email" => "Adresse mail", "Your email address" => "Votre adresse e-mail", "Fill in an email address to enable password recovery" => "Entrez votre adresse e-mail pour permettre la réinitialisation du mot de passe", @@ -112,14 +125,15 @@ $TRANSLATIONS = array( "Select new from Files" => "Sélectionner un nouveau depuis les documents", "Remove image" => "Supprimer l'image", "Either png or jpg. Ideally square but you will be able to crop it." => "Soit png ou jpg. idéalement carée mais vous pourrez la recadrer .", +"Your avatar is provided by your original account." => "Votre avatar est fourni par votre compte original.", "Abort" => "Abandonner", "Choose as profile image" => "Choisir en temps que photo de profil ", "Language" => "Langue", "Help translate" => "Aidez à traduire", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Utilisez cette adresse pour accéder à vos fichiers via WebDAV", +"Use this address to access your Files via WebDAV" => "Utiliser cette adresse pour accéder à vos fichiers par WebDAV", "Encryption" => "Chiffrement", -"The encryption app is no longer enabled, decrypt all your file" => "L'application de chiffrement n'est plus activée, déchiffrez tous vos fichiers", +"The encryption app is no longer enabled, please decrypt all your files" => "L'app de chiffrement n’est plus activée, veuillez déchiffrer tous vos fichiers", "Log-in password" => "Mot de passe de connexion", "Decrypt all Files" => "Déchiffrer tous les fichiers", "Login Name" => "Nom de la connexion", @@ -127,11 +141,12 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "Récupération du mot de passe administrateur", "Enter the recovery password in order to recover the users files during password change" => "Entrer le mot de passe de récupération dans le but de récupérer les fichiers utilisateurs pendant le changement de mot de passe", "Default Storage" => "Support de stockage par défaut", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Veuillez entrer le quota de stockage (ex. \"512 MB\" ou \"12 GB\")", "Unlimited" => "Illimité", "Other" => "Autre", "Username" => "Nom d'utilisateur", "Storage" => "Support de stockage", -"change display name" => "Changer le nom affiché", +"change full name" => "Modifier le nom complet", "set new password" => "Changer le mot de passe", "Default" => "Défaut" ); diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 62a2f7b8739225469f3773c4f333bd8a0c8f3e52..e345280bddf1425d3c09de2652790b6eb4b3ecc9 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Non foi posíbel cargar a lista desde a App Store", "Authentication error" => "Produciuse un erro de autenticación", -"Your display name has been changed." => "O seu nome visíbel foi cambiado", -"Unable to change display name" => "Non é posíbel cambiar o nome visíbel", +"Your full name has been changed." => "O seu nome completo foi cambiado", +"Unable to change full name" => "Non é posíbel cambiar o nome completo", "Group already exists" => "O grupo xa existe", "Unable to add group" => "Non é posíbel engadir o grupo", "Email saved" => "Correo gardado", @@ -46,22 +46,33 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Debe fornecer un nome de usuario", "Error creating user" => "Produciuse un erro ao crear o usuario", "A valid password must be provided" => "Debe fornecer un contrasinal", +"Warning: Home directory for user \"{user}\" already exists" => "Aviso: O directorio persoal para o usuario «{user}» xa existe", "__language_name__" => "Galego", +"Everything (fatal issues, errors, warnings, info, debug)" => "Todo (problemas críticos, erros, avisos, información, depuración)", +"Info, warnings, errors and fatal issues" => "Información, avisos, erros e problemas críticos", +"Warnings, errors and fatal issues" => "Avisos, erros e problemas críticos", +"Errors and fatal issues" => "Erros e problemas críticos", +"Fatal issues only" => "Só problemas críticos", "Security Warning" => "Aviso de seguranza", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Está accedendo a %s a través de HTTP. Suxerímoslle que configure o seu servidor para requirir, no seu canto, o uso de 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." => "O seu cartafol de datos e os seus ficheiros probabelmente sexan accesíbeis a través de internet. O ficheiro .htaccess non está a traballar. Suxerímoslle que configure o seu servidor web de tal maneira que o cartafol de datos non estea accesíbel ou que mova o o directorio de datos fóra da raíz de documentos do servidor web.", "Setup Warning" => "Configurar os avisos", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "O seu servidor web non está aínda configurado adecuadamente para permitir a sincronización de ficheiros xa que semella que a interface WebDAV non está a funcionar.", "Please double check the installation guides." => "Volva comprobar as guías de instalación", "Module 'fileinfo' missing" => "Non se atopou o módulo «fileinfo»", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Non se atopou o módulo de PHP «fileinfo». É recomendábel activar este módulo para obter os mellores resultados coa detección do tipo MIME.", +"Your PHP version is outdated" => "A versión de PHP está desactualizada", +"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." => "A versión de PHP está desactualizada. Recomendámoslle que a actualice á versión 5.3.8 ou posterior xa que as versións anteriores son coñecidas por estragarse. É probábel que esta instalación no estea a funcionar correctamente.", "Locale not working" => "A configuración rexional non funciona", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "A configuración rexional do sistema non pode estabelecerse a %s. Isto significa que pode haber problemas con certos caracteres nos nomes de ficheiro. Recomendámoslle que instale os paquetes necesarios no sistema para aceptar o %s.", +"System locale can not be set to a one which supports UTF-8." => "Non é posíbel estabelecer a configuración rexional do sistema a unha que admita UTF-8.", +"This means that there might be problems with certain characters in file names." => "Isto significa que pode haber problemas con certos caracteres en nomes de ficheiro.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Recomendamoslle que instale no sistema os paquetes necesarios para admitir unha das seguintes configuracións rexionais: %s.", "Internet connection not working" => "A conexión á Internet non funciona", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor non ten conexión a Internet. Isto significa que algunhas das funcionalidades como a montaxe de almacenamento externo, as notificacións sobre actualizacións ou instalación de aplicativos de terceiros non funcionan. O acceso aos ficheiros de forma remota e o envío de mensaxes de notificación poderían non funcionar. Suxerímoslle que active a conexión a Internet deste servidor se quere dispor de todas as funcionalidades.", "Cron" => "Cron", "Execute one task with each page loaded" => "Executar unha tarefa con cada páxina cargada", -"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php está rexistrado nun servizo de WebCron para chamar a cron.php unha vez por minuto a través de HTTP.", -"Use systems cron service to call the cron.php file once a minute." => "Use o servizo de sistema cron para chamar ao ficheiro cron.php unha vez por minuto.", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php está rexistrado nun servizo de WebCron para chamar a cron.php cada 15 minutos a través de HTTP.", +"Use systems cron service to call the cron.php file every 15 minutes." => "Use o servizo de sistema cron para chamar ao ficheiro cron.php cada 15 minutos.", "Sharing" => "Compartindo", "Enable Share API" => "Activar o API para compartir", "Allow apps to use the Share API" => "Permitir que os aplicativos empreguen o API para compartir", @@ -73,6 +84,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Permitir que os usuarios compartan de novo os elementos compartidos con eles", "Allow users to share with anyone" => "Permitir que os usuarios compartan con calquera", "Allow users to only share with users in their groups" => "Permitir que os usuarios compartan só cos usuarios dos seus grupos", +"Allow mail notification" => "Permitir o envío de notificacións por correo", +"Allow user to send mail notification for shared files" => "Permitir que os usuarios envíen notificacións por correo dos ficheiros compartidos", "Security" => "Seguranza", "Enforce HTTPS" => "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forzar que os clientes se conecten a %s empregando unha conexión cifrada.", @@ -103,7 +116,7 @@ $TRANSLATIONS = array( "Current password" => "Contrasinal actual", "New password" => "Novo contrasinal", "Change password" => "Cambiar o contrasinal", -"Display Name" => "Amosar o nome", +"Full Name" => "Nome completo", "Email" => "Correo", "Your email address" => "O seu enderezo de correo", "Fill in an email address to enable password recovery" => "Escriba un enderezo de correo para activar o contrasinal de recuperación", @@ -112,14 +125,15 @@ $TRANSLATIONS = array( "Select new from Files" => "Seleccione unha nova de ficheiros", "Remove image" => "Retirar a imaxe", "Either png or jpg. Ideally square but you will be able to crop it." => "Calquera png ou jpg. É preferíbel que sexa cadrada, mais poderá recortala.", +"Your avatar is provided by your original account." => "O seu avatar é fornecido pola súa conta orixinal.", "Abort" => "Cancelar", "Choose as profile image" => "Escolla unha imaxe para o perfil", "Language" => "Idioma", "Help translate" => "Axude na tradución", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Empregue esta ligazón para acceder aos sus ficheiros mediante WebDAV", +"Use this address to access your Files via WebDAV" => "Empregue esta ligazón para acceder aos sus ficheiros mediante WebDAV", "Encryption" => "Cifrado", -"The encryption app is no longer enabled, decrypt all your file" => "o aplicativo de cifrado non está activado, descifrar todos os ficheiros", +"The encryption app is no longer enabled, please decrypt all your files" => "O aplicativo de cifrado non está activado, descifre todos os ficheiros", "Log-in password" => "Contrasinal de acceso", "Decrypt all Files" => "Descifrar todos os ficheiros", "Login Name" => "Nome de acceso", @@ -127,11 +141,12 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "Contrasinal de recuperación do administrador", "Enter the recovery password in order to recover the users files during password change" => "Introduza o contrasinal de recuperación para recuperar os ficheiros dos usuarios durante o cambio de contrasinal", "Default Storage" => "Almacenamento predeterminado", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Introduza a cota de almacenamento (p.ex. «512 MB» ou «12 GB»)", "Unlimited" => "Sen límites", "Other" => "Outro", "Username" => "Nome de usuario", "Storage" => "Almacenamento", -"change display name" => "cambiar o nome visíbel", +"change full name" => "Cambiar o nome completo", "set new password" => "estabelecer un novo contrasinal", "Default" => "Predeterminado" ); diff --git a/settings/l10n/he.php b/settings/l10n/he.php index bdfa7f5699b184b3107b49d64a77ec4b0255eee3..21c32d0f8e0c02d79bb56dce8bd43841f7e9004d 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "לא ניתן לטעון רשימה מה־App Store", "Authentication error" => "שגיאת הזדהות", -"Your display name has been changed." => "שם התצוגה שלך הוחלף.", -"Unable to change display name" => "לא ניתן לשנות את שם התצוגה", "Group already exists" => "הקבוצה כבר קיימת", "Unable to add group" => "לא ניתן להוסיף קבוצה", "Email saved" => "הדוא״ל נשמר", @@ -81,7 +79,6 @@ $TRANSLATIONS = array( "Current password" => "ססמה נוכחית", "New password" => "ססמה חדשה", "Change password" => "שינוי ססמה", -"Display Name" => "שם תצוגה", "Email" => "דואר אלקטרוני", "Your email address" => "כתובת הדוא״ל שלך", "Fill in an email address to enable password recovery" => "נא למלא את כתובת הדוא״ל שלך כדי לאפשר שחזור ססמה", @@ -98,7 +95,6 @@ $TRANSLATIONS = array( "Other" => "אחר", "Username" => "שם משתמש", "Storage" => "אחסון", -"change display name" => "החלפת שם התצוגה", "set new password" => "הגדרת ססמה חדשה", "Default" => "בררת מחדל" ); diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index cba844e7818ac60793a625757065bd8c57d74a3d..6b2dc3e0172ec6f5e0703c522d18d919a6850cf9 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Nem tölthető le a lista az App Store-ból", "Authentication error" => "Azonosítási hiba", -"Your display name has been changed." => "Az Ön megjelenítési neve megváltozott.", -"Unable to change display name" => "Nem sikerült megváltoztatni a megjelenítési nevet", +"Your full name has been changed." => "Az Ön teljes nevét módosítottuk.", +"Unable to change full name" => "Nem sikerült megváltoztatni a teljes nevét", "Group already exists" => "A csoport már létezik", "Unable to add group" => "A csoport nem hozható létre", "Email saved" => "Email mentve", @@ -46,22 +46,33 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Érvényes felhasználónevet kell megadnia", "Error creating user" => "A felhasználó nem hozható létre", "A valid password must be provided" => "Érvényes jelszót kell megadnia", +"Warning: Home directory for user \"{user}\" already exists" => "Figyelmeztetés: A felhasználó \"{user}\" kezdő könyvtára már létezett", "__language_name__" => "__language_name__", +"Everything (fatal issues, errors, warnings, info, debug)" => "Minden (végzetes hibák, hibák, figyelmeztetések, információk, hibakeresési üzenetek)", +"Info, warnings, errors and fatal issues" => "Információk, figyelmeztetések, hibák és végzetes hibák", +"Warnings, errors and fatal issues" => "Figyelmeztetések, hibák és végzetes hibák", +"Errors and fatal issues" => "Hibák és végzetes hibák", +"Fatal issues only" => "Csak a végzetes hibák", "Security Warning" => "Biztonsági figyelmeztetés", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "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.", "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." => "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.", "Setup Warning" => "A beállítással kapcsolatos figyelmeztetés", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "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.", "Please double check the installation guides." => "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót.", "Module 'fileinfo' missing" => "A 'fileinfo' modul hiányzik", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése a MIME-típusok felismerésének eredményessé tételéhez.", +"Your PHP version is outdated" => "A PHP verzió túl régi", +"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." => "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.", "Locale not working" => "A nyelvi lokalizáció nem működik", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Ezen az ownCloud kiszolgálón nem használható a %s nyelvi beállítás. Ez azt jelenti, hogy a fájlnevekben gond lehet bizonyos karakterekkel. Nyomatékosan ajánlott, hogy telepítse a szükséges csomagokat annak érdekében, hogy a rendszer támogassa a %s beállítást.", +"System locale can not be set to a one which supports UTF-8." => "A rendszer lokálok nem lehetett olyat beállítani ami támogatja az UTF-8-at.", +"This means that there might be problems with certain characters in file names." => "Ez arra utal, hogy probléma lehet néhány karakterrel a file neveiben.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "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", "Internet connection not working" => "Az internet kapcsolat nem működik", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "A kiszolgálónak nincs müködő internet kapcsolata. Ez azt jelenti, hogy néhány képességét a kiszolgálónak mint például becsatolni egy külső tárolót, értesítések külső gyártók programjának frissítéséről nem fog müködni. A távolról való elérése a fileoknak és email értesítések küldése szintén nem fog müködni. Ha használni szeretnéd mindezeket a képességeit a szervernek, ahoz javasoljuk, hogy engedélyezzed az internet elérését a szervernek.", "Cron" => "Ütemezett feladatok", "Execute one task with each page loaded" => "Egy-egy feladat végrehajtása minden alkalommal, amikor egy weboldalt letöltenek", -"cron.php is registered at a webcron service to call cron.php once a minute over http." => "A cron.php webcron szolgáltatásként van regisztrálva. Hívja meg a cron.php állományt http-n keresztül percenként egyszer.", -"Use systems cron service to call the cron.php file once a minute." => "A rendszer cron szolgáltatásának használata. Hívja meg a cron.php állományt percenként egyszer a rendszer cron szolgáltatásának segítségével.", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "A cron.php webcron szolgáltatásként van regisztrálva, hogy 15 percenként egyszer lefuttassa a cron.php-t.", +"Use systems cron service to call the cron.php file every 15 minutes." => "Használjuk a rendszer cron szolgáltatását, hogy 15 percenként egyszer futtassa le a cron.php-t.", "Sharing" => "Megosztás", "Enable Share API" => "A megosztás API-jának engedélyezése", "Allow apps to use the Share API" => "Lehetővé teszi, hogy a programmodulok is használhassák a megosztást", @@ -73,6 +84,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Lehetővé teszi, hogy a felhasználók a velük megosztott állományokat megosszák egy további, harmadik féllel", "Allow users to share with anyone" => "A felhasználók bárkivel megoszthatják állományaikat", "Allow users to only share with users in their groups" => "A felhasználók csak olyanokkal oszthatják meg állományaikat, akikkel közös csoportban vannak", +"Allow mail notification" => "E-mail értesítések engedélyezése", +"Allow user to send mail notification for shared files" => "Engedélyezi, hogy a felhasználók e-mail értesítést küldhessenek a megosztott fájlokról.", "Security" => "Biztonság", "Enforce HTTPS" => "Kötelező HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Kötelezővé teszi, hogy a böngészőprogramok titkosított csatornán kapcsolódjanak a %s szolgáltatáshoz.", @@ -103,7 +116,7 @@ $TRANSLATIONS = array( "Current password" => "A jelenlegi jelszó", "New password" => "Az új jelszó", "Change password" => "A jelszó megváltoztatása", -"Display Name" => "A megjelenített név", +"Full Name" => "Teljes név", "Email" => "Email", "Your email address" => "Az Ön email címe", "Fill in an email address to enable password recovery" => "Adja meg az email címét, hogy jelszó-emlékeztetőt kérhessen, ha elfelejtette a jelszavát!", @@ -112,14 +125,15 @@ $TRANSLATIONS = array( "Select new from Files" => "Új kiválasztása Fileokból", "Remove image" => "Kép eltávolítása", "Either png or jpg. Ideally square but you will be able to crop it." => "Egyaránt png vagy jpg. Az ideális ha négyzet alaku, de késöbb még átszabható", +"Your avatar is provided by your original account." => "Az avatarod az eredeti fiókod alapján van beállítva.", "Abort" => "Megszakítás", "Choose as profile image" => "Válassz profil képet", "Language" => "Nyelv", "Help translate" => "Segítsen a fordításban!", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Ezt a címet használja, ha WebDAV-on keresztül szeretné elérni az állományait", +"Use this address to access your Files via WebDAV" => "Ezt a címet használd, hogy hozzáférj a fileokhoz WebDAV-on keresztül", "Encryption" => "Titkosítás", -"The encryption app is no longer enabled, decrypt all your file" => "A titkosító alkalmzás a továbbiakban nincs engedélyezve, kititkosítja az összes fileodat", +"The encryption app is no longer enabled, please decrypt all your files" => "A titkosító alkalmazás továbbiakban nem lesz engedélyezve, szüntesd meg a titkosítását a file-jaidnak.", "Log-in password" => "Bejelentkezési jelszó", "Decrypt all Files" => "Kititkosítja az összes file-t", "Login Name" => "Bejelentkezési név", @@ -127,11 +141,12 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "A jelszóvisszaállítás adminisztrációja", "Enter the recovery password in order to recover the users files during password change" => "Adja meg az adatok visszanyeréséhez szükséges jelszót arra az esetre, ha a felhasználók megváltoztatják a jelszavukat", "Default Storage" => "Alapértelmezett tárhely", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Kérjük adja meg a tárolási kvótát (pl. \"512 MB\" vagy \"12 GB\")", "Unlimited" => "Korlátlan", "Other" => "Más", "Username" => "Felhasználónév", "Storage" => "Tárhely", -"change display name" => "a megjelenített név módosítása", +"change full name" => "a teljes név megváltoztatása", "set new password" => "új jelszó beállítása", "Default" => "Alapértelmezett" ); diff --git a/settings/l10n/id.php b/settings/l10n/id.php index d64f5be3acfdd9e4b97dbce4271bd4142ef4b639..2ff3f5729665c902b9b711125ac7c74fd28f3531 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -2,7 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Tidak dapat memuat daftar dari App Store", "Authentication error" => "Galat saat autentikasi", -"Unable to change display name" => "Tidak dapat mengubah nama tampilan", +"Your full name has been changed." => "Nama lengkap Anda telah diubah", +"Unable to change full name" => "Tidak dapat mengubah nama lengkap", "Group already exists" => "Grup sudah ada", "Unable to add group" => "Tidak dapat menambah grup", "Email saved" => "Email disimpan", @@ -15,15 +16,24 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "Tidak dapat menambahkan pengguna ke grup %s", "Unable to remove user from group %s" => "Tidak dapat menghapus pengguna dari grup %s", "Couldn't update app." => "Tidak dapat memperbarui aplikasi.", +"Wrong password" => "Sandi salah", +"No user supplied" => "Tidak ada pengguna yang diberikan", +"Wrong admin recovery password. Please check the password and try again." => "Sandi pemulihan admin salah. Periksa sandi dan ulangi kembali.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "Back-end tidak mendukung perubahan password, tetapi kunci enkripsi pengguna berhasil diperbarui.", +"Unable to change password" => "Tidak dapat mengubah sandi", "Update to {appversion}" => "Perbarui ke {appversion}", "Disable" => "Nonaktifkan", -"Enable" => "aktifkan", +"Enable" => "Aktifkan", "Please wait...." => "Mohon tunggu....", +"Error while disabling app" => "Galat saat menonaktifkan aplikasi", +"Error while enabling app" => "Galat saat mengakifkan aplikasi", "Updating...." => "Memperbarui....", "Error while updating app" => "Gagal ketika memperbarui aplikasi", "Error" => "Galat", "Update" => "Perbarui", "Updated" => "Diperbarui", +"Select a profile picture" => "Pilih foto profil", +"Decrypting files... Please wait, this can take some time." => "Mendeskripsi berkas... Modon tunggu, ini memerlukan beberapa saat.", "Saving..." => "Menyimpan...", "deleted" => "dihapus", "undo" => "urungkan", @@ -35,27 +45,49 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Tuliskan nama pengguna yang valid", "Error creating user" => "Gagal membuat pengguna", "A valid password must be provided" => "Tuliskan sandi yang valid", +"Warning: Home directory for user \"{user}\" already exists" => "Peringatan: Direktori home untuk pengguna \"{user}\" sudah ada", "__language_name__" => "__language_name__", +"Everything (fatal issues, errors, warnings, info, debug)" => "Semuanya (Masalah fatal, galat, peringatan, info, debug)", +"Info, warnings, errors and fatal issues" => "Info, peringatan, galat dan masalah fatal", +"Warnings, errors and fatal issues" => "Peringatan, galat dan masalah fatal", +"Errors and fatal issues" => "Galat dan masalah fatal", +"Fatal issues only" => "Hanya masalah fatal", "Security Warning" => "Peringatan Keamanan", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Anda mengakses %s melalui HTTP. Kami sangat menyarankan Anda untuk mengkonfigurasi server dengan menggunakan HTTPS sebagai gantinya.", +"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." => "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.", "Setup Warning" => "Peringatan Persiapan", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak.", +"Please double check the installation guides." => "Silakan periksa kembali petunjuk instalasi.", "Module 'fileinfo' missing" => "Module 'fileinfo' tidak ada", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Module 'fileinfo' pada PHP tidak ada. Kami sangat menyarankan untuk mengaktifkan modul ini untuk mendapatkan hasil terbaik pada proses pendeteksian mime-type.", +"Your PHP version is outdated" => "Versi PHP telah usang", +"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." => "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.", "Locale not working" => "Kode pelokalan tidak berfungsi", +"System locale can not be set to a one which supports UTF-8." => "Sistem lokal tidak dapat diatur untuk satu yang mendukung UTF-8.", +"This means that there might be problems with certain characters in file names." => "Ini artinya mungkin ada masalah dengan karakter tertentu pada nama berkas.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Kami sangat menyarankan untuk menginstal paket yang dibutuhkan pada sistem agar mendukung salah satu bahasa berikut: %s.", "Internet connection not working" => "Koneksi internet tidak berfungsi", "Cron" => "Cron", "Execute one task with each page loaded" => "Jalankan tugas setiap kali halaman dimuat", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php didaftarkan pada layanan webcron untuk memanggil cron.php setiap 15 menit melalui http.", +"Use systems cron service to call the cron.php file every 15 minutes." => "Menggunakan sistem layanan cron untuk memanggil berkas cron.php setiap 15 menit.", "Sharing" => "Berbagi", "Enable Share API" => "Aktifkan API Pembagian", "Allow apps to use the Share API" => "Izinkan aplikasi untuk menggunakan API Pembagian", "Allow links" => "Izinkan tautan", "Allow users to share items to the public with links" => "Izinkan pengguna untuk berbagi item kepada publik lewat tautan", +"Allow public uploads" => "Izinkan unggahan publik", +"Allow users to enable others to upload into their publicly shared folders" => "Izinkan pengguna memungkinkan orang lain untuk mengunggah kedalam folder berbagi publik mereka", "Allow resharing" => "Izinkan pembagian ulang", "Allow users to share items shared with them again" => "Izinkan pengguna untuk berbagi kembali item yang dibagikan kepada mereka.", "Allow users to share with anyone" => "Izinkan pengguna untuk berbagi kepada siapa saja", "Allow users to only share with users in their groups" => "Hanya izinkan pengguna untuk berbagi dengan pengguna pada grup mereka sendiri", +"Allow mail notification" => "Izinkan pemberitahuan email", +"Allow user to send mail notification for shared files" => "Izinkan pengguna mengirim pemberitahuan email pada berkas yang dibagikan", "Security" => "Keamanan", "Enforce HTTPS" => "Selalu Gunakan HTTPS", +"Forces the clients to connect to %s via an encrypted connection." => "Memaksa klien untuk menghubungkan ke %s menggunakan sambungan yang dienskripsi.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Mohon sambungkan ke %s menggunakan HTTPS untuk mengaktifkannya atau menonaktifkan penegakan SSL.", "Log" => "Catat", "Log level" => "Level pencatatan", "More" => "Lainnya", @@ -82,22 +114,37 @@ $TRANSLATIONS = array( "Current password" => "Sandi saat ini", "New password" => "Sandi baru", "Change password" => "Ubah sandi", -"Display Name" => "Nama Tampilan", +"Full Name" => "Nama Lengkap", "Email" => "Email", "Your email address" => "Alamat email Anda", "Fill in an email address to enable password recovery" => "Masukkan alamat email untuk mengaktifkan pemulihan sandi", +"Profile picture" => "Foto profil", +"Upload new" => "Unggah baru", +"Select new from Files" => "Pilih baru dari Berkas", +"Remove image" => "Hapus gambar", +"Either png or jpg. Ideally square but you will be able to crop it." => "Bisa png atau jpg. Idealnya berbentuk persegi tetapi jika tidak Anda bisa memotongnya nanti.", +"Your avatar is provided by your original account." => "Avatar disediakan oleh akun asli Anda.", +"Abort" => "Batal", +"Choose as profile image" => "Pilih sebagai gambar profil", "Language" => "Bahasa", "Help translate" => "Bantu menerjemahkan", "WebDAV" => "WebDAV", +"Use this address to access your Files via WebDAV" => "Gunakan alamat ini untuk mengakses Berkas via WebDAV", "Encryption" => "Enkripsi", +"The encryption app is no longer enabled, please decrypt all your files" => "Aplikasi enkripsi tidak lagi diaktifkan, silahkan mendekripsi semua file Anda", +"Log-in password" => "Sandi masuk", +"Decrypt all Files" => "Deskripsi semua Berkas", "Login Name" => "Nama Masuk", "Create" => "Buat", +"Admin Recovery Password" => "Sandi pemulihan Admin", +"Enter the recovery password in order to recover the users files during password change" => "Masukkan sandi pemulihan untuk memulihkan berkas pengguna saat penggantian sandi", "Default Storage" => "Penyimpanan Baku", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Silakan masukkan jumlah penyimpanan (contoh: \"512 MB\" atau \"12 GB\")", "Unlimited" => "Tak terbatas", "Other" => "Lainnya", "Username" => "Nama pengguna", "Storage" => "Penyimpanan", -"change display name" => "ubah nama tampilan", +"change full name" => "ubah nama lengkap", "set new password" => "setel sandi baru", "Default" => "Baku" ); diff --git a/settings/l10n/is.php b/settings/l10n/is.php index ce95903df9a9eafc0f82cc7dc22e39a4654b275c..6798783f83b34cd337c74b991c634ebd61d9663c 100644 --- a/settings/l10n/is.php +++ b/settings/l10n/is.php @@ -50,7 +50,6 @@ $TRANSLATIONS = array( "Current password" => "Núverandi lykilorð", "New password" => "Nýtt lykilorð", "Change password" => "Breyta lykilorði", -"Display Name" => "Vísa nafn", "Email" => "Netfang", "Your email address" => "Netfangið þitt", "Fill in an email address to enable password recovery" => "Sláðu inn netfangið þitt til að virkja endurheimt á lykilorði", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index fc91bc5f170f506fa834959ec918f334fc442c57..08bab35244cbbdb80429c042979b6311ff8810a5 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Impossibile caricare l'elenco dall'App Store", "Authentication error" => "Errore di autenticazione", -"Your display name has been changed." => "Il tuo nome visualizzato è stato cambiato.", -"Unable to change display name" => "Impossibile cambiare il nome visualizzato", +"Your full name has been changed." => "Il tuo nome completo è stato cambiato.", +"Unable to change full name" => "Impossibile cambiare il nome completo", "Group already exists" => "Il gruppo esiste già", "Unable to add group" => "Impossibile aggiungere il gruppo", "Email saved" => "Email salvata", @@ -46,22 +46,33 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Deve essere fornito un nome utente valido", "Error creating user" => "Errore durante la creazione dell'utente", "A valid password must be provided" => "Deve essere fornita una password valida", +"Warning: Home directory for user \"{user}\" already exists" => "Avviso: la cartella home dell'utente \"{user}\" esiste già", "__language_name__" => "Italiano", +"Everything (fatal issues, errors, warnings, info, debug)" => "Tutto (problemi gravi, errori, avvisi, informazioni, debug)", +"Info, warnings, errors and fatal issues" => "Informazioni, avvisi, errori e problemi gravi", +"Warnings, errors and fatal issues" => "Avvisi, errori e problemi gravi", +"Errors and fatal issues" => "Errori e problemi gravi", +"Fatal issues only" => "Solo problemi gravi", "Security Warning" => "Avviso di sicurezza", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Sei connesso a %s tramite HTTP. Ti suggeriamo vivamente di configurare il tuo server per richiedere l'utilizzo del protocollo HTTPS al posto di HTTP.", "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." => "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o spostare la cartella fuori dalla radice del server web.", "Setup Warning" => "Avviso di configurazione", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata.", "Please double check the installation guides." => "Leggi attentamente le guide d'installazione.", "Module 'fileinfo' missing" => "Modulo 'fileinfo' mancante", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Il modulo PHP 'fileinfo' non è presente. Consigliamo vivamente di abilitare questo modulo per ottenere risultati migliori con il rilevamento dei tipi MIME.", +"Your PHP version is outdated" => "La tua versione di PHP è obsoleta", +"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." => "La tua versione di PHP è obsoleta. Ti consigliamo vivamente di aggiornare alla versione 5.3.8 o successiva poiché è sono noti problemi con le vecchie versioni. L'installazione attuale potrebbe non funzionare correttamente.", "Locale not working" => "Locale non funzionante", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "La localizzazione di sistema è impostata a %s. Ciò significa che potrebbero verificarsi dei problemi con alcuni caratteri nei nomi dei file. Consigliamo vivamente di installare i pacchetti necessari a supportare %s.", +"System locale can not be set to a one which supports UTF-8." => "La localizzazione di sistema non può essere impostata a una che supporta UTF-8.", +"This means that there might be problems with certain characters in file names." => "Ciò significa che potrebbero esserci problemi con alcuni caratteri nei nomi dei file.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Consigliamo vivamente di installare i pacchetti richiesti sul tuo sistema per supportare una delle\nlocalizzazioni seguenti: %s.", "Internet connection not working" => "Concessione Internet non funzionante", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Questo server ownCloud non ha una connessione a Internet funzionante. Ciò significa che alcune delle funzionalità come il montaggio di archivi esterni, le notifiche degli aggiornamenti o l'installazione di applicazioni di terze parti non funzioneranno. L'accesso remoto ai file e l'invio di email di notifica potrebbero non funzionare. Ti suggeriamo di abilitare la connessione a Internet del server se desideri disporre di tutte le funzionalità.", "Cron" => "Cron", "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 once a minute over http." => "cron.php è registrato su un servizio webcron per invocare la pagina cron.php ogni minuto su http.", -"Use systems cron service to call the cron.php file once a minute." => "Usa il servizio cron di sistema per invocare il file cron.php ogni minuto.", +"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.", "Sharing" => "Condivisione", "Enable Share API" => "Abilita API di condivisione", "Allow apps to use the Share API" => "Consenti alle applicazioni di utilizzare le API di condivisione", @@ -73,6 +84,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Consenti agli utenti di condividere a loro volta elementi condivisi da altri", "Allow users to share with anyone" => "Consenti agli utenti di condividere con chiunque", "Allow users to only share with users in their groups" => "Consenti agli utenti di condividere solo con utenti dei loro gruppi", +"Allow mail notification" => "Consenti le notifiche tramite posta elettronica", +"Allow user to send mail notification for shared files" => "Consenti all'utente di inviare notifiche tramite posta elettronica per i file condivisi", "Security" => "Protezione", "Enforce HTTPS" => "Forza HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forza i client a connettersi a %s tramite una connessione cifrata.", @@ -103,7 +116,7 @@ $TRANSLATIONS = array( "Current password" => "Password attuale", "New password" => "Nuova password", "Change password" => "Modifica password", -"Display Name" => "Nome visualizzato", +"Full Name" => "Nome completo", "Email" => "Posta elettronica", "Your email address" => "Il tuo indirizzo email", "Fill in an email address to enable password recovery" => "Inserisci il tuo indirizzo email per abilitare il recupero della password", @@ -112,14 +125,15 @@ $TRANSLATIONS = array( "Select new from Files" => "Seleziona nuova da file", "Remove image" => "Rimuovi immagine", "Either png or jpg. Ideally square but you will be able to crop it." => "Sia png che jpg. Preferibilmente quadrata, ma potrai ritagliarla.", +"Your avatar is provided by your original account." => "Il tuo avatar è ottenuto dal tuo account originale.", "Abort" => "Interrompi", "Choose as profile image" => "Scegli come immagine del profilo", "Language" => "Lingua", "Help translate" => "Migliora la traduzione", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Utilizza questo indirizzo per accedere ai tuoi file via WebDAV", +"Use this address to access your Files via WebDAV" => "Utilizza questo indirizzo per accedere ai tuoi file con WebDAV", "Encryption" => "Cifratura", -"The encryption app is no longer enabled, decrypt all your file" => "L'applicazione di cifratura non è più abilitata, decifra tutti i tuoi file", +"The encryption app is no longer enabled, please decrypt all your files" => "L'applicazione di cifratura non è più abilitata, decifra tutti i tuoi file", "Log-in password" => "Password di accesso", "Decrypt all Files" => "Decifra tutti i file", "Login Name" => "Nome utente", @@ -127,11 +141,12 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "Password di ripristino amministrativa", "Enter the recovery password in order to recover the users files during password change" => "Digita la password di ripristino per recuperare i file degli utenti durante la modifica della password.", "Default Storage" => "Archiviazione predefinita", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Digita la quota di archiviazione (ad es.: \"512 MB\" or \"12 GB\")", "Unlimited" => "Illimitata", "Other" => "Altro", "Username" => "Nome utente", "Storage" => "Archiviazione", -"change display name" => "cambia il nome visualizzato", +"change full name" => "modica nome completo", "set new password" => "imposta una nuova password", "Default" => "Predefinito" ); diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index bfaa9827b21f36cca1a2550c819803f3c79c86ee..b151564a18c96391b6c54b9befe07801009f5878 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "アプリストアからリストをロードできません", "Authentication error" => "認証エラー", -"Your display name has been changed." => "表示名を変更しました。", -"Unable to change display name" => "表示名を変更できません", +"Your full name has been changed." => "姓名が変更されました", +"Unable to change full name" => "姓名を変更できません", "Group already exists" => "グループは既に存在しています", "Unable to add group" => "グループを追加できません", "Email saved" => "メールアドレスを保存しました", @@ -46,22 +46,33 @@ $TRANSLATIONS = array( "A valid username must be provided" => "有効なユーザ名を指定する必要があります", "Error creating user" => "ユーザ作成エラー", "A valid password must be provided" => "有効なパスワードを指定する必要があります", +"Warning: Home directory for user \"{user}\" already exists" => "警告: ユーザ \"{user}\" のホームディレクトリはすでに存在します", "__language_name__" => "Japanese (日本語)", +"Everything (fatal issues, errors, warnings, info, debug)" => "すべて (致命的な問題、エラー、警告、情報、デバッグ)", +"Info, warnings, errors and fatal issues" => "情報と警告、エラー、致命的な問題", +"Warnings, errors and fatal issues" => "警告とエラー、致命的な問題", +"Errors and fatal issues" => "エラーと致命的な問題", +"Fatal issues only" => "致命的な問題のみ", "Security Warning" => "セキュリティ警告", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "HTTP 経由で %s にアクセスしています。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." => "データディレクトリとファイルがインターネットからアクセス可能になっている可能性があります。.htaccessファイルが機能していません。データディレクトリがアクセスされないようにウェブサーバーを設定するか、ウェブサーバーのドキュメントルートからデータディレクトリを移動するように強くお勧めします。", "Setup Warning" => "セットアップ警告", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。", "Please double check the installation guides." => "installation guidesをもう一度チェックするようにお願いいたします。", "Module 'fileinfo' missing" => "モジュール 'fileinfo' が見つかりません", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。", +"Your PHP version is outdated" => "PHPバーションが古くなっております。", +"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." => "PHPバーションが古くなっております。このプログラムが不正な行為を発生する可能性はある為、PHPバーション5.3.8以降にアップグレードをください。", "Locale not working" => "ロケールが動作していません", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "システムロケールが %s に設定出来ません。この場合、ファイル名にそのロケールの文字が入っていたときに問題になる可能性があります。必要なパッケージをシステムにインストールして、%s をサポートすることを強くお勧めします。", +"System locale can not be set to a one which supports UTF-8." => "システムロケールを UTF-8 をサポートするロケールに設定できません。", +"This means that there might be problems with certain characters in file names." => "これは、ファイル名の特定の文字に問題があることを意味しています。", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "次のロケールをサポートするために、システムに必要なパッケージをインストールすることを強くおすすめします: %s。", "Internet connection not working" => "インターネット接続が動作していません", "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", "Execute one task with each page loaded" => "各ページの読み込み時にタスクを実行する", -"cron.php is registered at a webcron service to call cron.php once a minute over http." => "http経由で1分間に1回cron.phpを呼び出すように cron.phpがwebcron サービスに登録されています。", -"Use systems cron service to call the cron.php file once a minute." => "cron.phpファイルを1分間に1回実行する為にサーバーのcronサービスを利用する。", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "HTTPを通して15分間隔で cron.php を実行するように、cron.php は webcron サービスに登録されています。", +"Use systems cron service to call the cron.php file every 15 minutes." => "15分間隔で cron.php ファイルを実行するためにシステムの cron サービスを利用する", "Sharing" => "共有", "Enable Share API" => "共有APIを有効にする", "Allow apps to use the Share API" => "アプリからの共有APIの利用を許可する", @@ -73,6 +84,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "ユーザが共有しているアイテムの再共有を許可する", "Allow users to share with anyone" => "ユーザが誰とでも共有することを許可する", "Allow users to only share with users in their groups" => "ユーザにグループ内のユーザとのみ共有を許可する", +"Allow mail notification" => "メール通知を許可", +"Allow user to send mail notification for shared files" => "共有ファイルに関するメール通知の送信をユーザに許可する", "Security" => "セキュリティ", "Enforce HTTPS" => "常にHTTPSを使用する", "Forces the clients to connect to %s via an encrypted connection." => "クライアントから %sへの接続を常に暗号化する。", @@ -103,7 +116,7 @@ $TRANSLATIONS = array( "Current password" => "Current password", "New password" => "新しいパスワードを入力", "Change password" => "パスワードを変更", -"Display Name" => "表示名", +"Full Name" => "姓名", "Email" => "メール", "Your email address" => "あなたのメールアドレス", "Fill in an email address to enable password recovery" => "※パスワード回復を有効にするにはメールアドレスの入力が必要です", @@ -112,14 +125,15 @@ $TRANSLATIONS = array( "Select new from Files" => "ファイルから新規に選択", "Remove image" => "画像を削除", "Either png or jpg. Ideally square but you will be able to crop it." => "png と jpg のいずれか。正方形が理想ですが、切り取って加工することも可能です。", +"Your avatar is provided by your original account." => "あなたのアバターは、あなたのオリジナルのアカウントで提供されています。", "Abort" => "中止", "Choose as profile image" => "プロファイル画像として選択", "Language" => "言語", "Help translate" => "翻訳に協力する", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "WebDAV経由でファイルにアクセスするにはこのアドレスを利用してください", +"Use this address to access your Files via WebDAV" => "WebDAV 経由でファイルにアクセス するにはこのアドレスを利用してください", "Encryption" => "暗号化", -"The encryption app is no longer enabled, decrypt all your file" => "暗号化アプリはもはや有効ではありません、すべてのファイルを複合してください", +"The encryption app is no longer enabled, please decrypt all your files" => "暗号化アプリはもはや有効ではありません、すべてのファイルを複合してください", "Log-in password" => "ログインパスワード", "Decrypt all Files" => "すべてのファイルを複合する", "Login Name" => "ログイン名", @@ -127,11 +141,12 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "管理者復旧パスワード", "Enter the recovery password in order to recover the users files during password change" => "パスワード変更の間のユーザーのファイルを回復するために、リカバリパスワードを入力してください", "Default Storage" => "デフォルトストレージ", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "ストレージの割り当てを入力してください (例: \"512MB\" や \"12 GB\")", "Unlimited" => "無制限", "Other" => "その他", "Username" => "ユーザー名", "Storage" => "ストレージ", -"change display name" => "表示名を変更", +"change full name" => "姓名を変更", "set new password" => "新しいパスワードを設定", "Default" => "デフォルト" ); diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php index 7a0157746be4ac48edbb4695dd811a9e0040539c..ba844736a5b1c525a60d3f23a9862dbdd4242951 100644 --- a/settings/l10n/ka_GE.php +++ b/settings/l10n/ka_GE.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "აპლიკაციების სია ვერ ჩამოიტვირთა App Store", "Authentication error" => "ავთენტიფიკაციის შეცდომა", -"Your display name has been changed." => "თქვენი დისფლეის სახელი უკვე შეიცვალა", -"Unable to change display name" => "დისფლეის სახელის შეცვლა ვერ მოხერხდა", "Group already exists" => "ჯგუფი უკვე არსებობს", "Unable to add group" => "ჯგუფის დამატება ვერ მოხერხდა", "Email saved" => "იმეილი შენახულია", @@ -83,7 +81,6 @@ $TRANSLATIONS = array( "Current password" => "მიმდინარე პაროლი", "New password" => "ახალი პაროლი", "Change password" => "პაროლის შეცვლა", -"Display Name" => "დისპლეის სახელი", "Email" => "იმეილი", "Your email address" => "თქვენი იმეილ მისამართი", "Fill in an email address to enable password recovery" => "შეავსეთ იმეილ მისამართის ველი პაროლის აღსადგენად", @@ -98,7 +95,6 @@ $TRANSLATIONS = array( "Other" => "სხვა", "Username" => "მომხმარებლის სახელი", "Storage" => "საცავი", -"change display name" => "შეცვალე დისფლეის სახელი", "set new password" => "დააყენეთ ახალი პაროლი", "Default" => "საწყისი პარამეტრები" ); diff --git a/settings/l10n/km.php b/settings/l10n/km.php new file mode 100644 index 0000000000000000000000000000000000000000..f7d9faa38c566877990a5955d661b7cd09218414 --- /dev/null +++ b/settings/l10n/km.php @@ -0,0 +1,5 @@ + "លុប" +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index cbf693d71267ae1c561f56cffcb3196b5ee635d6..83c92bba0f160da78b319552acd459985fd87c1d 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "앱 스토어에서 목록을 가져올 수 없습니다", "Authentication error" => "인증 오류", -"Your display name has been changed." => "표시 이름이 변경되었습니다.", -"Unable to change display name" => "표시 이름을 변경할 수 없음", +"Your full name has been changed." => "전체 이름이 변경되었습니다.", +"Unable to change full name" => "전체 이름을 변경할 수 없음", "Group already exists" => "그룹이 이미 존재함", "Unable to add group" => "그룹을 추가할 수 없음", "Email saved" => "이메일 저장됨", @@ -16,15 +16,25 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "그룹 %s에 사용자를 추가할 수 없음", "Unable to remove user from group %s" => "그룹 %s에서 사용자를 삭제할 수 없음", "Couldn't update app." => "앱을 업데이트할 수 없습니다.", +"Wrong password" => "잘못된 암호", +"No user supplied" => "사용자가 지정되지 않음", +"Please provide an admin recovery password, otherwise all user data will be lost" => "관리자 복구 암호를 입력하지 않으면 모든 사용자 데이터가 삭제됩니다", +"Wrong admin recovery password. Please check the password and try again." => "관리자 복구 암호가 잘못되었습니다. 암호를 다시 확인하십시오.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "백엔드에서 암호 변경을 지원하지 않지만, 사용자의 암호화 키는 갱신되었습니다.", +"Unable to change password" => "암호를 변경할 수 없음", "Update to {appversion}" => "버전 {appversion}(으)로 업데이트", -"Disable" => "비활성화", +"Disable" => "사용 안함", "Enable" => "사용함", "Please wait...." => "기다려 주십시오....", +"Error while disabling app" => "앱을 비활성화하는 중 오류 발생", +"Error while enabling app" => "앱을 활성화하는 중 오류 발생", "Updating...." => "업데이트 중....", "Error while updating app" => "앱을 업데이트하는 중 오류 발생", "Error" => "오류", "Update" => "업데이트", "Updated" => "업데이트됨", +"Select a profile picture" => "프로필 사진 선택", +"Decrypting files... Please wait, this can take some time." => "파일 복호화 중... 시간이 걸릴 수도 있으니 기다려 주십시오.", "Saving..." => "저장 중...", "deleted" => "삭제됨", "undo" => "실행 취소", @@ -36,27 +46,50 @@ $TRANSLATIONS = array( "A valid username must be provided" => "올바른 사용자 이름을 입력해야 함", "Error creating user" => "사용자 생성 오류", "A valid password must be provided" => "올바른 암호를 입력해야 함", +"Warning: Home directory for user \"{user}\" already exists" => "경고: 사용자 \"{user}\"의 홈 디렉터리가 이미 존재합니다", "__language_name__" => "한국어", +"Everything (fatal issues, errors, warnings, info, debug)" => "모두 (치명적 문제, 오류, 경고, 정보, 디버그)", +"Info, warnings, errors and fatal issues" => "정보, 경고, 오류, 치명적 문제", +"Warnings, errors and fatal issues" => "경고, 오류, 치명적 문제", +"Errors and fatal issues" => "오류, 치명적 문제", +"Fatal issues only" => "치명적 문제만", "Security Warning" => "보안 경고", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "%s에 HTTP로 접근하고 있습니다. 서버에서 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." => "데이터 디렉터리와 파일을 인터넷에서 접근할 수도 있습니다. .htaccess 파일이 작동하지 않습니다. 웹 서버 설정을 변경하여 데이터 디렉터리에 접근할 수 없도록 하거나, 웹 서버 문서 경로 외부로 데이터 디렉터리를 옮기십시오.", "Setup Warning" => "설정 경고", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다.", +"Please double check the installation guides." => "설치 가이드를 다시 한 번 확인하십시오.", "Module 'fileinfo' missing" => "모듈 'fileinfo'가 없음", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP 모듈 'fileinfo'가 존재하지 않습니다. MIME 형식 감지 결과를 향상시키기 위하여 이 모듈을 활성화하는 것을 추천합니다.", +"Your PHP version is outdated" => "PHP 버전이 오래됨", +"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." => "PHP 버전이 오래되었습니다. 오래된 버전은 작동하지 않을 수도 있기 때문에 PHP 5.3.8 이상을 사용하는 것을 추천합니다.", "Locale not working" => "로캘이 작동하지 않음", +"System locale can not be set to a one which supports UTF-8." => "UTF-8을 지원하는 시스템 로캘을 사용할 수 없습니다.", +"This means that there might be problems with certain characters in file names." => "파일 이름의 일부 문자에 문제가 생길 수도 있습니다.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "다음 로캘을 지원하도록 시스템 설정을 변경하는 것을 추천합니다: %s", "Internet connection not working" => "인터넷에 연결할 수 없음", +"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." => "서버에서 인터넷에 연결할 수 없습니다. 외부 저장소 마운트, 업데이트 알림, 제 3자 앱 설치 등 일부 기능을 사용할 수 없습니다. 외부에서 파일에 접근하거나 알림 이메일을 보내지 못할 수도 있습니다. 모든 기능을 사용하려면 인터넷에 연결하는 것을 추천합니다.", "Cron" => "크론", "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는 webcron 서비스에 등록되어 HTTP로 15분마다 cron.php에 접근합니다.", +"Use systems cron service to call the cron.php file every 15 minutes." => "시스템의 cron 서비스를 통하여 15분마다 cron.php 파일에 접근합니다.", "Sharing" => "공유", "Enable Share API" => "공유 API 사용하기", "Allow apps to use the Share API" => "앱에서 공유 API를 사용할 수 있도록 허용", "Allow links" => "링크 허용", "Allow users to share items to the public with links" => "사용자가 개별 항목의 링크를 공유할 수 있도록 허용", +"Allow public uploads" => "공개 업로드 허용", +"Allow users to enable others to upload into their publicly shared folders" => "다른 사용자들이 공개된 공유 폴더에 파일 업로드 허용", "Allow resharing" => "재공유 허용", "Allow users to share items shared with them again" => "사용자에게 공유된 항목을 다시 공유할 수 있도록 허용", "Allow users to share with anyone" => "누구나와 공유할 수 있도록 허용", -"Allow users to only share with users in their groups" => "사용자가 속해 있는 그룹의 사용자와만 공유할 수 있도록 허용", +"Allow users to only share with users in their groups" => "사용자가 속해 있는 그룹의 사용자에게만 공유할 수 있도록 허용", +"Allow mail notification" => "메일 알림 허용", +"Allow user to send mail notification for shared files" => "사용자에게 공유 파일에 대한 메일 알림을 허용합니다", "Security" => "보안", "Enforce HTTPS" => "HTTPS 강제 사용", +"Forces the clients to connect to %s via an encrypted connection." => "클라이언트가 %s에 연결할 때 암호화 연결을 강제로 사용합니다.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "SSL 강제 설정을 변경하려면 %s에 HTTPS로 연결해야 합니다.", "Log" => "로그", "Log level" => "로그 단계", "More" => "더 중요함", @@ -83,25 +116,37 @@ $TRANSLATIONS = array( "Current password" => "현재 암호", "New password" => "새 암호", "Change password" => "암호 변경", -"Display Name" => "표시 이름", +"Full Name" => "전체 이름", "Email" => "이메일", "Your email address" => "이메일 주소", "Fill in an email address to enable password recovery" => "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오", "Profile picture" => "프로필 사진", +"Upload new" => "새로 업로드", +"Select new from Files" => "파일에서 선택", +"Remove image" => "그림 삭제", +"Either png or jpg. Ideally square but you will be able to crop it." => "png나 jpg를 사용하십시오. 정사각형 형태가 가장 좋지만 잘라낼 수 있습니다.", +"Your avatar is provided by your original account." => "원본 계정의 아바타를 사용합니다.", +"Abort" => "중지", +"Choose as profile image" => "프로필 이미지로 사용", "Language" => "언어", "Help translate" => "번역 돕기", "WebDAV" => "WebDAV", +"Use this address to access your Files via WebDAV" => "WebDAV로 파일에 접근하려면 이 주소를 사용하십시오", "Encryption" => "암호화", +"The encryption app is no longer enabled, please decrypt all your files" => "암호화 앱이 비활성화되었습니다. 모든 파일을 복호화해야 합니다.", +"Log-in password" => "로그인 암호", +"Decrypt all Files" => "모든 파일 복호화", "Login Name" => "로그인 이름", "Create" => "만들기", "Admin Recovery Password" => "관리자 복구 암호", "Enter the recovery password in order to recover the users files during password change" => "암호 변경 시 변경된 사용자 파일을 복구하려면 복구 암호를 입력하십시오", "Default Storage" => "기본 저장소", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "저장소 할당량을 입력하십시오 (예: \"512 MB\", \"12 GB\")", "Unlimited" => "무제한", "Other" => "기타", "Username" => "사용자 이름", "Storage" => "저장소", -"change display name" => "표시 이름 변경", +"change full name" => "전체 이름 변경", "set new password" => "새 암호 설정", "Default" => "기본값" ); diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index b80d834db978f821cfaf9951f9720bbdba099fa0..ac8c1b6a16fc9499f0e6373f04fca35485e503e8 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Konnt Lescht net vum App Store lueden", "Authentication error" => "Authentifikatioun's Fehler", -"Your display name has been changed." => "Aren Nickname ass geännert ginn.", -"Unable to change display name" => "Unmeiglech den Nickname ze änneren.", "Group already exists" => "Group existeiert schon.", "Unable to add group" => "Onmeiglech Grupp beizefügen.", "Email saved" => "E-mail gespäichert", @@ -17,6 +15,7 @@ $TRANSLATIONS = array( "Disable" => "Ofschalten", "Enable" => "Aschalten", "Error" => "Fehler", +"Update" => "Update", "Saving..." => "Speicheren...", "deleted" => "geläscht", "undo" => "réckgängeg man", @@ -34,6 +33,7 @@ $TRANSLATIONS = array( "Allow users to only share with users in their groups" => "Useren nëmmen erlaben mat Useren aus hirer Grupp ze sharen", "Log" => "Log", "More" => "Méi", +"Less" => "Manner", "Add your App" => "Setz deng App bei", "Select an App" => "Wiel eng Applikatioun aus", "See application page at apps.owncloud.com" => "Kuck dir d'Applicatioun's Säit op apps.owncloud.com un", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index df0247fc27e3511d1400054899cd38abe7cb4fdd..f2cb6a30265141c01c4ff5dae074693f1ba1a684 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Neįmanoma įkelti sąrašo iš Programų Katalogo", "Authentication error" => "Autentikacijos klaida", -"Your display name has been changed." => "Jūsų rodomas vardas buvo pakeistas.", -"Unable to change display name" => "Nepavyksta pakeisti rodomą vardą", "Group already exists" => "Grupė jau egzistuoja", "Unable to add group" => "Nepavyko pridėti grupės", "Email saved" => "El. paštas išsaugotas", @@ -46,6 +44,7 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Vartotojo vardas turi būti tinkamas", "Error creating user" => "Klaida kuriant vartotoją", "A valid password must be provided" => "Slaptažodis turi būti tinkamas", +"Warning: Home directory for user \"{user}\" already exists" => "Įspėjimas: Vartotojo \"{user}\" namų aplankas jau egzistuoja", "__language_name__" => "Kalba", "Security Warning" => "Saugumo pranešimas", "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." => "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.", @@ -55,13 +54,12 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Trūksta 'fileinfo' modulio", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Trūksta PHP modulio „fileinfo“. Labai rekomenduojame įjungti šį modulį, kad gauti geriausius rezultatus nustatant mime-tipą.", "Locale not working" => "Lokalė neveikia", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Negalima nustatyti sistemos lokalės į %s. Tai reiškia, kad gali būti problemų su tam tikrais simboliais failų pavadinimuose. Labai rekomenduojame įdiegti reikalingus paketus Jūsų sistemoje, kad palaikyti %s.", "Internet connection not working" => "Nėra interneto ryšio", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Šis serveris neturi veikiančio ryšio. Tai reiškia, kas kai kurios funkcijos kaip išorinės saugyklos prijungimas, perspėjimai apie atnaujinimus ar trečių šalių programų įdiegimas neveikia. Failų pasiekimas iš kitur ir pranešimų siuntimas el. paštu gali taip pat neveikti. Rekomenduojame įjungti interneto ryšį šiame serveryje, jei norite naudoti visas funkcijas.", "Cron" => "Cron", "Execute one task with each page loaded" => "Įvykdyti vieną užduotį su kiekvieno puslapio įkėlimu", -"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php yra registruotas tinklapio suplanuotų užduočių paslaugose, kad iškviesti cron.php kartą per minutę per http.", -"Use systems cron service to call the cron.php file once a minute." => "Naudoti sistemos planuotų užduočių paslaugą, kad iškvieti cron.php kartą per minutę.", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php yra registruotas tinklapio suplanuotų užduočių paslaugose, kad iškviesti cron.php kas 15 minučių per http.", +"Use systems cron service to call the cron.php file every 15 minutes." => "Naudoti sistemos planuotų užduočių paslaugą, kad iškvieti cron.php kas 15 minučių.", "Sharing" => "Dalijimasis", "Enable Share API" => "Įjungti Share API", "Allow apps to use the Share API" => "Leidžia programoms naudoti Share API", @@ -73,6 +71,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Leisti naudotojams toliau dalintis elementais pasidalintais su jais", "Allow users to share with anyone" => "Leisti naudotojams dalintis su bet kuo", "Allow users to only share with users in their groups" => "Leisti naudotojams dalintis tik su naudotojais savo grupėje", +"Allow mail notification" => "Leisti el. pašto perspėjimą", +"Allow user to send mail notification for shared files" => "Leisti naudotojui siųsti perspėjimą el. laišku dėl bendrinamų failų", "Security" => "Saugumas", "Enforce HTTPS" => "Reikalauti HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Verčia klientus jungtis prie %s per šifruotą ryšį.", @@ -103,7 +103,6 @@ $TRANSLATIONS = array( "Current password" => "Dabartinis slaptažodis", "New password" => "Naujas slaptažodis", "Change password" => "Pakeisti slaptažodį", -"Display Name" => "Rodyti vardą", "Email" => "El. Paštas", "Your email address" => "Jūsų el. pašto adresas", "Fill in an email address to enable password recovery" => "Pamiršto slaptažodžio atkūrimui įveskite savo el. pašto adresą", @@ -117,9 +116,8 @@ $TRANSLATIONS = array( "Language" => "Kalba", "Help translate" => "Padėkite išversti", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Naudokite šį adresą, kad pasiekti savo failus per WebDAV", +"Use this address to access your Files via WebDAV" => "Naudokite šį adresą, kad pasiektumėte savo failus per WebDAV", "Encryption" => "Šifravimas", -"The encryption app is no longer enabled, decrypt all your file" => "Šifravimo programa nebėra įjungta, iššifruokite visus savo failus", "Log-in password" => "Prisijungimo slaptažodis", "Decrypt all Files" => "Iššifruoti visus failus", "Login Name" => "Vartotojo vardas", @@ -131,7 +129,6 @@ $TRANSLATIONS = array( "Other" => "Kita", "Username" => "Prisijungimo vardas", "Storage" => "Saugojimas", -"change display name" => "keisti rodomą vardą", "set new password" => "nustatyti naują slaptažodį", "Default" => "Numatytasis" ); diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index 66e34f11e6c28d41ae6ce28068e68f44e42b4e4c..de5d6460d6fa6ae174682762ef52f511eb0f9318 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Nevar lejupielādēt sarakstu no lietotņu veikala", "Authentication error" => "Autentifikācijas kļūda", -"Your display name has been changed." => "Jūsu redzamais vārds ir mainīts.", -"Unable to change display name" => "Nevarēja mainīt redzamo vārdu", "Group already exists" => "Grupa jau eksistē", "Unable to add group" => "Nevar pievienot grupu", "Email saved" => "E-pasts tika saglabāts", @@ -46,13 +44,10 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Trūkst modulis “fileinfo”", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Trūkst PHP modulis “fileinfo”. Mēs iesakām to aktivēt, lai pēc iespējas labāk noteiktu mime tipus.", "Locale not working" => "Lokāle nestrādā", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Sistēmas lokalizāciju nevar nomainīt uz %s. Tas nozīmē ka var rasties sarežģījumi ar dažu burtu attēlošanu failu nosaukumos. Ir rekomendēts uzstādīt nepieciešamās pakotnes lai atbalstītu %s lokalizāciju.", "Internet connection not working" => "Interneta savienojums nedarbojas", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Šim serverim nav savienojums ar internetu. Tas nozīmē ka nebūs tādas iespējas kā ārējo datu nesēju montēšana, paziņojumi par atjauninājumiem vai citu izstrādātāju programmu uzstādīšana. Attālināta failu piekļuve vai paziņojumu epastu sūtīšana iespējams arī nedarbosies. Ir rekomendēts iespējot interneta savienojumu lai gūtu iespēju izmantotu visus risinājumus.", "Cron" => "Cron", "Execute one task with each page loaded" => "Izpildīt vienu uzdevumu ar katru ielādēto lapu", -"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php ir reģistrēts webcron servisā lai izsauktu cron.php vienreiz minūtē caur http.", -"Use systems cron service to call the cron.php file once a minute." => "Izmantojiet sistēmas cron servisu lai izsauktu cron.php reizi minūtē.", "Sharing" => "Dalīšanās", "Enable Share API" => "Aktivēt koplietošanas API", "Allow apps to use the Share API" => "Ļauj lietotnēm izmantot koplietošanas API", @@ -94,16 +89,13 @@ $TRANSLATIONS = array( "Current password" => "Pašreizējā parole", "New password" => "Jauna parole", "Change password" => "Mainīt paroli", -"Display Name" => "Redzamais vārds", "Email" => "E-pasts", "Your email address" => "Jūsu e-pasta adrese", "Fill in an email address to enable password recovery" => "Ievadiet e-pasta adresi, lai vēlāk varētu atgūt paroli, ja būs nepieciešamība", "Language" => "Valoda", "Help translate" => "Palīdzi tulkot", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Lietojiet šo adresi lai piekļūtu saviem failiem ar WebDAV", "Encryption" => "Šifrēšana", -"The encryption app is no longer enabled, decrypt all your file" => "Šifrēšanas lietotne ir atslēgta, atšifrējiet visus jūsu failus", "Log-in password" => "Pieslēgšanās parole", "Decrypt all Files" => "Atšifrēt visus failus", "Login Name" => "Ierakstīšanās vārds", @@ -115,7 +107,6 @@ $TRANSLATIONS = array( "Other" => "Cits", "Username" => "Lietotājvārds", "Storage" => "Krātuve", -"change display name" => "mainīt redzamo vārdu", "set new password" => "iestatīt jaunu paroli", "Default" => "Noklusējuma" ); diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 901ef9106e2839a9653e957bf6d5da4049d0c15a..f9b4bbc9427655bd54826f4481a7492e15550cf9 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -13,17 +13,49 @@ $TRANSLATIONS = array( "Admins can't remove themself from the admin group" => "Администраторите неможе да се избришат себеси од админ групата", "Unable to add user to group %s" => "Неможе да додадам корисник во група %s", "Unable to remove user from group %s" => "Неможе да избришам корисник од група %s", +"Couldn't update app." => "Не можам да ја надградам апликацијата.", +"Wrong password" => "Погрешна лозинка", +"No user supplied" => "Нема корисничко име", +"Unable to change password" => "Вашата лозинка неможе да се смени", +"Update to {appversion}" => "Надгради на {appversion}", "Disable" => "Оневозможи", "Enable" => "Овозможи", +"Please wait...." => "Ве молам почекајте ...", +"Error while disabling app" => "Грешка при исклучувањето на апликацијата", +"Error while enabling app" => "Грешка при вклучувањето на апликацијата", +"Updating...." => "Надградувам ...", +"Error while updating app" => "Грешка додека ја надградувам апликацијата", "Error" => "Грешка", "Update" => "Ажурирај", +"Updated" => "Надграден", +"Select a profile picture" => "Одбери фотографија за профилот", "Saving..." => "Снимам...", +"deleted" => "избришан", "undo" => "врати", +"Unable to remove user" => "Не можам да го одстранам корисникот", "Groups" => "Групи", "Group Admin" => "Администратор на група", "Delete" => "Избриши", +"add group" => "додади група", +"A valid username must be provided" => "Мора да се обезбеди валидно корисничко име ", +"Error creating user" => "Грешка при креирање на корисникот", +"A valid password must be provided" => "Мора да се обезбеди валидна лозинка", "__language_name__" => "__language_name__", "Security Warning" => "Безбедносно предупредување", +"Setup Warning" => "Предупредување при подесување", +"Locale not working" => "Локалето не функционира", +"Sharing" => "Споделување", +"Enable Share API" => "Овозможи го API-то за споделување", +"Allow apps to use the Share API" => "Дозволете апликациите да го користат API-то за споделување", +"Allow links" => "Дозволи врски", +"Allow public uploads" => "Дозволи јавен аплоуд", +"Allow resharing" => "Овозможи повторно споделување", +"Allow users to share with anyone" => "Овозможи корисниците да споделуваат со секого", +"Allow users to only share with users in their groups" => "Овозможи корисниците да споделуваат со корисници од своите групи", +"Allow mail notification" => "Овозможи известување по електронска пошта", +"Allow user to send mail notification for shared files" => "Овозможи корисник да испраќа известување по електронска пошта за споделени датотеки", +"Security" => "Безбедност", +"Enforce HTTPS" => "Наметни HTTPS", "Log" => "Записник", "Log level" => "Ниво на логирање", "More" => "Повеќе", @@ -40,6 +72,7 @@ $TRANSLATIONS = array( "Online Documentation" => "Документација на интернет", "Forum" => "Форум", "Commercial Support" => "Комерцијална подршка", +"Get the apps to sync your files" => "Преземете апликации за синхронизирање на вашите датотеки", "You have used %s of the available %s" => "Имате искористено %s од достапните %s", "Password" => "Лозинка", "Your password was changed" => "Вашата лозинка беше променета.", @@ -51,12 +84,26 @@ $TRANSLATIONS = array( "Your email address" => "Вашата адреса за е-пошта", "Fill in an email address to enable password recovery" => "Пополни ја адресата за е-пошта за да може да ја обновуваш лозинката", "Profile picture" => "Фотографија за профил", +"Upload new" => "Префрли нова", +"Select new from Files" => "Одбери нова од датотеките", +"Remove image" => "Отстрани ја фотографијата", +"Either png or jpg. Ideally square but you will be able to crop it." => "Мора де биде png или jpg. Идеално квадрат, но ќе бидете во можност да ја исечете.", +"Abort" => "Прекини", +"Choose as profile image" => "Одбери фотографија за профилот", "Language" => "Јазик", "Help translate" => "Помогни во преводот", "WebDAV" => "WebDAV", "Encryption" => "Енкрипција", +"Log-in password" => "Лозинка за најавување", +"Decrypt all Files" => "Дешифрирај ги сите датотеки", +"Login Name" => "Име за најава", "Create" => "Создај", +"Default Storage" => "Предефинирано складиште ", +"Unlimited" => "Неограничено", "Other" => "Останато", -"Username" => "Корисничко име" +"Username" => "Корисничко име", +"Storage" => "Складиште", +"set new password" => "постави нова лозинка", +"Default" => "Предефиниран" ); $PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index ba46cd654e8a7967c8aef00a5ab2a8e6062beac8..cb3e7c670c52b021bab4a5089d29a0204d21497c 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Lasting av liste fra App Store feilet.", "Authentication error" => "Autentiseringsfeil", -"Your display name has been changed." => "Ditt visningsnavn er blitt endret.", -"Unable to change display name" => "Kunne ikke endre visningsnavn", "Group already exists" => "Gruppen finnes allerede", "Unable to add group" => "Kan ikke legge til gruppe", "Email saved" => "Epost lagret", @@ -83,7 +81,6 @@ $TRANSLATIONS = array( "Current password" => "Nåværende passord", "New password" => "Nytt passord", "Change password" => "Endre passord", -"Display Name" => "Visningsnavn", "Email" => "Epost", "Your email address" => "Din e-postadresse", "Fill in an email address to enable password recovery" => "Oppi epostadressen du vil tilbakestille passordet for", @@ -91,7 +88,6 @@ $TRANSLATIONS = array( "Language" => "Språk", "Help translate" => "Bidra til oversettelsen", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Bruk denne adressen for å få tilgang til filene dine via WebDAV", "Encryption" => "Kryptering", "Login Name" => "Logginn navn", "Create" => "Opprett", @@ -100,7 +96,6 @@ $TRANSLATIONS = array( "Other" => "Annet", "Username" => "Brukernavn", "Storage" => "Lager", -"change display name" => "endre visningsnavn", "set new password" => "sett nytt passord", "Default" => "Standard" ); diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 7b486768b06ffeb3a803398059563faf1bd7d3f0..9931063ac9a21a28465b3cd34e58011679f86aba 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Kan de lijst niet van de App store laden", "Authentication error" => "Authenticatie fout", -"Your display name has been changed." => "Uw weergavenaam is gewijzigd.", -"Unable to change display name" => "Kon de weergavenaam niet wijzigen", +"Your full name has been changed." => "Uw volledige naam is gewijzigd.", +"Unable to change full name" => "Kan de volledige naam niet wijzigen", "Group already exists" => "Groep bestaat al", "Unable to add group" => "Niet in staat om groep toe te voegen", "Email saved" => "E-mail bewaard", @@ -16,6 +16,12 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "Niet in staat om gebruiker toe te voegen aan groep %s", "Unable to remove user from group %s" => "Niet in staat om gebruiker te verwijderen uit groep %s", "Couldn't update app." => "Kon de app niet bijwerken.", +"Wrong password" => "Onjuist wachtwoord", +"No user supplied" => "Geen gebruiker opgegeven", +"Please provide an admin recovery password, otherwise all user data will be lost" => "Voer een beheerdersherstelwachtwoord in, anders zullen alle gebruikersgegevens verloren gaan", +"Wrong admin recovery password. Please check the password and try again." => "Onjuist beheerdersherstelwachtwoord. Controleer het wachtwoord en probeer het opnieuw.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "De Back-end ondersteunt geen wachtwoordwijzigingen, maar de cryptosleutel van de gebruiker is succesvol bijgewerkt.", +"Unable to change password" => "Kan wachtwoord niet wijzigen", "Update to {appversion}" => "Bijwerken naar {appversion}", "Disable" => "Uitschakelen", "Enable" => "Activeer", @@ -40,22 +46,33 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Er moet een geldige gebruikersnaam worden opgegeven", "Error creating user" => "Fout bij aanmaken gebruiker", "A valid password must be provided" => "Er moet een geldig wachtwoord worden opgegeven", +"Warning: Home directory for user \"{user}\" already exists" => "Waarschuwing: Home directory voor gebruiker \"{user}\" bestaat al", "__language_name__" => "Nederlands", +"Everything (fatal issues, errors, warnings, info, debug)" => "Alles (fatale problemen, fouten, waarschuwingen, info, debug)", +"Info, warnings, errors and fatal issues" => "Info, waarschuwingen, fouten en fatale problemen", +"Warnings, errors and fatal issues" => "Waarschuwingen, fouten en fatale problemen", +"Errors and fatal issues" => "Fouten en fatale problemen", +"Fatal issues only" => "Alleen fatale problemen", "Security Warning" => "Beveiligingswaarschuwing", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "U bent met %s verbonden over HTTP. We adviseren met klem uw server zo te configureren dat allen HTTPS kan worden gebruikt.", "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." => "Uw data folder en uw bestanden zijn waarschijnlijk vanaf het internet bereikbaar. Het .htaccess-bestand werkt niet. We raden ten zeerste aan aan om uw webserver zodanig te configureren, dat de datamap niet bereikbaar is vanaf het internet of om uw datamap te verplaatsen naar een locatie buiten de document root van de webserver.", "Setup Warning" => "Instellingswaarschuwing", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt.", "Please double check the installation guides." => "Conntroleer de installatie handleiding goed.", "Module 'fileinfo' missing" => "Module 'fileinfo' ontbreekt", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "De PHP module 'fileinfo' ontbreekt. We adviseren met klem om deze module te activeren om de beste resultaten te bereiken voor mime-type detectie.", +"Your PHP version is outdated" => "Uw PHP versie is verouderd", +"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." => "Uw PHP versie is verouderd. We adviseren met klem om bij te werken naar versie 5.3.8 of later, omdat oudere versies corrupt kunnen zijn. Het is mogelijk dat deze installatie niet goed werkt.", "Locale not working" => "Taalbestand werkt niet", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "De systeemtaal kan niet worden ingesteld op %s. Hierdoor kunnen er problemen optreden met bepaalde karakters in bestandsnamen. Het wordt sterk aangeraden om de vereiste pakketen op uw systeem te installeren, zodat %s ondersteund wordt.", +"System locale can not be set to a one which supports UTF-8." => "De systeemtaal kan niet worden ingesteld op een taal die UTF-8 ondersteunt.", +"This means that there might be problems with certain characters in file names." => "Dat betekent dat er problemen kunnen optreden met bepaalde tekens in bestandsnamen.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "We adviseren met klem om de noodzakelijke pakketten op uw systeem te installeren om een van de volgende talen te ondersteunen: %s.", "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", "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 once a minute over http." => "cron.php is geregistreerd bij een webcron service om cron.php eens per minuut aan te roepen via http.", -"Use systems cron service to call the cron.php file once a minute." => "Gebruik de systeem cron service om het bestand cron.php eens per minuut aan te roepen.", +"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.", "Sharing" => "Delen", "Enable Share API" => "Activeren Share API", "Allow apps to use the Share API" => "Apps toestaan de Share API te gebruiken", @@ -67,6 +84,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Toestaan dat gebruikers objecten die anderen met hun gedeeld hebben zelf ook weer delen met anderen", "Allow users to share with anyone" => "Toestaan dat gebruikers met iedereen delen", "Allow users to only share with users in their groups" => "Instellen dat gebruikers alleen met leden binnen hun groepen delen", +"Allow mail notification" => "Toestaan e-mailnotificaties", +"Allow user to send mail notification for shared files" => "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden", "Security" => "Beveiliging", "Enforce HTTPS" => "Afdwingen HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Dwingt de clients om een versleutelde verbinding te maken met %s", @@ -97,7 +116,7 @@ $TRANSLATIONS = array( "Current password" => "Huidig wachtwoord", "New password" => "Nieuw", "Change password" => "Wijzig wachtwoord", -"Display Name" => "Weergavenaam", +"Full Name" => "Volledige naam", "Email" => "E-mailadres", "Your email address" => "Uw e-mailadres", "Fill in an email address to enable password recovery" => "Vul een mailadres in om je wachtwoord te kunnen herstellen", @@ -106,14 +125,15 @@ $TRANSLATIONS = array( "Select new from Files" => "Selecteer een nieuwe vanuit bestanden", "Remove image" => "Verwijder afbeelding", "Either png or jpg. Ideally square but you will be able to crop it." => "Of png, of jpg. Bij voorkeur vierkant, maar u kunt bijsnijden.", +"Your avatar is provided by your original account." => "Uw avatar is verstrekt door uw originele account.", "Abort" => "Afbreken", "Choose as profile image" => "Kies als profielafbeelding", "Language" => "Taal", "Help translate" => "Help met vertalen", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Gebruik dit adres toegang tot uw bestanden via WebDAV", +"Use this address to access your Files via WebDAV" => "Gebruik deze link om uw bestanden via WebDAV te benaderen", "Encryption" => "Versleuteling", -"The encryption app is no longer enabled, decrypt all your file" => "De encryptie-appplicatie is niet meer aanwezig, decodeer al uw bestanden", +"The encryption app is no longer enabled, please decrypt all your files" => "De crypto app is niet langer geactiveerd, u moet alle bestanden decrypten.", "Log-in password" => "Inlog-wachtwoord", "Decrypt all Files" => "Decodeer alle bestanden", "Login Name" => "Inlognaam", @@ -121,11 +141,12 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "Beheer herstel wachtwoord", "Enter the recovery password in order to recover the users files during password change" => "Voer het herstel wachtwoord in om de gebruikersbestanden terug te halen bij wachtwoordwijziging", "Default Storage" => "Standaard Opslaglimiet", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Geef de opslagquotering op (bijv. \"512 MB\" of \"12 GB\")", "Unlimited" => "Ongelimiteerd", "Other" => "Anders", "Username" => "Gebruikersnaam", "Storage" => "Opslaglimiet", -"change display name" => "wijzig weergavenaam", +"change full name" => "wijzigen volledige naam", "set new password" => "Instellen nieuw wachtwoord", "Default" => "Standaard" ); diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 9eb31a887bd3c0a27e69b34565fd45e1b6c22122..5fd2f57b5a819a3afcb31f1d73568af833bcdd8a 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Klarer ikkje å lasta inn liste fra app-butikken", "Authentication error" => "Autentiseringsfeil", -"Your display name has been changed." => "Visingsnamnet ditt er endra.", -"Unable to change display name" => "Klarte ikkje endra visingsnamnet", "Group already exists" => "Gruppa finst allereie", "Unable to add group" => "Klarte ikkje leggja til gruppa", "Email saved" => "E-postadresse lagra", @@ -55,13 +53,10 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Modulen «fileinfo» manglar", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP-modulen «fileinfo» manglar. Me rår sterkt til å slå på denne modulen for å best mogleg oppdaga MIME-typar.", "Locale not working" => "Regionaldata fungerer ikkje", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Klarte ikkje endra regionaldata for systemet til %s. Dette vil seia at det kan verta problem med visse teikn i filnamn. Me rår deg sterkt til å installera dei kravde pakkene på systemet ditt så du får støtte for %s.", "Internet connection not working" => "Nettilkoplinga fungerer ikkje", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Denne tenaren har ikkje ei fungerande nettilkopling. Dette vil seia at visse funksjonar, som montering av ekstern lagring, meldingar om oppdateringar eller installering av tredjepartsprogram, ikkje vil fungera. Det kan òg henda at du ikkje får tilgang til filene dine utanfrå, eller ikkje får sendt varslingsepostar. Me rår deg til å skru på nettilkoplinga for denne tenaren viss du ønskjer desse funksjonane.", "Cron" => "Cron", "Execute one task with each page loaded" => "Utfør éi oppgåve for kvar sidelasting", -"cron.php is registered at a webcron service to call cron.php once a minute over http." => "Ei webcron-teneste er stilt inn til å kalla cron.php ein gong i minuttet over http.", -"Use systems cron service to call the cron.php file once a minute." => "Bruk cron-tenesta til systemet for å kalla cron.php-fila ein gong i minuttet.", "Sharing" => "Deling", "Enable Share API" => "Slå på API-et for deling", "Allow apps to use the Share API" => "La app-ar bruka API-et til deling", @@ -103,7 +98,6 @@ $TRANSLATIONS = array( "Current password" => "Passord", "New password" => "Nytt passord", "Change password" => "Endra passord", -"Display Name" => "Visingsnamn", "Email" => "E-post", "Your email address" => "Di epost-adresse", "Fill in an email address to enable password recovery" => "Fyll inn e-postadressa di for å gjera passordgjenoppretting mogleg", @@ -117,9 +111,7 @@ $TRANSLATIONS = array( "Language" => "Språk", "Help translate" => "Hjelp oss å omsetja", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Bruk denne adressa for å henta filene dine over WebDAV", "Encryption" => "Kryptering", -"The encryption app is no longer enabled, decrypt all your file" => "Krypteringsprogrammet er ikkje lenger slått på, dekrypter alle filene dine", "Log-in password" => "Innloggingspassord", "Decrypt all Files" => "Dekrypter alle filene", "Login Name" => "Innloggingsnamn", @@ -131,7 +123,6 @@ $TRANSLATIONS = array( "Other" => "Anna", "Username" => "Brukarnamn", "Storage" => "Lagring", -"change display name" => "endra visingsnamn", "set new password" => "lag nytt passord", "Default" => "Standard" ); diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 6cce72df4b6d64847ea3c17fdea04aea1cba4189..bd6d3dbf1cd349a8be1ff1cae3c2e2106ec0482f 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Nie można wczytać listy aplikacji", "Authentication error" => "Błąd uwierzytelniania", -"Your display name has been changed." => "Twoje wyświetlana nazwa została zmieniona.", -"Unable to change display name" => "Nie można zmienić wyświetlanej nazwy", +"Your full name has been changed." => "Twoja pełna nazwa została zmieniona.", +"Unable to change full name" => "Nie można zmienić pełnej nazwy", "Group already exists" => "Grupa już istnieje", "Unable to add group" => "Nie można dodać grupy", "Email saved" => "E-mail zapisany", @@ -17,6 +17,10 @@ $TRANSLATIONS = array( "Unable to remove user from group %s" => "Nie można usunąć użytkownika z grupy %s", "Couldn't update app." => "Nie można uaktualnić aplikacji.", "Wrong password" => "Złe hasło", +"No user supplied" => "Niedostarczony użytkownik", +"Please provide an admin recovery password, otherwise all user data will be lost" => "Podaj hasło odzyskiwania administratora, w przeciwnym razie wszystkie dane użytkownika zostaną utracone", +"Wrong admin recovery password. Please check the password and try again." => "Błędne hasło odzyskiwania. Sprawdź hasło i spróbuj ponownie.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "Zaplecze nie obsługuje zmiany hasła, ale klucz szyfrowania użytkownika został pomyślnie zaktualizowany.", "Unable to change password" => "Nie można zmienić hasła", "Update to {appversion}" => "Aktualizacja do {appversion}", "Disable" => "Wyłącz", @@ -42,7 +46,13 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Należy podać prawidłową nazwę użytkownika", "Error creating user" => "Błąd podczas tworzenia użytkownika", "A valid password must be provided" => "Należy podać prawidłowe hasło", +"Warning: Home directory for user \"{user}\" already exists" => "Ostrzeżenie: Katalog domowy dla użytkownika \"{user}\" już istnieje", "__language_name__" => "polski", +"Everything (fatal issues, errors, warnings, info, debug)" => "Wszystko (Informacje, ostrzeżenia, błędy i poważne problemy, debug)", +"Info, warnings, errors and fatal issues" => "Informacje, ostrzeżenia, błędy i poważne problemy", +"Warnings, errors and fatal issues" => "Ostrzeżenia, błędy i poważne problemy", +"Errors and fatal issues" => "Błędy i poważne problemy", +"Fatal issues only" => "Tylko poważne problemy", "Security Warning" => "Ostrzeżenie o zabezpieczeniach", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Twój katalog danych i pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess, który dostarcza ownCloud nie działa. Sugerujemy, aby skonfigurować serwer WWW w taki sposób, aby katalog danych nie był dostępny lub przenieść katalog danych poza główny katalog serwera WWW.", "Setup Warning" => "Ostrzeżenia konfiguracji", @@ -50,14 +60,16 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Proszę sprawdź ponownie przewodnik instalacji.", "Module 'fileinfo' missing" => "Brak modułu „fileinfo”", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Brak modułu PHP „fileinfo”. Zalecamy włączenie tego modułu, aby uzyskać najlepsze wyniki podczas wykrywania typów MIME.", +"Your PHP version is outdated" => "Twoja wersja PHP jest za stara", +"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." => "Twoja wersja PHP jest za stara. Rekomendujemy przynajmniej wersje 5.3.8. Jeśli masz starsza wersję ownCloud może nie działać poprawnie.", "Locale not working" => "Lokalizacja nie działa", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "System lokalny nie może włączyć ustawień regionalnych %s. Może to oznaczać, że wystąpiły problemy z niektórymi znakami w nazwach plików. Zalecamy instalację wymaganych pakietów na tym systemie w celu wsparcia %s.", +"System locale can not be set to a one which supports UTF-8." => "Ustawienia regionalne systemu nie można ustawić na jeden, który obsługuje UTF-8.", "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", "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 once a minute over http." => "cron.php jest zarejestrowany w serwisie webcron do uruchamiania cron.php raz na minutę przez http.", -"Use systems cron service to call the cron.php file once a minute." => "Użyj systemowego cron-a do uruchamiania cron.php raz na minutę.", +"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.", "Sharing" => "Udostępnianie", "Enable Share API" => "Włącz API udostępniania", "Allow apps to use the Share API" => "Zezwalaj aplikacjom na korzystanie z API udostępniania", @@ -69,6 +81,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Zezwalaj użytkownikom na ponowne współdzielenie zasobów już z nimi współdzielonych", "Allow users to share with anyone" => "Zezwalaj użytkownikom na współdzielenie z kimkolwiek", "Allow users to only share with users in their groups" => "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup", +"Allow mail notification" => "Pozwól na mailowe powiadomienia", +"Allow user to send mail notification for shared files" => "Pozwól użytkownikom wysyłać maile powiadamiające o udostępnionych plikach", "Security" => "Bezpieczeństwo", "Enforce HTTPS" => "Wymuś HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Wymusza na klientach na łączenie się %s za pośrednictwem połączenia szyfrowanego.", @@ -99,7 +113,7 @@ $TRANSLATIONS = array( "Current password" => "Bieżące hasło", "New password" => "Nowe hasło", "Change password" => "Zmień hasło", -"Display Name" => "Wyświetlana nazwa", +"Full Name" => "Pełna nazwa", "Email" => "Email", "Your email address" => "Twój adres e-mail", "Fill in an email address to enable password recovery" => "Podaj adres e-mail, aby uzyskać możliwość odzyskania hasła", @@ -107,14 +121,14 @@ $TRANSLATIONS = array( "Upload new" => "Wczytaj nowe", "Select new from Files" => "Wybierz nowe z plików", "Remove image" => "Usuń zdjęcie", +"Either png or jpg. Ideally square but you will be able to crop it." => "Png lub jpg. Idealnie kwadratowy, ale będzie można je przyciąć.", "Abort" => "Anuluj", "Choose as profile image" => "Wybierz zdjęcie profilu", "Language" => "Język", "Help translate" => "Pomóż w tłumaczeniu", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Użyj tego adresu do dostępu do twoich plików przez WebDAV", +"Use this address to access your Files via WebDAV" => "Użyj tego adresu do dostępu do twoich plików przez WebDAV", "Encryption" => "Szyfrowanie", -"The encryption app is no longer enabled, decrypt all your file" => "Aplikacja szyfrowanie nie jest włączona, odszyfruj wszystkie plik", "Log-in password" => "Hasło logowania", "Decrypt all Files" => "Odszyfruj wszystkie pliki", "Login Name" => "Login", @@ -122,11 +136,12 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "Odzyskiwanie hasła administratora", "Enter the recovery password in order to recover the users files during password change" => "Wpisz hasło odzyskiwania, aby odzyskać pliki użytkowników podczas zmiany hasła", "Default Storage" => "Magazyn domyślny", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Proszę ustawić ograniczenie zasobów (np. \"512 MB\" albo \"12 GB)", "Unlimited" => "Bez limitu", "Other" => "Inne", "Username" => "Nazwa użytkownika", "Storage" => "Magazyn", -"change display name" => "zmień wyświetlaną nazwę", +"change full name" => "Zmień pełna nazwę", "set new password" => "ustaw nowe hasło", "Default" => "Domyślny" ); diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index 6f3312fa78bc7f67fbe683339696c08d38bcd081..7577ea1d5f7783a78c54f0997d1642af703449ee 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Não foi possível carregar lista da App Store", "Authentication error" => "Erro de autenticação", -"Your display name has been changed." => "A exibição de seu nome foi alterada.", -"Unable to change display name" => "Impossível alterar nome de exibição", +"Your full name has been changed." => "Seu nome completo foi alterado.", +"Unable to change full name" => "Não é possível alterar o nome completo", "Group already exists" => "Grupo já existe", "Unable to add group" => "Não foi possível adicionar grupo", "Email saved" => "E-mail salvo", @@ -46,22 +46,33 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Forneça um nome de usuário válido", "Error creating user" => "Erro ao criar usuário", "A valid password must be provided" => "Forneça uma senha válida", +"Warning: Home directory for user \"{user}\" already exists" => "Aviso: O diretório home para o usuário \"{user}\" já existe", "__language_name__" => "Português (Brasil)", +"Everything (fatal issues, errors, warnings, info, debug)" => "Tudo (questões fatais, erros, avisos, informações, depuração)", +"Info, warnings, errors and fatal issues" => "Informações, avisos, erros e problemas fatais", +"Warnings, errors and fatal issues" => "Avisos, erros e problemas fatais", +"Errors and fatal issues" => "Erros e problemas fatais", +"Fatal issues only" => "Somente questões fatais", "Security Warning" => "Aviso de Segurança", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Você está acessando %s via HTTP. Sugerimos você configurar o servidor para exigir o uso de HTTPS em seu lugar.", "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." => "Seu diretório de dados e seus arquivos são, provavelmente, acessíveis a partir da internet. O arquivo htaccess. não está funcionando. Nós sugerimos fortemente que você configure o seu servidor web de uma forma que o diretório de dados não esteja mais acessível ou mova o diretório de dados para fora do raiz do servidor.", "Setup Warning" => "Aviso de Configuração", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Seu servidor web não está configurado corretamente para permitir sincronização de arquivos porque a interface WebDAV parece não estar funcionando.", "Please double check the installation guides." => "Por favor, verifique os guias de instalação.", "Module 'fileinfo' missing" => "Módulo 'fileinfo' faltando", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "O módulo PHP 'fileinfo' está faltando. Recomendamos que ative este módulo para obter uma melhor detecção do tipo de mídia (mime-type).", +"Your PHP version is outdated" => "Sua versão de PHP está desatualizada", +"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." => "A sua versão do PHP está desatualizada. Recomendamos a atualização para 5.3.8 ou mais recente, pois as versões mais antigas são conhecidas por serem quebradas. É possível que esta instalação não esteja funcionando corretamente.", "Locale not working" => "Localização não funcionando", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "A localidade do sistema não pode ser definida para %s. Isso significa que pode haver problemas com certos caracteres em nomes de arquivos. Nós sugerimos instalar os pacotes necessários no seu sistema para suportar %s.", +"System locale can not be set to a one which supports UTF-8." => "Localidade do sistema não pode ser definido como um que suporta UTF-8.", +"This means that there might be problems with certain characters in file names." => "Isso significa que pode haver problemas com certos caracteres nos nomes de arquivo.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Nós sugerimos para instalar os pacotes necessários no seu sistema para suportar uma das seguintes localidades: %s.", "Internet connection not working" => "Sem conexão com a internet", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor não tem conexão com a internet. Isso significa que algumas das características como a montagem de armazenamento externo, notificações sobre atualizações ou instalação de aplicativos de 3ºs terceiros não funcionam. Acessar arquivos remotamente e envio de e-mails de notificação também não podem funcionar. Sugerimos permitir conexão com a internet para esse servidor, se você deseja ter todas as funcionalidades.", "Cron" => "Cron", "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 once a minute over http." => "cron.php está registrado em um serviço webcron chamar cron.php uma vez por minuto usando http.", -"Use systems cron service to call the cron.php file once a minute." => "Utilizar sistema de serviços cron para chamar o arquivo cron.php uma vez por minuto.", +"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.", "Sharing" => "Compartilhamento", "Enable Share API" => "Habilitar API de Compartilhamento", "Allow apps to use the Share API" => "Permitir que aplicativos usem a API de Compartilhamento", @@ -73,6 +84,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Permitir que usuários compartilhem novamente itens compartilhados com eles", "Allow users to share with anyone" => "Permitir que usuários compartilhem com qualquer um", "Allow users to only share with users in their groups" => "Permitir que usuários compartilhem somente com usuários em seus grupos", +"Allow mail notification" => "Permitir notificação por email", +"Allow user to send mail notification for shared files" => "Permitir usuários enviar notificação por email de arquivos compartilhados", "Security" => "Segurança", "Enforce HTTPS" => "Forçar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Obrigar os clientes que se conectem a %s através de uma conexão criptografada.", @@ -103,7 +116,7 @@ $TRANSLATIONS = array( "Current password" => "Senha atual", "New password" => "Nova senha", "Change password" => "Alterar senha", -"Display Name" => "Nome de Exibição", +"Full Name" => "Nome Completo", "Email" => "E-mail", "Your email address" => "Seu endereço de e-mail", "Fill in an email address to enable password recovery" => "Preencha um endereço de e-mail para habilitar a recuperação de senha", @@ -112,14 +125,15 @@ $TRANSLATIONS = array( "Select new from Files" => "Selecinar uma nova dos Arquivos", "Remove image" => "Remover imagem", "Either png or jpg. Ideally square but you will be able to crop it." => "Ou png ou jpg. O ideal é quadrado, mas você vai ser capaz de cortá-la.", +"Your avatar is provided by your original account." => "Seu avatar é fornecido por sua conta original.", "Abort" => "Abortar", "Choose as profile image" => "Escolha como imagem para o perfil", "Language" => "Idioma", "Help translate" => "Ajude a traduzir", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Use esse endereço para acessar seus arquivos via WebDAV", +"Use this address to access your Files via WebDAV" => "Use este endereço para ter acesso a seus Arquivos via WebDAV", "Encryption" => "Criptografia", -"The encryption app is no longer enabled, decrypt all your file" => "O aplicativo de encriptação não está mais ativo, decripti todos os seus arquivos", +"The encryption app is no longer enabled, please decrypt all your files" => "O aplicativo de criptografia não está habilitado, por favor descriptar todos os seus arquivos", "Log-in password" => "Senha de login", "Decrypt all Files" => "Decripti todos os Arquivos", "Login Name" => "Nome de Login", @@ -127,11 +141,12 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "Recuperação da Senha do Administrador", "Enter the recovery password in order to recover the users files during password change" => "Digite a senha de recuperação para recuperar os arquivos dos usuários durante a mudança de senha.", "Default Storage" => "Armazenamento Padrão", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Por favor insira cota de armazenamento (ex: \"512\" ou \"12 GB\")", "Unlimited" => "Ilimitado", "Other" => "Outro", "Username" => "Nome de Usuário", "Storage" => "Armazenamento", -"change display name" => "alterar nome de exibição", +"change full name" => "alterar nome completo", "set new password" => "definir nova senha", "Default" => "Padrão" ); diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index b664d2be3db7ca554bb2b2814729e826e9404574..89bed085972c02bdbeb4226cba5fd59fcf594046 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Incapaz de carregar a lista da App Store", "Authentication error" => "Erro na autenticação", -"Your display name has been changed." => "O seu nome foi alterado", -"Unable to change display name" => "Não foi possível alterar o nome", +"Your full name has been changed." => "O seu nome completo foi alterado.", +"Unable to change full name" => "Não foi possível alterar o seu nome completo", "Group already exists" => "O grupo já existe", "Unable to add group" => "Impossível acrescentar o grupo", "Email saved" => "Email guardado", @@ -16,6 +16,12 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "Impossível acrescentar utilizador ao grupo %s", "Unable to remove user from group %s" => "Impossível apagar utilizador do grupo %s", "Couldn't update app." => "Não foi possível actualizar a aplicação.", +"Wrong password" => "Password errada", +"No user supplied" => "Nenhum utilizador especificado.", +"Please provide an admin recovery password, otherwise all user data will be lost" => "Por favor forneça uma palavra chave de recuperação de administrador, caso contrário todos os dados de utilizador serão perdidos", +"Wrong admin recovery password. Please check the password and try again." => "Palavra chave de recuperação de administrador errada. Por favor verifique a palavra chave e tente de novo.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "Não foi possível alterar a sua palavra-passe, mas a chave de encriptação foi atualizada.", +"Unable to change password" => "Não foi possível alterar a sua password", "Update to {appversion}" => "Actualizar para a versão {appversion}", "Disable" => "Desactivar", "Enable" => "Activar", @@ -27,6 +33,7 @@ $TRANSLATIONS = array( "Error" => "Erro", "Update" => "Actualizar", "Updated" => "Actualizado", +"Select a profile picture" => "Seleccione uma fotografia de perfil", "Decrypting files... Please wait, this can take some time." => "A desencriptar os ficheiros... Por favor aguarde, esta operação pode demorar algum tempo.", "Saving..." => "A guardar...", "deleted" => "apagado", @@ -39,22 +46,33 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Um nome de utilizador válido deve ser fornecido", "Error creating user" => "Erro a criar utilizador", "A valid password must be provided" => "Uma password válida deve ser fornecida", +"Warning: Home directory for user \"{user}\" already exists" => "Atenção: a pasta pessoal do utilizador \"{user}\" já existe", "__language_name__" => "__language_name__", +"Everything (fatal issues, errors, warnings, info, debug)" => "Tudo (problemas fatais, erros, avisos, informação, depuração)", +"Info, warnings, errors and fatal issues" => "Informação, avisos, erros e problemas fatais", +"Warnings, errors and fatal issues" => "Avisos, erros e problemas fatais", +"Errors and fatal issues" => "Erros e problemas fatais", +"Fatal issues only" => "Apenas problemas fatais", "Security Warning" => "Aviso de Segurança", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Está a aceder %s via HTTP. Recomendamos vivamente que configure o servidor para forçar o uso de 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." => "A sua pasta com os dados e os seus ficheiros estão provavelmente acessíveis a partir das internet. O seu ficheiro .htaccess não está a funcionar corretamente. Sugerimos veementemente que configure o seu servidor web de maneira a que a pasta com os dados deixe de ficar acessível, ou mova a pasta com os dados para fora da raiz de documentos do servidor web.", "Setup Warning" => "Aviso de setup", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "O seu servidor web não está configurado correctamente para autorizar sincronização de ficheiros, pois o interface WebDAV parece estar com problemas.", "Please double check the installation guides." => "Por favor verifique oGuia de instalação.", "Module 'fileinfo' missing" => "Falta o módulo 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "O Módulo PHP 'fileinfo' não se encontra instalado/activado. É fortemente recomendado que active este módulo para obter os melhores resultado com a detecção dos tipos de mime.", +"Your PHP version is outdated" => "A sua versão do PHP está ultrapassada", +"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." => "A sua versão do PHP está ultrapassada. Recomendamos que actualize para a versão 5.3.8 ou mais recente, devido às versões anteriores conterem problemas. É também possível que esta instalação não esteja a funcionar correctamente.", "Locale not working" => "Internacionalização não está a funcionar", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Este servidor de ownCloud não consegue definir a codificação de caracteres para %s. Isto significa que pode haver problemas com alguns caracteres nos nomes dos ficheiros. É fortemente recomendado que instale o pacote recomendado para ser possível ver caracteres codificados em %s.", +"System locale can not be set to a one which supports UTF-8." => "Não é possível pôr as definições de sistema compatíveis com UTF-8.", +"This means that there might be problems with certain characters in file names." => "Isto significa que podem haver problemas com alguns caracteres nos nomes dos ficheiros.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Recomendamos fortemente que instale no seu sistema todos os pacotes necessários para suportar os seguintes locales: %s.", "Internet connection not working" => "A ligação à internet não está a funcionar", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor ownCloud não tem uma ligação de internet a funcionar. Isto significa que algumas funcionalidades como o acesso a locais externos (dropbox, gdrive, etc), notificações sobre actualizções, ou a instalação de aplicações não irá funcionar. Sugerimos que active uma ligação à internet se pretender obter todas as funcionalidades do ownCloud.", "Cron" => "Cron", "Execute one task with each page loaded" => "Executar uma tarefa com cada página carregada", -"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php está registado num serviço webcron para chamar a página cron.php por http uma vez por minuto.", -"Use systems cron service to call the cron.php file once a minute." => "Use o serviço cron do sistema para chamar o ficheiro cron.php uma vez por minuto.", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php está registado num serviço webcron para chamar a página cron.php por http a cada 15 minutos.", +"Use systems cron service to call the cron.php file every 15 minutes." => "Use o serviço cron do sistema para chamar o ficheiro cron.php a cada 15 minutos.", "Sharing" => "Partilha", "Enable Share API" => "Activar a API de partilha", "Allow apps to use the Share API" => "Permitir que os utilizadores usem a API de partilha", @@ -66,6 +84,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Permitir que os utilizadores partilhem itens partilhados com eles", "Allow users to share with anyone" => "Permitir que os utilizadores partilhem com todos", "Allow users to only share with users in their groups" => "Permitir que os utilizadores partilhem somente com utilizadores do seu grupo", +"Allow mail notification" => "Permitir notificação por email", +"Allow user to send mail notification for shared files" => "Permitir que o utilizador envie notificações por correio electrónico para ficheiros partilhados", "Security" => "Segurança", "Enforce HTTPS" => "Forçar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forçar os clientes a ligar a %s através de uma ligação encriptada", @@ -96,18 +116,24 @@ $TRANSLATIONS = array( "Current password" => "Palavra-chave actual", "New password" => "Nova palavra-chave", "Change password" => "Alterar palavra-chave", -"Display Name" => "Nome público", +"Full Name" => "Nome completo", "Email" => "Email", "Your email address" => "O seu endereço de email", "Fill in an email address to enable password recovery" => "Preencha com o seu endereço de email para ativar a recuperação da palavra-chave", "Profile picture" => "Foto do perfil", +"Upload new" => "Carregar novo", +"Select new from Files" => "Seleccionar novo a partir dos ficheiros", +"Remove image" => "Remover imagem", +"Either png or jpg. Ideally square but you will be able to crop it." => "Apenas png ou jpg. Idealmente quadrada, mas poderá corta-la depois.", +"Your avatar is provided by your original account." => "O seu avatar é fornecido pela sua conta original.", "Abort" => "Abortar", +"Choose as profile image" => "Escolha uma fotografia de perfil", "Language" => "Idioma", "Help translate" => "Ajude a traduzir", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Use este endereço para aceder aos seus ficheiros via WebDav", +"Use this address to access your Files via WebDAV" => "Utilize esta ligação para aceder aos seus ficheiros via WebDAV", "Encryption" => "Encriptação", -"The encryption app is no longer enabled, decrypt all your file" => "A aplicação de encriptação não se encontra mais disponível, desencripte o seu ficheiro", +"The encryption app is no longer enabled, please decrypt all your files" => "A aplicação de encriptação já não está ativa, por favor desincripte todos os seus ficheiros", "Log-in password" => "Password de entrada", "Decrypt all Files" => "Desencriptar todos os ficheiros", "Login Name" => "Nome de utilizador", @@ -115,11 +141,12 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "Recuperar password de administrador", "Enter the recovery password in order to recover the users files during password change" => "Digite a senha de recuperação, a fim de recuperar os arquivos de usuários durante a mudança de senha", "Default Storage" => "Armazenamento Padrão", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Insira a quota de armazenamento (ex: \"512 MB\" ou \"12 GB\")", "Unlimited" => "Ilimitado", "Other" => "Outro", "Username" => "Nome de utilizador", "Storage" => "Armazenamento", -"change display name" => "modificar nome exibido", +"change full name" => "alterar nome completo", "set new password" => "definir nova palavra-passe", "Default" => "Padrão" ); diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index c3483f83deb1f2372273c1a53d0180206df26e65..1433185430599e8a2b089e2c0beff085d70ffa35 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Imposibil de actualizat lista din App Store.", "Authentication error" => "Eroare la autentificare", -"Your display name has been changed." => "Numele afişat a fost schimbat.", -"Unable to change display name" => "Imposibil de schimbat numele afişat.", "Group already exists" => "Grupul există deja", "Unable to add group" => "Nu s-a putut adăuga grupul", "Email saved" => "E-mail salvat", @@ -100,7 +98,6 @@ $TRANSLATIONS = array( "Other" => "Altele", "Username" => "Nume utilizator", "Storage" => "Stocare", -"change display name" => "schimbă numele afișat", "set new password" => "setează parolă nouă", "Default" => "Implicită" ); diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 1bce6332c76c9620fe28cee489a85e3e3c9713ed..8a9ae156f1a9d7e1d1565989f211ffc0d8aee3e2 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Не удалось загрузить список из App Store", "Authentication error" => "Ошибка аутентификации", -"Your display name has been changed." => "Ваше отображаемое имя было изменено.", -"Unable to change display name" => "Невозможно изменить отображаемое имя", +"Your full name has been changed." => "Ваше полное имя было изменено.", +"Unable to change full name" => "Невозможно изменить полное имя", "Group already exists" => "Группа уже существует", "Unable to add group" => "Невозможно добавить группу", "Email saved" => "Email сохранен", @@ -40,28 +40,39 @@ $TRANSLATIONS = array( "undo" => "отмена", "Unable to remove user" => "Невозможно удалить пользователя", "Groups" => "Группы", -"Group Admin" => "Группа Администраторы", +"Group Admin" => "Администратор группы", "Delete" => "Удалить", "add group" => "добавить группу", "A valid username must be provided" => "Укажите правильное имя пользователя", "Error creating user" => "Ошибка создания пользователя", "A valid password must be provided" => "Укажите валидный пароль", +"Warning: Home directory for user \"{user}\" already exists" => "Предупреждение: домашняя папка пользователя \"{user}\" уже существует", "__language_name__" => "Русский ", +"Everything (fatal issues, errors, warnings, info, debug)" => "Все (критические проблемы, ошибки, предупреждения, информационные, отладочные)", +"Info, warnings, errors and fatal issues" => "Информационные, предупреждения, ошибки и критические проблемы", +"Warnings, errors and fatal issues" => "Предупреждения, ошибки и критические проблемы", +"Errors and fatal issues" => "Ошибки и критические проблемы", +"Fatal issues only" => "Только критические проблемы", "Security Warning" => "Предупреждение безопасности", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Вы обращаетесь к %s используя HTTP. Мы настоятельно рекомендуем вам настроить сервер на использование 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." => "Похоже, что папка с Вашими данными и Ваши файлы доступны из интернета. Файл .htaccess не работает. Мы настойчиво предлагаем Вам сконфигурировать вебсервер таким образом, чтобы папка с Вашими данными более не была доступна или переместите папку с данными куда-нибудь в другое место вне основной папки документов вебсервера.", "Setup Warning" => "Предупреждение установки", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Веб-сервер до сих пор не настроен для возможности синхронизации файлов. Похоже что проблема в неисправности интерфейса WebDAV.", "Please double check the installation guides." => "Пожалуйста, дважды просмотрите инструкции по установке.", "Module 'fileinfo' missing" => "Модуль 'fileinfo' отсутствует", -"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP модуль 'fileinfo' отсутствует. Мы настоятельно рекомендуем включить этот модуль для улучшения определения типов (mime-type) файлов.", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP-модуль 'fileinfo' отсутствует. Мы настоятельно рекомендуем включить этот модуль для улучшения определения типов (mime-type) файлов.", +"Your PHP version is outdated" => "Ваша версия PHP устарела", +"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." => "Ваша версия PHP устарела. Мы настоятельно рекомендуем обновиться до 5.3.8 или новее, так как старые версии работают не корректно. Вполне возможно, что эта установка не работает должным образом.", "Locale not working" => "Локализация не работает", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Системный язык не может быть установлен в %s. Это значит, что могут возникнуть проблемы с некоторыми символами в именах файлов. Мы настойчиво предлагаем установить требуемые пакеты в Вашей системе для поддержки %s.", +"System locale can not be set to a one which supports UTF-8." => "Невозможно установить системную локаль, поддерживающую UTF-8", +"This means that there might be problems with certain characters in file names." => "Это значит, что могут быть проблемы с некоторыми символами в именах файлов.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Мы настоятельно рекомендуем установить требуемые пакеты в систему, для поддержки одной из следующих локалей: %s.", "Internet connection not working" => "Интернет-соединение не работает", "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" => "Планировщик задач по расписанию", "Execute one task with each page loaded" => "Выполнять одно задание с каждой загруженной страницей", -"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php зарегистрирован в сервисе webcron, чтобы cron.php вызывался раз в минуту используя http.", -"Use systems cron service to call the cron.php file once a minute." => "Использовать системный сервис cron для вызова cron.php раз в минуту.", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php зарегестрирован в webcron и будет вызываться каждые 15 минут по http.", +"Use systems cron service to call the cron.php file every 15 minutes." => "Использовать системный cron для вызова cron.php каждые 15 минут.", "Sharing" => "Общий доступ", "Enable Share API" => "Включить API общего доступа", "Allow apps to use the Share API" => "Позволить приложениям использовать API общего доступа", @@ -73,12 +84,14 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Позволить пользователям открывать общий доступ к эллементам уже открытым в общий доступ", "Allow users to share with anyone" => "Разрешить пользователя делать общий доступ любому", "Allow users to only share with users in their groups" => "Разрешить пользователям делать общий доступ только для пользователей их групп", +"Allow mail notification" => "Разрешить уведомление по почте", +"Allow user to send mail notification for shared files" => "Разрешить пользователю оповещать почтой о расшаренных файлах", "Security" => "Безопасность", "Enforce HTTPS" => "Принудить к HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Принудить клиентов подключаться к %s через шифрованное соединение.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Пожалуйста, подключитесь к %s используя HTTPS чтобы включить или отключить принудительное SSL.", -"Log" => "Лог", -"Log level" => "Уровень лога", +"Log" => "Журнал", +"Log level" => "Уровень детализации журнала", "More" => "Больше", "Less" => "Меньше", "Version" => "Версия", @@ -103,35 +116,37 @@ $TRANSLATIONS = array( "Current password" => "Текущий пароль", "New password" => "Новый пароль", "Change password" => "Сменить пароль", -"Display Name" => "Отображаемое имя", +"Full Name" => "Полное имя", "Email" => "E-mail", "Your email address" => "Ваш адрес электронной почты", -"Fill in an email address to enable password recovery" => "Введите адрес электронной почты чтобы появилась возможность восстановления пароля", +"Fill in an email address to enable password recovery" => "Введите адрес электронной почты, чтобы появилась возможность восстановления пароля", "Profile picture" => "Фото профиля", -"Upload new" => "Закачать новую", +"Upload new" => "Загрузить новую", "Select new from Files" => "Выберите новый из файлов", "Remove image" => "Удалить изображение", "Either png or jpg. Ideally square but you will be able to crop it." => "Либо png, либо jpg. Изображение должно быть квадратным, но вы сможете обрезать его позже.", +"Your avatar is provided by your original account." => "Будет использован аватар вашей оригинальной учетной записи.", "Abort" => "Отмена", "Choose as profile image" => "Выберите изображение профиля", "Language" => "Язык", "Help translate" => "Помочь с переводом", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Используйте этот адрес чтобы получить доступ к вашим файлам через WebDav - ", +"Use this address to access your Files via WebDAV" => "Используйте этот адресс для доступа к вашим файлам через WebDAV", "Encryption" => "Шифрование", -"The encryption app is no longer enabled, decrypt all your file" => "Приложение шифрования не активно, отмените шифрование всех ваших файлов.", +"The encryption app is no longer enabled, please decrypt all your files" => "Приложение для шифрования выключено, пожалуйста, расшифруйте ваши файлы", "Log-in password" => "Пароль входа", "Decrypt all Files" => "Снять шифрование со всех файлов", "Login Name" => "Имя пользователя", "Create" => "Создать", -"Admin Recovery Password" => "Восстановление Пароля Администратора", +"Admin Recovery Password" => "Восстановление пароля администратора", "Enter the recovery password in order to recover the users files during password change" => "Введите пароль для того, чтобы восстановить файлы пользователей при смене пароля", -"Default Storage" => "Хранилище по-умолчанию", +"Default Storage" => "Хранилище по умолчанию", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Пожалуйста, введите квоту на хранилище (например: \"512 MB\" или \"12 GB\")", "Unlimited" => "Неограниченно", "Other" => "Другое", "Username" => "Имя пользователя", "Storage" => "Хранилище", -"change display name" => "изменить отображаемое имя", +"change full name" => "изменить полное имя", "set new password" => "установить новый пароль", "Default" => "По умолчанию" ); diff --git a/settings/l10n/sk.php b/settings/l10n/sk.php new file mode 100644 index 0000000000000000000000000000000000000000..6bde1c438e4fbbed88fb2e55d2149e346e670954 --- /dev/null +++ b/settings/l10n/sk.php @@ -0,0 +1,6 @@ + "Odstrániť", +"Other" => "Ostatné" +); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index cd44e5f94c52f24d6afb3aec412ed9230acf6bc0..fc3fe540751c581714541a5f043d7e9623aae609 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Nie je možné nahrať zoznam z App Store", "Authentication error" => "Chyba autentifikácie", -"Your display name has been changed." => "Vaše zobrazované meno bolo zmenené.", -"Unable to change display name" => "Nemožno zmeniť zobrazované meno", +"Your full name has been changed." => "Vaše meno a priezvisko bolo zmenené.", +"Unable to change full name" => "Nemožno zmeniť meno a priezvisko", "Group already exists" => "Skupina už existuje", "Unable to add group" => "Nie je možné pridať skupinu", "Email saved" => "Email uložený", @@ -16,6 +16,12 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "Nie je možné pridať používateľa do skupiny %s", "Unable to remove user from group %s" => "Nie je možné odstrániť používateľa zo skupiny %s", "Couldn't update app." => "Nemožno aktualizovať aplikáciu.", +"Wrong password" => "Nesprávne heslo", +"No user supplied" => "Nebol uvedený používateľ", +"Please provide an admin recovery password, otherwise all user data will be lost" => "Zadajte administrátorské heslo pre obnovu, inak budú všetky dáta stratené", +"Wrong admin recovery password. Please check the password and try again." => "Chybné administrátorské heslo pre obnovu. Skontrolujte správnosť hesla a skúste to znovu.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "Úložisko nepodporuje zmenu hesla, ale šifrovací kľúč používateľov bol úspešne zmenený.", +"Unable to change password" => "Zmena hesla sa nepodarila", "Update to {appversion}" => "Aktualizovať na {appversion}", "Disable" => "Zakázať", "Enable" => "Zapnúť", @@ -27,6 +33,7 @@ $TRANSLATIONS = array( "Error" => "Chyba", "Update" => "Aktualizovať", "Updated" => "Aktualizované", +"Select a profile picture" => "Vybrať avatara", "Decrypting files... Please wait, this can take some time." => "Dešifrujem súbory ... Počkajte prosím, môže to chvíľu trvať.", "Saving..." => "Ukladám...", "deleted" => "zmazané", @@ -39,22 +46,33 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Musíte zadať platné používateľské meno", "Error creating user" => "Chyba pri vytváraní používateľa", "A valid password must be provided" => "Musíte zadať platné heslo", +"Warning: Home directory for user \"{user}\" already exists" => "Upozornenie: Domovský priečinok používateľa \"{user}\" už existuje", "__language_name__" => "Slovensky", -"Security Warning" => "Bezpečnostné varovanie", +"Everything (fatal issues, errors, warnings, info, debug)" => "Všetko (fatálne problémy, chyby, upozornenia, info, debug)", +"Info, warnings, errors and fatal issues" => "Info, upozornenia, chyby a fatálne problémy", +"Warnings, errors and fatal issues" => "Upozornenia, chyby a fatálne problémy", +"Errors and fatal issues" => "Chyby a fatálne problémy", +"Fatal issues only" => "Len fatálne problémy", +"Security Warning" => "Bezpečnostné upozornenie", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Do %s máte prístup cez HTTP. Dôrazne odporúčame nakonfigurovať server tak, aby namiesto toho vyžadoval použitie 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." => "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.", "Setup Warning" => "Nastavenia oznámení", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Váš webový server nie je správne nastavený na synchronizáciu, pretože rozhranie WebDAV je poškodené.", "Please double check the installation guides." => "Skontrolujte prosím znovu inštalačnú príručku.", "Module 'fileinfo' missing" => "Chýba modul 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Chýba modul 'fileinfo'. Dôrazne doporučujeme ho povoliť pre dosiahnutie najlepších výsledkov zisťovania mime-typu.", +"Your PHP version is outdated" => "Vaša PHP verzia je zastaraná", +"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." => "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 instalácia nebude fungovat správne.", "Locale not working" => "Lokalizácia nefunguje", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Systémové nastavenie lokalizácie nemohlo byť nastavené na %s. To znamená, že sa môžu vyskytnúť problémy s niektorými znakmi v názvoch súborov. Odporúčame nainštalovať do vášho systému balíčky potrebné pre podporu %s.", +"System locale can not be set to a one which supports UTF-8." => "Nie je možné nastaviť znakovú sadu, ktorá podporuje UTF-8.", +"This means that there might be problems with certain characters in file names." => "To znamená, že sa môžu vyskytnúť problémy s niektorými znakmi v názvoch súborov.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "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.", "Internet connection not working" => "Pripojenie na internet nefunguje", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Server nemá funkčné pripojenie k internetu. Niektoré moduly ako napr. externé úložisko, oznámenie o dostupných aktualizáciách alebo inštalácia aplikácií tretích strán nebudú fungovať. Prístup k súborom z iných miest a odosielanie oznamovacích emailov tiež nemusí fungovať. Ak chcete využívať všetky vlastnosti ownCloudu, odporúčame povoliť pripojenie k internetu tomuto serveru.", "Cron" => "Cron", "Execute one task with each page loaded" => "Vykonať jednu úlohu s každým načítaní stránky", -"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php je registrovaný v službe webcron na zavolanie stránky cron.php raz za minútu cez HTTP.", -"Use systems cron service to call the cron.php file once a minute." => "Použiť systémovú službu cron na spustenie súboru cron.php raz za minútu.", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php je zaregistrovaná v službe WebCron a zavolá cron.php každých 15 minút cez http.", +"Use systems cron service to call the cron.php file every 15 minutes." => "Použite systémovú službu cron, ktorá zavolá súbor cron.php každých 15 minút.", "Sharing" => "Zdieľanie", "Enable Share API" => "Povoliť API zdieľania", "Allow apps to use the Share API" => "Povoliť aplikáciám používať API na zdieľanie", @@ -66,6 +84,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Povoliť používateľom ďalej zdieľať zdieľané položky", "Allow users to share with anyone" => "Povoliť používateľom zdieľať s kýmkoľvek", "Allow users to only share with users in their groups" => "Povoliť používateľom zdieľať len s používateľmi v ich skupinách", +"Allow mail notification" => "Povoliť upozornenia emailom", +"Allow user to send mail notification for shared files" => "Povoliť používateľom upozornenia emailom pre svoje zdieľané súbory", "Security" => "Zabezpečenie", "Enforce HTTPS" => "Vynútiť HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vynúti pripájanie klientov k %s šifrovaným pripojením.", @@ -96,17 +116,24 @@ $TRANSLATIONS = array( "Current password" => "Aktuálne heslo", "New password" => "Nové heslo", "Change password" => "Zmeniť heslo", -"Display Name" => "Zobrazované meno", +"Full Name" => "Meno a priezvisko", "Email" => "Email", "Your email address" => "Vaša emailová adresa", "Fill in an email address to enable password recovery" => "Vyplňte emailovú adresu pre aktivovanie obnovy hesla", -"Profile picture" => "Profilová fotka", +"Profile picture" => "Avatar", +"Upload new" => "Nahrať nový", +"Select new from Files" => "Vyberte nový zo súborov", +"Remove image" => "Zmazať obrázok", +"Either png or jpg. Ideally square but you will be able to crop it." => "Buď png alebo jpg. V ideálnom prípade štvorec, ale budete mať možnosť ho orezať.", +"Your avatar is provided by your original account." => "Váš avatar je použiý z pôvodného účtu.", +"Abort" => "Prerušiť", +"Choose as profile image" => "Vybrať ako avatara", "Language" => "Jazyk", "Help translate" => "Pomôcť s prekladom", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Použite túto adresu pre prístup k súborom cez WebDAV", +"Use this address to access your Files via WebDAV" => "Použite túto linku pre prístup k vašim súborom cez WebDAV", "Encryption" => "Šifrovanie", -"The encryption app is no longer enabled, decrypt all your file" => "Šifrovacia aplikácia nie je povolená, dešifrujte všetky vaše súbory", +"The encryption app is no longer enabled, please decrypt all your files" => "Šifrovacia aplikácia už nie je spustená, dešifrujte všetky svoje súbory.", "Log-in password" => "Prihlasovacie heslo", "Decrypt all Files" => "Dešifrovať všetky súbory", "Login Name" => "Prihlasovacie meno", @@ -114,11 +141,12 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "Obnovenie hesla administrátora", "Enter the recovery password in order to recover the users files during password change" => "Zadajte heslo pre obnovenie súborov používateľa pri zmene hesla", "Default Storage" => "Predvolené úložisko", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Prosím zadajte kvótu úložného priestoru (napr.: \"512 MB​​\" alebo \"12 GB\")", "Unlimited" => "Nelimitované", "Other" => "Iné", "Username" => "Meno používateľa", "Storage" => "Úložisko", -"change display name" => "zmeniť zobrazované meno", +"change full name" => "zmeniť meno a priezvisko", "set new password" => "nastaviť nové heslo", "Default" => "Predvolené" ); diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 0fbf32480285eba99228f87a865047dc7499a17f..0bd4ef50fe6d7d8554b19947e4c3ffb5c12acf36 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Ni mogoče naložiti seznama iz programskega središča", "Authentication error" => "Napaka med overjanjem", -"Your display name has been changed." => "Prikazano ime je bilo spremenjeno.", -"Unable to change display name" => "Prikazanega imena ni mogoče spremeniti.", +"Your full name has been changed." => "Vaše polno ime je spremenjeno.", +"Unable to change full name" => "Ni mogoče spremeniti polnega imena", "Group already exists" => "Skupina že obstaja", "Unable to add group" => "Skupine ni mogoče dodati", "Email saved" => "Elektronski naslov je shranjen", @@ -16,15 +16,25 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "Uporabnika ni mogoče dodati k skupini %s", "Unable to remove user from group %s" => "Uporabnika ni mogoče odstraniti iz skupine %s", "Couldn't update app." => "Programa ni mogoče posodobiti.", +"Wrong password" => "Napačno geslo", +"No user supplied" => "Ni navedenega uporabnika", +"Please provide an admin recovery password, otherwise all user data will be lost" => "Podati je treba skrbniško obnovitveno geslo, sicer bodo vsi uporabniški podatki izgubljeni.", +"Wrong admin recovery password. Please check the password and try again." => "Napačno navedeno skrbniško obnovitveno geslo. Preverite geslo in poskusite znova.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "Hrbtišče programa ne podpira spreminjanja gesla, je pa uspešno posodobljeno uporabniško šifriranje.", +"Unable to change password" => "Ni mogoče spremeniti gesla", "Update to {appversion}" => "Posodobi na {appversion}", "Disable" => "Onemogoči", "Enable" => "Omogoči", "Please wait...." => "Počakajte ...", +"Error while disabling app" => "Napaka onemogočanja programa", +"Error while enabling app" => "Napaka omogočanja programa", "Updating...." => "Poteka posodabljanje ...", "Error while updating app" => "Prišlo je do napake med posodabljanjem programa.", "Error" => "Napaka", "Update" => "Posodobi", "Updated" => "Posodobljeno", +"Select a profile picture" => "Izbor slike profila", +"Decrypting files... Please wait, this can take some time." => "Poteka odšifriranje datotek ... Opravilo je lahko dolgotrajno.", "Saving..." => "Poteka shranjevanje ...", "deleted" => "izbrisano", "undo" => "razveljavi", @@ -36,27 +46,50 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Navedeno mora biti veljavno uporabniško ime", "Error creating user" => "Napaka ustvarjanja uporabnika", "A valid password must be provided" => "Navedeno mora biti veljavno geslo", +"Warning: Home directory for user \"{user}\" already exists" => "Opozorilo: osebna mapa uporabnika \"{user}\" že obstaja", "__language_name__" => "Slovenščina", +"Everything (fatal issues, errors, warnings, info, debug)" => "Vse (podrobnosti, opozorila, hrošče, napake in usodne dogodke)", +"Info, warnings, errors and fatal issues" => "Podrobnosti, opozorila, napake in usodne dogodke", +"Warnings, errors and fatal issues" => "Opozorila, napake in usodne dogodke", +"Errors and fatal issues" => "Napake in usodne dogodke", +"Fatal issues only" => "Le usodne dogodke", "Security Warning" => "Varnostno opozorilo", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Dostop do %s poteka preko HTTP. Priporočljivo je nastaviti strežnik na privzeto uporabo varne povezave preko protokola 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." => "Vaša podatkovna mapa in datoteke so najverjetneje dosegljive preko interneta. Datoteka .htaccess ni ustrezno nastavljena. Priporočljivo je nastaviti spletni strežnik tako, da podatkovna mapa ni prosto dostopna. To je mogoče zagotoviti tudi tako, da je mapa premaknjena iz neustrezne korenske v podrejeno mapo .", "Setup Warning" => "Opozorilo nastavitve", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena.", +"Please double check the installation guides." => "Preverite vodnike namestitve.", "Module 'fileinfo' missing" => "Manjka modul 'fileinfo'.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Manjka modul PHP 'fileinfo'. Priporočljivo je omogočiti ta modul za popolno zaznavanje vrst MIME.", +"Your PHP version is outdated" => "Nameščena različica PHP je zastarela", +"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." => "Nameščena različica PHP je zastarela. Priporočljivo je posodobiti namestitev na različico 5.3.8 ali novejše, saj starejše različice ne podpirajo vseh zmožnosti. Mogoče je, da namestitev ne deluje pravilno.", "Locale not working" => "Jezikovne prilagoditve ne delujejo.", +"System locale can not be set to a one which supports UTF-8." => "Sistemskih jezikovnih nastavitev ni mogoče nastaviti na možnost, ki podpira nabor UTF-8.", +"This means that there might be problems with certain characters in file names." => "To pomeni, da se lahko pojavijo napake pri nekaterih znakih v imenih datotek.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Priporočljivo je namestiti zahtevane pakete v sistem za podporo ene izmed navedenih jezikovnih možnosti: %s", "Internet connection not working" => "Internetna povezava ne deluje.", +"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." => "Na voljo ni delujoče internetne povezave. To pomeni, da nekaterih možnosti, kot so priklapljanje zunanje shrambe, obveščanja o posodobitvah in nameščanje programov tretje roke ni podprto. Dostop do datotek z oddaljenih mest in pošiljanje obvestil preko elektronske pošte je verjetno še vedno mogoče. Za omogočanje vseh zmožnosti mora biti vzpostavljena tudi ustrezna internetna povezava.", "Cron" => "Periodično opravilo", "Execute one task with each page loaded" => "Izvedi eno nalogo z vsako naloženo stranjo.", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "Datoteka cron.php je vpisana v storitvi webcron za potrditev sklica vsakih 15 minut pri povezavi preko HTTP.", +"Use systems cron service to call the cron.php file every 15 minutes." => "Uporabi storitev periodičnih opravil za klic datoteke cron.php vsakih 15 minut.", "Sharing" => "Souporaba", "Enable Share API" => "Omogoči API souporabe", "Allow apps to use the Share API" => "Dovoli programom uporabo vmesnika API souporabe", "Allow links" => "Dovoli povezave", "Allow users to share items to the public with links" => "Uporabnikom dovoli souporabo predmetov z javnimi povezavami", +"Allow public uploads" => "Dovoli javno pošiljanje datotek v oblak", +"Allow users to enable others to upload into their publicly shared folders" => "Dovoli uporabnikom, da omogočijo drugim uporabnikom, pošiljati datoteke v javno mapo.", "Allow resharing" => "Dovoli nadaljnjo souporabo", "Allow users to share items shared with them again" => "Uporabnikom dovoli nadaljnjo souporabo predmetov", "Allow users to share with anyone" => "Uporabnikom dovoli souporabo s komerkoli", "Allow users to only share with users in their groups" => "Uporabnikom dovoli souporabo z ostalimi uporabniki njihove skupine", +"Allow mail notification" => "Dovoli obvestila preko elektronske pošte", +"Allow user to send mail notification for shared files" => "Dovoli uporabniku poslati obvestila preko elektronske pošte za datoteke v souporabi", "Security" => "Varnost", "Enforce HTTPS" => "Zahtevaj uporabo HTTPS", +"Forces the clients to connect to %s via an encrypted connection." => "Vsili povezavo odjemalca z %s preko šifrirane povezave.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Za nastavljanje šifriranja SSL je treba vzpostaviti povezavo z mestom %s preko protokola HTTPS.", "Log" => "Dnevnik", "Log level" => "Raven beleženja", "More" => "Več", @@ -83,25 +116,37 @@ $TRANSLATIONS = array( "Current password" => "Trenutno geslo", "New password" => "Novo geslo", "Change password" => "Spremeni geslo", -"Display Name" => "Prikazano ime", +"Full Name" => "Polno ime", "Email" => "Elektronski naslov", "Your email address" => "Osebni elektronski naslov", "Fill in an email address to enable password recovery" => "Vpišite osebni elektronski naslov in s tem omogočite obnovitev gesla", "Profile picture" => "Slika profila", +"Upload new" => "Pošlji novo", +"Select new from Files" => "Izberi novo iz menija datotek", +"Remove image" => "Odstrani sliko", +"Either png or jpg. Ideally square but you will be able to crop it." => "Slika je lahko png ali jpg. Slika naj bo kvadratna, ni pa to pogoj, saj jo bo mogoče obrezati.", +"Your avatar is provided by your original account." => "Podoba je podana v izvornem računu.", +"Abort" => "Prekini", +"Choose as profile image" => "Izberi kot sliko profila", "Language" => "Jezik", "Help translate" => "Sodelujte pri prevajanju", "WebDAV" => "WebDAV", +"Use this address to access your Files via WebDAV" => "Uporabite naslov za dostop do datotek rpeko sistema WebDAV.", "Encryption" => "Šifriranje", +"The encryption app is no longer enabled, please decrypt all your files" => "Program za šifriranje ni več omogočen. Odšifrirati je treba vse datoteke.", +"Log-in password" => "Prijavno geslo", +"Decrypt all Files" => "Odšifriraj vse datoteke", "Login Name" => "Prijavno ime", "Create" => "Ustvari", -"Admin Recovery Password" => "Obnovitev administratorjevega gesla", -"Enter the recovery password in order to recover the users files during password change" => "Vnesite geslo za obnovitev, ki ga boste uporabljali za obnovitev datotek uporabnikov med spremembo gesla", +"Admin Recovery Password" => "Obnovitev skrbniškega gesla", +"Enter the recovery password in order to recover the users files during password change" => "Vnesite geslo, ki omogoča obnovitev uporabniških datotek med spreminjanjem gesla", "Default Storage" => "Privzeta shramba", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Vnesite količinsko omejitev prostora (na primer: \"512 MB\" ali \"12 GB\")", "Unlimited" => "Neomejeno", "Other" => "Drugo", "Username" => "Uporabniško ime", "Storage" => "Shramba", -"change display name" => "spremeni prikazano ime", +"change full name" => "Spremeni polno ime", "set new password" => "nastavi novo geslo", "Default" => "Privzeto" ); diff --git a/settings/l10n/sq.php b/settings/l10n/sq.php index d4726a29bb6e22c77a3ad459597ef4011e2f6f03..4bb2576a88d2db962c6dd1c840b5a154d9512c5f 100644 --- a/settings/l10n/sq.php +++ b/settings/l10n/sq.php @@ -1,18 +1,103 @@ "Veprim i gabuar gjatë vërtetimit të identitetit", +"Unable to load list from App Store" => "E pamundur të shkarkohet lista nga App Store", +"Authentication error" => "Gabim autentifikimi", +"Group already exists" => "Grupi ekziston", +"Unable to add group" => "E pamundur të shtohet grupi", +"Email saved" => "Email u ruajt", +"Invalid email" => "Email jo i vlefshëm", +"Unable to delete group" => "E pamundur të fshihet grupi", +"Unable to delete user" => "E pamundur të fshihet përdoruesi", +"Language changed" => "Gjuha u ndryshua", "Invalid request" => "Kërkesë e pavlefshme", -"Error" => "Veprim i gabuar", -"Update" => "Azhurno", -"undo" => "anulo", -"Delete" => "Elimino", -"Security Warning" => "Paralajmërim sigurie", -"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar.", -"Get the apps to sync your files" => "Merrni app-et për sinkronizimin e skedarëve tuaj", -"Password" => "Kodi", -"New password" => "Kodi i ri", -"Email" => "Email-i", -"Other" => "Të tjera", -"Username" => "Përdoruesi" +"Admins can't remove themself from the admin group" => "Administratorët nuk mund të heqin vehten prej grupit admin", +"Unable to add user to group %s" => "E pamundur t'i shtohet përdoruesi grupit %s", +"Unable to remove user from group %s" => "E pamundur të hiqet përdoruesi nga grupi %s", +"Couldn't update app." => "E pamundur të përditësohet app.", +"Update to {appversion}" => "Përditësim për {appversion}", +"Disable" => "Çaktivizo", +"Enable" => "Aktivizo", +"Please wait...." => "Ju lutem prisni...", +"Updating...." => "Duke përditësuar...", +"Error while updating app" => "Gabim gjatë përditësimit të app", +"Error" => "Gabim", +"Update" => "Përditësim", +"Updated" => "I përditësuar", +"Saving..." => "Duke ruajtur...", +"deleted" => "fshirë", +"undo" => "anullo veprimin", +"Unable to remove user" => "E pamundur të fshiet përdoruesi", +"Groups" => "Grupet", +"Group Admin" => "Grupi Admin", +"Delete" => "Fshi", +"add group" => "shto grup", +"A valid username must be provided" => "Duhet të jepni një emër të vlefshëm përdoruesi", +"Error creating user" => "Gabim gjatë krijimit të përdoruesit", +"A valid password must be provided" => "Duhet të jepni një fjalëkalim te vlefshëm", +"__language_name__" => "Shqip", +"Security Warning" => "Njoftim për sigurinë", +"Setup Warning" => "Lajmërim konfigurimi", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "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.", +"Module 'fileinfo' missing" => "Mungon moduli 'fileinfo'", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "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.", +"Locale not working" => "Locale nuk është funksional", +"Internet connection not working" => "Lidhja me internetin nuk është funksionale", +"Cron" => "Cron", +"Execute one task with each page loaded" => "Kryeni vetëm një veprim me secilën prej faqeve të ngarkuara", +"Sharing" => "Ndarje", +"Enable Share API" => "Aktivizo API për ndarjet", +"Allow apps to use the Share API" => "Lejoni aplikacionet të përdorin share API", +"Allow links" => "Lejo lidhjet", +"Allow users to share items to the public with links" => "Lejoni përdoruesit të ndajnë elementët publikisht nëpermjet lidhjeve", +"Allow public uploads" => "Lejo ngarkimin publik", +"Allow users to enable others to upload into their publicly shared folders" => "Lejo përdoruesit të mundësojnë të tjerët që të ngarkojnë materiale në dosjen e tyre publike", +"Allow resharing" => "Lejo ri-ndarjen", +"Allow users to share items shared with them again" => "Lejoni përdoruesit të ndjanë dhe ata elementë të ndarë më parë ngë të tjerë", +"Allow users to share with anyone" => "Lejo përdoruesit të ndajnë me cilindo", +"Allow users to only share with users in their groups" => "Lejoni përdoruesit të ndajnë vetëm me përdorues të të njëjtit grup", +"Security" => "Siguria", +"Enforce HTTPS" => "Detyro HTTPS", +"Log" => "Historik aktiviteti", +"Log level" => "Niveli i Historikut", +"More" => "Më tepër", +"Version" => "Versioni", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Zhvilluar nga Komuniteti OwnCloud, gjithashtu source code është licensuar me anë të AGPL.", +"Add your App" => "Shtoni apliakcionin tuaj", +"More Apps" => "Apliakcione të tjera", +"Select an App" => "Zgjidhni një Aplikacion", +"See application page at apps.owncloud.com" => "Shihni faqen e aplikacionit tek apps.owncloud.com", +"-licensed by " => "-licensuar nga ", +"User Documentation" => "Dokumentacion përdoruesi", +"Administrator Documentation" => "Dokumentacion administratori", +"Online Documentation" => "Dokumentacion online", +"Forum" => "Forumi", +"Bugtracker" => "Bugtracker - ndjekja e problemeve", +"Commercial Support" => "Suport komercial", +"Get the apps to sync your files" => "Bëni që aplikacionet të sinkronizojnë skedarët tuaj", +"Show First Run Wizard again" => "Rishfaq përsëri fazat për hapjen e herës së parë", +"You have used %s of the available %s" => "Ju keni përdorur %s nga %s të mundshme ", +"Password" => "Fjalëkalim", +"Your password was changed" => "fjalëkalimi juaj u ndryshua", +"Unable to change your password" => "Nuk është e mundur të ndryshohet fjalëkalimi", +"Current password" => "Fjalëkalimi aktual", +"New password" => "Fjalëkalimi i ri", +"Change password" => "Ndrysho fjalëkalimin", +"Email" => "Email", +"Your email address" => "Adresa juaj email", +"Fill in an email address to enable password recovery" => "Jepni një adresë email për të aktivizuar rigjetjen e fjalëkalimit", +"Language" => "Gjuha", +"Help translate" => "Ndihmoni në përkthim", +"WebDAV" => "WebDAV", +"Login Name" => "Emri i Përdoruesit", +"Create" => "Krijo", +"Admin Recovery Password" => "Rigjetja e fjalëkalimit të Admin", +"Enter the recovery password in order to recover the users files during password change" => "Jepni fjalëkalimin e rigjetjes për të rigjetur skedarët e përdoruesit gjatë ndryshimit të fjalëkalimit", +"Default Storage" => "Vendruajtje e paracaktuar/Default Storage", +"Unlimited" => "E pakufizuar", +"Other" => "Tjetër", +"Username" => "Përdoruesi", +"Storage" => "Vendruajtja/Storage", +"set new password" => "vendos fjalëkalim të ri", +"Default" => "Paracaktuar" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index f667a54781f83b2dd4918afa4e7afcdc78ba2ac2..b521ad7ce545697cfbd7de5fa389cd7f94c2f1e6 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Грешка приликом учитавања списка из Складишта Програма", "Authentication error" => "Грешка при провери идентитета", -"Unable to change display name" => "Не могу да променим име за приказ", "Group already exists" => "Група већ постоји", "Unable to add group" => "Не могу да додам групу", "Email saved" => "Е-порука сачувана", @@ -81,7 +80,6 @@ $TRANSLATIONS = array( "Current password" => "Тренутна лозинка", "New password" => "Нова лозинка", "Change password" => "Измени лозинку", -"Display Name" => "Име за приказ", "Email" => "Е-пошта", "Your email address" => "Ваша адреса е-поште", "Fill in an email address to enable password recovery" => "Ун", @@ -96,7 +94,6 @@ $TRANSLATIONS = array( "Other" => "Друго", "Username" => "Корисничко име", "Storage" => "Складиште", -"change display name" => "промени име за приказ", "set new password" => "постави нову лозинку", "Default" => "Подразумевано" ); diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 4f8ad376db73977c93ac7d75c1ed8636219083e1..9f83a18373baa8ca68456ca105bbe286380e1220 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -2,8 +2,7 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Kan inte ladda listan från App Store", "Authentication error" => "Fel vid autentisering", -"Your display name has been changed." => "Ditt visningsnamn har ändrats.", -"Unable to change display name" => "Kan inte ändra visningsnamn", +"Unable to change full name" => "Kunde inte ändra hela namnet", "Group already exists" => "Gruppen finns redan", "Unable to add group" => "Kan inte lägga till grupp", "Email saved" => "E-post sparad", @@ -46,6 +45,7 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Ett giltigt användarnamn måste anges", "Error creating user" => "Fel vid skapande av användare", "A valid password must be provided" => "Ett giltigt lösenord måste anges", +"Warning: Home directory for user \"{user}\" already exists" => "Varning: Hem katalogen för varje användare \"{användare}\" finns redan", "__language_name__" => "__language_name__", "Security Warning" => "Säkerhetsvarning", "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 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.", @@ -55,13 +55,12 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Modulen \"fileinfo\" saknas", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP-modulen 'fileinfo' saknas. Vi rekommenderar starkt att aktivera den här modulen för att kunna upptäcka korrekt mime-typ.", "Locale not working" => "Locale fungerar inte", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Systemets språk kan inte sättas till %s. Detta innebär att det kan vara problem med vissa tecken i filnamn. Det är starkt rekommenderat att installera nödvändiga paket så att systemet får stöd för %s.", "Internet connection not working" => "Internetförbindelsen fungerar inte", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Servern har ingen fungerande internetanslutning. Detta innebär att en del av de funktioner som montering av extern lagring, notifieringar om uppdateringar eller installation av 3: e part appar inte fungerar. Åtkomst till filer och skicka e-postmeddelanden fungerar troligen inte heller. Vi rekommenderar starkt att aktivera en internetuppkoppling för denna server om du vill ha alla funktioner.", "Cron" => "Cron", "Execute one task with each page loaded" => "Exekvera en uppgift vid varje sidladdning", -"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php är registrerad som en webcron-tjänst för att anropa cron.php varje minut över http.", -"Use systems cron service to call the cron.php file once a minute." => "Använd system-tjänsten cron för att anropa cron.php varje minut.", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php är registrerad som en webcron service att ropa på cron.php varje 15 minuter över http.", +"Use systems cron service to call the cron.php file every 15 minutes." => "Använd systemets cron service att ropa på cron.php filen varje 15 minuter.", "Sharing" => "Dela", "Enable Share API" => "Aktivera delat API", "Allow apps to use the Share API" => "Tillåt applikationer att använda delat API", @@ -73,6 +72,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Tillåt användare att dela vidare filer som delats med dem", "Allow users to share with anyone" => "Tillåt delning med alla", "Allow users to only share with users in their groups" => "Tillåt bara delning med användare i egna grupper", +"Allow mail notification" => "Tillåt e-post notifikation", +"Allow user to send mail notification for shared files" => "Tillåt användare att skicka e-port notifikationer för delade filer", "Security" => "Säkerhet", "Enforce HTTPS" => "Kräv HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Tvingar klienterna att ansluta till %s via en krypterad anslutning.", @@ -103,7 +104,7 @@ $TRANSLATIONS = array( "Current password" => "Nuvarande lösenord", "New password" => "Nytt lösenord", "Change password" => "Ändra lösenord", -"Display Name" => "Visningsnamn", +"Full Name" => "Hela namnet", "Email" => "E-post", "Your email address" => "Din e-postadress", "Fill in an email address to enable password recovery" => "Fyll i en e-postadress för att aktivera återställning av lösenord", @@ -117,9 +118,8 @@ $TRANSLATIONS = array( "Language" => "Språk", "Help translate" => "Hjälp att översätta", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Använd denna adress för att komma åt dina filer via WebDAV", +"Use this address to access your Files via WebDAV" => "Använd denna adress till nå dina Filer via WebDAV", "Encryption" => "Kryptering", -"The encryption app is no longer enabled, decrypt all your file" => "Appen för kryptering är inte längre aktiverad, dekryptera alla dina filer", "Log-in password" => "Inloggningslösenord", "Decrypt all Files" => "Dekryptera alla filer", "Login Name" => "Inloggningsnamn", @@ -131,7 +131,7 @@ $TRANSLATIONS = array( "Other" => "Annat", "Username" => "Användarnamn", "Storage" => "Lagring", -"change display name" => "ändra visningsnamn", +"change full name" => "ändra hela namnet", "set new password" => "ange nytt lösenord", "Default" => "Förvald" ); diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 900423425595d8ace671e7f33fc932bd2579cf49..60e53da32319b6688cc55677eace976d32be85a3 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -67,7 +67,6 @@ $TRANSLATIONS = array( "Current password" => "รหัสผ่านปัจจุบัน", "New password" => "รหัสผ่านใหม่", "Change password" => "เปลี่ยนรหัสผ่าน", -"Display Name" => "ชื่อที่ต้องการแสดง", "Email" => "อีเมล", "Your email address" => "ที่อยู่อีเมล์ของคุณ", "Fill in an email address to enable password recovery" => "กรอกที่อยู่อีเมล์ของคุณเพื่อเปิดให้มีการกู้คืนรหัสผ่านได้", @@ -83,7 +82,6 @@ $TRANSLATIONS = array( "Other" => "อื่นๆ", "Username" => "ชื่อผู้ใช้งาน", "Storage" => "พื้นที่จัดเก็บข้อมูล", -"change display name" => "เปลี่ยนชื่อที่ต้องการให้แสดง", "set new password" => "ตั้งค่ารหัสผ่านใหม่", "Default" => "ค่าเริ่มต้น" ); diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 1f4ce98f555f8108d1df1cdb81e49f90d84044fb..211b87d79d50c7ae67f78512fa5da104741b4ce9 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -2,12 +2,12 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "App Store'dan liste yüklenemiyor", "Authentication error" => "Kimlik doğrulama hatası", -"Your display name has been changed." => "Görüntülenen isminiz değiştirildi.", -"Unable to change display name" => "Ekran adı değiştirilemiyor", +"Your full name has been changed." => "Tam adınız değiştirildi.", +"Unable to change full name" => "Tam adınız değiştirilirken hata", "Group already exists" => "Grup zaten mevcut", "Unable to add group" => "Gruba eklenemiyor", -"Email saved" => "Eposta kaydedildi", -"Invalid email" => "Geçersiz eposta", +"Email saved" => "E-posta kaydedildi", +"Invalid email" => "Geçersiz e-posta", "Unable to delete group" => "Grup silinemiyor", "Unable to delete user" => "Kullanıcı silinemiyor", "Language changed" => "Dil değiştirildi", @@ -16,8 +16,14 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "Kullanıcı %s grubuna eklenemiyor", "Unable to remove user from group %s" => "%s grubundan kullanıcı kaldırılamıyor", "Couldn't update app." => "Uygulama güncellenemedi.", +"Wrong password" => "Hatalı parola", +"No user supplied" => "Kullanıcı girilmedi", +"Please provide an admin recovery password, otherwise all user data will be lost" => "Lütfen bir yönetici kurtarma parolası girin, aksi takdirde tüm kullanıcı verisi kaybedilecek", +"Wrong admin recovery password. Please check the password and try again." => "Hatalı yönetici kurtarma parolası. Lütfen parolayı denetleyip yeniden deneyin.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "Arka uç parola değişimini desteklemiyor ancak kullanıcı şifreleme anahtarı başarıyla güncellendi.", +"Unable to change password" => "Parola değiştirilemiyor", "Update to {appversion}" => "{appversion} Güncelle", -"Disable" => "Etkin değil", +"Disable" => "Devre dışı bırak", "Enable" => "Etkinleştir", "Please wait...." => "Lütfen bekleyin....", "Error while disabling app" => "Uygulama devre dışı bırakılırken hata", @@ -27,6 +33,7 @@ $TRANSLATIONS = array( "Error" => "Hata", "Update" => "Güncelleme", "Updated" => "Güncellendi", +"Select a profile picture" => "Bir profil fotoğrafı seçin", "Decrypting files... Please wait, this can take some time." => "Dosyaların şifresi çözülüyor... Lütfen bekleyin, bu biraz zaman alabilir.", "Saving..." => "Kaydediliyor...", "deleted" => "silindi", @@ -39,46 +46,59 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Geçerli bir kullanıcı adı mutlaka sağlanmalı", "Error creating user" => "Kullanıcı oluşturulurken hata", "A valid password must be provided" => "Geçerli bir parola mutlaka sağlanmalı", +"Warning: Home directory for user \"{user}\" already exists" => "Uyarı: \"{user}\" kullanıcısı için zaten bir Ev dizini mevcut", "__language_name__" => "Türkçe", -"Security Warning" => "Güvenlik Uyarisi", +"Everything (fatal issues, errors, warnings, info, debug)" => "Her şey (Ölümcül konular, hatalar, uyarılar, bilgi, hata ayıklama)", +"Info, warnings, errors and fatal issues" => "Bilgi, uyarılar, hatalar ve ölümcül konular", +"Warnings, errors and fatal issues" => "Uyarılar, hatalar ve ölümcül konular", +"Errors and fatal issues" => "Hatalar ve ölümcül konular", +"Fatal issues only" => "Sadece ölümcül konular", +"Security Warning" => "Güvenlik Uyarısı", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "%s konumuna HTTP aracılığıyla erişiyorsunuz. Sunucunuzu HTTPS kullanımını zorlaması üzere yapılandırmanızı şiddetle öneririz.", "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." => "data dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden erişilebilir. .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak data dizinine erişimi kapatmanızı veya data dizinini web sunucu döküman dizini dışına almanızı şiddetle tavsiye ederiz.", "Setup Warning" => "Kurulum Uyarısı", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor.", "Please double check the installation guides." => "Lütfen kurulum kılavuzlarını tekrar kontrol edin.", "Module 'fileinfo' missing" => "Modül 'fileinfo' kayıp", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP modülü 'fileinfo' kayıp. MIME-tip tanıma ile en iyi sonuçları elde etmek için bu modülü etkinleştirmenizi öneririz.", +"Your PHP version is outdated" => "PHP sürümünüz eski", +"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." => "PHP sürümünüz eski. Eski sürümlerde sorun olduğundan 5.3.8 veya daha yeni bir sürüme güncellemenizi şiddetle tavsiye ederiz. Bu kurulumun da doğru çalışmaması da olasıdır.", "Locale not working" => "Locale çalışmıyor.", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Sistem yereli %s olarak değiştirilemedi. Bu, dosya adlarındaki bazı karakterlerde sorun olabileceği anlamına gelir. %s desteklemek için gerekli paketleri kurmanızı şiddetle öneririz.", +"System locale can not be set to a one which supports UTF-8." => "Sistem yereli, UTF-8 destekleyenlerden biri olarak ayarlanamadı", +"This means that there might be problems with certain characters in file names." => "Bu, dosya adlarında belirli karakterlerde problem olabileceği anlamına gelir.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Şu dillerden birini desteklemesi için sisteminize gerekli paketleri kurmanızı şiddetle tavsiye ederiz: %s.", "Internet connection not working" => "İnternet bağlantısı çalışmıyor", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Bu sunucunun çalışan bir internet bağlantısı yok. Bu, harici depolama alanı bağlama, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacak demektir. Uzak dosyalara erişim ve e-posta ile bildirim gönderme de çalışmayacaktır. Eğer bu özelliklerin tamamını kullanmak istiyorsanız, sunucu için internet bağlantısını etkinleştirmenizi öneriyoruz.", "Cron" => "Cron", "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 once a minute over http." => "Http üzerinden dakikada bir çalıştırılmak üzere, cron.php bir webcron hizmetine kaydedildi.", -"Use systems cron service to call the cron.php file once a minute." => "cron.php dosyasını dakikada bir çağırmak için sistemin cron hizmetini kullan. ", +"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.", "Sharing" => "Paylaşım", -"Enable Share API" => "Paylaşım API'sini etkinleştir.", +"Enable Share API" => "Paylaşım API'sini etkinleştir", "Allow apps to use the Share API" => "Uygulamaların paylaşım API'sini kullanmasına izin ver", -"Allow links" => "Bağlantıları izin ver.", -"Allow users to share items to the public with links" => "Kullanıcıların nesneleri paylaşımı için herkese açık bağlantılara izin ver", +"Allow links" => "Bağlantılara izin ver", +"Allow users to share items to the public with links" => "Kullanıcıların ögeleri paylaşması için herkese açık bağlantılara izin ver", "Allow public uploads" => "Herkes tarafından yüklemeye izin ver", -"Allow users to enable others to upload into their publicly shared folders" => "Kullanıcıların, herkese açık dizinlerine, başkalarının dosya yüklemelerini etkinleştirmelerine izin ver.", +"Allow users to enable others to upload into their publicly shared folders" => "Kullanıcıların, herkese açık dizinlerine, başkalarının dosya yüklemelerini etkinleştirmelerine izin ver", "Allow resharing" => "Paylaşıma izin ver", -"Allow users to share items shared with them again" => "Kullanıcıların kendileri ile paylaşılan öğeleri yeniden paylaşmasına izin ver", -"Allow users to share with anyone" => "Kullanıcıların herşeyi paylaşmalarına izin ver", +"Allow users to share items shared with them again" => "Kullanıcıların kendileri ile paylaşılan ögeleri yeniden paylaşmasına izin ver", +"Allow users to share with anyone" => "Kullanıcıların her şeyi paylaşmalarına izin ver", "Allow users to only share with users in their groups" => "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver", +"Allow mail notification" => "Posta bilgilendirmesine izin ver", +"Allow user to send mail notification for shared files" => "Paylaşılmış dosyalar için kullanıcının posta bildirimi göndermesine izin ver", "Security" => "Güvenlik", "Enforce HTTPS" => "HTTPS bağlantısına zorla", -"Forces the clients to connect to %s via an encrypted connection." => "İstemcileri %s a şifreli bir bağlantı ile bağlanmaya zorlar.", -"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen ,%s a HTTPS ile bağlanın.", -"Log" => "Kayıtlar", +"Forces the clients to connect to %s via an encrypted connection." => "İstemcileri %s'a şifreli bir bağlantı ile bağlanmaya zorlar.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen ,%s'a HTTPS ile bağlanın.", +"Log" => "Günlük", "Log level" => "Günlük seviyesi", "More" => "Daha fazla", "Less" => "Az", "Version" => "Sürüm", -"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Geliştirilen TarafownCloud community, the source code is altında lisanslanmıştır AGPL.", -"Add your App" => "Uygulamanı Ekle", -"More Apps" => "Daha fazla uygulama", -"Select an App" => "Bir uygulama seçin", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "ownCloud topluluğu tarafından geliştirilmiş olup, kaynak kodu, AGPL altında lisanslanmıştır.", +"Add your App" => "Uygulamanızı Ekleyin", +"More Apps" => "Daha Fazla Uygulama", +"Select an App" => "Bir Uygulama Seçin", "See application page at apps.owncloud.com" => "Uygulamanın sayfasına apps.owncloud.com adresinden bakın ", "-licensed by " => "-lisanslayan ", "User Documentation" => "Kullanıcı Belgelendirmesi", @@ -87,38 +107,46 @@ $TRANSLATIONS = array( "Forum" => "Forum", "Bugtracker" => "Hata Takip Sistemi", "Commercial Support" => "Ticari Destek", -"Get the apps to sync your files" => "Dosyalarınızı senkronize etmek için uygulamayı indirin", +"Get the apps to sync your files" => "Dosyalarınızı eşitlemek için uygulamayı indirin", "Show First Run Wizard again" => "İlk Çalıştırma Sihirbazını yeniden göster", -"You have used %s of the available %s" => "Kullandığınız:%s seçilebilecekler: %s", +"You have used %s of the available %s" => "Kullandığınız: %s. Kullanılabilir alan: %s", "Password" => "Parola", "Your password was changed" => "Şifreniz değiştirildi", "Unable to change your password" => "Parolanız değiştirilemiyor", "Current password" => "Mevcut parola", "New password" => "Yeni parola", "Change password" => "Parola değiştir", -"Display Name" => "Ekran Adı", -"Email" => "Eposta", -"Your email address" => "Eposta adresiniz", -"Fill in an email address to enable password recovery" => "Parola kurtarmayı etkinleştirmek için bir eposta adresi girin", +"Full Name" => "Tam Adı", +"Email" => "E-posta", +"Your email address" => "E-posta adresiniz", +"Fill in an email address to enable password recovery" => "Parola kurtarmayı etkinleştirmek için bir e-posta adresi girin", "Profile picture" => "Profil resmi", +"Upload new" => "Yeni yükle", +"Select new from Files" => "Dosyalardan seç", +"Remove image" => "Resmi kaldır", +"Either png or jpg. Ideally square but you will be able to crop it." => "PNG veya JPG. Genellikle karedir ancak kesebileceksiniz.", +"Your avatar is provided by your original account." => "Görüntü resminiz, özgün hesabınız tarafından sağlanıyor.", +"Abort" => "İptal Et", +"Choose as profile image" => "Profil resmi olarak seç", "Language" => "Dil", "Help translate" => "Çevirilere yardım edin", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => " Dosyalarınıza WebDAV üzerinen erişme için bu adresi kullanın", +"Use this address to access your Files via WebDAV" => "Dosyalarınıza WebDAV aracılığıyla erişmek için bu adresi kullanın", "Encryption" => "Şifreleme", -"The encryption app is no longer enabled, decrypt all your file" => "Şifreleme uygulaması artık etkin değil, tüm dosyanın şifresini çöz", +"The encryption app is no longer enabled, please decrypt all your files" => "Şifreleme uygulaması artık etkin değil, tüm dosyalarınızın şifrelemesini kaldırın", "Log-in password" => "Oturum açma parolası", -"Decrypt all Files" => "Tüm dosyaların şifresini çözme", +"Decrypt all Files" => "Tüm dosyaların şifresini çöz", "Login Name" => "Giriş Adı", "Create" => "Oluştur", -"Admin Recovery Password" => "Yönetici kurtarma parolası", +"Admin Recovery Password" => "Yönetici Kurtarma Parolası", "Enter the recovery password in order to recover the users files during password change" => "Parola değiştirme sırasında kullanıcı dosyalarını kurtarmak için bir kurtarma paroalsı girin", "Default Storage" => "Varsayılan Depolama", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Lütfen disk alanı kotasını girin (örnek: \"512MB\" veya \"12GB\")", "Unlimited" => "Limitsiz", "Other" => "Diğer", "Username" => "Kullanıcı Adı", "Storage" => "Depolama", -"change display name" => "ekran adını değiştir", +"change full name" => "tam adı değiştir", "set new password" => "yeni parola belirle", "Default" => "Varsayılan" ); diff --git a/settings/l10n/ug.php b/settings/l10n/ug.php index df9b7e988c1b13af695fb41e3c2e66ffc026411c..e0e5e7400585f405746e31fe81230294bc7fe5be 100644 --- a/settings/l10n/ug.php +++ b/settings/l10n/ug.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "ئەپ بازىرىدىن تىزىمنى يۈكلىيەلمىدى", "Authentication error" => "سالاھىيەت دەلىللەش خاتالىقى", -"Your display name has been changed." => "كۆرسىتىدىغان ئىسمىڭىز ئۆزگەردى.", -"Unable to change display name" => "كۆرسىتىدىغان ئىسىمنى ئۆزگەرتكىلى بولمايدۇ", "Group already exists" => "گۇرۇپپا مەۋجۇت", "Unable to add group" => "گۇرۇپپا قوشقىلى بولمايدۇ", "Email saved" => "تورخەت ساقلاندى", @@ -61,7 +59,6 @@ $TRANSLATIONS = array( "Current password" => "نۆۋەتتىكى ئىم", "New password" => "يېڭى ئىم", "Change password" => "ئىم ئۆزگەرت", -"Display Name" => "كۆرسىتىش ئىسمى", "Email" => "تورخەت", "Your email address" => "تورخەت ئادرېسىڭىز", "Fill in an email address to enable password recovery" => "ئىم ئەسلىگە كەلتۈرۈشتە ئىشلىتىدىغان تور خەت ئادرېسىنى تولدۇرۇڭ", @@ -76,7 +73,6 @@ $TRANSLATIONS = array( "Other" => "باشقا", "Username" => "ئىشلەتكۈچى ئاتى", "Storage" => "ساقلىغۇچ", -"change display name" => "كۆرسىتىدىغان ئىسىمنى ئۆزگەرت", "set new password" => "يېڭى ئىم تەڭشە", "Default" => "كۆڭۈلدىكى" ); diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index adb46e3ee847b486c40ce470f76fd8a7cf549313..353e4f198822164c5eefd71e555a8bf081da358b 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Не вдалося завантажити список з App Store", "Authentication error" => "Помилка автентифікації", -"Unable to change display name" => "Не вдалося змінити ім'я", "Group already exists" => "Група вже існує", "Unable to add group" => "Не вдалося додати групу", "Email saved" => "Адресу збережено", @@ -82,7 +81,6 @@ $TRANSLATIONS = array( "Current password" => "Поточний пароль", "New password" => "Новий пароль", "Change password" => "Змінити пароль", -"Display Name" => "Показати Ім'я", "Email" => "Ел.пошта", "Your email address" => "Ваша адреса електронної пошти", "Fill in an email address to enable password recovery" => "Введіть адресу електронної пошти для відновлення паролю", @@ -97,7 +95,6 @@ $TRANSLATIONS = array( "Other" => "Інше", "Username" => "Ім'я користувача", "Storage" => "Сховище", -"change display name" => "змінити ім'я", "set new password" => "встановити новий пароль", "Default" => "За замовчуванням" ); diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index 71dbd198251157ea62950c39f9dbd1f6ff1d0322..e2e1364902c8dc7fd16d9840e18f99f0fc03b46b 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Không thể tải danh sách ứng dụng từ App Store", "Authentication error" => "Lỗi xác thực", -"Unable to change display name" => "Không thể thay đổi tên hiển thị", "Group already exists" => "Nhóm đã tồn tại", "Unable to add group" => "Không thể thêm nhóm", "Email saved" => "Lưu email", @@ -68,7 +67,6 @@ $TRANSLATIONS = array( "Current password" => "Mật khẩu cũ", "New password" => "Mật khẩu mới", "Change password" => "Đổi mật khẩu", -"Display Name" => "Tên hiển thị", "Email" => "Email", "Your email address" => "Email của bạn", "Fill in an email address to enable password recovery" => "Nhập địa chỉ email của bạn để khôi phục lại mật khẩu", @@ -83,7 +81,6 @@ $TRANSLATIONS = array( "Other" => "Khác", "Username" => "Tên đăng nhập", "Storage" => "Bộ nhớ", -"change display name" => "Thay đổi tên hiển thị", "set new password" => "đặt mật khẩu mới", "Default" => "Mặc định" ); diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 659c5bea1a601036a26e186cc364b51daf884f9c..4733a9e429a85068c0daa5b6c8f6bde3cab79285 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "无法从应用商店载入列表", "Authentication error" => "认证出错", -"Your display name has been changed." => "您的显示名字已经改变", -"Unable to change display name" => "无法修改显示名称", "Group already exists" => "已存在该组", "Unable to add group" => "无法添加组", "Email saved" => "电子邮件已保存", @@ -48,13 +46,10 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "模块'文件信息'丢失", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP模块'文件信息'丢失. 我们强烈建议启用此模块以便mime类型检测取得最佳结果.", "Locale not working" => "本地化无法工作", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "服务器无法设置系统本地化到%s. 这意味着可能文件名中有一些字符会引起问题. 我们强烈建议在你系统上安装所需的软件包来支持%s", "Internet connection not working" => "因特网连接无法工作", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "此服务器上没有可用的因特网连接. 这意味着某些特性将无法工作,例如挂载外部存储器, 提醒更新或安装第三方应用等. 从远程访问文件和发送提醒电子邮件也可能无法工作. 如果你想要ownCloud的所有特性, 我们建议启用此服务器的因特网连接.", "Cron" => "计划任务", "Execute one task with each page loaded" => "每个页面加载后执行一个任务", -"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php已被注册到网络定时任务服务。通过http每分钟调用owncloud根目录的cron.php网页。", -"Use systems cron service to call the cron.php file once a minute." => "使用系统定时任务服务。每分钟通过系统定时任务调用owncloud文件夹中的cron.php文件", "Sharing" => "共享", "Enable Share API" => "启用共享API", "Allow apps to use the Share API" => "允许应用软件使用共享API", @@ -96,7 +91,6 @@ $TRANSLATIONS = array( "Current password" => "当前密码", "New password" => "新密码", "Change password" => "修改密码", -"Display Name" => "显示名称", "Email" => "电子邮件", "Your email address" => "您的电子邮件", "Fill in an email address to enable password recovery" => "填写电子邮件地址以启用密码恢复功能", @@ -104,9 +98,7 @@ $TRANSLATIONS = array( "Language" => "语言", "Help translate" => "帮助翻译", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "使用该链接 通过WebDAV访问你的文件", "Encryption" => "加密", -"The encryption app is no longer enabled, decrypt all your file" => "加密 app 未启用,将解密您所有文件", "Log-in password" => "登录密码", "Decrypt all Files" => "解密所有文件", "Login Name" => "登录名称", @@ -118,7 +110,6 @@ $TRANSLATIONS = array( "Other" => "其它", "Username" => "用户名", "Storage" => "存储", -"change display name" => "修改显示名称", "set new password" => "设置新密码", "Default" => "默认" ); diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index add2f1fe0029836d392f7cb8d9d8d3f20a9c37a7..4f7d6ff9cf3c8dd550a42f8f4e40cd2382b0b7ad 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "無法從 App Store 讀取清單", "Authentication error" => "認證錯誤", -"Your display name has been changed." => "已更改顯示名稱", -"Unable to change display name" => "無法更改顯示名稱", "Group already exists" => "群組已存在", "Unable to add group" => "群組增加失敗", "Email saved" => "Email已儲存", @@ -16,6 +14,12 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "使用者加入群組 %s 錯誤", "Unable to remove user from group %s" => "使用者移出群組 %s 錯誤", "Couldn't update app." => "無法更新應用程式", +"Wrong password" => "密碼錯誤", +"No user supplied" => "未提供使用者", +"Please provide an admin recovery password, otherwise all user data will be lost" => "請提供管理者還原密碼,否則會遺失所有使用者資料", +"Wrong admin recovery password. Please check the password and try again." => "錯誤的管理者還原密碼", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "後端不支援變更密碼,但成功更新使用者的加密金鑰", +"Unable to change password" => "無法修改密碼", "Update to {appversion}" => "更新至 {appversion}", "Disable" => "停用", "Enable" => "啟用", @@ -27,6 +31,7 @@ $TRANSLATIONS = array( "Error" => "錯誤", "Update" => "更新", "Updated" => "已更新", +"Select a profile picture" => "選擇大頭貼", "Decrypting files... Please wait, this can take some time." => "檔案解密中,請稍候。", "Saving..." => "儲存中...", "deleted" => "已刪除", @@ -39,6 +44,7 @@ $TRANSLATIONS = array( "A valid username must be provided" => "必須提供一個有效的用戶名", "Error creating user" => "建立用戶時出現錯誤", "A valid password must be provided" => "一定要提供一個有效的密碼", +"Warning: Home directory for user \"{user}\" already exists" => "警告:使用者 {user} 的家目錄已經存在", "__language_name__" => "__language_name__", "Security Warning" => "安全性警告", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。", @@ -48,13 +54,12 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "遺失 'fileinfo' 模組", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "未偵測到 PHP 模組 'fileinfo'。我們強烈建議啟用這個模組以取得最好的 mime-type 支援。", "Locale not working" => "語系無法運作", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "ownCloud 伺服器無法將系統語系設為 %s ,可能有一些檔名中的字元有問題,建議您安裝所有所需的套件以支援 %s 。", "Internet connection not working" => "無網際網路存取", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "這臺 ownCloud 伺服器沒有連接到網際網路,因此有些功能像是掛載外部儲存空間、更新 ownCloud 或應用程式的通知沒有辦法運作。透過網際網路存取檔案還有電子郵件通知可能也無法運作。如果想要 ownCloud 完整的功能,建議您將這臺伺服器連接至網際網路。", "Cron" => "Cron", "Execute one task with each page loaded" => "當頁面載入時,執行", -"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php 已經註冊 webcron 服務,webcron 每分鐘會呼叫 cron.php 一次。", -"Use systems cron service to call the cron.php file once a minute." => "使用系統的 cron 服務來呼叫 cron.php 每分鐘一次。", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "已經與 webcron 服務註冊好,將會每15分鐘呼叫 cron.php", +"Use systems cron service to call the cron.php file every 15 minutes." => "使用系統的 cron 服務每15分鐘呼叫 cron.php 一次", "Sharing" => "分享", "Enable Share API" => "啟用分享 API", "Allow apps to use the Share API" => "允許 apps 使用分享 API", @@ -66,6 +71,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "允許使用者分享其他使用者分享給他的檔案", "Allow users to share with anyone" => "允許使用者與任何人分享檔案", "Allow users to only share with users in their groups" => "僅允許使用者在群組內分享", +"Allow mail notification" => "允許郵件通知", +"Allow user to send mail notification for shared files" => "允許使用者分享檔案時寄出通知郵件", "Security" => "安全性", "Enforce HTTPS" => "強制啟用 HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "強迫用戶端使用加密連線連接到 %s", @@ -96,17 +103,21 @@ $TRANSLATIONS = array( "Current password" => "目前密碼", "New password" => "新密碼", "Change password" => "變更密碼", -"Display Name" => "顯示名稱", "Email" => "信箱", "Your email address" => "您的電子郵件信箱", "Fill in an email address to enable password recovery" => "請填入電子郵件信箱以便回復密碼", "Profile picture" => "個人資料照片", +"Upload new" => "上傳新的", +"Select new from Files" => "從已上傳的檔案中選一個", +"Remove image" => "移除圖片", +"Either png or jpg. Ideally square but you will be able to crop it." => "可以使用 png 或 jpg 格式,最好是方形的,但是您之後也可以裁剪它", +"Abort" => "中斷", +"Choose as profile image" => "設定為大頭貼", "Language" => "語言", "Help translate" => "幫助翻譯", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "以上的 WebDAV 位址可以讓您透過 WebDAV 協定存取檔案", +"Use this address to access your Files via WebDAV" => "使用這個地址來透過 WebDAV 存取檔案", "Encryption" => "加密", -"The encryption app is no longer enabled, decrypt all your file" => "加密應用程式已經停用,請您解密您所有的檔案", "Log-in password" => "登入密碼", "Decrypt all Files" => "解密所有檔案", "Login Name" => "登入名稱", @@ -118,7 +129,6 @@ $TRANSLATIONS = array( "Other" => "其他", "Username" => "使用者名稱", "Storage" => "儲存區", -"change display name" => "修改顯示名稱", "set new password" => "設定新密碼", "Default" => "預設" ); diff --git a/settings/personal.php b/settings/personal.php index 670e18e20ef56497951ac5dc7489146b8423b322..cf1a496bdf018ef7b7ff8d59d71540b82563aa32 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -13,6 +13,8 @@ $defaults = new OC_Defaults(); // initialize themable default strings and urls // Highlight navigation entry OC_Util::addScript( 'settings', 'personal' ); OC_Util::addStyle( 'settings', 'settings' ); +OC_Util::addScript( '3rdparty', 'strengthify/jquery.strengthify' ); +OC_Util::addStyle( '3rdparty', 'strengthify/strengthify' ); OC_Util::addScript( '3rdparty', 'chosen/chosen.jquery.min' ); OC_Util::addStyle( '3rdparty', 'chosen' ); \OC_Util::addScript('files', 'jquery.fileupload'); @@ -20,6 +22,8 @@ if (\OC_Config::getValue('enable_avatars', true) === true) { \OC_Util::addScript('3rdparty/Jcrop', 'jquery.Jcrop.min'); \OC_Util::addStyle('3rdparty/Jcrop', 'jquery.Jcrop.min'); } + +// Highlight navigation entry OC_App::setActiveNavigationEntry( 'personal' ); $storageInfo=OC_Helper::getStorageInfo('/'); @@ -90,6 +94,7 @@ $tmpl->assign('displayNameChangeSupported', OC_User::canUserChangeDisplayName(OC $tmpl->assign('displayName', OC_User::getDisplayName()); $tmpl->assign('enableDecryptAll' , $enableDecryptAll); $tmpl->assign('enableAvatars', \OC_Config::getValue('enable_avatars', true)); +$tmpl->assign('avatarChangeSupported', OC_User::canUserChangeAvatar(OC_User::getUser())); $forms=OC_App::getForms('personal'); $tmpl->assign('forms', array()); diff --git a/settings/templates/admin.php b/settings/templates/admin.php index e54586b80dfa15f4c91ff7a897aa433be745a942..0eabffb9316ff4a5a2a7cd036d21d88bf1686666 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -4,15 +4,36 @@ * See the COPYING-README file. */ $levels = array('Debug', 'Info', 'Warning', 'Error', 'Fatal'); +$levelLabels = array( + $l->t( 'Everything (fatal issues, errors, warnings, info, debug)' ), + $l->t( 'Info, warnings, errors and fatal issues' ), + $l->t( 'Warnings, errors and fatal issues' ), + $l->t( 'Errors and fatal issues' ), + $l->t( 'Fatal issues only' ), +); ?> +
    +

    t('Security Warning'));?>

    + + + t('You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead.', $theme->getTitle())); ?> + + +
    +
    - t('Security Warning'));?> +

    t('Security Warning'));?>

    t('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.')); ?> @@ -26,11 +47,11 @@ if (!$_['htaccessworking']) { if (!$_['isWebDavWorking']) { ?>
    - t('Setup Warning'));?> +

    t('Setup Warning'));?>

    t('Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken.')); ?> - t('Please double check the installation guides.', $theme->getDocBaseUrl().'/server/5.0/admin_manual/installation.html')); ?> + t('Please double check the installation guides.', link_to_docs('admin-install'))); ?>
    @@ -41,7 +62,7 @@ if (!$_['isWebDavWorking']) { if (!$_['has_fileinfo']) { ?>
    - t('Module \'fileinfo\' missing'));?> +

    t('Module \'fileinfo\' missing'));?>

    t('The PHP module \'fileinfo\' is missing. We strongly recommend to enable this module to get best results with mime-type detection.')); ?> @@ -51,16 +72,38 @@ if (!$_['has_fileinfo']) { +
    +

    t('Your PHP version is outdated'));?>

    + + + t('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.')); ?> + + +
    +
    - t('Locale not working'));?> +

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

    t('System locale can\'t be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s.', array($locales, $locales))); + $locales = 'en_US.UTF-8/fr_FR.UTF-8/es_ES.UTF-8/de_DE.UTF-8/ru_RU.UTF-8/pt_BR.UTF-8/it_IT.UTF-8/ja_JP.UTF-8/zh_CN.UTF-8'; + p($l->t('System locale can not be set to a one which supports UTF-8.')); + ?> +
    + t('This means that there might be problems with certain characters in file names.')); + ?> +
    + t('We strongly suggest to install the required packages on your system to support one of the following locales: %s.', array($locales))); ?>
    @@ -72,7 +115,7 @@ if (!$_['islocaleworking']) { if (!$_['internetconnectionworking']) { ?>
    - t('Internet connection not working'));?> +

    t('Internet connection not working'));?>

    t('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.')); ?> @@ -89,7 +132,7 @@ if (!$_['internetconnectionworking']) { ;?>
    - t('Cron'));?> +

    t('Cron'));?>

    >
    - t("cron.php is registered at a webcron service to call cron.php once a minute over http.")); ?> + t("cron.php is registered at a webcron service to call cron.php every 15 minutes over http.")); ?>

    >
    - t("Use systems cron service to call the cron.php file once a minute.")); ?> + t("Use systems cron service to call the cron.php file every 15 minutes.")); ?>

    - t('Sharing'));?> - +

    t('Sharing'));?>

    +
    - - - - + + +
    > + > />
    @@ -137,7 +180,7 @@ if (!$_['internetconnectionworking']) {
    > + > />
    @@ -146,7 +189,7 @@ if (!$_['internetconnectionworking']) {
    > + > />
    @@ -154,7 +197,7 @@ if (!$_['internetconnectionworking']) {
    > + > />
    @@ -163,15 +206,23 @@ if (!$_['internetconnectionworking']) {
    > + /> +
    + t('Allow user to send mail notification for shared files')); ?> +
    - t('Security'));?> - +

    t('Security'));?>

    +
    -
    - t('Log'));?> +

    t('Log'));?>

    t('Log level'));?> - +
    -
    @@ -221,9 +273,9 @@ endfor;?> message);?> + time)){ - p(OC_Util::formatDate($entry->time)); + p(OC_Util::formatDate($entry->time)); } else { p($entry->time); }?> @@ -239,8 +291,8 @@ endfor;?>
    - t('Version'));?> - getTitle()); ?> +

    t('Version'));?>

    + getTitle()); ?>

    t('Developed by the ownCloud community, the source code is licensed under the AGPL.')); ?> diff --git a/settings/templates/apps.php b/settings/templates/apps.php index 0b76f775fea4802ec635b42e69a27d9438fbc73d..e04815f9b99d7f1ec84578fcc46ce396b729283e 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -34,9 +34,16 @@ class="version">

    + - + diff --git a/settings/templates/personal.php b/settings/templates/personal.php index d2ca8154f160bdf20754e773c7c29588030c75c0..31ae3a991b6c60da0ca29aa96073680e686e2521 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -36,14 +36,18 @@ if($_['passwordChangeSupported']) { ?>
    - t('Password'));?> +

    t('Password'));?>

    t('Your password was changed');?>
    t('Unable to change your password');?>
    - + + placeholder="t('New password');?>" + data-typetoggle="#personal-show" autocomplete="off" /> +
    +
    - t('Display Name');?> +

    t('Full Name');?>

    @@ -70,7 +74,7 @@ if($_['passwordChangeSupported']) { ?>
    - t('Email'));?> +

    t('Email'));?>


    t('Fill in an email address to enable password recovery'));?> @@ -83,15 +87,19 @@ if($_['passwordChangeSupported']) {
    - t('Profile picture')); ?> +

    t('Profile picture')); ?>


    +
    t('Upload new')); ?>
    t('Select new from Files')); ?>
    t('Remove image')); ?>

    t('Either png or jpg. Ideally square but you will be able to crop it.')); ?> + + t('Your avatar is provided by your original account.')); ?> +
    - +
    - + @@ -105,7 +105,7 @@ $_['subadmingroups'] = array_flip($items);
    t('Username'))?>t( 'Display Name' )); ?>t( 'Full Name' )); ?> t( 'Password' )); ?> t( 'Groups' )); ?> <?php p($l->t(" title="t("change display name"))?>"/> + alt="t("change full name"))?>" title="t("change full name"))?>"/> ●●●●●●● - ">
    + + *dbprefix*decimal + + + id + 1 + integer + 0 + true + 4 + + + + decimaltest + decimal + + true + 12 + 2 + + +
    + diff --git a/tests/data/db_structure2.xml b/tests/data/db_structure2.xml index bbfb24985cb1c67c4628f4b10448b0df35bc56d9..ae5f22e957344d60c37cd0cfaf7790632cdd2322 100644 --- a/tests/data/db_structure2.xml +++ b/tests/data/db_structure2.xml @@ -96,4 +96,27 @@
    + + *dbprefix*decimal + + + id + 1 + integer + 0 + true + 4 + + + + decimaltest + decimal + + true + 12 + 2 + + +
    + diff --git a/tests/data/l10n/cs.php b/tests/data/l10n/cs.php index 1c5907bc148d7c83ee3afde3d6e09293a322c60e..de106ede026d346c31a0cce4896b16a0b28df471 100644 --- a/tests/data/l10n/cs.php +++ b/tests/data/l10n/cs.php @@ -1,5 +1,5 @@ array("%n okno", "%n okna", "%n oken") + "_%n window_::_%n windows_" => array("%n okno", "%n okna", "%n oken") ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/tests/data/l10n/de.php b/tests/data/l10n/de.php index 858ec8af49c60834e5e1b377a8b55975ea6fa74c..93c9ab4209ed035f80aa0f6b6e72715f8128de28 100644 --- a/tests/data/l10n/de.php +++ b/tests/data/l10n/de.php @@ -1,5 +1,5 @@ array("%n Datei", "%n Dateien") + "_%n file_::_%n files_" => array("%n Datei", "%n Dateien") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/tests/data/l10n/ru.php b/tests/data/l10n/ru.php index dd46293db6cdde30cd3c704d38adb5e73499a1b6..b778e8d79af83c6b804a28b5624bc55bfa8b9f80 100644 --- a/tests/data/l10n/ru.php +++ b/tests/data/l10n/ru.php @@ -1,5 +1,5 @@ array("%n файл", "%n файла", "%n файлов") + "_%n file_::_%n files_" => array("%n файл", "%n файла", "%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);"; diff --git a/tests/data/openssl.cnf b/tests/data/openssl.cnf new file mode 100644 index 0000000000000000000000000000000000000000..1eb86c40126308376e1c6e816d4988badd369fb8 --- /dev/null +++ b/tests/data/openssl.cnf @@ -0,0 +1,350 @@ +# +# OpenSSL example configuration file. +# This is mostly being used for generation of certificate requests. +# + +# This definition stops the following lines choking if HOME isn't +# defined. +HOME = . +RANDFILE = $ENV::HOME/.rnd + +# Extra OBJECT IDENTIFIER info: +#oid_file = $ENV::HOME/.oid +oid_section = new_oids + +# To use this configuration file with the "-extfile" option of the +# "openssl x509" utility, name here the section containing the +# X.509v3 extensions to use: +# extensions = +# (Alternatively, use a configuration file that has only +# X.509v3 extensions in its main [= default] section.) + +[ new_oids ] + +# We can add new OIDs in here for use by 'ca', 'req' and 'ts'. +# Add a simple OID like this: +# testoid1=1.2.3.4 +# Or use config file substitution like this: +# testoid2=${testoid1}.5.6 + +# Policies used by the TSA examples. +tsa_policy1 = 1.2.3.4.1 +tsa_policy2 = 1.2.3.4.5.6 +tsa_policy3 = 1.2.3.4.5.7 + +#################################################################### +[ ca ] +default_ca = CA_default # The default ca section + +#################################################################### +[ CA_default ] + +dir = ./demoCA # Where everything is kept +certs = $dir/certs # Where the issued certs are kept +crl_dir = $dir/crl # Where the issued crl are kept +database = $dir/index.txt # database index file. +#unique_subject = no # Set to 'no' to allow creation of + # several ctificates with same subject. +new_certs_dir = $dir/newcerts # default place for new certs. + +certificate = $dir/cacert.pem # The CA certificate +serial = $dir/serial # The current serial number +crlnumber = $dir/crlnumber # the current crl number + # must be commented out to leave a V1 CRL +crl = $dir/crl.pem # The current CRL +private_key = $dir/private/cakey.pem# The private key +RANDFILE = $dir/private/.rand # private random number file + +x509_extensions = usr_cert # The extentions to add to the cert + +# Comment out the following two lines for the "traditional" +# (and highly broken) format. +name_opt = ca_default # Subject Name options +cert_opt = ca_default # Certificate field options + +# Extension copying option: use with caution. +# copy_extensions = copy + +# Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs +# so this is commented out by default to leave a V1 CRL. +# crlnumber must also be commented out to leave a V1 CRL. +# crl_extensions = crl_ext + +default_days = 365 # how long to certify for +default_crl_days= 30 # how long before next CRL +default_md = default # use public key default MD +preserve = no # keep passed DN ordering + +# A few difference way of specifying how similar the request should look +# For type CA, the listed attributes must be the same, and the optional +# and supplied fields are just that :-) +policy = policy_match + +# For the CA policy +[ policy_match ] +countryName = match +stateOrProvinceName = match +organizationName = match +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +# For the 'anything' policy +# At this point in time, you must list all acceptable 'object' +# types. +[ policy_anything ] +countryName = optional +stateOrProvinceName = optional +localityName = optional +organizationName = optional +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +#################################################################### +[ req ] +default_bits = 2048 +default_keyfile = privkey.pem +distinguished_name = req_distinguished_name +attributes = req_attributes +x509_extensions = v3_ca # The extentions to add to the self signed cert + +# Passwords for private keys if not present they will be prompted for +# input_password = secret +# output_password = secret + +# This sets a mask for permitted string types. There are several options. +# default: PrintableString, T61String, BMPString. +# pkix : PrintableString, BMPString (PKIX recommendation before 2004) +# utf8only: only UTF8Strings (PKIX recommendation after 2004). +# nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings). +# MASK:XXXX a literal mask value. +# WARNING: ancient versions of Netscape crash on BMPStrings or UTF8Strings. +string_mask = utf8only + +# req_extensions = v3_req # The extensions to add to a certificate request + +[ req_distinguished_name ] +countryName = Country Name (2 letter code) +countryName_default = AU +countryName_min = 2 +countryName_max = 2 + +stateOrProvinceName = State or Province Name (full name) +stateOrProvinceName_default = Some-State + +localityName = Locality Name (eg, city) + +0.organizationName = Organization Name (eg, company) +0.organizationName_default = Internet Widgits Pty Ltd + +# we can do this but it is not needed normally :-) +#1.organizationName = Second Organization Name (eg, company) +#1.organizationName_default = World Wide Web Pty Ltd + +organizationalUnitName = Organizational Unit Name (eg, section) +#organizationalUnitName_default = + +commonName = Common Name (e.g. server FQDN or YOUR name) +commonName_max = 64 + +emailAddress = Email Address +emailAddress_max = 64 + +# SET-ex3 = SET extension number 3 + +[ req_attributes ] +challengePassword = A challenge password +challengePassword_min = 4 +challengePassword_max = 20 + +unstructuredName = An optional company name + +[ usr_cert ] + +# These extensions are added when 'ca' signs a request. + +# This goes against PKIX guidelines but some CAs do it and some software +# requires this to avoid interpreting an end user certificate as a CA. + +basicConstraints=CA:FALSE + +# Here are some examples of the usage of nsCertType. If it is omitted +# the certificate can be used for anything *except* object signing. + +# This is OK for an SSL server. +# nsCertType = server + +# For an object signing certificate this would be used. +# nsCertType = objsign + +# For normal client use this is typical +# nsCertType = client, email + +# and for everything including object signing: +# nsCertType = client, email, objsign + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + +#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem +#nsBaseUrl +#nsRevocationUrl +#nsRenewalUrl +#nsCaPolicyUrl +#nsSslServerName + +# This is required for TSA certificates. +# extendedKeyUsage = critical,timeStamping + +[ v3_req ] + +# Extensions to add to a certificate request + +basicConstraints = CA:FALSE +keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +[ v3_ca ] + + +# Extensions for a typical CA + + +# PKIX recommendation. + +subjectKeyIdentifier=hash + +authorityKeyIdentifier=keyid:always,issuer + +# This is what PKIX recommends but some broken software chokes on critical +# extensions. +#basicConstraints = critical,CA:true +# So we do this instead. +basicConstraints = CA:true + +# Key usage: this is typical for a CA certificate. However since it will +# prevent it being used as an test self-signed certificate it is best +# left out by default. +# keyUsage = cRLSign, keyCertSign + +# Some might want this also +# nsCertType = sslCA, emailCA + +# Include email address in subject alt name: another PKIX recommendation +# subjectAltName=email:copy +# Copy issuer details +# issuerAltName=issuer:copy + +# DER hex encoding of an extension: beware experts only! +# obj=DER:02:03 +# Where 'obj' is a standard or added object +# You can even override a supported extension: +# basicConstraints= critical, DER:30:03:01:01:FF + +[ crl_ext ] + +# CRL extensions. +# Only issuerAltName and authorityKeyIdentifier make any sense in a CRL. + +# issuerAltName=issuer:copy +authorityKeyIdentifier=keyid:always + +[ proxy_cert_ext ] +# These extensions should be added when creating a proxy certificate + +# This goes against PKIX guidelines but some CAs do it and some software +# requires this to avoid interpreting an end user certificate as a CA. + +basicConstraints=CA:FALSE + +# Here are some examples of the usage of nsCertType. If it is omitted +# the certificate can be used for anything *except* object signing. + +# This is OK for an SSL server. +# nsCertType = server + +# For an object signing certificate this would be used. +# nsCertType = objsign + +# For normal client use this is typical +# nsCertType = client, email + +# and for everything including object signing: +# nsCertType = client, email, objsign + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + +#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem +#nsBaseUrl +#nsRevocationUrl +#nsRenewalUrl +#nsCaPolicyUrl +#nsSslServerName + +# This really needs to be in place for it to be a proxy certificate. +proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo + +#################################################################### +[ tsa ] + +default_tsa = tsa_config1 # the default TSA section + +[ tsa_config1 ] + +# These are used by the TSA reply generation only. +dir = ./demoCA # TSA root directory +serial = $dir/tsaserial # The current serial number (mandatory) +crypto_device = builtin # OpenSSL engine to use for signing +signer_cert = $dir/tsacert.pem # The TSA signing certificate + # (optional) +certs = $dir/cacert.pem # Certificate chain to include in reply + # (optional) +signer_key = $dir/private/tsakey.pem # The TSA private key (optional) + +default_policy = tsa_policy1 # Policy if request did not specify it + # (optional) +other_policies = tsa_policy2, tsa_policy3 # acceptable policies (optional) +digests = md5, sha1 # Acceptable message digests (mandatory) +accuracy = secs:1, millisecs:500, microsecs:100 # (optional) +clock_precision_digits = 0 # number of digits after dot. (optional) +ordering = yes # Is ordering defined for timestamps? + # (optional, default: no) +tsa_name = yes # Must the TSA name be included in the reply? + # (optional, default: no) +ess_cert_id_chain = no # Must the ESS cert id chain be included? + # (optional, default: no) diff --git a/tests/enable_all.php b/tests/enable_all.php index 111ed0e13572770ecbd170cf67bb498c973d4b33..efb43cae508ee21d5cce24241434b07d1e89b9c2 100644 --- a/tests/enable_all.php +++ b/tests/enable_all.php @@ -8,14 +8,17 @@ require_once __DIR__.'/../lib/base.php'; -OC_App::enable('files_encryption'); -OC_App::enable('calendar'); -OC_App::enable('contacts'); -OC_App::enable('apptemplateadvanced'); -OC_App::enable('appframework'); -#OC_App::enable('files_archive'); -#OC_App::enable('mozilla_sync'); -#OC_App::enable('news'); -#OC_App::enable('provisioning_api'); -#OC_App::enable('user_external'); +function enableApp($app) { + try { + OC_App::enable($app); + } catch (Exception $e) { + echo $e; + } +} + +enableApp('files_sharing'); +enableApp('files_encryption'); +//enableApp('files_external'); +enableApp('user_ldap'); +enableApp('files_versions'); diff --git a/tests/karma.config.js b/tests/karma.config.js new file mode 100644 index 0000000000000000000000000000000000000000..f73ade0f3c61e17942ad1a34b6ecc835366b6693 --- /dev/null +++ b/tests/karma.config.js @@ -0,0 +1,149 @@ +/** +* ownCloud +* +* @author Vincent Petry +* @copyright 2014 Vincent Petry +* +* 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 . +* +*/ + +/** + * This node module is run by the karma executable to specify its configuration. + * + * The list of files from all needed JavaScript files including the ones from the + * apps to test, and the test specs will be passed as configuration object. + * + * Note that it is possible to test a single app by setting the KARMA_TESTSUITE + * environment variable to the apps name, for example "core" or "files_encryption". + * Multiple apps can be specified by separating them with space. + * + */ +module.exports = function(config) { + + // default apps to test when none is specified (TODO: read from filesystem ?) + var defaultApps = 'core files'; + var appsToTest = process.env.KARMA_TESTSUITE || defaultApps; + + // read core files from core.json, + // these are required by all apps so always need to be loaded + // note that the loading order is important that's why they + // are specified in a separate file + var corePath = 'core/js/'; + var coreFiles = require('../' + corePath + 'core.json').modules; + var testCore = false; + var files = []; + var index; + + // find out what apps to test from appsToTest + appsToTest = appsToTest.split(' '); + index = appsToTest.indexOf('core'); + if (index > -1) { + appsToTest.splice(index, 1); + testCore = true; + } + + // extra test libs + files.push(corePath + 'tests/lib/sinon-1.7.3.js'); + + // core mocks + files.push(corePath + 'tests/specHelper.js'); + + // add core files + for ( var i = 0; i < coreFiles.length; i++ ) { + files.push( corePath + coreFiles[i] ); + } + + // need to test the core app as well ? + if (testCore) { + // core tests + files.push(corePath + 'tests/specs/*.js'); + } + + for ( var i = 0; i < appsToTest.length; i++ ) { + // add app JS + files.push('apps/' + appsToTest[i] + '/js/*.js'); + // add test specs + files.push('apps/' + appsToTest[i] + '/tests/js/*.js'); + } + + config.set({ + + // base path, that will be used to resolve files and exclude + basePath: '..', + + + // frameworks to use + frameworks: ['jasmine'], + + // list of files / patterns to load in the browser + files: files, + + // list of files to exclude + exclude: [ + + ], + + // test results reporter to use + // possible values: 'dots', 'progress', 'junit', 'growl', 'coverage' + reporters: ['dots', 'junit', 'coverage'], + + junitReporter: { + outputFile: 'tests/autotest-results-js.xml' + }, + + // web server port + port: 9876, + + preprocessors: { + 'apps/files/js/*.js': 'coverage' + }, + + coverageReporter: { + dir:'tests/karma-coverage', + reporters: [ + { type: 'html' }, + { type: 'cobertura' } + ] + }, + + // enable / disable colors in the output (reporters and logs) + colors: true, + + + // level of logging + // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG + logLevel: config.LOG_INFO, + + // enable / disable watching file and executing tests whenever any file changes + autoWatch: false, + + // Start these browsers, currently available: + // - Chrome + // - ChromeCanary + // - Firefox + // - Opera (has to be installed with `npm install karma-opera-launcher`) + // - Safari (only Mac; has to be installed with `npm install karma-safari-launcher`) + // - PhantomJS + // - IE (only Windows; has to be installed with `npm install karma-ie-launcher`) + browsers: ['PhantomJS'], + + // If browser does not capture in given timeout [ms], kill it + captureTimeout: 60000, + + // Continuous Integration mode + // if true, it capture browsers, run tests and exit + singleRun: false + }); +}; diff --git a/tests/lib/api.php b/tests/lib/api.php new file mode 100644 index 0000000000000000000000000000000000000000..9c4324e63e0b20430955d6957f2c7fac1c6ec6fd --- /dev/null +++ b/tests/lib/api.php @@ -0,0 +1,141 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_API extends PHPUnit_Framework_TestCase { + + // Helps build a response variable + function buildResponse($shipped, $data, $code, $message=null) { + return array( + 'shipped' => $shipped, + 'response' => new OC_OCS_Result($data, $code, $message), + 'app' => uniqid('testapp_', true), + ); + } + + // Validate details of the result + function checkResult($result, $success) { + // Check response is of correct type + $this->assertInstanceOf('OC_OCS_Result', $result); + // Check if it succeeded + /** @var $result OC_OCS_Result */ + $this->assertEquals($success, $result->succeeded()); + } + + function dataProviderTestOneResult() { + return array( + array(100, true), + array(101, true), + array(997, false), + ); + } + + /** + * @dataProvider dataProviderTestOneResult + * + * @param $statusCode + * @param $succeeded + */ + public function testOneResult($statusCode, $succeeded) { + // Setup some data arrays + $data1 = array( + 'users' => array( + 'tom' => array( + 'key' => 'value', + ), + 'frank' => array( + 'key' => 'value', + ), + )); + + // Test merging one success result + $response = $this->buildResponse(true, $data1, $statusCode); + $result = OC_API::mergeResponses(array($response)); + $this->assertEquals($response['response'], $result); + $this->checkResult($result, $succeeded); + } + + function dataProviderTestMergeResponses() { + return array( + // Two shipped success results + array(true, 100, true, 100, true), + // Two shipped results, one success and one failure + array(true, 100, true, 998, false), + // Two shipped results, both failure + array(true, 997, true, 998, false), + // Two third party success results + array(false, 100, false, 100, true), + // Two third party results, one success and one failure + array(false, 100, false, 998, false), + // Two third party results, both failure + array(false, 997, false, 998, false), + // One of each, both success + array(false, 100, true, 100, true), + array(true, 100, false, 100, true), + // One of each, both failure + array(false, 997, true, 998, false), + // One of each, shipped success + array(false, 997, true, 100, true), + // One of each, third party success + array(false, 100, true, 998, false), + ); + } + /** + * @dataProvider dataProviderTestMergeResponses + * + * Test the merging of multiple responses + * @param $statusCode1 + * @param $statusCode2 + * @param $succeeded + */ + public function testMultipleMergeResponses($shipped1, $statusCode1, $shipped2, $statusCode2, $succeeded){ + // Tests that app responses are merged correctly + // Setup some data arrays + $data1 = array( + 'users' => array( + 'tom' => array( + 'key' => 'value', + ), + 'frank' => array( + 'key' => 'value', + ), + )); + + $data2 = array( + 'users' => array( + 'tom' => array( + 'key' => 'newvalue', + ), + 'jan' => array( + 'key' => 'value', + ), + )); + + // Two shipped success results + $result = OC_API::mergeResponses(array( + $this->buildResponse($shipped1, $data1, $statusCode1, "message1"), + $this->buildResponse($shipped2, $data2, $statusCode2, "message2"), + )); + $this->checkResult($result, $succeeded); + $resultData = $result->getData(); + $resultMeta = $result->getMeta(); + $resultStatusCode = $result->getStatusCode(); + + $this->assertArrayHasKey('jan', $resultData['users']); + + // check if the returned status message matches the selected status code + if ($resultStatusCode === 997) { + $this->assertEquals('message1', $resultMeta['message']); + } elseif ($resultStatusCode === 998) { + $this->assertEquals('message2', $resultMeta['message']); + } elseif ($resultStatusCode === 100) { + $this->assertEquals(null, $resultMeta['message']); + } + + } + +} diff --git a/tests/lib/app.php b/tests/lib/app.php index 52eade90a6e1ea2f99db6e83e6adec3c5848c84a..49f40f089bb8e1b5c65d53451b5cbdc0d16aa49f 100644 --- a/tests/lib/app.php +++ b/tests/lib/app.php @@ -79,4 +79,17 @@ class Test_App extends PHPUnit_Framework_TestCase { $this->assertFalse(OC_App::isAppVersionCompatible($oc, $app)); } + /** + * Tests that the app order is correct + */ + public function testGetEnabledAppsIsSorted() { + $apps = \OC_App::getEnabledApps(true); + // copy array + $sortedApps = $apps; + sort($sortedApps); + // 'files' is always on top + unset($sortedApps[array_search('files', $sortedApps)]); + array_unshift($sortedApps, 'files'); + $this->assertEquals($sortedApps, $apps); + } } diff --git a/tests/lib/appconfig.php b/tests/lib/appconfig.php index 4d82cd5ba7b8b52fa37e23260ab90f7df7e010b8..23dd2549e32b6cb2d57c41a7aab2915175b9d4d5 100644 --- a/tests/lib/appconfig.php +++ b/tests/lib/appconfig.php @@ -35,7 +35,7 @@ class Test_Appconfig extends PHPUnit_Framework_TestCase { } public function testGetApps() { - $query = \OC_DB::prepare('SELECT DISTINCT `appid` FROM `*PREFIX*appconfig`'); + $query = \OC_DB::prepare('SELECT DISTINCT `appid` FROM `*PREFIX*appconfig` ORDER BY `appid`'); $result = $query->execute(); $expected = array(); while ($row = $result->fetchRow()) { diff --git a/tests/lib/appframework/AppTest.php b/tests/lib/appframework/AppTest.php index 80abaefc43b0a4e285a982facc079b61d6a1e6d5..3628e4ceab2023303fc72196539fb87baea74d64 100644 --- a/tests/lib/appframework/AppTest.php +++ b/tests/lib/appframework/AppTest.php @@ -38,9 +38,9 @@ class AppTest extends \PHPUnit_Framework_TestCase { private $controllerMethod; protected function setUp() { - $this->container = new \OC\AppFramework\DependencyInjection\DIContainer('test'); + $this->container = new \OC\AppFramework\DependencyInjection\DIContainer('test', array()); $this->controller = $this->getMockBuilder( - 'OC\AppFramework\Controller\Controller') + 'OCP\AppFramework\Controller') ->disableOriginalConstructor() ->getMock(); $this->dispatcher = $this->getMockBuilder( @@ -56,6 +56,7 @@ class AppTest extends \PHPUnit_Framework_TestCase { $this->container[$this->controllerName] = $this->controller; $this->container['Dispatcher'] = $this->dispatcher; + $this->container['urlParams'] = array(); } @@ -69,7 +70,7 @@ class AppTest extends \PHPUnit_Framework_TestCase { $this->expectOutputString(''); - App::main($this->controllerName, $this->controllerMethod, array(), + App::main($this->controllerName, $this->controllerMethod, $this->container); } diff --git a/tests/lib/appframework/controller/ControllerTest.php b/tests/lib/appframework/controller/ControllerTest.php index 4441bddfca9f4685385744aafa29671592222843..f17d5f24aa523c0e4ee0a5309d9541f66e0d562d 100644 --- a/tests/lib/appframework/controller/ControllerTest.php +++ b/tests/lib/appframework/controller/ControllerTest.php @@ -25,13 +25,10 @@ namespace Test\AppFramework\Controller; use OC\AppFramework\Http\Request; -use OC\AppFramework\Controller\Controller; +use OCP\AppFramework\Controller; use OCP\AppFramework\Http\TemplateResponse; -//require_once __DIR__ . "/../classloader.php"; - - class ChildController extends Controller {}; class ControllerTest extends \PHPUnit_Framework_TestCase { @@ -40,7 +37,7 @@ class ControllerTest extends \PHPUnit_Framework_TestCase { * @var Controller */ private $controller; - private $api; + private $app; protected function setUp(){ $request = new Request( @@ -55,13 +52,13 @@ class ControllerTest extends \PHPUnit_Framework_TestCase { ) ); - $this->api = $this->getMock('OC\AppFramework\Core\API', + $this->app = $this->getMock('OC\AppFramework\DependencyInjection\DIContainer', array('getAppName'), array('test')); - $this->api->expects($this->any()) + $this->app->expects($this->any()) ->method('getAppName') ->will($this->returnValue('apptemplate_advanced')); - $this->controller = new ChildController($this->api, $request); + $this->controller = new ChildController($this->app, $request); } @@ -114,26 +111,6 @@ class ControllerTest extends \PHPUnit_Framework_TestCase { } - public function testRenderRenderAs(){ - $ocTpl = $this->getMock('Template', array('fetchPage')); - $ocTpl->expects($this->once()) - ->method('fetchPage'); - - $api = $this->getMock('OC\AppFramework\Core\API', - array('getAppName', 'getTemplate'), array('app')); - $api->expects($this->any()) - ->method('getAppName') - ->will($this->returnValue('app')); - $api->expects($this->once()) - ->method('getTemplate') - ->with($this->equalTo('home'), $this->equalTo('admin'), $this->equalTo('app')) - ->will($this->returnValue($ocTpl)); - - $this->controller = new ChildController($api, new Request()); - $this->controller->render('home', array(), 'admin')->render(); - } - - public function testRenderHeaders(){ $headers = array('one', 'two'); $response = $this->controller->render('', array(), '', $headers); diff --git a/tests/lib/appframework/dependencyinjection/DIContainerTest.php b/tests/lib/appframework/dependencyinjection/DIContainerTest.php index 25fdd202839340ad233dff21caff16b8bb01e3b8..f3ebff0207f38a9fda87495debed6ba3cba444de 100644 --- a/tests/lib/appframework/dependencyinjection/DIContainerTest.php +++ b/tests/lib/appframework/dependencyinjection/DIContainerTest.php @@ -29,23 +29,14 @@ namespace OC\AppFramework\DependencyInjection; use \OC\AppFramework\Http\Request; -//require_once(__DIR__ . "/../classloader.php"); - - class DIContainerTest extends \PHPUnit_Framework_TestCase { private $container; + private $api; protected function setUp(){ $this->container = new DIContainer('name'); - $this->api = $this->getMock('OC\AppFramework\Core\API', array('getTrans'), array('hi')); - } - - private function exchangeAPI(){ - $this->api->expects($this->any()) - ->method('getTrans') - ->will($this->returnValue('yo')); - $this->container['API'] = $this->api; + $this->api = $this->getMock('OC\AppFramework\Core\API', array(), array('hi')); } public function testProvidesAPI(){ @@ -87,12 +78,4 @@ class DIContainerTest extends \PHPUnit_Framework_TestCase { } - public function testMiddlewareDispatcherDoesNotIncludeTwigWhenTplDirectoryNotSet(){ - $this->container['Request'] = new Request(); - $this->exchangeAPI(); - $dispatcher = $this->container['MiddlewareDispatcher']; - - $this->assertEquals(1, count($dispatcher->getMiddlewares())); - } - } diff --git a/tests/lib/appframework/http/DispatcherTest.php b/tests/lib/appframework/http/DispatcherTest.php index 849b0ca97a68dcb1bb0456c0c87e1750427065cd..6cf0da879ff181c26f26ca7c18e7d620d7abdae8 100644 --- a/tests/lib/appframework/http/DispatcherTest.php +++ b/tests/lib/appframework/http/DispatcherTest.php @@ -26,7 +26,7 @@ namespace OC\AppFramework\Http; use OC\AppFramework\Core\API; use OC\AppFramework\Middleware\MiddlewareDispatcher; - +use OCP\AppFramework\Http; //require_once(__DIR__ . "/../classloader.php"); @@ -44,8 +44,8 @@ class DispatcherTest extends \PHPUnit_Framework_TestCase { protected function setUp() { $this->controllerMethod = 'test'; - $api = $this->getMockBuilder( - '\OC\AppFramework\Core\API') + $app = $this->getMockBuilder( + 'OC\AppFramework\DependencyInjection\DIContainer') ->disableOriginalConstructor() ->getMock(); $request = $this->getMockBuilder( @@ -53,7 +53,7 @@ class DispatcherTest extends \PHPUnit_Framework_TestCase { ->disableOriginalConstructor() ->getMock(); $this->http = $this->getMockBuilder( - '\OC\AppFramework\Http\Http') + '\OC\AppFramework\Http') ->disableOriginalConstructor() ->getMock(); @@ -62,8 +62,8 @@ class DispatcherTest extends \PHPUnit_Framework_TestCase { ->disableOriginalConstructor() ->getMock(); $this->controller = $this->getMock( - '\OC\AppFramework\Controller\Controller', - array($this->controllerMethod), array($api, $request)); + '\OCP\AppFramework\Controller', + array($this->controllerMethod), array($app, $request)); $this->dispatcher = new Dispatcher( $this->http, $this->middlewareDispatcher); diff --git a/tests/lib/appframework/http/HttpTest.php b/tests/lib/appframework/http/HttpTest.php index 382d511b116449aa0ecda0047db07110ebbd93ad..0bdcee24c995a196b22cab20e692a18790e23b02 100644 --- a/tests/lib/appframework/http/HttpTest.php +++ b/tests/lib/appframework/http/HttpTest.php @@ -24,6 +24,7 @@ namespace OC\AppFramework\Http; +use OC\AppFramework\Http; //require_once(__DIR__ . "/../classloader.php"); diff --git a/tests/lib/appframework/http/RedirectResponseTest.php b/tests/lib/appframework/http/RedirectResponseTest.php index 1946655b0fa54ea6c95ab9cdb3fff6e0fbefe2a9..f82d0c3a6758bb6387628d07c602faa210ea5b4a 100644 --- a/tests/lib/appframework/http/RedirectResponseTest.php +++ b/tests/lib/appframework/http/RedirectResponseTest.php @@ -24,6 +24,7 @@ namespace OC\AppFramework\Http; +use OCP\AppFramework\Http; //require_once(__DIR__ . "/../classloader.php"); diff --git a/tests/lib/appframework/http/RequestTest.php b/tests/lib/appframework/http/RequestTest.php index 0371c870cf292682b70a35a35fac70d3020f2468..00473a8c44f9167827592591d6df7e6847cd8216 100644 --- a/tests/lib/appframework/http/RequestTest.php +++ b/tests/lib/appframework/http/RequestTest.php @@ -8,12 +8,26 @@ namespace OC\AppFramework\Http; +global $data; class RequestTest extends \PHPUnit_Framework_TestCase { + public function setUp() { + require_once __DIR__ . '/requeststream.php'; + if (in_array('fakeinput', stream_get_wrappers())) { + stream_wrapper_unregister('fakeinput'); + } + stream_wrapper_register('fakeinput', 'RequestStream'); + } + + public function tearDown() { + stream_wrapper_unregister('fakeinput'); + } + public function testRequestAccessors() { $vars = array( 'get' => array('name' => 'John Q. Public', 'nickname' => 'Joey'), + 'method' => 'GET', ); $request = new Request($vars); @@ -31,6 +45,7 @@ class RequestTest extends \PHPUnit_Framework_TestCase { $this->assertEquals('Joey', $request->get['nickname']); // Always returns null if variable not set. $this->assertEquals(null, $request->{'flickname'}); + } // urlParams has precedence over POST which has precedence over GET @@ -73,4 +88,123 @@ class RequestTest extends \PHPUnit_Framework_TestCase { $request->{'nickname'} = 'Janey'; } + /** + * @expectedException LogicException + */ + public function testGetTheMethodRight() { + $vars = array( + 'get' => array('name' => 'John Q. Public', 'nickname' => 'Joey'), + 'method' => 'GET', + ); + + $request = new Request($vars); + $result = $request->post; + } + + public function testTheMethodIsRight() { + $vars = array( + 'get' => array('name' => 'John Q. Public', 'nickname' => 'Joey'), + 'method' => 'GET', + ); + + $request = new Request($vars); + $this->assertEquals('GET', $request->method); + $result = $request->get; + $this->assertEquals('John Q. Public', $result['name']); + $this->assertEquals('Joey', $result['nickname']); + } + + public function testJsonPost() { + global $data; + $data = '{"name": "John Q. Public", "nickname": "Joey"}'; + $vars = array( + 'method' => 'POST', + 'server' => array('CONTENT_TYPE' => 'application/json; utf-8'), + ); + + $request = new Request($vars); + $this->assertEquals('POST', $request->method); + $result = $request->post; + $this->assertEquals('John Q. Public', $result['name']); + $this->assertEquals('Joey', $result['nickname']); + $this->assertEquals('Joey', $request->params['nickname']); + $this->assertEquals('Joey', $request['nickname']); + } + + public function testPatch() { + global $data; + $data = http_build_query(array('name' => 'John Q. Public', 'nickname' => 'Joey'), '', '&'); + + $vars = array( + 'method' => 'PATCH', + 'server' => array('CONTENT_TYPE' => 'application/x-www-form-urlencoded'), + ); + + $request = new Request($vars); + + $this->assertEquals('PATCH', $request->method); + $result = $request->patch; + + $this->assertEquals('John Q. Public', $result['name']); + $this->assertEquals('Joey', $result['nickname']); + } + + public function testJsonPatchAndPut() { + global $data; + + // PUT content + $data = '{"name": "John Q. Public", "nickname": "Joey"}'; + $vars = array( + 'method' => 'PUT', + 'server' => array('CONTENT_TYPE' => 'application/json; utf-8'), + ); + + $request = new Request($vars); + + $this->assertEquals('PUT', $request->method); + $result = $request->put; + + $this->assertEquals('John Q. Public', $result['name']); + $this->assertEquals('Joey', $result['nickname']); + + // PATCH content + $data = '{"name": "John Q. Public", "nickname": null}'; + $vars = array( + 'method' => 'PATCH', + 'server' => array('CONTENT_TYPE' => 'application/json; utf-8'), + ); + + $request = new Request($vars); + + $this->assertEquals('PATCH', $request->method); + $result = $request->patch; + + $this->assertEquals('John Q. Public', $result['name']); + $this->assertEquals(null, $result['nickname']); + } + + public function testPutStream() { + global $data; + $data = file_get_contents(__DIR__ . '/../../../data/testimage.png'); + + $vars = array( + 'put' => $data, + 'method' => 'PUT', + 'server' => array('CONTENT_TYPE' => 'image/png'), + ); + + $request = new Request($vars); + $this->assertEquals('PUT', $request->method); + $resource = $request->put; + $contents = stream_get_contents($resource); + $this->assertEquals($data, $contents); + + try { + $resource = $request->put; + } catch(\LogicException $e) { + return; + } + $this->fail('Expected LogicException.'); + + } } diff --git a/tests/lib/appframework/http/ResponseTest.php b/tests/lib/appframework/http/ResponseTest.php index 7e09086f80172d3f4bd0a9245434560347b47363..1a38c38c1e7b8e3567db5913d795a1557c04e890 100644 --- a/tests/lib/appframework/http/ResponseTest.php +++ b/tests/lib/appframework/http/ResponseTest.php @@ -25,7 +25,8 @@ namespace OC\AppFramework\Http; -use OCP\AppFramework\Http\Response; +use OCP\AppFramework\Http\Response, + OCP\AppFramework\Http; class ResponseTest extends \PHPUnit_Framework_TestCase { diff --git a/tests/lib/appframework/http/TemplateResponseTest.php b/tests/lib/appframework/http/TemplateResponseTest.php index 3c6d29cd3392bfcb1a7c9b07923a1578a7abe212..a583d9da14f538797557dc3a9034148e75b713a0 100644 --- a/tests/lib/appframework/http/TemplateResponseTest.php +++ b/tests/lib/appframework/http/TemplateResponseTest.php @@ -63,93 +63,33 @@ class TemplateResponseTest extends \PHPUnit_Framework_TestCase { } - public function testRender(){ - $ocTpl = $this->getMock('Template', array('fetchPage')); - $ocTpl->expects($this->once()) - ->method('fetchPage'); - - $api = $this->getMock('OC\AppFramework\Core\API', - array('getAppName', 'getTemplate'), array('app')); - $api->expects($this->any()) - ->method('getAppName') - ->will($this->returnValue('app')); - $api->expects($this->once()) - ->method('getTemplate') - ->with($this->equalTo('home'), $this->equalTo('user'), $this->equalTo('app')) - ->will($this->returnValue($ocTpl)); - - $tpl = new TemplateResponse($api, 'home'); - - $tpl->render(); - } - - - public function testRenderAssignsParams(){ - $params = array('john' => 'doe'); - - $ocTpl = $this->getMock('Template', array('assign', 'fetchPage')); - $ocTpl->expects($this->once()) - ->method('assign') - ->with($this->equalTo('john'), $this->equalTo('doe')); - - $api = $this->getMock('OC\AppFramework\Core\API', - array('getAppName', 'getTemplate'), array('app')); - $api->expects($this->any()) - ->method('getAppName') - ->will($this->returnValue('app')); - $api->expects($this->once()) - ->method('getTemplate') - ->with($this->equalTo('home'), $this->equalTo('user'), $this->equalTo('app')) - ->will($this->returnValue($ocTpl)); - - $tpl = new TemplateResponse($api, 'home'); - $tpl->setParams($params); - - $tpl->render(); - } - - - public function testRenderDifferentApp(){ - $ocTpl = $this->getMock('Template', array('fetchPage')); - $ocTpl->expects($this->once()) - ->method('fetchPage'); - - $api = $this->getMock('OC\AppFramework\Core\API', - array('getAppName', 'getTemplate'), array('app')); - $api->expects($this->any()) - ->method('getAppName') - ->will($this->returnValue('app')); - $api->expects($this->once()) - ->method('getTemplate') - ->with($this->equalTo('home'), $this->equalTo('user'), $this->equalTo('app2')) - ->will($this->returnValue($ocTpl)); - - $tpl = new TemplateResponse($api, 'home', 'app2'); - - $tpl->render(); - } - - - public function testRenderDifferentRenderAs(){ - $ocTpl = $this->getMock('Template', array('fetchPage')); - $ocTpl->expects($this->once()) - ->method('fetchPage'); - - $api = $this->getMock('OC\AppFramework\Core\API', - array('getAppName', 'getTemplate'), array('app')); - $api->expects($this->any()) - ->method('getAppName') - ->will($this->returnValue('app')); - $api->expects($this->once()) - ->method('getTemplate') - ->with($this->equalTo('home'), $this->equalTo('admin'), $this->equalTo('app')) - ->will($this->returnValue($ocTpl)); - - $tpl = new TemplateResponse($api, 'home'); - $tpl->renderAs('admin'); - - $tpl->render(); - } +// public function testRender(){ +// $ocTpl = $this->getMock('Template', array('fetchPage')); +// $ocTpl->expects($this->once()) +// ->method('fetchPage'); +// +// $tpl = new TemplateResponse('core', 'error'); +// +// $tpl->render(); +// } +// +// +// public function testRenderAssignsParams(){ +// $params = array('john' => 'doe'); +// +// $tpl = new TemplateResponse('app', 'home'); +// $tpl->setParams($params); +// +// $tpl->render(); +// } +// +// +// public function testRenderDifferentApp(){ +// +// $tpl = new TemplateResponse('app', 'home', 'app2'); +// +// $tpl->render(); +// } public function testGetRenderAs(){ diff --git a/tests/lib/appframework/http/requeststream.php b/tests/lib/appframework/http/requeststream.php new file mode 100644 index 0000000000000000000000000000000000000000..e1bf5c2c6bb08b8c3560cb94a7878f3de5dd0c62 --- /dev/null +++ b/tests/lib/appframework/http/requeststream.php @@ -0,0 +1,107 @@ +varname = $url["host"]; + $this->position = 0; + + return true; + } + + function stream_read($count) { + $ret = substr($GLOBALS[$this->varname], $this->position, $count); + $this->position += strlen($ret); + return $ret; + } + + function stream_write($data) { + $left = substr($GLOBALS[$this->varname], 0, $this->position); + $right = substr($GLOBALS[$this->varname], $this->position + strlen($data)); + $GLOBALS[$this->varname] = $left . $data . $right; + $this->position += strlen($data); + return strlen($data); + } + + function stream_tell() { + return $this->position; + } + + function stream_eof() { + return $this->position >= strlen($GLOBALS[$this->varname]); + } + + function stream_seek($offset, $whence) { + switch ($whence) { + case SEEK_SET: + if ($offset < strlen($GLOBALS[$this->varname]) && $offset >= 0) { + $this->position = $offset; + return true; + } else { + return false; + } + break; + + case SEEK_CUR: + if ($offset >= 0) { + $this->position += $offset; + return true; + } else { + return false; + } + break; + + case SEEK_END: + if (strlen($GLOBALS[$this->varname]) + $offset >= 0) { + $this->position = strlen($GLOBALS[$this->varname]) + $offset; + return true; + } else { + return false; + } + break; + + default: + return false; + } + } + + public function stream_stat() { + $size = strlen($GLOBALS[$this->varname]); + $time = time(); + $data = array( + 'dev' => 0, + 'ino' => 0, + 'mode' => 0777, + 'nlink' => 1, + 'uid' => 0, + 'gid' => 0, + 'rdev' => '', + 'size' => $size, + 'atime' => $time, + 'mtime' => $time, + 'ctime' => $time, + 'blksize' => -1, + 'blocks' => -1, + ); + return array_values($data) + $data; + //return false; + } + + function stream_metadata($path, $option, $var) { + if($option == STREAM_META_TOUCH) { + $url = parse_url($path); + $varname = $url["host"]; + if(!isset($GLOBALS[$varname])) { + $GLOBALS[$varname] = ''; + } + return true; + } + return false; + } +} diff --git a/tests/lib/appframework/middleware/MiddlewareDispatcherTest.php b/tests/lib/appframework/middleware/MiddlewareDispatcherTest.php index 43727846dcf3863af85aa4b14f272d060b805ec6..95d42e4eb8ec81315e44fe1b486e4a80fec08016 100644 --- a/tests/lib/appframework/middleware/MiddlewareDispatcherTest.php +++ b/tests/lib/appframework/middleware/MiddlewareDispatcherTest.php @@ -25,8 +25,8 @@ namespace OC\AppFramework; use OC\AppFramework\Http\Request; -use OC\AppFramework\Middleware\Middleware; use OC\AppFramework\Middleware\MiddlewareDispatcher; +use OCP\AppFramework\Middleware; use OCP\AppFramework\Http\Response; @@ -122,13 +122,13 @@ class MiddlewareDispatcherTest extends \PHPUnit_Framework_TestCase { private function getAPIMock(){ - return $this->getMock('OC\AppFramework\Core\API', + return $this->getMock('OC\AppFramework\DependencyInjection\DIContainer', array('getAppName'), array('app')); } private function getControllerMock(){ - return $this->getMock('OC\AppFramework\Controller\Controller', array('method'), + return $this->getMock('OCP\AppFramework\Controller', array('method'), array($this->getAPIMock(), new Request())); } @@ -142,12 +142,12 @@ class MiddlewareDispatcherTest extends \PHPUnit_Framework_TestCase { public function testAfterExceptionShouldReturnResponseOfMiddleware(){ $response = new Response(); - $m1 = $this->getMock('\OC\AppFramework\Middleware\Middleware', + $m1 = $this->getMock('\OCP\AppFramework\Middleware', array('afterException', 'beforeController')); $m1->expects($this->never()) ->method('afterException'); - $m2 = $this->getMock('OC\AppFramework\Middleware\Middleware', + $m2 = $this->getMock('OCP\AppFramework\Middleware', array('afterException', 'beforeController')); $m2->expects($this->once()) ->method('afterException') @@ -267,7 +267,7 @@ class MiddlewareDispatcherTest extends \PHPUnit_Framework_TestCase { public function testExceptionShouldRunAfterExceptionOfOnlyPreviouslyExecutedMiddlewares(){ $m1 = $this->getMiddleware(); $m2 = $this->getMiddleware(true); - $m3 = $this->getMock('\OC\AppFramework\Middleware\Middleware'); + $m3 = $this->getMock('\OCP\AppFramework\Middleware'); $m3->expects($this->never()) ->method('afterException'); $m3->expects($this->never()) diff --git a/tests/lib/appframework/middleware/MiddlewareTest.php b/tests/lib/appframework/middleware/MiddlewareTest.php index 5e2930ac6a36a426127e164286ae1093a8006680..7a93c0d4ddac9b309ff43858f60743a91824b560 100644 --- a/tests/lib/appframework/middleware/MiddlewareTest.php +++ b/tests/lib/appframework/middleware/MiddlewareTest.php @@ -25,7 +25,7 @@ namespace OC\AppFramework; use OC\AppFramework\Http\Request; -use OC\AppFramework\Middleware\Middleware; +use OCP\AppFramework\Middleware; class ChildMiddleware extends Middleware {}; @@ -44,10 +44,10 @@ class MiddlewareTest extends \PHPUnit_Framework_TestCase { protected function setUp(){ $this->middleware = new ChildMiddleware(); - $this->api = $this->getMock('OC\AppFramework\Core\API', + $this->api = $this->getMock('OC\AppFramework\DependencyInjection\DIContainer', array(), array('test')); - $this->controller = $this->getMock('OC\AppFramework\Controller\Controller', + $this->controller = $this->getMock('OCP\AppFramework\Controller', array(), array($this->api, new Request())); $this->exception = new \Exception(); $this->response = $this->getMock('OCP\AppFramework\Http\Response'); diff --git a/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php b/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php index 3ed44282a7b0b3a625fd6ef88a2a67e90464123c..dae6135dc54f574e8ca9cebfa5e1b0fb54c857b2 100644 --- a/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php +++ b/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php @@ -24,7 +24,7 @@ namespace OC\AppFramework\Middleware\Security; -use OC\AppFramework\Http\Http; +use OC\AppFramework\Http; use OC\AppFramework\Http\Request; use OC\AppFramework\Http\RedirectResponse; use OCP\AppFramework\Http\JSONResponse; @@ -39,8 +39,8 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { private $request; public function setUp() { - $api = $this->getMock('OC\AppFramework\Core\API', array(), array('test')); - $this->controller = $this->getMock('OC\AppFramework\Controller\Controller', + $api = $this->getMock('OC\AppFramework\DependencyInjection\DIContainer', array(), array('test')); + $this->controller = $this->getMock('OCP\AppFramework\Controller', array(), array($api, new Request())); $this->request = new Request(); @@ -51,24 +51,19 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { private function getAPI(){ - return $this->getMock('OC\AppFramework\Core\API', + return $this->getMock('OC\AppFramework\DependencyInjection\DIContainer', array('isLoggedIn', 'passesCSRFCheck', 'isAdminUser', - 'isSubAdminUser', 'activateNavigationEntry', - 'getUserId'), + 'isSubAdminUser', 'getUserId'), array('app')); } - private function checkNavEntry($method, $shouldBeActivated=false){ + private function checkNavEntry($method){ $api = $this->getAPI(); - if($shouldBeActivated){ - $api->expects($this->once()) - ->method('activateNavigationEntry'); - } else { - $api->expects($this->never()) - ->method('activateNavigationEntry'); - } + $serverMock = $this->getMock('\OC\Server', array()); + $api->expects($this->any())->method('getServer') + ->will($this->returnValue($serverMock)); $sec = new SecurityMiddleware($api, $this->request); $sec->beforeController('\OC\AppFramework\Middleware\Security\SecurityMiddlewareTest', $method); @@ -80,7 +75,7 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { * @NoCSRFRequired */ public function testSetNavigationEntry(){ - $this->checkNavEntry('testSetNavigationEntry', true); + $this->checkNavEntry('testSetNavigationEntry'); } @@ -215,9 +210,33 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { /** * @PublicPage + * @expectedException \OC\AppFramework\Middleware\Security\SecurityException */ public function testCsrfCheck(){ - $this->securityCheck('testCsrfCheck', 'passesCSRFCheck'); + $api = $this->getAPI(); + $request = $this->getMock('OC\AppFramework\Http\Request', array('passesCSRFCheck')); + $request->expects($this->once()) + ->method('passesCSRFCheck') + ->will($this->returnValue(false)); + + $sec = new SecurityMiddleware($api, $request); + $sec->beforeController('\OC\AppFramework\Middleware\Security\SecurityMiddlewareTest', 'testCsrfCheck'); + } + + + /** + * @PublicPage + * @NoCSRFRequired + */ + public function testNoCsrfCheck(){ + $api = $this->getAPI(); + $request = $this->getMock('OC\AppFramework\Http\Request', array('passesCSRFCheck')); + $request->expects($this->never()) + ->method('passesCSRFCheck') + ->will($this->returnValue(false)); + + $sec = new SecurityMiddleware($api, $request); + $sec->beforeController('\OC\AppFramework\Middleware\Security\SecurityMiddlewareTest', 'testNoCsrfCheck'); } @@ -225,7 +244,14 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { * @PublicPage */ public function testFailCsrfCheck(){ - $this->securityCheck('testFailCsrfCheck', 'passesCSRFCheck', true); + $api = $this->getAPI(); + $request = $this->getMock('OC\AppFramework\Http\Request', array('passesCSRFCheck')); + $request->expects($this->once()) + ->method('passesCSRFCheck') + ->will($this->returnValue(true)); + + $sec = new SecurityMiddleware($api, $request); + $sec->beforeController('\OC\AppFramework\Middleware\Security\SecurityMiddlewareTest', 'testFailCsrfCheck'); } @@ -271,8 +297,12 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { public function testAfterExceptionReturnsRedirect(){ - $api = $this->getMock('OC\AppFramework\Core\API', array(), array('test')); - $this->controller = $this->getMock('OC\AppFramework\Controller\Controller', + $api = $this->getMock('OC\AppFramework\DependencyInjection\DIContainer', array(), array('test')); + $serverMock = $this->getMock('\OC\Server', array('getNavigationManager')); + $api->expects($this->once())->method('getServer') + ->will($this->returnValue($serverMock)); + + $this->controller = $this->getMock('OCP\AppFramework\Controller', array(), array($api, new Request())); $this->request = new Request( diff --git a/tests/lib/avatar.php b/tests/lib/avatar.php index 1c5195f8eb1952d6174c8c7c04770509ee0cbfb0..0334639afa861174282f6b2235a16e0ba18ae6d2 100644 --- a/tests/lib/avatar.php +++ b/tests/lib/avatar.php @@ -1,23 +1,45 @@ * This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. */ - class Test_Avatar extends PHPUnit_Framework_TestCase { + private $user; + + public function setUp() { + $this->user = uniqid(); + $storage = new \OC\Files\Storage\Temporary(array()); + \OC\Files\Filesystem::mount($storage, array(), '/' . $this->user . '/'); + } + public function testAvatar() { - $this->markTestSkipped("Setting custom avatars with encryption doesn't work yet"); - $avatar = new \OC_Avatar(\OC_User::getUser()); + $avatar = new \OC_Avatar($this->user); $this->assertEquals(false, $avatar->get()); - $expected = new OC_Image(\OC::$SERVERROOT.'/tests/data/testavatar.png'); + $expected = new OC_Image(\OC::$SERVERROOT . '/tests/data/testavatar.png'); + $expected->resize(64); $avatar->set($expected->data()); + $this->assertEquals($expected->data(), $avatar->get()->data()); + + $avatar->remove(); + $this->assertEquals(false, $avatar->get()); + } + + public function testAvatarApi() { + $avatarManager = \OC::$server->getAvatarManager(); + $avatar = $avatarManager->getAvatar($this->user); + + $this->assertEquals(false, $avatar->get()); + + $expected = new OC_Image(\OC::$SERVERROOT . '/tests/data/testavatar.png'); $expected->resize(64); + $avatar->set($expected->data()); $this->assertEquals($expected->data(), $avatar->get()->data()); $avatar->remove(); diff --git a/tests/lib/backgroundjob/dummyjoblist.php b/tests/lib/backgroundjob/dummyjoblist.php index d91d6b344b5f05d2c8410675c0d15970b299a064..e1579c273bb9833044ee5bbe82544fa291525ad9 100644 --- a/tests/lib/backgroundjob/dummyjoblist.php +++ b/tests/lib/backgroundjob/dummyjoblist.php @@ -8,9 +8,6 @@ namespace Test\BackgroundJob; -class JobRun extends \Exception { -} - /** * Class DummyJobList * diff --git a/tests/lib/backgroundjob/job.php b/tests/lib/backgroundjob/job.php new file mode 100644 index 0000000000000000000000000000000000000000..7d66fa772d2875698515e5c6017ca617c323ada6 --- /dev/null +++ b/tests/lib/backgroundjob/job.php @@ -0,0 +1,59 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace Test\BackgroundJob; + + +class TestJob extends \OC\BackgroundJob\Job { + private $testCase; + + /** + * @var callable $callback + */ + private $callback; + + /** + * @param Job $testCase + * @param callable $callback + */ + public function __construct($testCase, $callback) { + $this->testCase = $testCase; + $this->callback = $callback; + } + + public function run($argument) { + $this->testCase->markRun(); + $callback = $this->callback; + $callback($argument); + } +} + +class Job extends \PHPUnit_Framework_TestCase { + private $run = false; + + public function setUp() { + $this->run = false; + } + + public function testRemoveAfterException() { + $jobList = new DummyJobList(); + $job = new TestJob($this, function () { + throw new \Exception(); + }); + $jobList->add($job); + + $this->assertCount(1, $jobList->getAll()); + $job->execute($jobList); + $this->assertTrue($this->run); + $this->assertCount(0, $jobList->getAll()); + } + + public function markRun() { + $this->run = true; + } +} diff --git a/tests/lib/backgroundjob/queuedjob.php b/tests/lib/backgroundjob/queuedjob.php index 1d373473cd7ae1b7e5c0469363e7fbe519fa042c..19c1b28a50723a4f9776bfc452cd69cf5a0dae26 100644 --- a/tests/lib/backgroundjob/queuedjob.php +++ b/tests/lib/backgroundjob/queuedjob.php @@ -9,8 +9,17 @@ namespace Test\BackgroundJob; class TestQueuedJob extends \OC\BackgroundJob\QueuedJob { + private $testCase; + + /** + * @param QueuedJob $testCase + */ + public function __construct($testCase) { + $this->testCase = $testCase; + } + public function run($argument) { - throw new JobRun(); //throw an exception so we can detect if this function is called + $this->testCase->markRun(); } } @@ -24,19 +33,22 @@ class QueuedJob extends \PHPUnit_Framework_TestCase { */ private $job; + private $jobRun = false; + + public function markRun() { + $this->jobRun = true; + } + public function setup() { $this->jobList = new DummyJobList(); - $this->job = new TestQueuedJob(); + $this->job = new TestQueuedJob($this); $this->jobList->add($this->job); + $this->jobRun = false; } public function testJobShouldBeRemoved() { - try { - $this->assertTrue($this->jobList->has($this->job, null)); - $this->job->execute($this->jobList); - $this->fail("job should have been run"); - } catch (JobRun $e) { - $this->assertFalse($this->jobList->has($this->job, null)); - } + $this->assertTrue($this->jobList->has($this->job, null)); + $this->job->execute($this->jobList); + $this->assertTrue($this->jobRun); } } diff --git a/tests/lib/backgroundjob/timedjob.php b/tests/lib/backgroundjob/timedjob.php index f3c3eb4d0ddbbeddb618c34b73a975ff77631fc3..646a2607ef33bd73eb8cb6013bf782ce9c64b63a 100644 --- a/tests/lib/backgroundjob/timedjob.php +++ b/tests/lib/backgroundjob/timedjob.php @@ -9,12 +9,18 @@ namespace Test\BackgroundJob; class TestTimedJob extends \OC\BackgroundJob\TimedJob { - public function __construct() { + private $testCase; + + /** + * @param TimedJob $testCase + */ + public function __construct($testCase) { $this->setInterval(10); + $this->testCase = $testCase; } public function run($argument) { - throw new JobRun(); //throw an exception so we can detect if this function is called + $this->testCase->markRun(); } } @@ -28,44 +34,37 @@ class TimedJob extends \PHPUnit_Framework_TestCase { */ private $job; + private $jobRun = false; + + public function markRun() { + $this->jobRun = true; + } + public function setup() { $this->jobList = new DummyJobList(); - $this->job = new TestTimedJob(); + $this->job = new TestTimedJob($this); $this->jobList->add($this->job); + $this->jobRun = false; } public function testShouldRunAfterInterval() { $this->job->setLastRun(time() - 12); - try { - $this->job->execute($this->jobList); - $this->fail("job should have run"); - } catch (JobRun $e) { - } - $this->assertTrue(true); + $this->job->execute($this->jobList); + $this->assertTrue($this->jobRun); } public function testShouldNotRunWithinInterval() { $this->job->setLastRun(time() - 5); - try { - $this->job->execute($this->jobList); - } catch (JobRun $e) { - $this->fail("job should not have run"); - } - $this->assertTrue(true); + $this->job->execute($this->jobList); + $this->assertFalse($this->jobRun); } public function testShouldNotTwice() { $this->job->setLastRun(time() - 15); - try { - $this->job->execute($this->jobList); - $this->fail("job should have run the first time"); - } catch (JobRun $e) { - try { - $this->job->execute($this->jobList); - } catch (JobRun $e) { - $this->fail("job should not have run the second time"); - } - } - $this->assertTrue(true); + $this->job->execute($this->jobList); + $this->assertTrue($this->jobRun); + $this->jobRun = false; + $this->job->execute($this->jobList); + $this->assertFalse($this->jobRun); } } diff --git a/tests/lib/connector/sabre/aborteduploaddetectionplugin.php b/tests/lib/connector/sabre/aborteduploaddetectionplugin.php index bef0e4c4d7d13aab36fe1e1f8446da8238ce7e9c..201f12638679c2f1edeba600d1f11b8c983420fd 100644 --- a/tests/lib/connector/sabre/aborteduploaddetectionplugin.php +++ b/tests/lib/connector/sabre/aborteduploaddetectionplugin.php @@ -37,10 +37,11 @@ class Test_OC_Connector_Sabre_AbortedUploadDetectionPlugin extends PHPUnit_Frame /** * @dataProvider verifyContentLengthProvider */ - public function testVerifyContentLength($fileSize, $headers) + public function testVerifyContentLength($method, $fileSize, $headers) { $this->plugin->fileView = $this->buildFileViewMock($fileSize); + $headers['REQUEST_METHOD'] = $method; $this->server->httpRequest = new Sabre_HTTP_Request($headers); $this->plugin->verifyContentLength('foo.txt'); $this->assertTrue(true); @@ -50,30 +51,33 @@ class Test_OC_Connector_Sabre_AbortedUploadDetectionPlugin extends PHPUnit_Frame * @dataProvider verifyContentLengthFailedProvider * @expectedException Sabre_DAV_Exception_BadRequest */ - public function testVerifyContentLengthFailed($fileSize, $headers) + public function testVerifyContentLengthFailed($method, $fileSize, $headers) { $this->plugin->fileView = $this->buildFileViewMock($fileSize); // we expect unlink to be called $this->plugin->fileView->expects($this->once())->method('unlink'); - + $headers['REQUEST_METHOD'] = $method; $this->server->httpRequest = new Sabre_HTTP_Request($headers); $this->plugin->verifyContentLength('foo.txt'); } public function verifyContentLengthProvider() { return array( - array(1024, array()), - array(1024, array('HTTP_X_EXPECTED_ENTITY_LENGTH' => '1024')), - array(512, array('HTTP_CONTENT_LENGTH' => '512')), + array('PUT', 1024, array()), + array('PUT', 1024, array('HTTP_X_EXPECTED_ENTITY_LENGTH' => '1024')), + array('PUT', 512, array('HTTP_CONTENT_LENGTH' => '512')), + array('LOCK', 1024, array()), + array('LOCK', 1024, array('HTTP_X_EXPECTED_ENTITY_LENGTH' => '1024')), + array('LOCK', 512, array('HTTP_CONTENT_LENGTH' => '512')), ); } public function verifyContentLengthFailedProvider() { return array( - array(1025, array('HTTP_X_EXPECTED_ENTITY_LENGTH' => '1024')), - array(525, array('HTTP_CONTENT_LENGTH' => '512')), + array('PUT', 1025, array('HTTP_X_EXPECTED_ENTITY_LENGTH' => '1024')), + array('PUT', 525, array('HTTP_CONTENT_LENGTH' => '512')), ); } @@ -87,7 +91,7 @@ class Test_OC_Connector_Sabre_AbortedUploadDetectionPlugin extends PHPUnit_Frame } private function buildFileViewMock($fileSize) { - // mock filesysten + // mock filesystem $view = $this->getMock('\OC\Files\View', array('filesize', 'unlink'), array(), '', FALSE); $view->expects($this->any())->method('filesize')->withAnyParameters()->will($this->returnValue($fileSize)); diff --git a/tests/lib/connector/sabre/directory.php b/tests/lib/connector/sabre/directory.php new file mode 100644 index 0000000000000000000000000000000000000000..c501521b601c719c814a2ef15983d92518b5728c --- /dev/null +++ b/tests/lib/connector/sabre/directory.php @@ -0,0 +1,34 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_OC_Connector_Sabre_Directory extends PHPUnit_Framework_TestCase { + + /** + * @expectedException Sabre_DAV_Exception_Forbidden + */ + public function testCreateSharedFileFails() { + $dir = new OC_Connector_Sabre_Directory(''); + $dir->createFile('Shared'); + } + + /** + * @expectedException Sabre_DAV_Exception_Forbidden + */ + public function testCreateSharedFolderFails() { + $dir = new OC_Connector_Sabre_Directory(''); + $dir->createDirectory('Shared'); + } + + /** + * @expectedException Sabre_DAV_Exception_Forbidden + */ + public function testDeleteSharedFolderFails() { + $dir = new OC_Connector_Sabre_Directory('Shared'); + $dir->delete(); + } +} diff --git a/tests/lib/connector/sabre/file.php b/tests/lib/connector/sabre/file.php new file mode 100644 index 0000000000000000000000000000000000000000..e1fed0384c6f7b0678f8c5d1c205adc48d99e79c --- /dev/null +++ b/tests/lib/connector/sabre/file.php @@ -0,0 +1,45 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_OC_Connector_Sabre_File extends PHPUnit_Framework_TestCase { + + /** + * @expectedException Sabre_DAV_Exception + */ + public function testSimplePutFails() { + // setup + $file = new OC_Connector_Sabre_File('/test.txt'); + $file->fileView = $this->getMock('\OC\Files\View', array('file_put_contents'), array(), '', FALSE); + $file->fileView->expects($this->any())->method('file_put_contents')->withAnyParameters()->will($this->returnValue(false)); + + // action + $etag = $file->put('test data'); + } + + /** + * @expectedException Sabre_DAV_Exception + */ + public function testSimplePutFailsOnRename() { + // setup + $file = new OC_Connector_Sabre_File('/test.txt'); + $file->fileView = $this->getMock('\OC\Files\View', array('file_put_contents', 'rename'), array(), '', FALSE); + $file->fileView->expects($this->any())->method('file_put_contents')->withAnyParameters()->will($this->returnValue(true)); + $file->fileView->expects($this->any())->method('rename')->withAnyParameters()->will($this->returnValue(false)); + + // action + $etag = $file->put('test data'); + } + + /** + * @expectedException Sabre_DAV_Exception_Forbidden + */ + public function testDeleteSharedFails() { + $file = new OC_Connector_Sabre_File('Shared'); + $file->delete(); + } +} diff --git a/tests/lib/connector/sabre/objecttree.php b/tests/lib/connector/sabre/objecttree.php index 1d76bb596766035b264b4ebf9ce67efd6e615460..e32f2365f9515ff0e1f045ae328bc8e9ae7f3bd4 100644 --- a/tests/lib/connector/sabre/objecttree.php +++ b/tests/lib/connector/sabre/objecttree.php @@ -15,8 +15,9 @@ use Sabre_DAV_Exception_Forbidden; class TestDoubleFileView extends \OC\Files\View{ - public function __construct($updatables, $canRename = true) { + public function __construct($updatables, $deletables, $canRename = true) { $this->updatables = $updatables; + $this->deletables = $deletables; $this->canRename = $canRename; } @@ -24,6 +25,10 @@ class TestDoubleFileView extends \OC\Files\View{ return $this->updatables[$path]; } + public function isDeletable($path) { + return $this->deletables[$path]; + } + public function rename($path1, $path2) { return $this->canRename; } @@ -35,31 +40,32 @@ class ObjectTree extends PHPUnit_Framework_TestCase { * @dataProvider moveFailedProvider * @expectedException Sabre_DAV_Exception_Forbidden */ - public function testMoveFailed($source, $dest, $updatables) { - $this->moveTest($source, $dest, $updatables); + public function testMoveFailed($source, $dest, $updatables, $deletables) { + $this->moveTest($source, $dest, $updatables, $deletables); } /** * @dataProvider moveSuccessProvider */ - public function testMoveSuccess($source, $dest, $updatables) { - $this->moveTest($source, $dest, $updatables); + public function testMoveSuccess($source, $dest, $updatables, $deletables) { + $this->moveTest($source, $dest, $updatables, $deletables); $this->assertTrue(true); } function moveFailedProvider() { return array( - array('a/b', 'a/c', array('a' => false, 'a/b' => false, 'a/c' => false)), - array('a/b', 'b/b', array('a' => false, 'a/b' => false, 'b' => false, 'b/b' => false)), - array('a/b', 'b/b', array('a' => false, 'a/b' => true, 'b' => false, 'b/b' => false)), - array('a/b', 'b/b', array('a' => true, 'a/b' => true, 'b' => false, 'b/b' => false)), + array('a/b', 'a/c', array('a' => false, 'a/b' => false, 'a/c' => false), array()), + array('a/b', 'b/b', array('a' => false, 'a/b' => false, 'b' => false, 'b/b' => false), array()), + array('a/b', 'b/b', array('a' => false, 'a/b' => true, 'b' => false, 'b/b' => false), array()), + array('a/b', 'b/b', array('a' => true, 'a/b' => true, 'b' => false, 'b/b' => false), array()), + array('a/b', 'b/b', array('a' => true, 'a/b' => true, 'b' => true, 'b/b' => false), array('a/b' => false)), ); } function moveSuccessProvider() { return array( - array('a/b', 'a/c', array('a' => false, 'a/b' => true, 'a/c' => false)), - array('a/b', 'b/b', array('a' => true, 'a/b' => true, 'b' => true, 'b/b' => false)), + array('a/b', 'a/c', array('a' => false, 'a/b' => true, 'a/c' => false), array()), + array('a/b', 'b/b', array('a' => true, 'a/b' => true, 'b' => true, 'b/b' => false), array('a/b' => true)), ); } @@ -68,7 +74,7 @@ class ObjectTree extends PHPUnit_Framework_TestCase { * @param $dest * @param $updatables */ - private function moveTest($source, $dest, $updatables) { + private function moveTest($source, $dest, $updatables, $deletables) { $rootDir = new OC_Connector_Sabre_Directory(''); $objectTree = $this->getMock('\OC\Connector\Sabre\ObjectTree', array('nodeExists', 'getNodeForPath'), @@ -80,7 +86,7 @@ class ObjectTree extends PHPUnit_Framework_TestCase { ->will($this->returnValue(false)); /** @var $objectTree \OC\Connector\Sabre\ObjectTree */ - $objectTree->fileView = new TestDoubleFileView($updatables); + $objectTree->fileView = new TestDoubleFileView($updatables, $deletables); $objectTree->move($source, $dest); } diff --git a/tests/lib/db.php b/tests/lib/db.php index c87bee4ab99781cad34878f1622d7c306607a9e7..f0b271a36f1e7b71dd56f495e98b91f0e5fff618 100644 --- a/tests/lib/db.php +++ b/tests/lib/db.php @@ -12,6 +12,21 @@ class Test_DB extends PHPUnit_Framework_TestCase { protected static $schema_file = 'static://test_db_scheme'; protected $test_prefix; + /** + * @var string + */ + private $table1; + + /** + * @var string + */ + private $table2; + + /** + * @var string + */ + private $table3; + public function setUp() { $dbfile = OC::$SERVERROOT.'/tests/data/db_structure.xml'; @@ -25,6 +40,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { $this->table1 = $this->test_prefix.'cntcts_addrsbks'; $this->table2 = $this->test_prefix.'cntcts_cards'; $this->table3 = $this->test_prefix.'vcategory'; + $this->table4 = $this->test_prefix.'decimal'; } public function tearDown() { @@ -121,10 +137,10 @@ class Test_DB extends PHPUnit_Framework_TestCase { $query = OC_DB::prepare('SELECT `fullname`, `uri`, `carddata` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array($uri)); $this->assertTrue((bool)$result); - $row = $result->fetchRow(); - $this->assertArrayHasKey('carddata', $row); - $this->assertEquals($carddata, $row['carddata']); - $this->assertEquals(1, $result->numRows()); + $rowset = $result->fetchAll(); + $this->assertEquals(1, count($rowset)); + $this->assertArrayHasKey('carddata', $rowset[0]); + $this->assertEquals($carddata, $rowset[0]['carddata']); // Try to insert a new row $result = OC_DB::insertIfNotExist('*PREFIX*'.$this->table2, @@ -137,50 +153,51 @@ class Test_DB extends PHPUnit_Framework_TestCase { $query = OC_DB::prepare('SELECT `fullname`, `uri`, `carddata` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array($uri)); $this->assertTrue((bool)$result); - $row = $result->fetchRow(); - $this->assertArrayHasKey('carddata', $row); // Test that previously inserted data isn't overwritten - $this->assertEquals($carddata, $row['carddata']); // And that a new row hasn't been inserted. - $this->assertEquals(1, $result->numRows()); - + $rowset = $result->fetchAll(); + $this->assertEquals(1, count($rowset)); + $this->assertArrayHasKey('carddata', $rowset[0]); + $this->assertEquals($carddata, $rowset[0]['carddata']); } - /** - * Tests whether the database is configured so it accepts and returns dates - * in the expected format. - */ - public function testTimestampDateFormat() { - $table = '*PREFIX*'.$this->test_prefix.'timestamp'; - $column = 'timestamptest'; - - $expectedFormat = 'Y-m-d H:i:s'; - $expected = new \DateTime; - - $query = OC_DB::prepare("INSERT INTO `$table` (`$column`) VALUES (?)"); - $result = $query->execute(array($expected->format($expectedFormat))); - $this->assertEquals( - 1, - $result, - "Database failed to accept dates in the format '$expectedFormat'." - ); - - $id = OC_DB::insertid($table); - $query = OC_DB::prepare("SELECT * FROM `$table` WHERE `id` = ?"); - $result = $query->execute(array($id)); - $row = $result->fetchRow(); + public function testUtf8Data() { + $table = "*PREFIX*{$this->table2}"; + $expected = "Ћö雙喜\xE2\x80\xA2"; + + $query = OC_DB::prepare("INSERT INTO `$table` (`fullname`, `uri`, `carddata`) VALUES (?, ?, ?)"); + $result = $query->execute(array($expected, 'uri_1', 'This is a vCard')); + $this->assertEquals(1, $result); - $actual = \DateTime::createFromFormat($expectedFormat, $row[$column]); - $this->assertInstanceOf( - '\DateTime', - $actual, - "Database failed to return dates in the format '$expectedFormat'." - ); - - $this->assertEquals( - $expected, - $actual, - 'Failed asserting that the returned date is the same as the inserted.' - ); + $actual = OC_DB::prepare("SELECT `fullname` FROM `$table`")->execute()->fetchOne(); + $this->assertSame($expected, $actual); } + + public function testDecimal() { + $table = "*PREFIX*" . $this->table4; + $rowname = 'decimaltest'; + + // Insert, select and delete decimal(12,2) values + $inserts = array('1337133713.37', '1234567890'); + $expects = array('1337133713.37', '1234567890.00'); + + for ($i = 0; $i < count($inserts); $i++) { + $insert = $inserts[$i]; + $expect = $expects[$i]; + + $query = OC_DB::prepare('INSERT INTO `' . $table . '` (`' . $rowname . '`) VALUES (?)'); + $result = $query->execute(array($insert)); + $this->assertEquals(1, $result); + $query = OC_DB::prepare('SELECT `' . $rowname . '` FROM `' . $table . '`'); + $result = $query->execute(); + $this->assertTrue((bool)$result); + $row = $result->fetchRow(); + $this->assertArrayHasKey($rowname, $row); + $this->assertEquals($expect, $row[$rowname]); + $query = OC_DB::prepare('DELETE FROM `' . $table . '`'); + $result = $query->execute(); + $this->assertTrue((bool)$result); + } + } + } diff --git a/tests/lib/db/mdb2schemareader.php b/tests/lib/db/mdb2schemareader.php index b9b241194fda920ba423e16d7a892fd3e0b2e90e..f08996cbeafd7eaff64f01d78ba43b566288d4ac 100644 --- a/tests/lib/db/mdb2schemareader.php +++ b/tests/lib/db/mdb2schemareader.php @@ -39,7 +39,7 @@ class MDB2SchemaReader extends \PHPUnit_Framework_TestCase { $this->assertCount(1, $schema->getTables()); $table = $schema->getTable('test_table'); - $this->assertCount(7, $table->getColumns()); + $this->assertCount(8, $table->getColumns()); $this->assertEquals(4, $table->getColumn('integerfield')->getLength()); $this->assertTrue($table->getColumn('integerfield')->getAutoincrement()); @@ -57,18 +57,21 @@ class MDB2SchemaReader extends \PHPUnit_Framework_TestCase { $this->assertNull($table->getColumn('clobfield')->getLength()); $this->assertFalse($table->getColumn('clobfield')->getAutoincrement()); - $this->assertSame('', $table->getColumn('clobfield')->getDefault()); + $this->assertNull($table->getColumn('clobfield')->getDefault()); $this->assertTrue($table->getColumn('clobfield')->getNotnull()); $this->assertInstanceOf('Doctrine\DBAL\Types\TextType', $table->getColumn('clobfield')->getType()); $this->assertNull($table->getColumn('booleanfield')->getLength()); $this->assertFalse($table->getColumn('booleanfield')->getAutoincrement()); - $this->assertFalse($table->getColumn('booleanfield')->getDefault()); + $this->assertNull($table->getColumn('booleanfield')->getDefault()); $this->assertInstanceOf('Doctrine\DBAL\Types\BooleanType', $table->getColumn('booleanfield')->getType()); $this->assertTrue($table->getColumn('booleanfield_true')->getDefault()); $this->assertFalse($table->getColumn('booleanfield_false')->getDefault()); + $this->assertEquals(12, $table->getColumn('decimalfield_precision_scale')->getPrecision()); + $this->assertEquals(2, $table->getColumn('decimalfield_precision_scale')->getScale()); + $this->assertCount(2, $table->getIndexes()); $this->assertEquals(array('integerfield'), $table->getIndex('primary')->getUnquotedColumns()); $this->assertTrue($table->getIndex('primary')->isPrimary()); diff --git a/tests/lib/db/testschema.xml b/tests/lib/db/testschema.xml index 509b55ee81fd400ea1e2b38aded90a4ebe47dfce..dfca920a0efeee6b4ba2e8d839cae67d69ab98b4 100644 --- a/tests/lib/db/testschema.xml +++ b/tests/lib/db/testschema.xml @@ -53,6 +53,12 @@ boolean false + + decimalfield_precision_scale + decimal + 12 + 2 + index_primary diff --git a/tests/lib/dbschema.php b/tests/lib/dbschema.php index 7de90c047caa091bb370e8a642f8933b835efa6c..4a7b7f7aac0ef4ecc70c7f78fa1de82acfdbab04 100644 --- a/tests/lib/dbschema.php +++ b/tests/lib/dbschema.php @@ -103,7 +103,7 @@ class Test_DBSchema extends PHPUnit_Framework_TestCase { break; } - $name = $result->fetchOne(); //FIXME checking with '$result->numRows() === 1' does not seem to work? + $name = $result->fetchOne(); if ($name === $table) { return true; } else { diff --git a/tests/lib/files/cache/cache.php b/tests/lib/files/cache/cache.php index 247373a5cb9fd641b8e8e07a1f2f793650313bd7..5d87693247986b28ec9ce895c97fcbd2076327a9 100644 --- a/tests/lib/files/cache/cache.php +++ b/tests/lib/files/cache/cache.php @@ -18,11 +18,11 @@ class LongId extends \OC\Files\Storage\Temporary { class Cache extends \PHPUnit_Framework_TestCase { /** - * @var \OC\Files\Storage\Temporary $storage; + * @var \OC\Files\Storage\Temporary $storage ; */ private $storage; /** - * @var \OC\Files\Storage\Temporary $storage2; + * @var \OC\Files\Storage\Temporary $storage2 ; */ private $storage2; @@ -137,6 +137,79 @@ class Cache extends \PHPUnit_Framework_TestCase { $this->assertFalse($this->cache->inCache('folder/bar')); } + public function testEncryptedFolder() { + $file1 = 'folder'; + $file2 = 'folder/bar'; + $file3 = 'folder/foo'; + $data1 = array('size' => 100, 'mtime' => 50, 'mimetype' => 'httpd/unix-directory'); + $fileData = array(); + $fileData['bar'] = array('size' => 1000, 'unencrypted_size' => 900, 'encrypted' => 1, 'mtime' => 20, 'mimetype' => 'foo/file'); + $fileData['foo'] = array('size' => 20, 'unencrypted_size' => 16, 'encrypted' => 1, 'mtime' => 25, 'mimetype' => 'foo/file'); + + $this->cache->put($file1, $data1); + $this->cache->put($file2, $fileData['bar']); + $this->cache->put($file3, $fileData['foo']); + + $content = $this->cache->getFolderContents($file1); + $this->assertEquals(count($content), 2); + foreach ($content as $cachedData) { + $data = $fileData[$cachedData['name']]; + // indirect retrieval swaps unencrypted_size and size + $this->assertEquals($data['unencrypted_size'], $cachedData['size']); + } + + $file4 = 'folder/unkownSize'; + $fileData['unkownSize'] = array('size' => -1, 'mtime' => 25, 'mimetype' => 'foo/file'); + $this->cache->put($file4, $fileData['unkownSize']); + + $this->assertEquals(-1, $this->cache->calculateFolderSize($file1)); + + $fileData['unkownSize'] = array('size' => 5, 'mtime' => 25, 'mimetype' => 'foo/file'); + $this->cache->put($file4, $fileData['unkownSize']); + + $this->assertEquals(916, $this->cache->calculateFolderSize($file1)); + // direct cache entry retrieval returns the original values + $entry = $this->cache->get($file1); + $this->assertEquals(1025, $entry['size']); + $this->assertEquals(916, $entry['unencrypted_size']); + + $this->cache->remove($file2); + $this->cache->remove($file3); + $this->cache->remove($file4); + $this->assertEquals(0, $this->cache->calculateFolderSize($file1)); + + $this->cache->remove('folder'); + $this->assertFalse($this->cache->inCache('folder/foo')); + $this->assertFalse($this->cache->inCache('folder/bar')); + } + + public function testRootFolderSizeForNonHomeStorage() { + $dir1 = 'knownsize'; + $dir2 = 'unknownsize'; + $fileData = array(); + $fileData[''] = array('size' => -1, 'mtime' => 20, 'mimetype' => 'httpd/unix-directory'); + $fileData[$dir1] = array('size' => 1000, 'mtime' => 20, 'mimetype' => 'httpd/unix-directory'); + $fileData[$dir2] = array('size' => -1, 'mtime' => 25, 'mimetype' => 'httpd/unix-directory'); + + $this->cache->put('', $fileData['']); + $this->cache->put($dir1, $fileData[$dir1]); + $this->cache->put($dir2, $fileData[$dir2]); + + $this->assertTrue($this->cache->inCache($dir1)); + $this->assertTrue($this->cache->inCache($dir2)); + + // check that root size ignored the unknown sizes + $this->assertEquals(-1, $this->cache->calculateFolderSize('')); + + // clean up + $this->cache->remove(''); + $this->cache->remove($dir1); + $this->cache->remove($dir2); + + $this->assertFalse($this->cache->inCache($dir1)); + $this->assertFalse($this->cache->inCache($dir2)); + } + function testStatus() { $this->assertEquals(\OC\Files\Cache\Cache::NOT_FOUND, $this->cache->getStatus('foo')); $this->cache->put('foo', array('size' => -1)); @@ -247,14 +320,14 @@ class Cache extends \PHPUnit_Framework_TestCase { $data = array('size' => 1000, 'mtime' => 20, 'mimetype' => 'foo/file'); $this->cache->put('foo', $data); $cachedData = $this->cache->get('foo'); - $this->assertEquals($data['mtime'], $cachedData['storage_mtime']);//if no storage_mtime is saved, mtime should be used + $this->assertEquals($data['mtime'], $cachedData['storage_mtime']); //if no storage_mtime is saved, mtime should be used - $this->cache->put('foo', array('storage_mtime' => 30));//when setting storage_mtime, mtime is also set + $this->cache->put('foo', array('storage_mtime' => 30)); //when setting storage_mtime, mtime is also set $cachedData = $this->cache->get('foo'); $this->assertEquals(30, $cachedData['storage_mtime']); $this->assertEquals(30, $cachedData['mtime']); - $this->cache->put('foo', array('mtime' => 25));//setting mtime does not change storage_mtime + $this->cache->put('foo', array('mtime' => 25)); //setting mtime does not change storage_mtime $cachedData = $this->cache->get('foo'); $this->assertEquals(30, $cachedData['storage_mtime']); $this->assertEquals(25, $cachedData['mtime']); @@ -295,18 +368,18 @@ class Cache extends \PHPUnit_Framework_TestCase { $this->assertGreaterThan(0, $cacheMock->put('folder', $data)); // put un-normalized folder - $this->assertFalse($cacheMock->get('folder/' .$folderWith0308)); - $this->assertGreaterThan(0, $cacheMock->put('folder/' .$folderWith0308, $data)); + $this->assertFalse($cacheMock->get('folder/' . $folderWith0308)); + $this->assertGreaterThan(0, $cacheMock->put('folder/' . $folderWith0308, $data)); // get un-normalized folder by name - $unNormalizedFolderName = $cacheMock->get('folder/' .$folderWith0308); + $unNormalizedFolderName = $cacheMock->get('folder/' . $folderWith0308); // check if database layer normalized the folder name (this should not happen) $this->assertEquals($folderWith0308, $unNormalizedFolderName['name']); // put normalized folder $this->assertFalse($cacheMock->get('folder/' . $folderWith00F6)); - $this->assertGreaterThan(0, $cacheMock->put('folder/' .$folderWith00F6, $data)); + $this->assertGreaterThan(0, $cacheMock->put('folder/' . $folderWith00F6, $data)); // this is our bug, we have two different hashes with the same name (Schön) $this->assertEquals(2, count($cacheMock->getFolderContents('folder'))); @@ -317,7 +390,7 @@ class Cache extends \PHPUnit_Framework_TestCase { */ public function testWithNormalizer() { - if(!class_exists('Patchwork\PHP\Shim\Normalizer')) { + if (!class_exists('Patchwork\PHP\Shim\Normalizer')) { $this->markTestSkipped('The 3rdparty Normalizer extension is not available.'); return; } @@ -335,18 +408,18 @@ class Cache extends \PHPUnit_Framework_TestCase { $this->assertGreaterThan(0, $this->cache->put('folder', $data)); // put un-normalized folder - $this->assertFalse($this->cache->get('folder/' .$folderWith0308)); - $this->assertGreaterThan(0, $this->cache->put('folder/' .$folderWith0308, $data)); + $this->assertFalse($this->cache->get('folder/' . $folderWith0308)); + $this->assertGreaterThan(0, $this->cache->put('folder/' . $folderWith0308, $data)); // get un-normalized folder by name - $unNormalizedFolderName = $this->cache->get('folder/' .$folderWith0308); + $unNormalizedFolderName = $this->cache->get('folder/' . $folderWith0308); // check if folder name was normalized $this->assertEquals($folderWith00F6, $unNormalizedFolderName['name']); // put normalized folder $this->assertTrue(is_array($this->cache->get('folder/' . $folderWith00F6))); - $this->assertGreaterThan(0, $this->cache->put('folder/' .$folderWith00F6, $data)); + $this->assertGreaterThan(0, $this->cache->put('folder/' . $folderWith00F6, $data)); // at this point we should have only one folder named "Schön" $this->assertEquals(1, count($this->cache->getFolderContents('folder'))); diff --git a/tests/lib/files/cache/homecache.php b/tests/lib/files/cache/homecache.php new file mode 100644 index 0000000000000000000000000000000000000000..87fd0dba4c6466e383731b02d508dd5927b7620f --- /dev/null +++ b/tests/lib/files/cache/homecache.php @@ -0,0 +1,127 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace Test\Files\Cache; + +class DummyUser extends \OC\User\User { + /** + * @var string $home + */ + private $home; + + /** + * @var string $uid + */ + private $uid; + + public function __construct($uid, $home) { + $this->home = $home; + $this->uid = $uid; + } + + /** + * @return string + */ + public function getHome() { + return $this->home; + } + + /** + * @return string + */ + public function getUID() { + return $this->uid; + } +} + +class HomeCache extends \PHPUnit_Framework_TestCase { + /** + * @var \OC\Files\Storage\Home $storage + */ + private $storage; + + /** + * @var \OC\Files\Cache\HomeCache $cache + */ + private $cache; + + /** + * @var \OC\User\User $user + */ + private $user; + + public function setUp() { + $this->user = new DummyUser('foo', \OC_Helper::tmpFolder()); + $this->storage = new \OC\Files\Storage\Home(array('user' => $this->user)); + $this->cache = $this->storage->getCache(); + } + + /** + * Tests that the root and files folder size calculation ignores the subdirs + * that have an unknown size. This makes sure that quota calculation still + * works as it's based on the "files" folder size. + */ + public function testRootFolderSizeIgnoresUnknownUpdate() { + $dir1 = 'files/knownsize'; + $dir2 = 'files/unknownsize'; + $fileData = array(); + $fileData[''] = array('size' => -1, 'mtime' => 20, 'mimetype' => 'httpd/unix-directory'); + $fileData['files'] = array('size' => -1, 'mtime' => 20, 'mimetype' => 'httpd/unix-directory'); + $fileData[$dir1] = array('size' => 1000, 'mtime' => 20, 'mimetype' => 'httpd/unix-directory'); + $fileData[$dir2] = array('size' => -1, 'mtime' => 25, 'mimetype' => 'httpd/unix-directory'); + + $this->cache->put('', $fileData['']); + $this->cache->put('files', $fileData['files']); + $this->cache->put($dir1, $fileData[$dir1]); + $this->cache->put($dir2, $fileData[$dir2]); + + $this->assertTrue($this->cache->inCache('files')); + $this->assertTrue($this->cache->inCache($dir1)); + $this->assertTrue($this->cache->inCache($dir2)); + + // 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(''); + $this->cache->remove('files'); + $this->cache->remove($dir1); + $this->cache->remove($dir2); + + $this->assertFalse($this->cache->inCache('files')); + $this->assertFalse($this->cache->inCache($dir1)); + $this->assertFalse($this->cache->inCache($dir2)); + } + + public function testRootFolderSizeIsFilesSize() { + $dir1 = 'files'; + $afile = 'test.txt'; + $fileData = array(); + $fileData[''] = array('size' => 1500, 'mtime' => 20, 'mimetype' => 'httpd/unix-directory'); + $fileData[$dir1] = array('size' => 1000, 'mtime' => 20, 'mimetype' => 'httpd/unix-directory'); + $fileData[$afile] = array('size' => 500, 'mtime' => 20); + + $this->cache->put('', $fileData['']); + $this->cache->put($dir1, $fileData[$dir1]); + + $this->assertTrue($this->cache->inCache($dir1)); + + // check that root size ignored the unknown sizes + $data = $this->cache->get('files'); + $this->assertEquals(1000, $data['size']); + $data = $this->cache->get(''); + $this->assertEquals(1000, $data['size']); + + // clean up + $this->cache->remove(''); + $this->cache->remove($dir1); + + $this->assertFalse($this->cache->inCache($dir1)); + } +} diff --git a/tests/lib/files/cache/scanner.php b/tests/lib/files/cache/scanner.php index 3f3a045377a8efba7351a4987f59dd749b748a99..3f5604b4d45197f1881eb7d69bedf14a3df8eb2e 100644 --- a/tests/lib/files/cache/scanner.php +++ b/tests/lib/files/cache/scanner.php @@ -147,7 +147,7 @@ class Scanner extends \PHPUnit_Framework_TestCase { $this->scanner->scan(''); $oldData = $this->cache->get(''); $this->storage->unlink('folder/bar.txt'); - $this->cache->put('folder', array('mtime' => $this->storage->filemtime('folder'))); + $this->cache->put('folder', array('mtime' => $this->storage->filemtime('folder'), 'storage_mtime' => $this->storage->filemtime('folder'))); $this->scanner->scan('', \OC\Files\Cache\Scanner::SCAN_SHALLOW, \OC\Files\Cache\Scanner::REUSE_SIZE); $newData = $this->cache->get(''); $this->assertNotEquals($oldData['etag'], $newData['etag']); diff --git a/tests/lib/files/cache/updater.php b/tests/lib/files/cache/updater.php index 5d7997b054481219d06867713f6c25d8bfa4b7c3..48986149a7303772923e79719bbff14a1547f5c5 100644 --- a/tests/lib/files/cache/updater.php +++ b/tests/lib/files/cache/updater.php @@ -9,6 +9,7 @@ namespace Test\Files\Cache; use \OC\Files\Filesystem as Filesystem; +use OC\Files\Storage\Temporary; class Updater extends \PHPUnit_Framework_TestCase { /** @@ -21,6 +22,8 @@ class Updater extends \PHPUnit_Framework_TestCase { */ private $scanner; + private $stateFilesEncryption; + /** * @var \OC\Files\Cache\Cache $cache */ @@ -29,6 +32,12 @@ class Updater extends \PHPUnit_Framework_TestCase { private static $user; public function setUp() { + + // remember files_encryption state + $this->stateFilesEncryption = \OC_App::isEnabled('files_encryption'); + // we want to tests with the encryption app disabled + \OC_App::disable('files_encryption'); + $this->storage = new \OC\Files\Storage\Temporary(array()); $textData = "dummy file data\n"; $imgData = file_get_contents(\OC::$SERVERROOT . '/core/img/logo.png'); @@ -46,6 +55,10 @@ class Updater extends \PHPUnit_Framework_TestCase { if (!self::$user) { self::$user = uniqid(); } + + \OC_User::createUser(self::$user, 'password'); + \OC_User::setUserId(self::$user); + \OC\Files\Filesystem::init(self::$user, '/' . self::$user . '/files'); Filesystem::clearMounts(); @@ -63,13 +76,19 @@ class Updater extends \PHPUnit_Framework_TestCase { if ($this->cache) { $this->cache->clear(); } + $result = \OC_User::deleteUser(self::$user); + $this->assertTrue($result); Filesystem::tearDown(); + // reset app files_encryption + if ($this->stateFilesEncryption) { + \OC_App::enable('files_encryption'); + } } public function testWrite() { $textSize = strlen("dummy file data\n"); $imageSize = filesize(\OC::$SERVERROOT . '/core/img/logo.png'); - $this->cache->put('foo.txt', array('mtime' => 100)); + $this->cache->put('foo.txt', array('mtime' => 100, 'storage_mtime' => 150)); $rootCachedData = $this->cache->get(''); $this->assertEquals(3 * $textSize + $imageSize, $rootCachedData['size']); @@ -183,6 +202,14 @@ class Updater extends \PHPUnit_Framework_TestCase { $this->assertNotEquals($rootCachedData['etag'], $cachedData['etag']); } + public function testRenameExtension() { + $fooCachedData = $this->cache->get('foo.txt'); + $this->assertEquals('text/plain', $fooCachedData['mimetype']); + Filesystem::rename('foo.txt', 'foo.abcd'); + $fooCachedData = $this->cache->get('foo.abcd'); + $this->assertEquals('application/octet-stream', $fooCachedData['mimetype']); + } + public function testRenameWithMountPoints() { $storage2 = new \OC\Files\Storage\Temporary(array()); $cache2 = $storage2->getCache(); @@ -233,7 +260,6 @@ class Updater extends \PHPUnit_Framework_TestCase { $cachedData = $this->cache->get('folder'); $this->assertNotEquals($folderCachedData['etag'], $cachedData['etag']); - $this->assertEquals($time, $cachedData['mtime']); $cachedData = $this->cache->get(''); $this->assertNotEquals($rootCachedData['etag'], $cachedData['etag']); @@ -258,11 +284,41 @@ class Updater extends \PHPUnit_Framework_TestCase { $cachedData = $cache2->get(''); $this->assertNotEquals($substorageCachedData['etag'], $cachedData['etag']); - $this->assertEquals($time, $cachedData['mtime']); $cachedData = $this->cache->get('folder'); $this->assertNotEquals($folderCachedData['etag'], $cachedData['etag']); $this->assertEquals($time, $cachedData['mtime']); } + public function testUpdatePermissionsOnRescanOnlyForUpdatedFile() { + $permissionsCache = $this->storage->getPermissionsCache(); + $scanner = $this->storage->getScanner(); + $scanner->scan(''); + $cache = $this->storage->getCache(); + $loggedInUser = \OC_User::getUser(); + \OC_User::setUserId(self::$user); + FileSystem::getDirectoryContent('/'); + $past = time() - 600; + $cache->put('', array('storage_mtime' => $past)); + + $this->assertNotEquals(-1, $permissionsCache->get($cache->getId('foo.txt'), self::$user)); + $this->assertNotEquals(-1, $permissionsCache->get($cache->getId('foo.png'), self::$user)); + + $permissionsCache->set($cache->getId('foo.png'), self::$user, 15); + FileSystem::file_put_contents('/foo.txt', 'asd'); + + $this->assertEquals(-1, $permissionsCache->get($cache->getId('foo.txt'), self::$user)); + $this->assertEquals(15, $permissionsCache->get($cache->getId('foo.png'), self::$user)); + + FileSystem::getDirectoryContent('/'); + + $this->assertEquals(15, $permissionsCache->get($cache->getId('foo.png'), self::$user)); + + FileSystem::file_put_contents('/qwerty.txt', 'asd'); + FileSystem::getDirectoryContent('/'); + + $this->assertEquals(15, $permissionsCache->get($cache->getId('foo.png'), self::$user)); + + \OC_User::setUserId($loggedInUser); + } } diff --git a/tests/lib/files/cache/watcher.php b/tests/lib/files/cache/watcher.php index 749b1ab75a301408fd597f4ffe29174038a7015e..1920c2769079a37ac6b2c5e00916fa74c0eaa554 100644 --- a/tests/lib/files/cache/watcher.php +++ b/tests/lib/files/cache/watcher.php @@ -53,6 +53,9 @@ class Watcher extends \PHPUnit_Framework_TestCase { $cache->put('bar.test', array('storage_mtime' => 10)); $storage->file_put_contents('bar.test', 'test data'); + // make sure that PHP can read the new size correctly + clearstatcache(); + $updater->checkUpdate('bar.test'); $cachedData = $cache->get('bar.test'); $this->assertEquals(9, $cachedData['size']); diff --git a/tests/lib/files/etagtest.php b/tests/lib/files/etagtest.php new file mode 100644 index 0000000000000000000000000000000000000000..6c41413c4df27a6f9b60bb42f8750c1b157a39b6 --- /dev/null +++ b/tests/lib/files/etagtest.php @@ -0,0 +1,79 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace Test\Files; + +use OC\Files\Filesystem; +use OCP\Share; + +class EtagTest extends \PHPUnit_Framework_TestCase { + private $datadir; + + private $tmpDir; + + private $uid; + + /** + * @var \OC_User_Dummy $userBackend + */ + private $userBackend; + + public function setUp() { + \OC_Hook::clear('OC_Filesystem', 'setup'); + \OCP\Util::connectHook('OC_Filesystem', 'setup', '\OC\Files\Storage\Shared', 'setup'); + \OCP\Share::registerBackend('file', 'OC_Share_Backend_File'); + \OCP\Share::registerBackend('folder', 'OC_Share_Backend_Folder', 'file'); + + $this->datadir = \OC_Config::getValue('datadirectory'); + $this->tmpDir = \OC_Helper::tmpFolder(); + \OC_Config::setValue('datadirectory', $this->tmpDir); + $this->uid = \OC_User::getUser(); + \OC_User::setUserId(null); + + $this->userBackend = new \OC_User_Dummy(); + \OC_User::useBackend($this->userBackend); + \OC_Util::tearDownFS(); + } + + public function tearDown() { + \OC_Config::setValue('datadirectory', $this->datadir); + \OC_User::setUserId($this->uid); + \OC_Util::setupFS($this->uid); + } + + public function testNewUser() { + $user1 = uniqid('user_'); + $this->userBackend->createUser($user1, ''); + + \OC_Util::tearDownFS(); + \OC_User::setUserId($user1); + \OC_Util::setupFS($user1); + Filesystem::mkdir('/folder'); + Filesystem::mkdir('/folder/subfolder'); + Filesystem::file_put_contents('/foo.txt', 'asd'); + Filesystem::file_put_contents('/folder/bar.txt', 'fgh'); + Filesystem::file_put_contents('/folder/subfolder/qwerty.txt', 'jkl'); + + $files = array('/foo.txt', '/folder/bar.txt', '/folder/subfolder', '/folder/subfolder/qwerty.txt'); + $originalEtags = $this->getEtags($files); + + $scanner = new \OC\Files\Utils\Scanner($user1); + $scanner->backgroundScan('/'); + + $this->assertEquals($originalEtags, $this->getEtags($files)); + } + + private function getEtags($files) { + $etags = array(); + foreach ($files as $file) { + $info = Filesystem::getFileInfo($file); + $etags[$file] = $info['etag']; + } + return $etags; + } +} diff --git a/tests/lib/files/filesystem.php b/tests/lib/files/filesystem.php index bef70cc725b167c4ced0495c31638d8571f1a88c..90f1dfe581b12674d3169c6fa66242e54ae876ac 100644 --- a/tests/lib/files/filesystem.php +++ b/tests/lib/files/filesystem.php @@ -26,7 +26,7 @@ class Filesystem extends \PHPUnit_Framework_TestCase { /** * @var array tmpDirs */ - private $tmpDirs=array(); + private $tmpDirs = array(); /** * @return array @@ -41,57 +41,115 @@ class Filesystem extends \PHPUnit_Framework_TestCase { foreach ($this->tmpDirs as $dir) { \OC_Helper::rmdirr($dir); } + \OC\Files\Filesystem::clearMounts(); + \OC_User::setUserId(''); } public function setUp() { + \OC_User::setUserId(''); \OC\Files\Filesystem::clearMounts(); } public function testMount() { - \OC\Files\Filesystem::mount('\OC\Files\Storage\Local',self::getStorageData(),'/'); - $this->assertEquals('/',\OC\Files\Filesystem::getMountPoint('/')); - $this->assertEquals('/',\OC\Files\Filesystem::getMountPoint('/some/folder')); - list( , $internalPath)=\OC\Files\Filesystem::resolvePath('/'); - $this->assertEquals('',$internalPath); - list( , $internalPath)=\OC\Files\Filesystem::resolvePath('/some/folder'); - $this->assertEquals('some/folder',$internalPath); - - \OC\Files\Filesystem::mount('\OC\Files\Storage\Local',self::getStorageData(),'/some'); - $this->assertEquals('/',\OC\Files\Filesystem::getMountPoint('/')); - $this->assertEquals('/some/',\OC\Files\Filesystem::getMountPoint('/some/folder')); - $this->assertEquals('/some/',\OC\Files\Filesystem::getMountPoint('/some/')); - $this->assertEquals('/some/',\OC\Files\Filesystem::getMountPoint('/some')); - list( , $internalPath)=\OC\Files\Filesystem::resolvePath('/some/folder'); - $this->assertEquals('folder',$internalPath); + \OC\Files\Filesystem::mount('\OC\Files\Storage\Local', self::getStorageData(), '/'); + $this->assertEquals('/', \OC\Files\Filesystem::getMountPoint('/')); + $this->assertEquals('/', \OC\Files\Filesystem::getMountPoint('/some/folder')); + list(, $internalPath) = \OC\Files\Filesystem::resolvePath('/'); + $this->assertEquals('', $internalPath); + list(, $internalPath) = \OC\Files\Filesystem::resolvePath('/some/folder'); + $this->assertEquals('some/folder', $internalPath); + + \OC\Files\Filesystem::mount('\OC\Files\Storage\Local', self::getStorageData(), '/some'); + $this->assertEquals('/', \OC\Files\Filesystem::getMountPoint('/')); + $this->assertEquals('/some/', \OC\Files\Filesystem::getMountPoint('/some/folder')); + $this->assertEquals('/some/', \OC\Files\Filesystem::getMountPoint('/some/')); + $this->assertEquals('/some/', \OC\Files\Filesystem::getMountPoint('/some')); + list(, $internalPath) = \OC\Files\Filesystem::resolvePath('/some/folder'); + $this->assertEquals('folder', $internalPath); } public function testNormalize() { + $this->assertEquals('/', \OC\Files\Filesystem::normalizePath('')); + $this->assertEquals('/', \OC\Files\Filesystem::normalizePath('/')); + $this->assertEquals('/', \OC\Files\Filesystem::normalizePath('/', false)); + $this->assertEquals('/', \OC\Files\Filesystem::normalizePath('//')); + $this->assertEquals('/', \OC\Files\Filesystem::normalizePath('//', false)); $this->assertEquals('/path', \OC\Files\Filesystem::normalizePath('/path/')); $this->assertEquals('/path/', \OC\Files\Filesystem::normalizePath('/path/', false)); $this->assertEquals('/path', \OC\Files\Filesystem::normalizePath('path')); - $this->assertEquals('/path', \OC\Files\Filesystem::normalizePath('\path')); $this->assertEquals('/foo/bar', \OC\Files\Filesystem::normalizePath('/foo//bar/')); + $this->assertEquals('/foo/bar/', \OC\Files\Filesystem::normalizePath('/foo//bar/', false)); $this->assertEquals('/foo/bar', \OC\Files\Filesystem::normalizePath('/foo////bar')); + $this->assertEquals('/foo/bar', \OC\Files\Filesystem::normalizePath('/foo/////bar')); + $this->assertEquals('/foo/bar', \OC\Files\Filesystem::normalizePath('/foo/bar/.')); + $this->assertEquals('/foo/bar', \OC\Files\Filesystem::normalizePath('/foo/bar/./')); + $this->assertEquals('/foo/bar/', \OC\Files\Filesystem::normalizePath('/foo/bar/./', false)); + $this->assertEquals('/foo/bar', \OC\Files\Filesystem::normalizePath('/foo/bar/./.')); + $this->assertEquals('/foo/bar', \OC\Files\Filesystem::normalizePath('/foo/bar/././')); + $this->assertEquals('/foo/bar/', \OC\Files\Filesystem::normalizePath('/foo/bar/././', false)); + $this->assertEquals('/foo/bar', \OC\Files\Filesystem::normalizePath('/foo/./bar/')); + $this->assertEquals('/foo/bar/', \OC\Files\Filesystem::normalizePath('/foo/./bar/', false)); + $this->assertEquals('/foo/.bar', \OC\Files\Filesystem::normalizePath('/foo/.bar/')); + $this->assertEquals('/foo/.bar/', \OC\Files\Filesystem::normalizePath('/foo/.bar/', false)); + $this->assertEquals('/foo/.bar/tee', \OC\Files\Filesystem::normalizePath('/foo/.bar/tee')); + + // normalize does not resolve '..' (by design) + $this->assertEquals('/foo/..', \OC\Files\Filesystem::normalizePath('/foo/../')); + if (class_exists('Patchwork\PHP\Shim\Normalizer')) { $this->assertEquals("/foo/bar\xC3\xBC", \OC\Files\Filesystem::normalizePath("/foo/baru\xCC\x88")); } } + public function testNormalizeWindowsPaths() { + $this->assertEquals('/', \OC\Files\Filesystem::normalizePath('')); + $this->assertEquals('/', \OC\Files\Filesystem::normalizePath('\\')); + $this->assertEquals('/', \OC\Files\Filesystem::normalizePath('\\', false)); + $this->assertEquals('/', \OC\Files\Filesystem::normalizePath('\\\\')); + $this->assertEquals('/', \OC\Files\Filesystem::normalizePath('\\\\', false)); + $this->assertEquals('/path', \OC\Files\Filesystem::normalizePath('\\path')); + $this->assertEquals('/path', \OC\Files\Filesystem::normalizePath('\\path', false)); + $this->assertEquals('/path', \OC\Files\Filesystem::normalizePath('\\path\\')); + $this->assertEquals('/path/', \OC\Files\Filesystem::normalizePath('\\path\\', false)); + $this->assertEquals('/foo/bar', \OC\Files\Filesystem::normalizePath('\\foo\\\\bar\\')); + $this->assertEquals('/foo/bar/', \OC\Files\Filesystem::normalizePath('\\foo\\\\bar\\', false)); + $this->assertEquals('/foo/bar', \OC\Files\Filesystem::normalizePath('\\foo\\\\\\\\bar')); + $this->assertEquals('/foo/bar', \OC\Files\Filesystem::normalizePath('\\foo\\\\\\\\\\bar')); + $this->assertEquals('/foo/bar', \OC\Files\Filesystem::normalizePath('\\foo\\bar\\.')); + $this->assertEquals('/foo/bar', \OC\Files\Filesystem::normalizePath('\\foo\\bar\\.\\')); + $this->assertEquals('/foo/bar/', \OC\Files\Filesystem::normalizePath('\\foo\\bar\\.\\', false)); + $this->assertEquals('/foo/bar', \OC\Files\Filesystem::normalizePath('\\foo\\bar\\.\\.')); + $this->assertEquals('/foo/bar', \OC\Files\Filesystem::normalizePath('\\foo\\bar\\.\\.\\')); + $this->assertEquals('/foo/bar/', \OC\Files\Filesystem::normalizePath('\\foo\\bar\\.\\.\\', false)); + $this->assertEquals('/foo/bar', \OC\Files\Filesystem::normalizePath('\\foo\\.\\bar\\')); + $this->assertEquals('/foo/bar/', \OC\Files\Filesystem::normalizePath('\\foo\\.\\bar\\', false)); + $this->assertEquals('/foo/.bar', \OC\Files\Filesystem::normalizePath('\\foo\\.bar\\')); + $this->assertEquals('/foo/.bar/', \OC\Files\Filesystem::normalizePath('\\foo\\.bar\\', false)); + $this->assertEquals('/foo/.bar/tee', \OC\Files\Filesystem::normalizePath('\\foo\\.bar\\tee')); + + // normalize does not resolve '..' (by design) + $this->assertEquals('/foo/..', \OC\Files\Filesystem::normalizePath('\\foo\\..\\')); + + if (class_exists('Patchwork\PHP\Shim\Normalizer')) { + $this->assertEquals("/foo/bar\xC3\xBC", \OC\Files\Filesystem::normalizePath("\\foo\\baru\xCC\x88")); + } + } + public function testHooks() { - if(\OC\Files\Filesystem::getView()){ + if (\OC\Files\Filesystem::getView()) { $user = \OC_User::getUser(); - }else{ - $user=uniqid(); - \OC\Files\Filesystem::init($user, '/'.$user.'/files'); + } else { + $user = uniqid(); + \OC\Files\Filesystem::init($user, '/' . $user . '/files'); } \OC_Hook::clear('OC_Filesystem'); \OC_Hook::connect('OC_Filesystem', 'post_write', $this, 'dummyHook'); \OC\Files\Filesystem::mount('OC\Files\Storage\Temporary', array(), '/'); - $rootView=new \OC\Files\View(''); - $rootView->mkdir('/'.$user); - $rootView->mkdir('/'.$user.'/files'); + $rootView = new \OC\Files\View(''); + $rootView->mkdir('/' . $user); + $rootView->mkdir('/' . $user . '/files'); // \OC\Files\Filesystem::file_put_contents('/foo', 'foo'); \OC\Files\Filesystem::mkdir('/bar'); @@ -103,6 +161,67 @@ class Filesystem extends \PHPUnit_Framework_TestCase { // \OC\Files\Filesystem::file_put_contents('/bar//foo', $fh); } + /** + * Tests that a local storage mount is used when passed user + * does not exist. + */ + public function testLocalMountWhenUserDoesNotExist() { + $datadir = \OC_Config::getValue("datadirectory", \OC::$SERVERROOT . "/data"); + $userId = uniqid('user_'); + + \OC\Files\Filesystem::initMountPoints($userId); + + $homeMount = \OC\Files\Filesystem::getStorage('/' . $userId . '/'); + + $this->assertInstanceOf('\OC\Files\Storage\Local', $homeMount); + $this->assertEquals('local::' . $datadir . '/' . $userId . '/', $homeMount->getId()); + } + + /** + * Tests that the home storage is used for the user's mount point + */ + public function testHomeMount() { + $userId = uniqid('user_'); + + \OC_User::createUser($userId, $userId); + + \OC\Files\Filesystem::initMountPoints($userId); + + $homeMount = \OC\Files\Filesystem::getStorage('/' . $userId . '/'); + + $this->assertInstanceOf('\OC\Files\Storage\Home', $homeMount); + $this->assertEquals('home::' . $userId, $homeMount->getId()); + + \OC_User::deleteUser($userId); + } + + /** + * Tests that the home storage is used in legacy mode + * for the user's mount point + */ + public function testLegacyHomeMount() { + $datadir = \OC_Config::getValue("datadirectory", \OC::$SERVERROOT . "/data"); + $userId = uniqid('user_'); + + // insert storage into DB by constructing it + // to make initMountsPoint find its existence + $localStorage = new \OC\Files\Storage\Local(array('datadir' => $datadir . '/' . $userId . '/')); + // this will trigger the insert + $cache = $localStorage->getCache(); + + \OC_User::createUser($userId, $userId); + \OC\Files\Filesystem::initMountPoints($userId); + + $homeMount = \OC\Files\Filesystem::getStorage('/' . $userId . '/'); + + $this->assertInstanceOf('\OC\Files\Storage\Home', $homeMount); + $this->assertEquals('local::' . $datadir . '/' . $userId . '/', $homeMount->getId()); + + \OC_User::deleteUser($userId); + // delete storage entry + $cache->clear(); + } + public function dummyHook($arguments) { $path = $arguments['path']; $this->assertEquals($path, \OC\Files\Filesystem::normalizePath($path)); //the path passed to the hook should already be normalized diff --git a/tests/lib/files/storage/home.php b/tests/lib/files/storage/home.php new file mode 100644 index 0000000000000000000000000000000000000000..885291e440403d1f422ff3fcadb4b0b6a3cddd83 --- /dev/null +++ b/tests/lib/files/storage/home.php @@ -0,0 +1,96 @@ +. + * + */ + +namespace Test\Files\Storage; + +use OC\User\User; + +class DummyUser extends User { + private $home; + + private $uid; + + public function __construct($uid, $home) { + $this->uid = $uid; + $this->home = $home; + } + + public function getHome() { + return $this->home; + } + + public function getUID() { + return $this->uid; + } +} + +class Home extends Storage { + /** + * @var string tmpDir + */ + private $tmpDir; + + /** + * @var \OC\User\User $user + */ + private $user; + + public function setUp() { + $this->tmpDir = \OC_Helper::tmpFolder(); + $this->userId = uniqid('user_'); + $this->user = new DummyUser($this->userId, $this->tmpDir); + $this->instance = new \OC\Files\Storage\Home(array('user' => $this->user)); + } + + public function tearDown() { + \OC_Helper::rmdirr($this->tmpDir); + } + + /** + * Tests that the root path matches the data dir + */ + public function testRoot() { + $this->assertEquals($this->tmpDir, $this->instance->getLocalFolder('')); + } + + /** + * Tests that the home id is in the format home::user1 + */ + public function testId() { + $this->assertEquals('home::' . $this->userId, $this->instance->getId()); + } + + /** + * Tests that the legacy home id is in the format local::/path/to/datadir/user1/ + */ + public function testLegacyId() { + $this->instance = new \OC\Files\Storage\Home(array('user' => $this->user, 'legacy' => true)); + $this->assertEquals('local::' . $this->tmpDir . '/', $this->instance->getId()); + } + + /** + * Tests that getCache() returns an instance of HomeCache + */ + public function testGetCacheReturnsHomeCache() { + $this->assertInstanceOf('\OC\Files\Cache\HomeCache', $this->instance->getCache()); + } +} diff --git a/tests/lib/files/storage/storage.php b/tests/lib/files/storage/storage.php index 3f339a10016a29b716a9c49d24b702f84c35b7e8..182c014d9996690a6891cd6a62df7011f41dccc7 100644 --- a/tests/lib/files/storage/storage.php +++ b/tests/lib/files/storage/storage.php @@ -42,18 +42,28 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { $this->assertTrue($this->instance->isUpdatable('/'), 'Root folder is not writable'); } - public function testDirectories() { - $this->assertFalse($this->instance->file_exists('/folder')); + /** + * Check that the test() function works + */ + public function testTestFunction() { + $this->assertTrue($this->instance->test()); + } + + /** + * @dataProvider directoryProvider + */ + public function testDirectories($directory) { + $this->assertFalse($this->instance->file_exists('/'.$directory)); - $this->assertTrue($this->instance->mkdir('/folder')); + $this->assertTrue($this->instance->mkdir('/'.$directory)); - $this->assertTrue($this->instance->file_exists('/folder')); - $this->assertTrue($this->instance->is_dir('/folder')); - $this->assertFalse($this->instance->is_file('/folder')); - $this->assertEquals('dir', $this->instance->filetype('/folder')); - $this->assertEquals(0, $this->instance->filesize('/folder')); - $this->assertTrue($this->instance->isReadable('/folder')); - $this->assertTrue($this->instance->isUpdatable('/folder')); + $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(); @@ -62,14 +72,14 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { $content[] = $file; } } - $this->assertEquals(array('folder'), $content); + $this->assertEquals(array($directory), $content); - $this->assertFalse($this->instance->mkdir('/folder')); //cant create existing folders - $this->assertTrue($this->instance->rmdir('/folder')); + $this->assertFalse($this->instance->mkdir('/'.$directory)); //cant create existing folders + $this->assertTrue($this->instance->rmdir('/'.$directory)); - $this->assertFalse($this->instance->file_exists('/folder')); + $this->assertFalse($this->instance->file_exists('/'.$directory)); - $this->assertFalse($this->instance->rmdir('/folder')); //cant remove non existing folders + $this->assertFalse($this->instance->rmdir('/'.$directory)); //cant remove non existing folders $dh = $this->instance->opendir('/'); $content = array(); @@ -81,6 +91,14 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { $this->assertEquals(array(), $content); } + public function directoryProvider() + { + return array( + array('folder'), + array(' folder'), + array('folder '), + ); + } /** * test the various uses of file_get_contents and file_put_contents */ @@ -128,7 +146,15 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { $this->instance->rename('/source.txt', '/target2.txt'); $this->assertTrue($this->instance->file_exists('/target2.txt')); $this->assertFalse($this->instance->file_exists('/source.txt')); - $this->assertEquals(file_get_contents($textFile), $this->instance->file_get_contents('/target.txt')); + $this->assertEquals(file_get_contents($textFile), $this->instance->file_get_contents('/target2.txt')); + + // move to overwrite + $testContents = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'; + $this->instance->file_put_contents('/target3.txt', $testContents); + $this->instance->rename('/target2.txt', '/target3.txt'); + $this->assertTrue($this->instance->file_exists('/target3.txt')); + $this->assertFalse($this->instance->file_exists('/target2.txt')); + $this->assertEquals(file_get_contents($textFile), $this->instance->file_get_contents('/target3.txt')); } public function testLocal() { @@ -171,8 +197,9 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { $this->assertTrue($this->instance->hasUpdated('/lorem.txt', $ctimeStart - 5)); $this->assertTrue($this->instance->hasUpdated('/', $ctimeStart - 5)); - $this->assertTrue(($ctimeStart - 5) <= $mTime); - $this->assertTrue($mTime <= ($ctimeEnd + 1)); + // check that ($ctimeStart - 5) <= $mTime <= ($ctimeEnd + 1) + $this->assertGreaterThanOrEqual(($ctimeStart - 5), $mTime); + $this->assertLessThanOrEqual(($ctimeEnd + 1), $mTime); $this->assertEquals(filesize($textFile), $this->instance->filesize('/lorem.txt')); $stat = $this->instance->stat('/lorem.txt'); @@ -191,6 +218,17 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { $this->assertTrue($this->instance->hasUpdated('/', $mtimeStart - 5)); } + public function testUnlink() { + $textFile = \OC::$SERVERROOT . '/tests/data/lorem.txt'; + $this->instance->file_put_contents('/lorem.txt', file_get_contents($textFile)); + + $this->assertTrue($this->instance->file_exists('/lorem.txt')); + + $this->assertTrue($this->instance->unlink('/lorem.txt')); + + $this->assertFalse($this->instance->file_exists('/lorem.txt')); + } + public function testFOpen() { $textFile = \OC::$SERVERROOT . '/tests/data/lorem.txt'; @@ -213,7 +251,8 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { public function testTouchCreateFile() { $this->assertFalse($this->instance->file_exists('foo')); - $this->instance->touch('foo'); + // returns true on success + $this->assertTrue($this->instance->touch('foo')); $this->assertTrue($this->instance->file_exists('foo')); } @@ -222,7 +261,19 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { $this->instance->mkdir('folder/bar'); $this->instance->file_put_contents('folder/asd.txt', 'foobar'); $this->instance->file_put_contents('folder/bar/foo.txt', 'asd'); - $this->instance->rmdir('folder'); + $this->assertTrue($this->instance->rmdir('folder')); + $this->assertFalse($this->instance->file_exists('folder/asd.txt')); + $this->assertFalse($this->instance->file_exists('folder/bar/foo.txt')); + $this->assertFalse($this->instance->file_exists('folder/bar')); + $this->assertFalse($this->instance->file_exists('folder')); + } + + public function testRecursiveUnlink() { + $this->instance->mkdir('folder'); + $this->instance->mkdir('folder/bar'); + $this->instance->file_put_contents('folder/asd.txt', 'foobar'); + $this->instance->file_put_contents('folder/bar/foo.txt', 'asd'); + $this->assertTrue($this->instance->unlink('folder')); $this->assertFalse($this->instance->file_exists('folder/asd.txt')); $this->assertFalse($this->instance->file_exists('folder/bar/foo.txt')); $this->assertFalse($this->instance->file_exists('folder/bar')); diff --git a/tests/lib/files/storage/wrapper/quota.php b/tests/lib/files/storage/wrapper/quota.php index 3702f8154f55fafe171bb78457d20a4e4e1269e9..87bafb64d41e9f1c2784ea1d72c79e8a6b4651c4 100644 --- a/tests/lib/files/storage/wrapper/quota.php +++ b/tests/lib/files/storage/wrapper/quota.php @@ -58,4 +58,45 @@ class Quota extends \Test\Files\Storage\Storage { fclose($stream); $this->assertEquals('foobarqwe', $instance->file_get_contents('foo')); } + + public function testReturnFalseWhenFopenFailed(){ + $failStorage = $this->getMock( + '\OC\Files\Storage\Local', + array('fopen'), + array(array('datadir' => $this->tmpDir))); + $failStorage->expects($this->any()) + ->method('fopen') + ->will($this->returnValue(false)); + + $instance = new \OC\Files\Storage\Wrapper\Quota(array('storage' => $failStorage, 'quota' => 1000)); + + $this->assertFalse($instance->fopen('failedfopen', 'r')); + } + + public function testReturnRegularStreamOnRead(){ + $instance = $this->getLimitedStorage(9); + + // create test file first + $stream = $instance->fopen('foo', 'w+'); + fwrite($stream, 'blablacontent'); + fclose($stream); + + $stream = $instance->fopen('foo', 'r'); + $meta = stream_get_meta_data($stream); + $this->assertEquals('plainfile', $meta['wrapper_type']); + fclose($stream); + + $stream = $instance->fopen('foo', 'rb'); + $meta = stream_get_meta_data($stream); + $this->assertEquals('plainfile', $meta['wrapper_type']); + fclose($stream); + } + + public function testReturnQuotaStreamOnWrite(){ + $instance = $this->getLimitedStorage(9); + $stream = $instance->fopen('foo', 'w+'); + $meta = stream_get_meta_data($stream); + $this->assertEquals('user-space', $meta['wrapper_type']); + fclose($stream); + } } diff --git a/tests/lib/files/stream/quota.php b/tests/lib/files/stream/quota.php index 22d3e93592c7de4285e608111327a45f969434dd..b11f0ac74c0b4f3f2295f66585cd87d95a8f639b 100644 --- a/tests/lib/files/stream/quota.php +++ b/tests/lib/files/stream/quota.php @@ -75,4 +75,76 @@ class Quota extends \PHPUnit_Framework_TestCase { rewind($stream); $this->assertEquals('qwerty', fread($stream, 100)); } + + public function testFseekReturnsSuccess() { + $stream = $this->getStream('w+', 100); + fwrite($stream, '0123456789'); + $this->assertEquals(0, fseek($stream, 3, SEEK_SET)); + $this->assertEquals(0, fseek($stream, -1, SEEK_CUR)); + $this->assertEquals(0, fseek($stream, -4, SEEK_END)); + } + + public function testWriteAfterSeekEndWithEnoughSpace() { + $stream = $this->getStream('w+', 100); + fwrite($stream, '0123456789'); + fseek($stream, -3, SEEK_END); + $this->assertEquals(11, fwrite($stream, 'abcdefghijk')); + rewind($stream); + $this->assertEquals('0123456abcdefghijk', fread($stream, 100)); + } + + public function testWriteAfterSeekEndWithNotEnoughSpace() { + $stream = $this->getStream('w+', 13); + fwrite($stream, '0123456789'); + // seek forward first to potentially week out + // potential limit calculation errors + fseek($stream, 4, SEEK_SET); + // seek to the end + fseek($stream, -3, SEEK_END); + $this->assertEquals(6, fwrite($stream, 'abcdefghijk')); + rewind($stream); + $this->assertEquals('0123456abcdef', fread($stream, 100)); + } + + public function testWriteAfterSeekSetWithEnoughSpace() { + $stream = $this->getStream('w+', 100); + fwrite($stream, '0123456789'); + fseek($stream, 7, SEEK_SET); + $this->assertEquals(11, fwrite($stream, 'abcdefghijk')); + rewind($stream); + $this->assertEquals('0123456abcdefghijk', fread($stream, 100)); + } + + public function testWriteAfterSeekSetWithNotEnoughSpace() { + $stream = $this->getStream('w+', 13); + fwrite($stream, '0123456789'); + fseek($stream, 7, SEEK_SET); + $this->assertEquals(6, fwrite($stream, 'abcdefghijk')); + rewind($stream); + $this->assertEquals('0123456abcdef', fread($stream, 100)); + } + + public function testWriteAfterSeekCurWithEnoughSpace() { + $stream = $this->getStream('w+', 100); + fwrite($stream, '0123456789'); + rewind($stream); + fseek($stream, 3, SEEK_CUR); + fseek($stream, 5, SEEK_CUR); + fseek($stream, -1, SEEK_CUR); + $this->assertEquals(11, fwrite($stream, 'abcdefghijk')); + rewind($stream); + $this->assertEquals('0123456abcdefghijk', fread($stream, 100)); + } + + public function testWriteAfterSeekCurWithNotEnoughSpace() { + $stream = $this->getStream('w+', 13); + fwrite($stream, '0123456789'); + rewind($stream); + fseek($stream, 3, SEEK_CUR); + fseek($stream, 5, SEEK_CUR); + fseek($stream, -1, SEEK_CUR); + $this->assertEquals(6, fwrite($stream, 'abcdefghijk')); + rewind($stream); + $this->assertEquals('0123456abcdef', fread($stream, 100)); + } } diff --git a/tests/lib/files/view.php b/tests/lib/files/view.php index 3043f132b73ea118af1e7bcd1f6e4f752c613f70..72a2f854cb2d22e639f3fc8d0fc12f49aba5f07a 100644 --- a/tests/lib/files/view.php +++ b/tests/lib/files/view.php @@ -15,7 +15,7 @@ class TemporaryNoTouch extends \OC\Files\Storage\Temporary { class View extends \PHPUnit_Framework_TestCase { /** - * @var \OC\Files\Storage\Storage[] $storages; + * @var \OC\Files\Storage\Storage[] $storages */ private $storages = array(); @@ -67,6 +67,11 @@ class View extends \PHPUnit_Framework_TestCase { $this->assertEquals($storageSize * 3, $cachedData['size']); $this->assertEquals('httpd/unix-directory', $cachedData['mimetype']); + // get cached data excluding mount points + $cachedData = $rootView->getFileInfo('/', false); + $this->assertEquals($storageSize, $cachedData['size']); + $this->assertEquals('httpd/unix-directory', $cachedData['mimetype']); + $cachedData = $rootView->getFileInfo('/folder'); $this->assertEquals($storageSize + $textSize, $cachedData['size']); $this->assertEquals('httpd/unix-directory', $cachedData['mimetype']); @@ -301,6 +306,48 @@ class View extends \PHPUnit_Framework_TestCase { $this->assertTrue($rootView->file_exists('anotherfolder/bar.txt')); } + /** + * @medium + */ + function testUnlink() { + $storage1 = $this->getTestStorage(); + $storage2 = $this->getTestStorage(); + \OC\Files\Filesystem::mount($storage1, array(), '/'); + \OC\Files\Filesystem::mount($storage2, array(), '/substorage'); + + $rootView = new \OC\Files\View(''); + $rootView->file_put_contents('/foo.txt', 'asd'); + $rootView->file_put_contents('/substorage/bar.txt', 'asd'); + + $this->assertTrue($rootView->file_exists('foo.txt')); + $this->assertTrue($rootView->file_exists('substorage/bar.txt')); + + $this->assertTrue($rootView->unlink('foo.txt')); + $this->assertTrue($rootView->unlink('substorage/bar.txt')); + + $this->assertFalse($rootView->file_exists('foo.txt')); + $this->assertFalse($rootView->file_exists('substorage/bar.txt')); + } + + /** + * @medium + */ + function testUnlinkRootMustFail() { + $storage1 = $this->getTestStorage(); + $storage2 = $this->getTestStorage(); + \OC\Files\Filesystem::mount($storage1, array(), '/'); + \OC\Files\Filesystem::mount($storage2, array(), '/substorage'); + + $rootView = new \OC\Files\View(''); + $rootView->file_put_contents('/foo.txt', 'asd'); + $rootView->file_put_contents('/substorage/bar.txt', 'asd'); + + $this->assertFalse($rootView->unlink('')); + $this->assertFalse($rootView->unlink('/')); + $this->assertFalse($rootView->unlink('substorage')); + $this->assertFalse($rootView->unlink('/substorage')); + } + /** * @medium */ @@ -391,4 +438,128 @@ class View extends \PHPUnit_Framework_TestCase { $this->storages[] = $storage; return $storage; } + + private $createHookPath; + + function dummyCreateHook($params) { + $this->createHookPath = $params['path']; + } + + /** + * @medium + */ + function testViewHooksIfRootStartsTheSame() { + $storage1 = $this->getTestStorage(); + $storage2 = $this->getTestStorage(); + $defaultRoot = \OC\Files\Filesystem::getRoot(); + \OC\Files\Filesystem::mount($storage1, array(), '/'); + \OC\Files\Filesystem::mount($storage2, array(), $defaultRoot . '_substorage'); + \OC_Hook::connect('OC_Filesystem', 'post_write', $this, 'dummyHook'); + + $subView = new \OC\Files\View($defaultRoot . '_substorage'); + $this->hookPath = null; + + $subView->file_put_contents('/foo.txt', 'asd'); + $this->assertNull($this->hookPath); + } + + public function testEditNoCreateHook() { + $storage1 = $this->getTestStorage(); + $storage2 = $this->getTestStorage(); + $defaultRoot = \OC\Files\Filesystem::getRoot(); + \OC\Files\Filesystem::mount($storage1, array(), '/'); + \OC\Files\Filesystem::mount($storage2, array(), $defaultRoot); + \OC_Hook::connect('OC_Filesystem', 'post_create', $this, 'dummyCreateHook'); + + $view = new \OC\Files\View($defaultRoot); + $this->hookPath = null; + + $view->file_put_contents('/asd.txt', 'foo'); + $this->assertEquals('/asd.txt', $this->createHookPath); + $this->createHookPath = null; + + $view->file_put_contents('/asd.txt', 'foo'); + $this->assertNull($this->createHookPath); + } + + /** + * @dataProvider resolvePathTestProvider + */ + public function testResolvePath($expected, $pathToTest) { + $storage1 = $this->getTestStorage(); + \OC\Files\Filesystem::mount($storage1, array(), '/'); + + $view = new \OC\Files\View(''); + + $result = $view->resolvePath($pathToTest); + $this->assertEquals($expected, $result[1]); + + $exists = $view->file_exists($pathToTest); + $this->assertTrue($exists); + + $exists = $view->file_exists($result[1]); + $this->assertTrue($exists); + } + + function resolvePathTestProvider() { + return array( + array('foo.txt', 'foo.txt'), + array('foo.txt', '/foo.txt'), + array('folder', 'folder'), + array('folder', '/folder'), + array('folder', 'folder/'), + array('folder', '/folder/'), + array('folder/bar.txt', 'folder/bar.txt'), + array('folder/bar.txt', '/folder/bar.txt'), + array('', ''), + array('', '/'), + ); + } + + public function testUTF8Names() { + $names = array('虚', '和知しゃ和で', 'regular ascii', 'sɨˈrɪlɪk', 'ѨѬ', 'أنا أحب القراءة كثيرا'); + + $storage = new \OC\Files\Storage\Temporary(array()); + \OC\Files\Filesystem::mount($storage, array(), '/'); + + $rootView = new \OC\Files\View(''); + foreach ($names as $name) { + $rootView->file_put_contents('/' . $name, 'dummy content'); + } + + $list = $rootView->getDirectoryContent('/'); + + $this->assertCount(count($names), $list); + foreach ($list as $item) { + $this->assertContains($item['name'], $names); + } + + $cache = $storage->getCache(); + $scanner = $storage->getScanner(); + $scanner->scan(''); + + $list = $cache->getFolderContents(''); + + $this->assertCount(count($names), $list); + foreach ($list as $item) { + $this->assertContains($item['name'], $names); + } + } + + public function testTouchNotSupported() { + $storage = new TemporaryNoTouch(array()); + $scanner = $storage->getScanner(); + \OC\Files\Filesystem::mount($storage, array(), '/test/'); + $past = time() - 100; + $storage->file_put_contents('test', 'foobar'); + $scanner->scan(''); + $view = new \OC\Files\View(''); + $info = $view->getFileInfo('/test/test'); + + $view->touch('/test/test', $past); + $scanner->scanFile('test', \OC\Files\Cache\Scanner::REUSE_ETAG); + + $info2 = $view->getFileInfo('/test/test'); + $this->assertEquals($info['etag'], $info2['etag']); + } } diff --git a/tests/lib/group.php b/tests/lib/group.php index d2c9ce461483e53f57cdea49ad1b986016edd9d1..8de8d033e19837fa414a11ea7e0a43bdd618fbd9 100644 --- a/tests/lib/group.php +++ b/tests/lib/group.php @@ -109,6 +109,24 @@ class Test_Group extends PHPUnit_Framework_TestCase { $this->assertEquals(array(), OC_Group::getGroups()); } + public function testDisplayNamesInGroup() { + OC_Group::useBackend(new OC_Group_Dummy()); + $userBackend = new \OC_User_Dummy(); + \OC_User::getManager()->registerBackend($userBackend); + + $group1 = uniqid(); + $user1 = 'uid1'; + $user2 = 'uid2'; + OC_Group::createGroup($group1); + $userBackend->createUser($user1, ''); + $userBackend->createUser($user2, ''); + OC_Group::addToGroup($user1, $group1); + OC_Group::addToGroup($user2, $group1); + //Dummy backend does not support setting displaynames, uid will always + //be returned. This checks primarily, that the return format is okay. + $expected = array($user1 => $user1, $user2 => $user2); + $this->assertEquals($expected, OC_Group::displayNamesInGroup($group1)); + } public function testUsersInGroup() { OC_Group::useBackend(new OC_Group_Dummy()); diff --git a/tests/lib/helper.php b/tests/lib/helper.php index b4d896e51967effe1b6a1b55b08f936e9a27fedb..4311215795cfcf8f085e3b0a2bb969e40dd870b3 100644 --- a/tests/lib/helper.php +++ b/tests/lib/helper.php @@ -208,4 +208,39 @@ class Test_Helper extends PHPUnit_Framework_TestCase { ->will($this->returnValue(true)); // filename(1) (2) (3).ext exists $this->assertEquals('dir/filename(1) (2) (4).ext', OC_Helper::buildNotExistingFileNameForView('dir', 'filename(1) (2) (3).ext', $viewMock)); } + + /** + * @dataProvider streamCopyDataProvider + */ + public function testStreamCopy($expectedCount, $expectedResult, $source, $target) { + + if (is_string($source)) { + $source = fopen($source, 'r'); + } + if (is_string($target)) { + $target = fopen($target, 'w'); + } + + list($count, $result) = \OC_Helper::streamCopy($source, $target); + + if (is_resource($source)) { + fclose($source); + } + if (is_resource($target)) { + fclose($target); + } + + $this->assertSame($expectedCount, $count); + $this->assertSame($expectedResult, $result); + } + + + function streamCopyDataProvider() { + return array( + array(0, false, false, false), + array(0, false, \OC::$SERVERROOT . '/tests/data/lorem.txt', false), + array(filesize(\OC::$SERVERROOT . '/tests/data/lorem.txt'), true, \OC::$SERVERROOT . '/tests/data/lorem.txt', \OC::$SERVERROOT . '/tests/data/lorem-copy.txt'), + array(3670, true, \OC::$SERVERROOT . '/tests/data/testimage.png', \OC::$SERVERROOT . '/tests/data/testimage-copy.png'), + ); + } } diff --git a/tests/lib/l10n.php b/tests/lib/l10n.php index 12eac818f84c5c7520c122c122dd2a23343e2282..5ddf2290c352f4dc9ecfe927c812e06b4b8cbf08 100644 --- a/tests/lib/l10n.php +++ b/tests/lib/l10n.php @@ -64,4 +64,45 @@ class Test_L10n extends PHPUnit_Framework_TestCase { $l = new OC_L10N('test'); $this->assertSame('February 13, 2009 23:31', $l->l('datetime', 1234567890)); } + + /** + * @dataProvider findLanguageData + */ + public function testFindLanguage($default, $preference, $expected) { + OC_User::setUserId(null); + if (is_null($default)) { + OC_Config::deleteKey('default_language'); + } else { + OC_Config::setValue('default_language', $default); + } + $_SERVER['HTTP_ACCEPT_LANGUAGE'] = $preference; + + $reflection = new \ReflectionClass('OC_L10N'); + $prop = $reflection->getProperty('language'); + $prop->setAccessible(1); + $prop->setValue(''); + $prop->setAccessible(0); + + $this->assertSame($expected, OC_L10N::findLanguage()); + } + + public function findLanguageData() { + return array( + // Exact match + array(null, 'de-DE,en;q=0.5', 'de_DE'), + array(null, 'de-DE,en-US;q=0.8,en;q=0.6', 'de_DE'), + + // Best match + array(null, 'de-US,en;q=0.5', 'de'), + array(null, 'de-US,en-US;q=0.8,en;q=0.6', 'de'), + + // The default_language config setting overrides browser preferences. + array('es_AR', 'de-DE,en;q=0.5', 'es_AR'), + array('es_AR', 'de-DE,en-US;q=0.8,en;q=0.6', 'es_AR'), + + // Worst case default to english + array(null, '', 'en'), + array(null, null, 'en'), + ); + } } diff --git a/tests/lib/memcache/memcached.php b/tests/lib/memcache/memcached.php index 4b38ae8ef3c54b3e92011ceb55b13b23efba0453..fdab32693ff8d9c81bf81a2b0ef99f6b8d299569 100644 --- a/tests/lib/memcache/memcached.php +++ b/tests/lib/memcache/memcached.php @@ -10,11 +10,17 @@ namespace Test\Memcache; class Memcached extends Cache { - public function setUp() { + static public function setUpBeforeClass() { if (!\OC\Memcache\Memcached::isAvailable()) { - $this->markTestSkipped('The memcached extension is not available.'); - return; + self::markTestSkipped('The memcached extension is not available.'); + } + $instance = new \OC\Memcache\Memcached(uniqid()); + if ($instance->set(uniqid(), uniqid()) === false) { + self::markTestSkipped('memcached server seems to be down.'); } + } + + public function setUp() { $this->instance = new \OC\Memcache\Memcached(uniqid()); } } diff --git a/tests/lib/ocs/privatedata.php b/tests/lib/ocs/privatedata.php new file mode 100644 index 0000000000000000000000000000000000000000..ea8413734f17ce916ba906b7e16dafa331af0113 --- /dev/null +++ b/tests/lib/ocs/privatedata.php @@ -0,0 +1,141 @@ +. + * + */ + +class Test_OC_OCS_Privatedata extends PHPUnit_Framework_TestCase +{ + + private $appKey; + + public function setUp() { + \OC::$session->set('user_id', 'user1'); + $this->appKey = uniqid('app'); + } + + public function tearDown() { + } + + public function testGetEmptyOne() { + $params = array('app' => $this->appKey, 'key' => '123'); + $result = OC_OCS_Privatedata::get($params); + $this->assertOcsResult(0, $result); + } + + public function testGetEmptyAll() { + $params = array('app' => $this->appKey); + $result = OC_OCS_Privatedata::get($params); + $this->assertOcsResult(0, $result); + } + + public function testSetOne() { + $_POST = array('value' => 123456789); + $params = array('app' => $this->appKey, 'key' => 'k-1'); + $result = OC_OCS_Privatedata::set($params); + $this->assertEquals(100, $result->getStatusCode()); + + $result = OC_OCS_Privatedata::get($params); + $this->assertOcsResult(1, $result); + } + + public function testSetExisting() { + $_POST = array('value' => 123456789); + $params = array('app' => $this->appKey, 'key' => 'k-10'); + $result = OC_OCS_Privatedata::set($params); + $this->assertEquals(100, $result->getStatusCode()); + + $result = OC_OCS_Privatedata::get($params); + $this->assertOcsResult(1, $result); + $data = $result->getData(); + $data = $data[0]; + $this->assertEquals('123456789', $data['value']); + + $_POST = array('value' => 'updated'); + $params = array('app' => $this->appKey, 'key' => 'k-10'); + $result = OC_OCS_Privatedata::set($params); + $this->assertEquals(100, $result->getStatusCode()); + + $result = OC_OCS_Privatedata::get($params); + $this->assertOcsResult(1, $result); + $data = $result->getData(); + $data = $data[0]; + $this->assertEquals('updated', $data['value']); + } + + public function testSetMany() { + $_POST = array('value' => 123456789); + + // set key 'k-1' + $params = array('app' => $this->appKey, 'key' => 'k-1'); + $result = OC_OCS_Privatedata::set($params); + $this->assertEquals(100, $result->getStatusCode()); + + // set key 'k-2' + $params = array('app' => $this->appKey, 'key' => 'k-2'); + $result = OC_OCS_Privatedata::set($params); + $this->assertEquals(100, $result->getStatusCode()); + + // query for all + $params = array('app' => $this->appKey); + $result = OC_OCS_Privatedata::get($params); + $this->assertOcsResult(2, $result); + } + + public function testDelete() { + $_POST = array('value' => 123456789); + + // set key 'k-1' + $params = array('app' => $this->appKey, 'key' => 'k-3'); + $result = OC_OCS_Privatedata::set($params); + $this->assertEquals(100, $result->getStatusCode()); + + $result = OC_OCS_Privatedata::delete($params); + $this->assertEquals(100, $result->getStatusCode()); + + $result = OC_OCS_Privatedata::get($params); + $this->assertOcsResult(0, $result); + } + + /** + * @dataProvider deleteWithEmptyKeysProvider + */ + public function testDeleteWithEmptyKeys($params) { + $result = OC_OCS_Privatedata::delete($params); + $this->assertEquals(101, $result->getStatusCode()); + } + + public function deleteWithEmptyKeysProvider() { + return array( + array(array()), + array(array('app' => '123')), + array(array('key' => '123')), + ); + } + + /** + * @param \OC_OCS_Result $result + */ + public function assertOcsResult($expectedArraySize, $result) { + $this->assertEquals(100, $result->getStatusCode()); + $data = $result->getData(); + $this->assertTrue(is_array($data)); + $this->assertEquals($expectedArraySize, sizeof($data)); + } +} diff --git a/tests/lib/preferences.php b/tests/lib/preferences.php index 68b794e9ea9526d574710d10552978a0c36efc24..a8236909dedd87a95eb6c4cc759e1f8f21d55d5b 100644 --- a/tests/lib/preferences.php +++ b/tests/lib/preferences.php @@ -101,28 +101,28 @@ class Test_Preferences extends PHPUnit_Framework_TestCase { $this->assertTrue(\OC_Preferences::deleteKey('Deleteuser', 'deleteapp', 'deletekey')); $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ? AND `configkey` = ?'); $result = $query->execute(array('Deleteuser', 'deleteapp', 'deletekey')); - $this->assertEquals(0, $result->numRows()); + $this->assertEquals(0, count($result->fetchAll())); } public function testDeleteApp() { $this->assertTrue(\OC_Preferences::deleteApp('Deleteuser', 'deleteapp')); $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ?'); $result = $query->execute(array('Deleteuser', 'deleteapp')); - $this->assertEquals(0, $result->numRows()); + $this->assertEquals(0, count($result->fetchAll())); } public function testDeleteUser() { $this->assertTrue(\OC_Preferences::deleteUser('Deleteuser')); $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `userid` = ?'); $result = $query->execute(array('Deleteuser')); - $this->assertEquals(0, $result->numRows()); + $this->assertEquals(0, count($result->fetchAll())); } public function testDeleteAppFromAllUsers() { $this->assertTrue(\OC_Preferences::deleteAppFromAllUsers('someapp')); $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `appid` = ?'); $result = $query->execute(array('someapp')); - $this->assertEquals(0, $result->numRows()); + $this->assertEquals(0, count($result->fetchAll())); } } diff --git a/tests/lib/preview.php b/tests/lib/preview.php index d0cdd2c44fba78c7031333e4132117a70f3a9344..353b66fd6d66d9e8852aca36470fe84ba4e8cb84 100644 --- a/tests/lib/preview.php +++ b/tests/lib/preview.php @@ -134,13 +134,11 @@ class Preview extends \PHPUnit_Framework_TestCase { } private function initFS() { - if(\OC\Files\Filesystem::getView()){ - $user = \OC_User::getUser(); - }else{ - $user=uniqid(); - \OC_User::setUserId($user); - \OC\Files\Filesystem::init($user, '/'.$user.'/files'); - } + // create a new user with his own filesystem view + // this gets called by each test in this test class + $user=uniqid(); + \OC_User::setUserId($user); + \OC\Files\Filesystem::init($user, '/'.$user.'/files'); \OC\Files\Filesystem::mount('OC\Files\Storage\Temporary', array(), '/'); diff --git a/tests/lib/request.php b/tests/lib/request.php new file mode 100644 index 0000000000000000000000000000000000000000..c6401a571445fd8d648b79909c3eb767e728d7f9 --- /dev/null +++ b/tests/lib/request.php @@ -0,0 +1,123 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_Request extends PHPUnit_Framework_TestCase { + + public function setUp() { + OC_Config::setValue('overwritewebroot', '/domain.tld/ownCloud'); + } + + public function tearDown() { + OC_Config::setValue('overwritewebroot', ''); + } + + public function testScriptNameOverWrite() { + $_SERVER['REMOTE_ADDR'] = '10.0.0.1'; + $_SERVER["SCRIPT_FILENAME"] = __FILE__; + + $scriptName = OC_Request::scriptName(); + $this->assertEquals('/domain.tld/ownCloud/tests/lib/request.php', $scriptName); + } + + /** + * @dataProvider rawPathInfoProvider + * @param $expected + * @param $requestUri + * @param $scriptName + */ + public function testRawPathInfo($expected, $requestUri, $scriptName) { + $_SERVER['REQUEST_URI'] = $requestUri; + $_SERVER['SCRIPT_NAME'] = $scriptName; + $rawPathInfo = OC_Request::getRawPathInfo(); + $this->assertEquals($expected, $rawPathInfo); + } + + function rawPathInfoProvider() { + return array( + array('/core/ajax/translations.php', 'index.php/core/ajax/translations.php', 'index.php'), + array('/core/ajax/translations.php', '/index.php/core/ajax/translations.php', '/index.php'), + array('/core/ajax/translations.php', '//index.php/core/ajax/translations.php', '/index.php'), + array('', '/oc/core', '/oc/core/index.php'), + array('', '/oc/core/', '/oc/core/index.php'), + array('', '/oc/core/index.php', '/oc/core/index.php'), + array('/core/ajax/translations.php', '/core/ajax/translations.php', 'index.php'), + array('/core/ajax/translations.php', '//core/ajax/translations.php', '/index.php'), + array('/core/ajax/translations.php', '/oc/core/ajax/translations.php', '/oc/index.php'), + array('/1', '/oc/core/1', '/oc/core/index.php'), + ); + } + + /** + * @dataProvider rawPathInfoThrowsExceptionProvider + * @expectedException Exception + * + * @param $requestUri + * @param $scriptName + */ + public function testRawPathInfoThrowsException($requestUri, $scriptName) { + $_SERVER['REQUEST_URI'] = $requestUri; + $_SERVER['SCRIPT_NAME'] = $scriptName; + OC_Request::getRawPathInfo(); + } + + function rawPathInfoThrowsExceptionProvider() { + return array( + array('/oc/core1', '/oc/core/index.php'), + ); + } + + /** + * @dataProvider userAgentProvider + */ + public function testUserAgent($testAgent, $userAgent, $matches) { + $_SERVER['HTTP_USER_AGENT'] = $testAgent; + $this->assertEquals($matches, OC_Request::isUserAgent($userAgent)); + } + + function userAgentProvider() { + return array( + array( + 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)', + OC_Request::USER_AGENT_IE, + true + ), + array( + 'Mozilla/5.0 (X11; Linux i686; rv:24.0) Gecko/20100101 Firefox/24.0', + OC_Request::USER_AGENT_IE, + false + ), + array( + 'Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16S) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.59 Mobile Safari/537.36', + OC_Request::USER_AGENT_ANDROID_MOBILE_CHROME, + true + ), + array( + 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)', + OC_Request::USER_AGENT_ANDROID_MOBILE_CHROME, + false + ), + // test two values + array( + 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)', + array( + OC_Request::USER_AGENT_IE, + OC_Request::USER_AGENT_ANDROID_MOBILE_CHROME, + ), + true + ), + array( + 'Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16S) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.59 Mobile Safari/537.36', + array( + OC_Request::USER_AGENT_IE, + OC_Request::USER_AGENT_ANDROID_MOBILE_CHROME, + ), + true + ), + ); + } +} diff --git a/tests/lib/share/share.php b/tests/lib/share/share.php index 8e9eef65d320fad8bb5d8f4af1211f78c9ae0fb0..d6acee6c92451de4d5a19c800750775f93affe26 100644 --- a/tests/lib/share/share.php +++ b/tests/lib/share/share.php @@ -25,6 +25,8 @@ class Test_Share extends PHPUnit_Framework_TestCase { protected $userBackend; protected $user1; protected $user2; + protected $user3; + protected $user4; protected $groupBackend; protected $group1; protected $group2; @@ -135,20 +137,40 @@ class Test_Share extends PHPUnit_Framework_TestCase { OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user2, OCP\PERMISSION_READ), 'Failed asserting that user 1 successfully shared text.txt with user 2.' ); - $this->assertEquals( - array('test.txt'), + $this->assertContains( + 'test.txt', OCP\Share::getItemShared('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE), 'Failed asserting that test.txt is a shared file of user 1.' ); OC_User::setUserId($this->user2); - $this->assertEquals( - array('test.txt'), + $this->assertContains( + 'test.txt', OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE), 'Failed asserting that user 2 has access to test.txt after initial sharing.' ); } + protected function shareUserTestFileWithUser($sharer, $receiver) { + OC_User::setUserId($sharer); + $this->assertTrue( + OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $receiver, OCP\PERMISSION_READ | OCP\PERMISSION_SHARE), + 'Failed asserting that ' . $sharer . ' successfully shared text.txt with ' . $receiver . '.' + ); + $this->assertContains( + 'test.txt', + OCP\Share::getItemShared('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE), + 'Failed asserting that test.txt is a shared file of ' . $sharer . '.' + ); + + OC_User::setUserId($receiver); + $this->assertContains( + 'test.txt', + OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE), + 'Failed asserting that ' . $receiver . ' has access to test.txt after initial sharing.' + ); + } + public function testShareWithUser() { // Invalid shares $message = 'Sharing test.txt failed, because the user '.$this->user1.' is the item owner'; @@ -328,22 +350,22 @@ class Test_Share extends PHPUnit_Framework_TestCase { OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_GROUP, $this->group1, OCP\PERMISSION_READ), 'Failed asserting that user 1 successfully shared text.txt with group 1.' ); - $this->assertEquals( - array('test.txt'), + $this->assertContains( + 'test.txt', OCP\Share::getItemShared('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE), 'Failed asserting that test.txt is a shared file of user 1.' ); OC_User::setUserId($this->user2); - $this->assertEquals( - array('test.txt'), + $this->assertContains( + 'test.txt', OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE), 'Failed asserting that user 2 has access to test.txt after initial sharing.' ); OC_User::setUserId($this->user3); - $this->assertEquals( - array('test.txt'), + $this->assertContains( + 'test.txt', OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE), 'Failed asserting that user 3 has access to test.txt after initial sharing.' ); @@ -583,4 +605,97 @@ class Test_Share extends PHPUnit_Framework_TestCase { 'Failed asserting that an expired share could not be found.' ); } + + public function testUnshareAll() { + $this->shareUserTestFileWithUser($this->user1, $this->user2); + $this->shareUserTestFileWithUser($this->user2, $this->user3); + $this->shareUserTestFileWithUser($this->user3, $this->user4); + $this->shareUserOneTestFileWithGroupOne(); + + OC_User::setUserId($this->user1); + $this->assertEquals( + array('test.txt', 'test.txt'), + OCP\Share::getItemsShared('test', 'test.txt'), + 'Failed asserting that the test.txt file is shared exactly two times by user1.' + ); + + OC_User::setUserId($this->user2); + $this->assertEquals( + array('test.txt'), + OCP\Share::getItemsShared('test', 'test.txt'), + 'Failed asserting that the test.txt file is shared exactly once by user2.' + ); + + OC_User::setUserId($this->user3); + $this->assertEquals( + array('test.txt'), + OCP\Share::getItemsShared('test', 'test.txt'), + 'Failed asserting that the test.txt file is shared exactly once by user3.' + ); + + $this->assertTrue( + OCP\Share::unshareAll('test', 'test.txt'), + 'Failed asserting that user 3 successfully unshared all shares of the test.txt share.' + ); + + $this->assertEquals( + array(), + OCP\Share::getItemsShared('test'), + 'Failed asserting that the share of the test.txt file by user 3 has been removed.' + ); + + OC_User::setUserId($this->user1); + $this->assertEquals( + array(), + OCP\Share::getItemsShared('test'), + 'Failed asserting that both shares of the test.txt file by user 1 have been removed.' + ); + + OC_User::setUserId($this->user2); + $this->assertEquals( + array(), + OCP\Share::getItemsShared('test'), + 'Failed asserting that the share of the test.txt file by user 2 has been removed.' + ); + } + + /** + * @dataProvider checkPasswordProtectedShareDataProvider + * @param $expected + * @param $item + */ + public function testCheckPasswordProtectedShare($expected, $item) { + \OC::$session->set('public_link_authenticated', 100); + $result = \OCP\Share::checkPasswordProtectedShare($item); + $this->assertEquals($expected, $result); + } + + function checkPasswordProtectedShareDataProvider() { + return array( + array(true, array()), + array(true, array('share_with' => null)), + array(true, array('share_with' => '')), + array(true, array('share_with' => '1234567890', 'share_type' => '1')), + array(true, array('share_with' => '1234567890', 'share_type' => 1)), + array(true, array('share_with' => '1234567890', 'share_type' => '3', 'id' => 100)), + array(true, array('share_with' => '1234567890', 'share_type' => 3, 'id' => 100)), + array(false, array('share_with' => '1234567890', 'share_type' => '3', 'id' => 101)), + array(false, array('share_with' => '1234567890', 'share_type' => 3, 'id' => 101)), + ); + + /* + if (!isset($linkItem['share_with'])) { + 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; + } + * */ + } } diff --git a/tests/lib/template.php b/tests/lib/template.php index fd12119da580aa5ed241a0784cdd4de389c27ae6..b4f1a4c40533f9b8cf1d587763ae83de7fe49388 100644 --- a/tests/lib/template.php +++ b/tests/lib/template.php @@ -46,7 +46,6 @@ class Test_TemplateFunctions extends PHPUnit_Framework_TestCase { $this->assertEquals("This is a good string!", $result); } - public function testPrintUnescaped() { $htmlString = ""; @@ -66,5 +65,194 @@ class Test_TemplateFunctions extends PHPUnit_Framework_TestCase { $this->assertEquals("This is a good string!", $result); } + // --------------------------------------------------------------------------- + // Test relative_modified_date with dates only + // --------------------------------------------------------------------------- + public function testRelativeDateToday(){ + $currentTime = 1380703592; + $elementTime = $currentTime; + $result = (string)relative_modified_date($elementTime, $currentTime, true); + + $this->assertEquals('today', $result); + + // 2 hours ago is still today + $elementTime = $currentTime - 2 * 3600; + $result = (string)relative_modified_date($elementTime, $currentTime, true); + + $this->assertEquals('today', $result); + } + + public function testRelativeDateYesterday(){ + $currentTime = 1380703592; + $elementTime = $currentTime - 24 * 3600; + $result = (string)relative_modified_date($elementTime, $currentTime, true); + + $this->assertEquals('yesterday', $result); + + // yesterday - 2 hours is still yesterday + $elementTime = $currentTime - 26 * 3600; + $result = (string)relative_modified_date($elementTime, $currentTime, true); + + $this->assertEquals('yesterday', $result); + } + + public function testRelativeDate2DaysAgo(){ + $currentTime = 1380703592; + $elementTime = $currentTime - 48 * 3600; + $result = (string)relative_modified_date($elementTime, $currentTime, true); + + $this->assertEquals('2 days ago', $result); + + // 2 days ago minus 4 hours is still 2 days ago + $elementTime = $currentTime - 52 * 3600; + $result = (string)relative_modified_date($elementTime, $currentTime, true); + + $this->assertEquals('2 days ago', $result); + } + + public function testRelativeDateLastMonth(){ + $currentTime = 1380703592; + $elementTime = $currentTime - 86400 * 31; + $result = (string)relative_modified_date($elementTime, $currentTime, true); + + $this->assertEquals('last month', $result); + + $elementTime = $currentTime - 86400 * 35; + $result = (string)relative_modified_date($elementTime, $currentTime, true); + + $this->assertEquals('last month', $result); + } + + public function testRelativeDateMonthsAgo(){ + $currentTime = 1380703592; + $elementTime = $currentTime - 86400 * 60; + $result = (string)relative_modified_date($elementTime, $currentTime, true); + + $this->assertEquals('2 months ago', $result); + + $elementTime = $currentTime - 86400 * 65; + $result = (string)relative_modified_date($elementTime, $currentTime, true); + + $this->assertEquals('2 months ago', $result); + } + + public function testRelativeDateLastYear(){ + $currentTime = 1380703592; + $elementTime = $currentTime - 86400 * 365; + $result = (string)relative_modified_date($elementTime, $currentTime, true); + + $this->assertEquals('last year', $result); + + $elementTime = $currentTime - 86400 * 450; + $result = (string)relative_modified_date($elementTime, $currentTime, true); + + $this->assertEquals('last year', $result); + } + + public function testRelativeDateYearsAgo(){ + $currentTime = 1380703592; + $elementTime = $currentTime - 86400 * 365.25 * 2; + $result = (string)relative_modified_date($elementTime, $currentTime, true); + + $this->assertEquals('years ago', $result); + + $elementTime = $currentTime - 86400 * 365.25 * 3; + $result = (string)relative_modified_date($elementTime, $currentTime, true); + + $this->assertEquals('years ago', $result); + } + // --------------------------------------------------------------------------- + // Test relative_modified_date with timestamps only (date + time value) + // --------------------------------------------------------------------------- + + public function testRelativeTimeSecondsAgo(){ + $currentTime = 1380703592; + $elementTime = $currentTime - 5; + $result = (string)relative_modified_date($elementTime, $currentTime, false); + + $this->assertEquals('seconds ago', $result); + } + + public function testRelativeTimeMinutesAgo(){ + $currentTime = 1380703592; + $elementTime = $currentTime - 190; + $result = (string)relative_modified_date($elementTime, $currentTime, false); + + $this->assertEquals('3 minutes ago', $result); + } + + public function testRelativeTimeHoursAgo(){ + $currentTime = 1380703592; + $elementTime = $currentTime - 7500; + $result = (string)relative_modified_date($elementTime, $currentTime, false); + + $this->assertEquals('2 hours ago', $result); + } + + public function testRelativeTime2DaysAgo(){ + $currentTime = 1380703592; + $elementTime = $currentTime - 48 * 3600; + $result = (string)relative_modified_date($elementTime, $currentTime, false); + + $this->assertEquals('2 days ago', $result); + + // 2 days ago minus 4 hours is still 2 days ago + $elementTime = $currentTime - 52 * 3600; + $result = (string)relative_modified_date($elementTime, $currentTime, false); + + $this->assertEquals('2 days ago', $result); + } + + public function testRelativeTimeLastMonth(){ + $currentTime = 1380703592; + $elementTime = $currentTime - 86400 * 31; + $result = (string)relative_modified_date($elementTime, $currentTime, false); + + $this->assertEquals('last month', $result); + + $elementTime = $currentTime - 86400 * 35; + $result = (string)relative_modified_date($elementTime, $currentTime, false); + + $this->assertEquals('last month', $result); + } + + public function testRelativeTimeMonthsAgo(){ + $currentTime = 1380703592; + $elementTime = $currentTime - 86400 * 60; + $result = (string)relative_modified_date($elementTime, $currentTime, false); + + $this->assertEquals('2 months ago', $result); + + $elementTime = $currentTime - 86400 * 65; + $result = (string)relative_modified_date($elementTime, $currentTime, false); + + $this->assertEquals('2 months ago', $result); + } + + public function testRelativeTimeLastYear(){ + $currentTime = 1380703592; + $elementTime = $currentTime - 86400 * 365; + $result = (string)relative_modified_date($elementTime, $currentTime, false); + + $this->assertEquals('last year', $result); + + $elementTime = $currentTime - 86400 * 450; + $result = (string)relative_modified_date($elementTime, $currentTime, false); + + $this->assertEquals('last year', $result); + } + + public function testRelativeTimeYearsAgo(){ + $currentTime = 1380703592; + $elementTime = $currentTime - 86400 * 365.25 * 2; + $result = (string)relative_modified_date($elementTime, $currentTime, false); + + $this->assertEquals('years ago', $result); + + $elementTime = $currentTime - 86400 * 365.25 * 3; + $result = (string)relative_modified_date($elementTime, $currentTime, false); + + $this->assertEquals('years ago', $result); + } } diff --git a/tests/lib/user.php b/tests/lib/user.php index 66c7f3f0d747a93c1b1437f14a9d5309470473eb..fdf9e7a08e0ac77e857b26368c773cec186eac42 100644 --- a/tests/lib/user.php +++ b/tests/lib/user.php @@ -12,18 +12,26 @@ namespace Test; use OC\Hooks\PublicEmitter; class User extends \PHPUnit_Framework_TestCase { - + /** + * @var \OC_User_Backend | \PHPUnit_Framework_MockObject_MockObject $backend + */ + private $backend; + + protected function setUp(){ + $this->backend = $this->getMock('\OC_User_Dummy'); + $manager = \OC_User::getManager(); + $manager->registerBackend($this->backend); + } + public function testCheckPassword() { - /** - * @var \OC_User_Backend | \PHPUnit_Framework_MockObject_MockObject $backend - */ - $backend = $this->getMock('\OC_User_Dummy'); - $backend->expects($this->once()) + + $this->backend->expects($this->once()) ->method('checkPassword') ->with($this->equalTo('foo'), $this->equalTo('bar')) - ->will($this->returnValue('foo')); + ->will($this->returnValue('foo')) + ; - $backend->expects($this->any()) + $this->backend->expects($this->any()) ->method('implementsActions') ->will($this->returnCallback(function ($actions) { if ($actions === \OC_USER_BACKEND_CHECK_PASSWORD) { @@ -33,11 +41,33 @@ class User extends \PHPUnit_Framework_TestCase { } })); - $manager = \OC_User::getManager(); - $manager->registerBackend($backend); - $uid = \OC_User::checkPassword('foo', 'bar'); $this->assertEquals($uid, 'foo'); } + + public function testDeleteUser() { + $fail = \OC_User::deleteUser('victim'); + $this->assertFalse($fail); + + $success = \OC_User::createUser('victim', 'password'); + + $success = \OC_User::deleteUser('victim'); + $this->assertTrue($success); + } + + public function testCreateUser(){ + $this->backend->expects($this->any()) + ->method('implementsActions') + ->will($this->returnCallback(function ($actions) { + if ($actions === \OC_USER_BACKEND_CREATE_USER) { + return true; + } else { + return false; + } + })); + + $user = \OC_User::createUser('newuser', 'newpassword'); + $this->assertEquals('newuser', $user->getUid()); + } } \ No newline at end of file diff --git a/tests/lib/user/avataruserdummy.php b/tests/lib/user/avataruserdummy.php new file mode 100644 index 0000000000000000000000000000000000000000..738b10492ea6e5d16aa90025169182b46bee5930 --- /dev/null +++ b/tests/lib/user/avataruserdummy.php @@ -0,0 +1,27 @@ +. +* +*/ + +class Avatar_User_Dummy extends \OC_User_Dummy { + public function canChangeAvatar($uid) { + return true; + } +} \ No newline at end of file diff --git a/tests/lib/user/backend.php b/tests/lib/user/backend.php index 40674424c96efb918f0c518532566122a4c60e80..1384c54a92161dd8971d53f1803a97acb4cc1852 100644 --- a/tests/lib/user/backend.php +++ b/tests/lib/user/backend.php @@ -39,7 +39,7 @@ abstract class Test_User_Backend extends PHPUnit_Framework_TestCase { /** * get a new unique user name * test cases can override this in order to clean up created user - * @return array + * @return string */ public function getUser() { return uniqid('test_'); @@ -82,8 +82,8 @@ abstract class Test_User_Backend extends PHPUnit_Framework_TestCase { $this->assertTrue($this->backend->userExists($name1)); $this->assertTrue($this->backend->userExists($name2)); - $this->assertTrue($this->backend->checkPassword($name1, 'pass1')); - $this->assertTrue($this->backend->checkPassword($name2, 'pass2')); + $this->assertSame($name1, $this->backend->checkPassword($name1, 'pass1')); + $this->assertSame($name2, $this->backend->checkPassword($name2, 'pass2')); $this->assertFalse($this->backend->checkPassword($name1, 'pass2')); $this->assertFalse($this->backend->checkPassword($name2, 'pass1')); @@ -93,7 +93,7 @@ abstract class Test_User_Backend extends PHPUnit_Framework_TestCase { $this->backend->setPassword($name1, 'newpass1'); $this->assertFalse($this->backend->checkPassword($name1, 'pass1')); - $this->assertTrue($this->backend->checkPassword($name1, 'newpass1')); + $this->assertSame($name1, $this->backend->checkPassword($name1, 'newpass1')); $this->assertFalse($this->backend->checkPassword($name2, 'newpass1')); } } diff --git a/tests/lib/user/database.php b/tests/lib/user/database.php index fe7d87c44de2bc9a2cd564e8993ae3f25a6728dd..d7cc39ae387831e48c78891d4fe691ae7ccd392d 100644 --- a/tests/lib/user/database.php +++ b/tests/lib/user/database.php @@ -21,19 +21,14 @@ */ class Test_User_Database extends Test_User_Backend { - /** - * get a new unique user name - * test cases can override this in order to clean up created user - * @return array - */ public function getUser() { - $user=uniqid('test_'); + $user = parent::getUser(); $this->users[]=$user; return $user; } public function setUp() { - $this->backend=new OC_User_Dummy(); + $this->backend=new OC_User_Database(); } public function tearDown() { diff --git a/tests/lib/user/manager.php b/tests/lib/user/manager.php index 00901dd4115c7e83aa4af3859b71957fbfa73dfb..ad1ac9e12f2604a6201a0fb2269df177fcfacce0 100644 --- a/tests/lib/user/manager.php +++ b/tests/lib/user/manager.php @@ -346,4 +346,76 @@ class Manager extends \PHPUnit_Framework_TestCase { $manager->createUser('foo', 'bar'); } + + public function testCountUsersNoBackend() { + $manager = new \OC\User\Manager(); + + $result = $manager->countUsers(); + $this->assertTrue(is_array($result)); + $this->assertTrue(empty($result)); + } + + public function testCountUsersOneBackend() { + /** + * @var \OC_User_Dummy | \PHPUnit_Framework_MockObject_MockObject $backend + */ + $backend = $this->getMock('\OC_User_Dummy'); + $backend->expects($this->once()) + ->method('countUsers') + ->will($this->returnValue(7)); + + $backend->expects($this->once()) + ->method('implementsActions') + ->with(\OC_USER_BACKEND_COUNT_USERS) + ->will($this->returnValue(true)); + + $manager = new \OC\User\Manager(); + $manager->registerBackend($backend); + + $result = $manager->countUsers(); + $keys = array_keys($result); + $this->assertTrue(strpos($keys[0], 'Mock_OC_User_Dummy') !== false); + + $users = array_shift($result); + $this->assertEquals(7, $users); + } + + public function testCountUsersTwoBackends() { + /** + * @var \OC_User_Dummy | \PHPUnit_Framework_MockObject_MockObject $backend + */ + $backend1 = $this->getMock('\OC_User_Dummy'); + $backend1->expects($this->once()) + ->method('countUsers') + ->will($this->returnValue(7)); + + $backend1->expects($this->once()) + ->method('implementsActions') + ->with(\OC_USER_BACKEND_COUNT_USERS) + ->will($this->returnValue(true)); + + $backend2 = $this->getMock('\OC_User_Dummy'); + $backend2->expects($this->once()) + ->method('countUsers') + ->will($this->returnValue(16)); + + $backend2->expects($this->once()) + ->method('implementsActions') + ->with(\OC_USER_BACKEND_COUNT_USERS) + ->will($this->returnValue(true)); + + $manager = new \OC\User\Manager(); + $manager->registerBackend($backend1); + $manager->registerBackend($backend2); + + $result = $manager->countUsers(); + //because the backends have the same class name, only one value expected + $this->assertEquals(1, count($result)); + $keys = array_keys($result); + $this->assertTrue(strpos($keys[0], 'Mock_OC_User_Dummy') !== false); + + $users = array_shift($result); + //users from backends shall be summed up + $this->assertEquals(7+16, $users); + } } diff --git a/tests/lib/user/session.php b/tests/lib/user/session.php index e457a7bda30218463cec7fb1bfdf56ed0e5e8e97..46b268b3624a6344f21fb7d020017b9768c0e91e 100644 --- a/tests/lib/user/session.php +++ b/tests/lib/user/session.php @@ -52,9 +52,20 @@ class Session extends \PHPUnit_Framework_TestCase { public function testLoginValidPasswordEnabled() { $session = $this->getMock('\OC\Session\Memory', array(), array('')); - $session->expects($this->once()) + $session->expects($this->exactly(2)) ->method('set') - ->with('user_id', 'foo'); + ->with($this->callback(function($key) { + switch($key) { + case 'user_id': + case 'loginname': + return true; + break; + default: + return false; + break; + } + }, + 'foo')); $manager = $this->getMock('\OC\User\Manager'); diff --git a/tests/lib/user/user.php b/tests/lib/user/user.php index de5ccbf38c101912de766d1c0eeb67a20cba27fc..3f90432c6b0f92662fa4389913c94006ba5f153d 100644 --- a/tests/lib/user/user.php +++ b/tests/lib/user/user.php @@ -9,6 +9,7 @@ namespace Test\User; +use OC\AllConfig; use OC\Hooks\PublicEmitter; class User extends \PHPUnit_Framework_TestCase { @@ -87,6 +88,75 @@ class User extends \PHPUnit_Framework_TestCase { $this->assertFalse($user->setPassword('bar','')); } + public function testChangeAvatarSupportedYes() { + /** + * @var \OC_User_Backend | \PHPUnit_Framework_MockObject_MockObject $backend + */ + require_once 'avataruserdummy.php'; + $backend = $this->getMock('Avatar_User_Dummy'); + $backend->expects($this->once()) + ->method('canChangeAvatar') + ->with($this->equalTo('foo')) + ->will($this->returnValue(true)); + + $backend->expects($this->any()) + ->method('implementsActions') + ->will($this->returnCallback(function ($actions) { + if ($actions === \OC_USER_BACKEND_PROVIDE_AVATAR) { + return true; + } else { + return false; + } + })); + + $user = new \OC\User\User('foo', $backend); + $this->assertTrue($user->canChangeAvatar()); + } + + public function testChangeAvatarSupportedNo() { + /** + * @var \OC_User_Backend | \PHPUnit_Framework_MockObject_MockObject $backend + */ + require_once 'avataruserdummy.php'; + $backend = $this->getMock('Avatar_User_Dummy'); + $backend->expects($this->once()) + ->method('canChangeAvatar') + ->with($this->equalTo('foo')) + ->will($this->returnValue(false)); + + $backend->expects($this->any()) + ->method('implementsActions') + ->will($this->returnCallback(function ($actions) { + if ($actions === \OC_USER_BACKEND_PROVIDE_AVATAR) { + return true; + } else { + return false; + } + })); + + $user = new \OC\User\User('foo', $backend); + $this->assertFalse($user->canChangeAvatar()); + } + + public function testChangeAvatarNotSupported() { + /** + * @var \OC_User_Backend | \PHPUnit_Framework_MockObject_MockObject $backend + */ + require_once 'avataruserdummy.php'; + $backend = $this->getMock('Avatar_User_Dummy'); + $backend->expects($this->never()) + ->method('canChangeAvatar'); + + $backend->expects($this->any()) + ->method('implementsActions') + ->will($this->returnCallback(function ($actions) { + return false; + })); + + $user = new \OC\User\User('foo', $backend); + $this->assertTrue($user->canChangeAvatar()); + } + public function testDelete() { /** * @var \OC_User_Backend | \PHPUnit_Framework_MockObject_MockObject $backend @@ -136,7 +206,9 @@ class User extends \PHPUnit_Framework_TestCase { ->method('implementsActions') ->will($this->returnValue(false)); - $user = new \OC\User\User('foo', $backend); + $allConfig = new AllConfig(); + + $user = new \OC\User\User('foo', $backend, null, $allConfig); $this->assertEquals(\OC_Config::getValue("datadirectory", \OC::$SERVERROOT . "/data") . '/foo', $user->getHome()); } diff --git a/tests/lib/util.php b/tests/lib/util.php index d607a3e77256ec02ae75beb29cc761b6762e9bad..bfe68f5f680fa348dfbfb2b6145129b43be1972e 100644 --- a/tests/lib/util.php +++ b/tests/lib/util.php @@ -88,11 +88,69 @@ class Test_Util extends PHPUnit_Framework_TestCase { OC_Config::deleteKey('mail_domain'); } + function testGetConfiguredEmailAddressFromConfig() { + OC_Config::setValue('mail_domain', 'example.com'); + OC_Config::setValue('mail_from_address', 'owncloud'); + $email = \OCP\Util::getDefaultEmailAddress("no-reply"); + $this->assertEquals('owncloud@example.com', $email); + OC_Config::deleteKey('mail_domain'); + OC_Config::deleteKey('mail_from_address'); + } + function testGetInstanceIdGeneratesValidId() { OC_Config::deleteKey('instanceid'); $this->assertStringStartsWith('oc', OC_Util::getInstanceId()); } + /** + * Tests that the home storage is not wrapped when no quota exists. + */ + function testHomeStorageWrapperWithoutQuota() { + $user1 = uniqid(); + \OC_User::createUser($user1, 'test'); + OC_Preferences::setValue($user1, 'files', 'quota', 'none'); + \OC_User::setUserId($user1); + + \OC_Util::setupFS($user1); + + $userMount = \OC\Files\Filesystem::getMountManager()->find('/' . $user1 . '/'); + $this->assertNotNull($userMount); + $this->assertNotInstanceOf('\OC\Files\Storage\Wrapper\Quota', $userMount->getStorage()); + + // clean up + \OC_User::setUserId(''); + \OC_User::deleteUser($user1); + OC_Preferences::deleteUser($user1); + \OC_Util::tearDownFS(); + } + + /** + * Tests that the home storage is not wrapped when no quota exists. + */ + function testHomeStorageWrapperWithQuota() { + $user1 = uniqid(); + \OC_User::createUser($user1, 'test'); + OC_Preferences::setValue($user1, 'files', 'quota', '1024'); + \OC_User::setUserId($user1); + + \OC_Util::setupFS($user1); + + $userMount = \OC\Files\Filesystem::getMountManager()->find('/' . $user1 . '/'); + $this->assertNotNull($userMount); + $this->assertInstanceOf('\OC\Files\Storage\Wrapper\Quota', $userMount->getStorage()); + + // ensure that root wasn't wrapped + $rootMount = \OC\Files\Filesystem::getMountManager()->find('/'); + $this->assertNotNull($rootMount); + $this->assertNotInstanceOf('\OC\Files\Storage\Wrapper\Quota', $rootMount->getStorage()); + + // clean up + \OC_User::setUserId(''); + \OC_User::deleteUser($user1); + OC_Preferences::deleteUser($user1); + \OC_Util::tearDownFS(); + } + /** * @dataProvider baseNameProvider */ diff --git a/tests/phpunit-autotest.xml b/tests/phpunit-autotest.xml index a893e96ad9722525ac382b3b13c514d8f94e2433..1a2ab35491b88bbc10c8d8482376b0e336044fbc 100644 --- a/tests/phpunit-autotest.xml +++ b/tests/phpunit-autotest.xml @@ -35,5 +35,12 @@ + + + + detail + + + diff --git a/tests/preseed-config.php b/tests/preseed-config.php index 9791e713dacbf88ebad247807c2245e1b18d97e8..95ffb4514bf663b8caf4ced6cad438c0769d1f66 100644 --- a/tests/preseed-config.php +++ b/tests/preseed-config.php @@ -16,4 +16,9 @@ $CONFIG = array ( 'writable' => false, ) ), + ); + +if(substr(strtolower(PHP_OS), 0, 3) == "win") { + $CONFIG['openssl'] = array( 'config' => OC::$SERVERROOT.'/tests/data/openssl.cnf'); +} diff --git a/tests/testcleanuplistener.php b/tests/testcleanuplistener.php new file mode 100644 index 0000000000000000000000000000000000000000..a969ece6dd579e3bd8079853459e95865992cb44 --- /dev/null +++ b/tests/testcleanuplistener.php @@ -0,0 +1,139 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +/** + * Detects tests that didn't clean up properly, show a warning, then clean up after them. + */ +class TestCleanupListener implements PHPUnit_Framework_TestListener { + private $verbosity; + + public function __construct($verbosity = 'verbose') { + $this->verbosity = $verbosity; + } + + public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) { + } + + public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) { + } + + public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) { + } + + public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) { + } + + public function startTest(PHPUnit_Framework_Test $test) { + } + + public function endTest(PHPUnit_Framework_Test $test, $time) { + } + + public function startTestSuite(PHPUnit_Framework_TestSuite $suite) { + } + + public function endTestSuite(PHPUnit_Framework_TestSuite $suite) { + if ($this->cleanStrayDataFiles() && $this->isShowSuiteWarning()) { + printf("TestSuite '%s': Did not clean up data dir\n", $suite->getName()); + } + if ($this->cleanStrayHooks() && $this->isShowSuiteWarning()) { + printf("TestSuite '%s': Did not clean up hooks\n", $suite->getName()); + } + if ($this->cleanProxies() && $this->isShowSuiteWarning()) { + printf("TestSuite '%s': Did not clean up proxies\n", $suite->getName()); + } + } + + private function isShowSuiteWarning() { + return $this->verbosity === 'suite' || $this->verbosity === 'detail'; + } + + private function isShowDetail() { + return $this->verbosity === 'detail'; + } + + private function unlinkDir($dir) { + if ($dh = @opendir($dir)) { + while (($file = readdir($dh)) !== false) { + if ($file === '..' || $file === '.') { + continue; + } + $path = $dir . '/' . $file; + if (is_dir($path)) { + $this->unlinkDir($path); + } + else { + @unlink($path); + } + } + closedir($dh); + } + @rmdir($dir); + } + + private function cleanStrayDataFiles() { + $knownEntries = array( + 'owncloud.log' => true, + 'owncloud.db' => true, + '..' => true, + '.' => true + ); + $datadir = \OC_Config::getValue('datadirectory', \OC::$SERVERROOT . '/data'); + $entries = array(); + if ($dh = opendir($datadir)) { + while (($file = readdir($dh)) !== false) { + if (!isset($knownEntries[$file])) { + $entries[] = $file; + } + } + closedir($dh); + } + + if (count($entries) > 0) { + foreach ($entries as $entry) { + $this->unlinkDir($datadir . '/' . $entry); + if ($this->isShowDetail()) { + printf("Stray datadir entry: %s\n", $entry); + } + } + return true; + } + + return false; + } + + private function cleanStrayHooks() { + $hasHooks = false; + $hooks = OC_Hook::getHooks(); + if (!$hooks || sizeof($hooks) === 0) { + return false; + } + + foreach ($hooks as $signalClass => $signals) { + if (sizeof($signals)) { + foreach ($signals as $signalName => $handlers ) { + if (sizeof($handlers) > 0) { + $hasHooks = true; + OC_Hook::clear($signalClass, $signalName); + if ($this->isShowDetail()) { + printf("Stray hook: \"%s\" \"%s\"\n", $signalClass, $signalName); + } + } + } + } + } + return $hasHooks; + } + + private function cleanProxies() { + $proxies = OC_FileProxy::getProxies(); + OC_FileProxy::clearProxies(); + return count($proxies) > 0; + } +} +?> diff --git a/tests/win32-phpunit.php b/tests/win32-phpunit.php deleted file mode 100644 index ac8f95efcbfb17af7a508bcd9401eb461fbca8f7..0000000000000000000000000000000000000000 --- a/tests/win32-phpunit.php +++ /dev/null @@ -1,347 +0,0 @@ -printHeader(); - $this->printFooter($result); - } - - protected function writeProgress($progress) - { - //ignore - } - } - break; - } -} - -//loading of OC_PHPUnit_TextUI_Command -switch (OC_PHPUnit_Loader::$PHPUnitVersionId) { - case "36": - case "37": { - class OC_PHPUnit_TextUI_Command extends PHPUnit_TextUI_Command - { - - public static function main($exit = TRUE) - { - $command = new OC_PHPUnit_TextUI_Command(); - $command->run($_SERVER['argv'], $exit); - } - - protected function handleArguments(array $argv) - { - parent::handleArguments($argv); - $this->arguments['listeners'][] = new OC_PHPUnit_Framework_TestListener(); - $this->arguments['printer'] = new OC_PHPUnit_TextUI_ResultPrinter(); - } - - protected function createRunner() - { - $coverage_Filter = new PHP_CodeCoverage_Filter(); - $coverage_Filter->addFileToBlacklist(__FILE__); - $runner = new PHPUnit_TextUI_TestRunner($this->arguments['loader'], $coverage_Filter); - return $runner; - } - } - break; - } -} - -class OC_PHPUnit_Loader -{ - - const SUCCESS_EXIT = 0; - const FAILURE_EXIT = 1; - const EXCEPTION_EXIT = 2; - - public static $PHPUnitVersionId; - - /** - * @return void - */ - public static function checkIncludePath() - { - //check include path - $PHPUnitParentDirectory = self::getPHPUnitParentDirectory(); - if (is_null($PHPUnitParentDirectory)) { - echo "Cannot find PHPUnit in include path (" . ini_get('include_path') . ")"; - exit(OC_PHPUnit_Loader::FAILURE_EXIT); - } - } - - /** - * @return null | string - */ - private static function getPHPUnitParentDirectory() - { - $pathArray = explode(PATH_SEPARATOR, ini_get('include_path')); - foreach ($pathArray as $path) - { - if (file_exists($path . DIRECTORY_SEPARATOR . 'PHPUnit/')) { - return $path; - } - } - return null; - } - - /** - * @return void - */ - public static function detectPHPUnitVersionId() - { - require_once 'PHPUnit/Runner/Version.php'; - - $PHPUnitVersion = PHPUnit_Runner_Version::id(); - - if ($PHPUnitVersion === "@package_version@") { - - self::$PHPUnitVersionId = "37"; - } - else if (version_compare($PHPUnitVersion, '3.7.0') >= 0) { - - self::$PHPUnitVersionId = "37"; - } - else if (version_compare($PHPUnitVersion, '3.6.0') >= 0) { - - self::$PHPUnitVersionId = "36"; - } - else if (version_compare($PHPUnitVersion, '3.6.0') >= 0) { - - echo "unsupported PHPUnit version: $PHPUnitVersion"; - exit(OC_PHPUnit_Loader::FAILURE_EXIT); - } - } - - /** - * @return void - */ - public static function load37() - { - - require 'PHPUnit/Autoload.php'; - - } - - - /** - * @return void - */ - public static function load36() - { - define('PHPUnit_MAIN_METHOD', 'OC_PHPUnit_TextUI_Command::main'); - - require 'PHPUnit/Autoload.php'; - - } -} - -class OC_PHPUnit_Framework_TestListener implements PHPUnit_Framework_TestListener -{ - - private $isSummaryTestCountPrinted = false; - - public static function printEvent($eventName, $params = array()) - { - self::printText("\n[$eventName"); - foreach ($params as $key => $value) { - self::printText(" $key='$value'"); - } - self::printText("]\n"); - } - - public static function printText($text) - { - file_put_contents('php://stderr', $text); - } - - private static function getMessage(Exception $e) - { - $message = ""; - if (strlen(get_class($e)) != 0) { - $message = $message . get_class($e); - } - if (strlen($message) != 0 && strlen($e->getMessage()) != 0) { - $message = $message . " : "; - } - $message = $message . $e->getMessage(); - return self::escapeValue($message); - } - - private static function getDetails(Exception $e) - { - return self::escapeValue($e->getTraceAsString()); - } - - public static function getValueAsString($value) - { - if (is_null($value)) { - return "null"; - } - else if (is_bool($value)) { - return $value == true ? "true" : "false"; - } - else if (is_array($value) || is_string($value)) { - $valueAsString = print_r($value, true); - if (strlen($valueAsString) > 10000) { - return null; - } - return $valueAsString; - } - else if (is_scalar($value)){ - return print_r($value, true); - } - return null; - } - - private static function escapeValue($text) { - $text = str_replace("|", "||", $text); - $text = str_replace("'", "|'", $text); - $text = str_replace("\n", "|n", $text); - $text = str_replace("\r", "|r", $text); - $text = str_replace("]", "|]", $text); - return $text; - } - - public static function getFileName($className) - { - $reflectionClass = new ReflectionClass($className); - $fileName = $reflectionClass->getFileName(); - return $fileName; - } - - public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) - { - self::printEvent("testFailed", array( - "name" => $test->getName(), - "message" => self::getMessage($e), - "details" => self::getDetails($e) - )); - } - - public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) - { - $params = array( - "name" => $test->getName(), - "message" => self::getMessage($e), - "details" => self::getDetails($e) - ); - if ($e instanceof PHPUnit_Framework_ExpectationFailedException) { - $comparisonFailure = $e->getComparisonFailure(); - if ($comparisonFailure instanceof PHPUnit_Framework_ComparisonFailure) { - $actualResult = $comparisonFailure->getActual(); - $expectedResult = $comparisonFailure->getExpected(); - $actualString = self::getValueAsString($actualResult); - $expectedString = self::getValueAsString($expectedResult); - if (!is_null($actualString) && !is_null($expectedString)) { - $params['actual'] = self::escapeValue($actualString); - $params['expected'] = self::escapeValue($expectedString); - } - } - } - self::printEvent("testFailed", $params); - } - - public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) - { - self::printEvent("testIgnored", array( - "name" => $test->getName(), - "message" => self::getMessage($e), - "details" => self::getDetails($e) - )); - } - - public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) - { - self::printEvent("testIgnored", array( - "name" => $test->getName(), - "message" => self::getMessage($e), - "details" => self::getDetails($e) - )); - } - - public function startTest(PHPUnit_Framework_Test $test) - { - $testName = $test->getName(); - $params = array( - "name" => $testName - ); - if ($test instanceof PHPUnit_Framework_TestCase) { - $className = get_class($test); - $fileName = self::getFileName($className); - $params['locationHint'] = "php_qn://$fileName::\\$className::$testName"; - } - self::printEvent("testStarted", $params); - } - - public function endTest(PHPUnit_Framework_Test $test, $time) - { - self::printEvent("testFinished", array( - "name" => $test->getName(), - "duration" => (int)(round($time, 2) * 1000) - )); - } - - public function startTestSuite(PHPUnit_Framework_TestSuite $suite) - { - if (!$this->isSummaryTestCountPrinted) { - $this->isSummaryTestCountPrinted = true; - //print tests count - self::printEvent("testCount", array( - "count" => count($suite) - )); - } - - $suiteName = $suite->getName(); - if (empty($suiteName)) { - return; - } - $params = array( - "name" => $suiteName, - ); - if (class_exists($suiteName, false)) { - $fileName = self::getFileName($suiteName); - $params['locationHint'] = "php_qn://$fileName::\\$suiteName"; - } - self::printEvent("testSuiteStarted", $params); - } - - public function endTestSuite(PHPUnit_Framework_TestSuite $suite) - { - $suiteName = $suite->getName(); - if (empty($suiteName)) { - return; - } - self::printEvent("testSuiteFinished", - array( - "name" => $suite->getName() - )); - } - -} - -OC_PHPUnit_TextUI_Command::main(); diff --git a/upgrade.php b/upgrade.php deleted file mode 100644 index 518b514cd8a61de61b6a93059c9da6c60ca60726..0000000000000000000000000000000000000000 --- a/upgrade.php +++ /dev/null @@ -1,77 +0,0 @@ -. -* -*/ - -$RUNTIME_NOAPPS = true; //no apps, yet - -require_once 'lib/base.php'; - -// Don't do anything if ownCloud has not been installed -if(!OC_Config::getValue('installed', false)) { - exit(0); -} - -$br = OC::$CLI ? PHP_EOL : '
    '; - -if(OC::checkUpgrade(false)) { - $updater = new \OC\Updater(); - - $updater->listen('\OC\Updater', 'maintenanceStart', function () use ($br) { - echo 'Turned on maintenance mode'.$br; - }); - $updater->listen('\OC\Updater', 'maintenanceEnd', function () use ($br) { - echo 'Turned off maintenance mode'.$br; - echo 'Update successful'.$br; - }); - $updater->listen('\OC\Updater', 'dbUpgrade', function () use ($br) { - echo 'Updated database'.$br; - }); - $updater->listen('\OC\Updater', 'filecacheStart', function () use ($br) { - echo 'Updating filecache, this may take really long...'.$br; - }); - $updater->listen('\OC\Updater', 'filecacheDone', function () use ($br) { - echo 'Updated filecache'.$br; - }); - $updater->listen('\OC\Updater', 'filecacheProgress', function ($out) - use ($br) { - echo '... ' . $out . '% done ...'.$br; - }); - - $updater->listen('\OC\Updater', 'failure', function ($message) use ($br) { - echo $message.$br; - OC_Config::setValue('maintenance', false); - }); - - $updater->upgrade(); -} else { - if(OC_Config::getValue('maintenance', false)) { - //Possible scenario: ownCloud core is updated but an app failed - echo 'ownCloud is in maintenance mode'.$br; - echo 'Maybe an upgrade is already in process. Please check the ' - . 'logfile (data/owncloud.log). If you want to re-run the ' - . 'upgrade procedure, remove the "maintenance mode" from ' - . 'config.php and call this script again.' - .$br; - } else { - echo 'ownCloud is already latest version'.$br; - } -} diff --git a/version.php b/version.php index eb2e9a4a68ba0305af3a915f7e968d87bf5aa253..470aa8950725a38b75f3fb7499385a92c26f9d78 100644 --- a/version.php +++ b/version.php @@ -1,16 +1,16 @@