mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
4ba520e214
3887 changed files with 151948 additions and 91978 deletions
3
.bowerrc
Normal file
3
.bowerrc
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"directory": "core/vendor"
|
||||
}
|
||||
7
.gitignore
vendored
7
.gitignore
vendored
|
|
@ -89,8 +89,15 @@ nbproject
|
|||
|
||||
# nodejs
|
||||
/build/lib/
|
||||
/build/jsdocs/
|
||||
/npm-debug.log
|
||||
|
||||
# puphpet
|
||||
puphpet
|
||||
|
||||
# vagrant
|
||||
.vagrant
|
||||
Vagrantfile
|
||||
|
||||
# Tests - auto-generated files
|
||||
/data-autotest
|
||||
|
|
|
|||
|
|
@ -38,3 +38,8 @@ Options -Indexes
|
|||
<IfModule pagespeed_module>
|
||||
ModPagespeed Off
|
||||
</IfModule>
|
||||
<IfModule mod_headers.c>
|
||||
<FilesMatch ".(css|js)$">
|
||||
Header set Cache-Control "max-age=7200, public"
|
||||
</FilesMatch>
|
||||
</IfModule>
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@
|
|||
"maxlen": 120,
|
||||
"indent": 4,
|
||||
"browser": true,
|
||||
"laxbreak": true,
|
||||
"globals": {
|
||||
"console": true,
|
||||
"it": true,
|
||||
|
|
|
|||
|
|
@ -2,25 +2,18 @@ filter:
|
|||
excluded_paths:
|
||||
- '3rdparty/*'
|
||||
- 'apps/*/3rdparty/*'
|
||||
- 'apps/*/vendor/*'
|
||||
- 'l10n/*'
|
||||
- 'core/l10n/*'
|
||||
- 'apps/*/l10n/*'
|
||||
- 'lib/l10n/*'
|
||||
- 'core/vendor/*'
|
||||
- 'core/js/tests/lib/*.js'
|
||||
- 'core/js/tests/specs/*.js'
|
||||
- 'core/js/jquery-1.10.0.js'
|
||||
- 'core/js/jquery-1.10.0.min.js'
|
||||
- 'core/js/jquery-migrate-1.2.1.js'
|
||||
- 'core/js/jquery-migrate-1.2.1.min.js'
|
||||
- 'core/js/jquery-showpassword.js'
|
||||
- 'core/js/jquery-tipsy.js'
|
||||
- 'core/js/jquery-ui-1.10.0.custom.js'
|
||||
- 'core/js/jquery.inview.js'
|
||||
- 'core/js/placeholders.js'
|
||||
- 'core/js/underscore.js'
|
||||
- 'core/js/jquery.multiselect.js'
|
||||
- 'core/js/snap.js'
|
||||
- 'core/js/jquery.placeholder.js'
|
||||
|
||||
|
||||
imports:
|
||||
|
|
|
|||
2
3rdparty
2
3rdparty
|
|
@ -1 +1 @@
|
|||
Subproject commit 5db359cb710c51747d3fb78b605f8b8cdcd1e605
|
||||
Subproject commit dd0e7b6dcec142c790a6325b74a7c4fd3c6d7233
|
||||
|
|
@ -6,7 +6,9 @@ A personal cloud which runs on your own server.
|
|||
### Build Status on [Jenkins CI](https://ci.owncloud.org/)
|
||||
Git master: [](https://ci.owncloud.org/job/server-master-linux/)
|
||||
|
||||
Quality: [](https://scrutinizer-ci.com/g/owncloud/core/)
|
||||
Quality:
|
||||
- Scrutinizer: [](https://scrutinizer-ci.com/g/owncloud/core/)
|
||||
- CodeClimate: [](https://codeclimate.com/github/owncloud/core)
|
||||
|
||||
### Installation instructions
|
||||
http://doc.owncloud.org/server/7.0/developer_manual/app/index.html
|
||||
|
|
|
|||
|
|
@ -27,7 +27,9 @@ $success = true;
|
|||
//Now delete
|
||||
foreach ($files as $file) {
|
||||
if (\OC\Files\Filesystem::file_exists($dir . '/' . $file) &&
|
||||
!\OC\Files\Filesystem::unlink($dir . '/' . $file)) {
|
||||
!(\OC\Files\Filesystem::isDeletable($dir . '/' . $file) &&
|
||||
\OC\Files\Filesystem::unlink($dir . '/' . $file))
|
||||
) {
|
||||
$filesWithError .= $file . "\n";
|
||||
$success = false;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ function progress($notification_code, $severity, $message, $message_code, $bytes
|
|||
|
||||
case STREAM_NOTIFY_PROGRESS:
|
||||
if ($bytes_transferred > 0) {
|
||||
if (!isset($filesize)) {
|
||||
if (!isset($filesize) || $filesize === 0) {
|
||||
} else {
|
||||
$progress = (int)(($bytes_transferred/$filesize)*100);
|
||||
if($progress>$lastsize) { //limit the number or messages send
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
<?php
|
||||
|
||||
\OC::$server->getSession()->close();
|
||||
|
||||
// Firefox and Konqueror tries to download application/json for me. --Arthur
|
||||
OCP\JSON::setContentTypeHeader('text/plain');
|
||||
|
||||
|
|
@ -7,7 +9,7 @@ OCP\JSON::setContentTypeHeader('text/plain');
|
|||
// If not, check the login.
|
||||
// If no token is sent along, rely on login only
|
||||
|
||||
$allowedPermissions = OCP\PERMISSION_ALL;
|
||||
$allowedPermissions = \OCP\Constants::PERMISSION_ALL;
|
||||
$errorCode = null;
|
||||
|
||||
$l = \OC::$server->getL10N('files');
|
||||
|
|
@ -27,7 +29,7 @@ if (empty($_POST['dirToken'])) {
|
|||
\OC_User::setIncognitoMode(true);
|
||||
|
||||
// return only read permissions for public upload
|
||||
$allowedPermissions = OCP\PERMISSION_READ;
|
||||
$allowedPermissions = \OCP\Constants::PERMISSION_READ;
|
||||
$publicDirectory = !empty($_POST['subdir']) ? $_POST['subdir'] : '/';
|
||||
|
||||
$linkItem = OCP\Share::getShareByToken($_POST['dirToken']);
|
||||
|
|
@ -36,7 +38,7 @@ if (empty($_POST['dirToken'])) {
|
|||
die();
|
||||
}
|
||||
|
||||
if (!($linkItem['permissions'] & OCP\PERMISSION_CREATE)) {
|
||||
if (!($linkItem['permissions'] & \OCP\Constants::PERMISSION_CREATE)) {
|
||||
OCP\JSON::checkLoggedIn();
|
||||
} else {
|
||||
// resolve reshares
|
||||
|
|
@ -64,13 +66,7 @@ if (empty($_POST['dirToken'])) {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
OCP\JSON::callCheck();
|
||||
if (!\OCP\App::isEnabled('files_encryption')) {
|
||||
// encryption app need to create keys later, so can't close too early
|
||||
\OC::$server->getSession()->close();
|
||||
}
|
||||
|
||||
|
||||
// get array with current storage stats (e.g. max file size)
|
||||
$storageStats = \OCA\Files\Helper::buildFileStorageStatistics($dir);
|
||||
|
|
|
|||
|
|
@ -16,4 +16,7 @@
|
|||
<files>appinfo/remote.php</files>
|
||||
<webdav>appinfo/remote.php</webdav>
|
||||
</remote>
|
||||
<documentation>
|
||||
<user>user-files</user>
|
||||
</documentation>
|
||||
</info>
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ $server->setBaseUri($baseuri);
|
|||
$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 \Sabre\DAV\Browser\Plugin(false, false)); // Show something in the Browser, but no upload
|
||||
$server->addPlugin(new OC_Connector_Sabre_FilesPlugin());
|
||||
$server->addPlugin(new OC_Connector_Sabre_MaintenancePlugin());
|
||||
$server->addPlugin(new OC_Connector_Sabre_ExceptionLoggerPlugin('webdav'));
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class ApiController extends Controller {
|
|||
*
|
||||
* @param int $x
|
||||
* @param int $y
|
||||
* @param string $file
|
||||
* @param string $file URL-encoded filename
|
||||
* @return JSONResponse|DownloadResponse
|
||||
*/
|
||||
public function getThumbnail($x, $y, $file) {
|
||||
|
|
@ -41,9 +41,9 @@ class ApiController extends Controller {
|
|||
}
|
||||
|
||||
try {
|
||||
$preview = new Preview('', 'files', $file, $x, $y, true);
|
||||
$preview = new Preview('', 'files', urldecode($file), $x, $y, true);
|
||||
echo($preview->showPreview('image/png'));
|
||||
return new DownloadResponse($file.'.png', 'image/png');
|
||||
return new DownloadResponse(urldecode($file).'.png', 'image/png');
|
||||
} catch (\Exception $e) {
|
||||
return new JSONResponse('File not found.', Http::STATUS_NOT_FOUND);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,11 @@
|
|||
.actions { padding:5px; height:32px; display: inline-block; float: left; }
|
||||
.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; }
|
||||
.actions .button a:hover,
|
||||
.actions .button a:focus,
|
||||
.actions .button a:active {
|
||||
color: #333;
|
||||
}
|
||||
.actions.hidden { display: none; }
|
||||
|
||||
#new {
|
||||
|
|
@ -99,7 +103,9 @@
|
|||
}
|
||||
|
||||
#filestable tbody tr { background-color:#fff; height:40px; }
|
||||
#filestable tbody tr:hover, tbody tr:active {
|
||||
#filestable tbody tr:hover,
|
||||
#filestable tbody tr:focus,
|
||||
#filestable tbody tr:active {
|
||||
background-color: rgb(240,240,240);
|
||||
}
|
||||
#filestable tbody tr.selected {
|
||||
|
|
@ -123,7 +129,8 @@ span.extension {
|
|||
transition: opacity 300ms;
|
||||
vertical-align: top;
|
||||
}
|
||||
tr:hover span.extension {
|
||||
tr:hover span.extension,
|
||||
tr:focus span.extension {
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
||||
filter: alpha(opacity=100);
|
||||
opacity: 1;
|
||||
|
|
@ -166,7 +173,8 @@ table th .sort-indicator {
|
|||
.sort-indicator.hidden {
|
||||
visibility: hidden;
|
||||
}
|
||||
table th:hover .sort-indicator.hidden {
|
||||
table th:hover .sort-indicator.hidden,
|
||||
table th:focus .sort-indicator.hidden {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
|
|
@ -236,7 +244,6 @@ table td.filename a.name {
|
|||
line-height: 50px;
|
||||
padding: 0;
|
||||
}
|
||||
table tr[data-type="dir"] td.filename a.name span.nametext {font-weight:bold; }
|
||||
table td.filename input.filename {
|
||||
width: 70%;
|
||||
margin-top: 1px;
|
||||
|
|
@ -253,8 +260,10 @@ table td.filename .nametext, .uploadtext, .modified, .column-last>span:first-chi
|
|||
width: 90%;
|
||||
}
|
||||
/* ellipsize long modified dates to make room for showing delete button */
|
||||
#fileList tr:hover .modified, #fileList tr:hover .column-last>span:first-child,
|
||||
#fileList tr:focus .modified, #fileList tr:focus .column-last>span:first-child {
|
||||
#fileList tr:hover .modified,
|
||||
#fileList tr:focus .modified,
|
||||
#fileList tr:hover .column-last>span:first-child,
|
||||
#fileList tr:focus .column-last>span:first-child {
|
||||
width: 75%;
|
||||
}
|
||||
|
||||
|
|
@ -281,7 +290,8 @@ table td.filename .nametext .innernametext {
|
|||
max-width: 760px;
|
||||
}
|
||||
|
||||
table tr:hover td.filename .nametext .innernametext {
|
||||
table tr:hover td.filename .nametext .innernametext,
|
||||
table tr:focus td.filename .nametext .innernametext {
|
||||
max-width: 480px;
|
||||
}
|
||||
}
|
||||
|
|
@ -291,7 +301,8 @@ table td.filename .nametext .innernametext {
|
|||
max-width: 600px;
|
||||
}
|
||||
|
||||
table tr:hover td.filename .nametext .innernametext {
|
||||
table tr:hover td.filename .nametext .innernametext,
|
||||
table tr:focus td.filename .nametext .innernametext {
|
||||
max-width: 320px;
|
||||
}
|
||||
}
|
||||
|
|
@ -301,7 +312,8 @@ table td.filename .nametext .innernametext {
|
|||
max-width: 400px;
|
||||
}
|
||||
|
||||
table tr:hover td.filename .nametext .innernametext {
|
||||
table tr:hover td.filename .nametext .innernametext,
|
||||
table tr:focus td.filename .nametext .innernametext {
|
||||
max-width: 120px;
|
||||
}
|
||||
}
|
||||
|
|
@ -311,7 +323,8 @@ table td.filename .nametext .innernametext {
|
|||
max-width: 320px;
|
||||
}
|
||||
|
||||
table tr:hover td.filename .nametext .innernametext {
|
||||
table tr:hover td.filename .nametext .innernametext,
|
||||
table tr:focus td.filename .nametext .innernametext {
|
||||
max-width: 40px;
|
||||
}
|
||||
}
|
||||
|
|
@ -345,11 +358,13 @@ table td.filename .uploadtext {
|
|||
}
|
||||
/* Show checkbox when hovering, checked, or selected */
|
||||
#fileList tr:hover td.filename>input[type="checkbox"]:first-child,
|
||||
#fileList tr:focus td.filename>input[type="checkbox"]:first-child,
|
||||
#fileList tr td.filename>input[type="checkbox"]:checked:first-child,
|
||||
#fileList tr.selected td.filename>input[type="checkbox"]:first-child {
|
||||
opacity: 1;
|
||||
}
|
||||
.lte9 #fileList tr:hover td.filename>input[type="checkbox"]:first-child,
|
||||
.lte9 #fileList tr:focus td.filename>input[type="checkbox"]:first-child,
|
||||
.lte9 #fileList tr td.filename>input[type="checkbox"][checked=checked]:first-child,
|
||||
.lte9 #fileList tr.selected td.filename>input[type="checkbox"]:first-child {
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
||||
|
|
@ -470,13 +485,15 @@ a.action>img {
|
|||
position: relative;
|
||||
top: -21px;
|
||||
}
|
||||
#fileList tr:hover a.action, #fileList a.action.permanent {
|
||||
#fileList tr:hover a.action, #fileList a.action.permanent
|
||||
#fileList tr:focus a.action, #fileList a.action.permanent {
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
|
||||
filter: alpha(opacity=50);
|
||||
opacity: .5;
|
||||
display:inline;
|
||||
}
|
||||
#fileList tr:hover a.action:hover {
|
||||
#fileList tr:hover a.action:hover,
|
||||
#fileList tr:focus a.action:focus {
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
||||
filter: alpha(opacity=100);
|
||||
opacity: 1;
|
||||
|
|
@ -490,7 +507,10 @@ a.action>img {
|
|||
height: 70px;
|
||||
}
|
||||
|
||||
.summary:hover, .summary, table tr.summary td {
|
||||
.summary:hover,
|
||||
.summary:focus,
|
||||
.summary,
|
||||
table tr.summary td {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@ OCP\User::checkLoggedIn();
|
|||
OCP\Util::addStyle('files', 'files');
|
||||
OCP\Util::addStyle('files', 'upload');
|
||||
OCP\Util::addStyle('files', 'mobile');
|
||||
OCP\Util::addTranslations('files');
|
||||
OCP\Util::addscript('files', 'app');
|
||||
OCP\Util::addscript('files', 'file-upload');
|
||||
OCP\Util::addscript('files', 'jquery.iframe-transport');
|
||||
|
|
|
|||
|
|
@ -15,12 +15,34 @@
|
|||
(function() {
|
||||
|
||||
if (!OCA.Files) {
|
||||
/**
|
||||
* Namespace for the files app
|
||||
* @namespace OCA.Files
|
||||
*/
|
||||
OCA.Files = {};
|
||||
}
|
||||
|
||||
var App = {
|
||||
/**
|
||||
* @namespace OCA.Files.App
|
||||
*/
|
||||
OCA.Files.App = {
|
||||
/**
|
||||
* Navigation control
|
||||
*
|
||||
* @member {OCA.Files.Navigation}
|
||||
*/
|
||||
navigation: null,
|
||||
|
||||
/**
|
||||
* File list for the "All files" section.
|
||||
*
|
||||
* @member {OCA.Files.FileList}
|
||||
*/
|
||||
fileList: null,
|
||||
|
||||
/**
|
||||
* Initializes the files app
|
||||
*/
|
||||
initialize: function() {
|
||||
this.navigation = new OCA.Files.Navigation($('#app-navigation'));
|
||||
|
||||
|
|
@ -191,7 +213,6 @@
|
|||
OC.Util.History.pushState(params);
|
||||
}
|
||||
};
|
||||
OCA.Files.App = App;
|
||||
})();
|
||||
|
||||
$(document).ready(function() {
|
||||
|
|
|
|||
|
|
@ -19,10 +19,17 @@
|
|||
*
|
||||
*/
|
||||
|
||||
/* global OC */
|
||||
(function() {
|
||||
/**
|
||||
* Creates an breadcrumb element in the given container
|
||||
* @class BreadCrumb
|
||||
* @memberof OCA.Files
|
||||
* @classdesc Breadcrumbs that represent the current path.
|
||||
*
|
||||
* @param {Object} [options] options
|
||||
* @param {Function} [options.onClick] click event handler
|
||||
* @param {Function} [options.onDrop] drop event handler
|
||||
* @param {Function} [options.getCrumbUrl] callback that returns
|
||||
* the URL of a given breadcrumb
|
||||
*/
|
||||
var BreadCrumb = function(options){
|
||||
this.$el = $('<div class="breadcrumb"></div>');
|
||||
|
|
@ -37,12 +44,17 @@
|
|||
this.getCrumbUrl = options.getCrumbUrl;
|
||||
}
|
||||
};
|
||||
/**
|
||||
* @memberof OCA.Files
|
||||
*/
|
||||
BreadCrumb.prototype = {
|
||||
$el: null,
|
||||
dir: null,
|
||||
|
||||
/**
|
||||
* Total width of all breadcrumbs
|
||||
* @type int
|
||||
* @private
|
||||
*/
|
||||
totalWidth: 0,
|
||||
breadcrumbs: [],
|
||||
|
|
@ -64,8 +76,9 @@
|
|||
|
||||
/**
|
||||
* Returns the full URL to the given directory
|
||||
* @param part crumb data as map
|
||||
* @param index crumb index
|
||||
*
|
||||
* @param {Object.<String, String>} part crumb data as map
|
||||
* @param {int} index crumb index
|
||||
* @return full URL
|
||||
*/
|
||||
getCrumbUrl: function(part, index) {
|
||||
|
|
@ -121,8 +134,9 @@
|
|||
|
||||
/**
|
||||
* Makes a breadcrumb structure based on the given path
|
||||
* @param dir path to split into a breadcrumb structure
|
||||
* @return array of map {dir: path, name: displayName}
|
||||
*
|
||||
* @param {String} dir path to split into a breadcrumb structure
|
||||
* @return {Object.<String, String>} map of {dir: path, name: displayName}
|
||||
*/
|
||||
_makeCrumbs: function(dir) {
|
||||
var crumbs = [];
|
||||
|
|
@ -166,6 +180,8 @@
|
|||
|
||||
/**
|
||||
* Show/hide breadcrumbs to fit the given width
|
||||
*
|
||||
* @param {int} availableWidth available width
|
||||
*/
|
||||
setMaxWidth: function (availableWidth) {
|
||||
if (this.availableWidth !== availableWidth) {
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ function supportAjaxUploadWithProgress() {
|
|||
|
||||
/**
|
||||
* keeps track of uploads in progress and implements callbacks for the conflicts dialog
|
||||
* @type {OC.Upload}
|
||||
* @namespace
|
||||
*/
|
||||
OC.Upload = {
|
||||
_uploads: [],
|
||||
|
|
|
|||
|
|
@ -13,11 +13,14 @@
|
|||
|
||||
/**
|
||||
* Construct a new FileActions instance
|
||||
* @constructs FileActions
|
||||
* @memberof OCA.Files
|
||||
*/
|
||||
var FileActions = function() {
|
||||
this.initialize();
|
||||
}
|
||||
};
|
||||
FileActions.prototype = {
|
||||
/** @lends FileActions.prototype */
|
||||
actions: {},
|
||||
defaults: {},
|
||||
icons: {},
|
||||
|
|
@ -31,9 +34,14 @@
|
|||
/**
|
||||
* List of handlers to be notified whenever a register() or
|
||||
* setDefault() was called.
|
||||
*
|
||||
* @member {Function[]}
|
||||
*/
|
||||
_updateListeners: {},
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
initialize: function() {
|
||||
this.clear();
|
||||
// abusing jquery for events until we get a real event lib
|
||||
|
|
@ -45,7 +53,7 @@
|
|||
* Adds an event handler
|
||||
*
|
||||
* @param {String} eventName event name
|
||||
* @param Function callback
|
||||
* @param {Function} callback
|
||||
*/
|
||||
on: function(eventName, callback) {
|
||||
this.$el.on(eventName, callback);
|
||||
|
|
@ -75,7 +83,7 @@
|
|||
* Merges the actions from the given fileActions into
|
||||
* this instance.
|
||||
*
|
||||
* @param fileActions instance of OCA.Files.FileActions
|
||||
* @param {OCA.Files.FileActions} fileActions instance of OCA.Files.FileActions
|
||||
*/
|
||||
merge: function(fileActions) {
|
||||
var self = this;
|
||||
|
|
@ -113,8 +121,9 @@
|
|||
* to the name given in action.name
|
||||
* @param {String} action.mime mime type
|
||||
* @param {int} action.permissions permissions
|
||||
* @param {(Function|String)} action.icon icon
|
||||
* @param {Function} action.actionHandler function that performs the action
|
||||
* @param {(Function|String)} action.icon icon path to the icon or function
|
||||
* that returns it
|
||||
* @param {OCA.Files.FileActions~actionHandler} action.actionHandler action handler function
|
||||
*/
|
||||
registerAction: function (action) {
|
||||
var mime = action.mime;
|
||||
|
|
@ -130,6 +139,9 @@
|
|||
this.icons[name] = action.icon;
|
||||
this._notifyUpdateListeners('registerAction', {action: action});
|
||||
},
|
||||
/**
|
||||
* Clears all registered file actions.
|
||||
*/
|
||||
clear: function() {
|
||||
this.actions = {};
|
||||
this.defaults = {};
|
||||
|
|
@ -137,6 +149,12 @@
|
|||
this.currentFile = null;
|
||||
this._updateListeners = [];
|
||||
},
|
||||
/**
|
||||
* Sets the default action for a given mime type.
|
||||
*
|
||||
* @param {String} mime mime type
|
||||
* @param {String} name action name
|
||||
*/
|
||||
setDefault: function (mime, name) {
|
||||
this.defaults[mime] = name;
|
||||
this._notifyUpdateListeners('setDefault', {defaultAction: {mime: mime, name: name}});
|
||||
|
|
@ -261,7 +279,7 @@
|
|||
}
|
||||
var html = '<a href="#" class="action action-' + name.toLowerCase() + '" data-action="' + name + '">';
|
||||
if (img) {
|
||||
html += '<img class ="svg" src="' + img + '" />';
|
||||
html += '<img class ="svg" alt="" src="' + img + '" />';
|
||||
}
|
||||
html += '<span> ' + actionText + '</span></a>';
|
||||
|
||||
|
|
@ -370,6 +388,18 @@
|
|||
|
||||
OCA.Files.FileActions = FileActions;
|
||||
|
||||
/**
|
||||
* Action handler function for file actions
|
||||
*
|
||||
* @callback OCA.Files.FileActions~actionHandler
|
||||
* @param {String} fileName name of the clicked file
|
||||
* @param context context
|
||||
* @param {String} context.dir directory of the file
|
||||
* @param context.$file jQuery element of the file
|
||||
* @param {OCA.Files.FileList} context.fileList the FileList instance on which the action occurred
|
||||
* @param {OCA.Files.FileActions} context.fileActions the FileActions instance on which the action occurred
|
||||
*/
|
||||
|
||||
// global file actions to be used by all lists
|
||||
OCA.Files.fileActions = new OCA.Files.FileActions();
|
||||
OCA.Files.legacyFileActions = new OCA.Files.FileActions();
|
||||
|
|
@ -380,6 +410,7 @@
|
|||
// their actions on. Since legacy apps are very likely to break with other
|
||||
// FileList views than the main one ("All files"), actions registered
|
||||
// through window.FileActions will be limited to the main file list.
|
||||
// @deprecated use OCA.Files.FileActions instead
|
||||
window.FileActions = OCA.Files.legacyFileActions;
|
||||
window.FileActions.register = function (mime, name, permissions, icon, action, displayName) {
|
||||
console.warn('FileActions.register() is deprecated, please use OCA.Files.fileActions.register() instead', arguments);
|
||||
|
|
|
|||
|
|
@ -10,13 +10,26 @@
|
|||
|
||||
(function() {
|
||||
/**
|
||||
* @class OCA.Files.FileList
|
||||
* @classdesc
|
||||
*
|
||||
* The FileList class manages a file list view.
|
||||
* A file list view consists of a controls bar and
|
||||
* a file list table.
|
||||
*
|
||||
* @param $el container element with existing markup for the #controls
|
||||
* and a table
|
||||
* @param [options] map of options, see other parameters
|
||||
* @param [options.scrollContainer] scrollable container, defaults to $(window)
|
||||
* @param [options.dragOptions] drag options, disabled by default
|
||||
* @param [options.folderDropOptions] folder drop options, disabled by default
|
||||
*/
|
||||
var FileList = function($el, options) {
|
||||
this.initialize($el, options);
|
||||
};
|
||||
/**
|
||||
* @memberof OCA.Files
|
||||
*/
|
||||
FileList.prototype = {
|
||||
SORT_INDICATOR_ASC_CLASS: 'icon-triangle-n',
|
||||
SORT_INDICATOR_DESC_CLASS: 'icon-triangle-s',
|
||||
|
|
@ -41,51 +54,72 @@
|
|||
*/
|
||||
$fileList: null,
|
||||
|
||||
/**
|
||||
* @type OCA.Files.BreadCrumb
|
||||
*/
|
||||
breadcrumb: null,
|
||||
|
||||
/**
|
||||
* Instance of FileSummary
|
||||
* @type OCA.Files.FileSummary
|
||||
*/
|
||||
fileSummary: null,
|
||||
|
||||
/**
|
||||
* Whether the file list was initialized already.
|
||||
* @type boolean
|
||||
*/
|
||||
initialized: false,
|
||||
|
||||
// number of files per page
|
||||
pageSize: 20,
|
||||
/**
|
||||
* Number of files per page
|
||||
*
|
||||
* @return {int} page size
|
||||
*/
|
||||
pageSize: function() {
|
||||
return Math.ceil(this.$container.height() / 50);
|
||||
},
|
||||
|
||||
/**
|
||||
* Array of files in the current folder.
|
||||
* The entries are of file data.
|
||||
*
|
||||
* @type Array.<Object>
|
||||
*/
|
||||
files: [],
|
||||
|
||||
/**
|
||||
* File actions handler, defaults to OCA.Files.FileActions
|
||||
* @type OCA.Files.FileActions
|
||||
*/
|
||||
fileActions: null,
|
||||
|
||||
/**
|
||||
* Map of file id to file data
|
||||
* @type Object.<int, Object>
|
||||
*/
|
||||
_selectedFiles: {},
|
||||
|
||||
/**
|
||||
* Summary of selected files.
|
||||
* Instance of FileSummary.
|
||||
* @type OCA.Files.FileSummary
|
||||
*/
|
||||
_selectionSummary: null,
|
||||
|
||||
/**
|
||||
* Sort attribute
|
||||
* @type String
|
||||
*/
|
||||
_sort: 'name',
|
||||
|
||||
/**
|
||||
* Sort direction: 'asc' or 'desc'
|
||||
* @type String
|
||||
*/
|
||||
_sortDirection: 'asc',
|
||||
|
||||
/**
|
||||
* Sort comparator function for the current sort
|
||||
* @type Function
|
||||
*/
|
||||
_sortComparator: null,
|
||||
|
||||
|
|
@ -98,6 +132,7 @@
|
|||
|
||||
/**
|
||||
* Current directory
|
||||
* @type String
|
||||
*/
|
||||
_currentDirectory: null,
|
||||
|
||||
|
|
@ -114,6 +149,7 @@
|
|||
* @param options.dragOptions drag options, disabled by default
|
||||
* @param options.folderDropOptions folder drop options, disabled by default
|
||||
* @param options.scrollTo name of file to scroll to after the first load
|
||||
* @private
|
||||
*/
|
||||
initialize: function($el, options) {
|
||||
var self = this;
|
||||
|
|
@ -190,6 +226,11 @@
|
|||
this.fileActions.off('setDefault', this._onFileActionsUpdated);
|
||||
},
|
||||
|
||||
/**
|
||||
* Initializes the file actions, set up listeners.
|
||||
*
|
||||
* @param {OCA.Files.FileActions} fileActions file actions
|
||||
*/
|
||||
_initFileActions: function(fileActions) {
|
||||
this.fileActions = fileActions;
|
||||
if (!this.fileActions) {
|
||||
|
|
@ -485,7 +526,8 @@
|
|||
mimetype: $el.attr('data-mime'),
|
||||
type: $el.attr('data-type'),
|
||||
size: parseInt($el.attr('data-size'), 10),
|
||||
etag: $el.attr('data-etag')
|
||||
etag: $el.attr('data-etag'),
|
||||
permissions: parseInt($el.attr('data-permissions'), 10)
|
||||
};
|
||||
},
|
||||
|
||||
|
|
@ -496,7 +538,7 @@
|
|||
*/
|
||||
_nextPage: function(animate) {
|
||||
var index = this.$fileList.children().length,
|
||||
count = this.pageSize,
|
||||
count = this.pageSize(),
|
||||
tr,
|
||||
fileData,
|
||||
newTrs = [],
|
||||
|
|
@ -586,8 +628,8 @@
|
|||
},
|
||||
/**
|
||||
* Creates a new table row element using the given file data.
|
||||
* @param fileData map of file attributes
|
||||
* @param options map of attribute "loading" whether the entry is currently loading
|
||||
* @param {OCA.Files.FileInfo} fileData file info attributes
|
||||
* @param options map of attributes
|
||||
* @return new tr element (not appended to the table)
|
||||
*/
|
||||
_createRow: function(fileData, options) {
|
||||
|
|
@ -726,12 +768,14 @@
|
|||
* Adds an entry to the files array and also into the DOM
|
||||
* in a sorted manner.
|
||||
*
|
||||
* @param fileData map of file attributes
|
||||
* @param options map of attributes:
|
||||
* @param options.updateSummary true to update the summary after adding (default), false otherwise
|
||||
* @param options.silent true to prevent firing events like "fileActionsReady"
|
||||
* @param options.animate true to animate preview loading (defaults to true here)
|
||||
* @param options.scrollTo true to automatically scroll to the file's location
|
||||
* @param {OCA.Files.FileInfo} fileData map of file attributes
|
||||
* @param {Object} [options] map of attributes
|
||||
* @param {boolean} [options.updateSummary] true to update the summary
|
||||
* after adding (default), false otherwise. Defaults to true.
|
||||
* @param {boolean} [options.silent] true to prevent firing events like "fileActionsReady",
|
||||
* defaults to false.
|
||||
* @param {boolean} [options.animate] true to animate the thumbnail image after load
|
||||
* defaults to true.
|
||||
* @return new tr element (not appended to the table)
|
||||
*/
|
||||
add: function(fileData, options) {
|
||||
|
|
@ -797,11 +841,13 @@
|
|||
* Creates a new row element based on the given attributes
|
||||
* and returns it.
|
||||
*
|
||||
* @param fileData map of file attributes
|
||||
* @param options map of attributes:
|
||||
* - "index" optional index at which to insert the element
|
||||
* - "updateSummary" true to update the summary after adding (default), false otherwise
|
||||
* - "animate" true to animate the preview rendering
|
||||
* @param {OCA.Files.FileInfo} fileData map of file attributes
|
||||
* @param {Object} [options] map of attributes
|
||||
* @param {int} [options.index] index at which to insert the element
|
||||
* @param {boolean} [options.updateSummary] true to update the summary
|
||||
* after adding (default), false otherwise. Defaults to true.
|
||||
* @param {boolean} [options.animate] true to animate the thumbnail image after load
|
||||
* defaults to true.
|
||||
* @return new tr element (not appended to the table)
|
||||
*/
|
||||
_renderRow: function(fileData, options) {
|
||||
|
|
@ -868,6 +914,7 @@
|
|||
},
|
||||
/**
|
||||
* Returns the current directory
|
||||
* @method getCurrentDirectory
|
||||
* @return current directory
|
||||
*/
|
||||
getCurrentDirectory: function(){
|
||||
|
|
@ -1049,7 +1096,10 @@
|
|||
|
||||
/**
|
||||
* Generates a preview URL based on the URL space.
|
||||
* @param urlSpec map with {x: width, y: height, file: file path}
|
||||
* @param urlSpec attributes for the URL
|
||||
* @param {int} urlSpec.x width
|
||||
* @param {int} urlSpec.y height
|
||||
* @param {String} urlSpec.file path to the file
|
||||
* @return preview URL
|
||||
*/
|
||||
generatePreviewUrl: function(urlSpec) {
|
||||
|
|
@ -1156,8 +1206,9 @@
|
|||
/**
|
||||
* Removes a file entry from the list
|
||||
* @param name name of the file to remove
|
||||
* @param options optional options as map:
|
||||
* "updateSummary": true to update the summary (default), false otherwise
|
||||
* @param {Object} [options] map of attributes
|
||||
* @param {boolean} [options.updateSummary] true to update the summary
|
||||
* after removing, false otherwise. Defaults to true.
|
||||
* @return deleted element
|
||||
*/
|
||||
remove: function(name, options){
|
||||
|
|
@ -1189,7 +1240,7 @@
|
|||
// if there are less elements visible than one page
|
||||
// but there are still pending elements in the array,
|
||||
// then directly append the next page
|
||||
if (lastIndex < this.files.length && lastIndex < this.pageSize) {
|
||||
if (lastIndex < this.files.length && lastIndex < this.pageSize()) {
|
||||
this._nextPage(true);
|
||||
}
|
||||
|
||||
|
|
@ -1199,6 +1250,8 @@
|
|||
* Finds the index of the row before which the given
|
||||
* fileData should be inserted, considering the current
|
||||
* sorting
|
||||
*
|
||||
* @param {OCA.Files.FileInfo} fileData file info
|
||||
*/
|
||||
_findInsertionIndex: function(fileData) {
|
||||
var index = 0;
|
||||
|
|
@ -1513,7 +1566,7 @@
|
|||
/**
|
||||
* Shows the loading mask.
|
||||
*
|
||||
* @see #hideMask
|
||||
* @see OCA.Files.FileList#hideMask
|
||||
*/
|
||||
showMask: function() {
|
||||
// in case one was shown before
|
||||
|
|
@ -1534,7 +1587,7 @@
|
|||
},
|
||||
/**
|
||||
* Hide the loading mask.
|
||||
* @see #showMask
|
||||
* @see OCA.Files.FileList#showMask
|
||||
*/
|
||||
hideMask: function() {
|
||||
this.$el.find('.mask').remove();
|
||||
|
|
@ -1584,7 +1637,7 @@
|
|||
this.$el.find('.selectedActions').addClass('hidden');
|
||||
}
|
||||
else {
|
||||
canDelete = (this.getDirectoryPermissions() & OC.PERMISSION_DELETE);
|
||||
canDelete = (this.getDirectoryPermissions() & OC.PERMISSION_DELETE) && this.isSelectedDeletable();
|
||||
this.$el.find('.selectedActions').removeClass('hidden');
|
||||
this.$el.find('#headerSize a>span:first').text(OC.Util.humanFileSize(summary.totalSize));
|
||||
var selection = '';
|
||||
|
|
@ -1604,6 +1657,15 @@
|
|||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* Check whether all selected files are deletable
|
||||
*/
|
||||
isSelectedDeletable: function() {
|
||||
return _.reduce(this.getSelectedFiles(), function(deletable, file) {
|
||||
return deletable && (file.permissions & OC.PERMISSION_DELETE);
|
||||
}, true);
|
||||
},
|
||||
|
||||
/**
|
||||
* Returns whether all files are selected
|
||||
* @return true if all files are selected, false otherwise
|
||||
|
|
@ -1919,7 +1981,13 @@
|
|||
|
||||
// Animation
|
||||
var _this = this;
|
||||
this.$container.animate({
|
||||
var $scrollContainer = this.$container;
|
||||
if ($scrollContainer[0] === window) {
|
||||
// need to use "body" to animate scrolling
|
||||
// when the scroll container is the window
|
||||
$scrollContainer = $('body');
|
||||
}
|
||||
$scrollContainer.animate({
|
||||
// Scrolling to the top of the new element
|
||||
scrollTop: currentOffset + $fileRow.offset().top - $fileRow.height() * 2 - additionalOffset
|
||||
}, {
|
||||
|
|
@ -1953,15 +2021,17 @@
|
|||
|
||||
/**
|
||||
* Sort comparators.
|
||||
* @namespace OCA.Files.FileList.Comparators
|
||||
* @private
|
||||
*/
|
||||
FileList.Comparators = {
|
||||
/**
|
||||
* Compares two file infos by name, making directories appear
|
||||
* first.
|
||||
*
|
||||
* @param fileInfo1 file info
|
||||
* @param fileInfo2 file info
|
||||
* @return -1 if the first file must appear before the second one,
|
||||
* @param {OCA.Files.FileInfo} fileInfo1 file info
|
||||
* @param {OCA.Files.FileInfo} fileInfo2 file info
|
||||
* @return {int} -1 if the first file must appear before the second one,
|
||||
* 0 if they are identify, 1 otherwise.
|
||||
*/
|
||||
name: function(fileInfo1, fileInfo2) {
|
||||
|
|
@ -1976,9 +2046,9 @@
|
|||
/**
|
||||
* Compares two file infos by size.
|
||||
*
|
||||
* @param fileInfo1 file info
|
||||
* @param fileInfo2 file info
|
||||
* @return -1 if the first file must appear before the second one,
|
||||
* @param {OCA.Files.FileInfo} fileInfo1 file info
|
||||
* @param {OCA.Files.FileInfo} fileInfo2 file info
|
||||
* @return {int} -1 if the first file must appear before the second one,
|
||||
* 0 if they are identify, 1 otherwise.
|
||||
*/
|
||||
size: function(fileInfo1, fileInfo2) {
|
||||
|
|
@ -1987,9 +2057,9 @@
|
|||
/**
|
||||
* Compares two file infos by timestamp.
|
||||
*
|
||||
* @param fileInfo1 file info
|
||||
* @param fileInfo2 file info
|
||||
* @return -1 if the first file must appear before the second one,
|
||||
* @param {OCA.Files.FileInfo} fileInfo1 file info
|
||||
* @param {OCA.Files.FileInfo} fileInfo2 file info
|
||||
* @return {int} -1 if the first file must appear before the second one,
|
||||
* 0 if they are identify, 1 otherwise.
|
||||
*/
|
||||
mtime: function(fileInfo1, fileInfo2) {
|
||||
|
|
@ -1997,6 +2067,27 @@
|
|||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* File info attributes.
|
||||
*
|
||||
* @todo make this a real class in the future
|
||||
* @typedef {Object} OCA.Files.FileInfo
|
||||
*
|
||||
* @property {int} id file id
|
||||
* @property {String} name file name
|
||||
* @property {String} [path] file path, defaults to the list's current path
|
||||
* @property {String} mimetype mime type
|
||||
* @property {String} type "file" for files or "dir" for directories
|
||||
* @property {int} permissions file permissions
|
||||
* @property {int} mtime modification time in milliseconds
|
||||
* @property {boolean} [isShareMountPoint] whether the file is a share mount
|
||||
* point
|
||||
* @property {boolean} [isPreviewAvailable] whether a preview is available
|
||||
* for the given file type
|
||||
* @property {String} [icon] path to the mime type icon
|
||||
* @property {String} etag etag of the file
|
||||
*/
|
||||
|
||||
OCA.Files.FileList = FileList;
|
||||
})();
|
||||
|
||||
|
|
|
|||
|
|
@ -195,7 +195,10 @@
|
|||
|
||||
/**
|
||||
* Generates a preview URL based on the URL space.
|
||||
* @param urlSpec map with {x: width, y: height, file: file path}
|
||||
* @param urlSpec attributes for the URL
|
||||
* @param {int} urlSpec.x width
|
||||
* @param {int} urlSpec.y height
|
||||
* @param {String} urlSpec.file path to the file
|
||||
* @return preview URL
|
||||
* @deprecated used OCA.Files.FileList.generatePreviewUrl instead
|
||||
*/
|
||||
|
|
@ -350,7 +353,7 @@ var createDragShadow = function(event) {
|
|||
}
|
||||
|
||||
// do not show drag shadow for too many files
|
||||
var selectedFiles = _.first(FileList.getSelectedFiles(), FileList.pageSize);
|
||||
var selectedFiles = _.first(FileList.getSelectedFiles(), FileList.pageSize());
|
||||
selectedFiles = _.sortBy(selectedFiles, FileList._fileInfoCompare);
|
||||
|
||||
if (!isDragSelected && selectedFiles.length === 1) {
|
||||
|
|
|
|||
|
|
@ -19,14 +19,15 @@
|
|||
*
|
||||
*/
|
||||
|
||||
/* global OC, n, t */
|
||||
|
||||
(function() {
|
||||
/**
|
||||
* The FileSummary class encapsulates the file summary values and
|
||||
* the logic to render it in the given container
|
||||
*
|
||||
* @constructs FileSummary
|
||||
* @memberof OCA.Files
|
||||
*
|
||||
* @param $tr table row element
|
||||
* $param summary optional initial summary value
|
||||
*/
|
||||
var FileSummary = function($tr) {
|
||||
this.$el = $tr;
|
||||
|
|
|
|||
|
|
@ -13,10 +13,19 @@
|
|||
|
||||
(function() {
|
||||
|
||||
/**
|
||||
* @class OCA.Files.Navigation
|
||||
* @classdesc Navigation control for the files app sidebar.
|
||||
*
|
||||
* @param $el element containing the navigation
|
||||
*/
|
||||
var Navigation = function($el) {
|
||||
this.initialize($el);
|
||||
};
|
||||
|
||||
/**
|
||||
* @memberof OCA.Files
|
||||
*/
|
||||
Navigation.prototype = {
|
||||
|
||||
/**
|
||||
|
|
@ -31,6 +40,8 @@
|
|||
|
||||
/**
|
||||
* Initializes the navigation from the given container
|
||||
*
|
||||
* @private
|
||||
* @param $el element containing the navigation
|
||||
*/
|
||||
initialize: function($el) {
|
||||
|
|
|
|||
|
|
@ -8,7 +8,6 @@
|
|||
*
|
||||
*/
|
||||
|
||||
/* global OC */
|
||||
function Upload(fileSelector) {
|
||||
if ($.support.xhrFileUpload) {
|
||||
return new XHRUpload(fileSelector.target.files);
|
||||
|
|
|
|||
8
apps/files/l10n/ach.js
Normal file
8
apps/files/l10n/ach.js
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"_%n folder_::_%n folders_" : ["",""],
|
||||
"_%n file_::_%n files_" : ["",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["",""]
|
||||
},
|
||||
"nplurals=2; plural=(n > 1);");
|
||||
6
apps/files/l10n/ach.json
Normal file
6
apps/files/l10n/ach.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ "translations": {
|
||||
"_%n folder_::_%n folders_" : ["",""],
|
||||
"_%n file_::_%n files_" : ["",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["",""]
|
||||
},"pluralForm" :"nplurals=2; plural=(n > 1);"
|
||||
}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"_%n folder_::_%n folders_" => array("",""),
|
||||
"_%n file_::_%n files_" => array("",""),
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("","")
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=2; plural=(n > 1);";
|
||||
8
apps/files/l10n/ady.js
Normal file
8
apps/files/l10n/ady.js
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"_%n folder_::_%n folders_" : ["",""],
|
||||
"_%n file_::_%n files_" : ["",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["",""]
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
6
apps/files/l10n/ady.json
Normal file
6
apps/files/l10n/ady.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ "translations": {
|
||||
"_%n folder_::_%n folders_" : ["",""],
|
||||
"_%n file_::_%n files_" : ["",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["",""]
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"_%n folder_::_%n folders_" => array("",""),
|
||||
"_%n file_::_%n files_" => array("",""),
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("","")
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
||||
8
apps/files/l10n/af.js
Normal file
8
apps/files/l10n/af.js
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"_%n folder_::_%n folders_" : "[ ,]",
|
||||
"_%n file_::_%n files_" : "[ ,]",
|
||||
"_Uploading %n file_::_Uploading %n files_" : "[ ,]"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
1
apps/files/l10n/af.json
Normal file
1
apps/files/l10n/af.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"translations":{"_%n folder_::_%n folders_":["",""],"_%n file_::_%n files_":["",""],"_Uploading %n file_::_Uploading %n files_":["",""]},"pluralForm":"nplurals=2; plural=(n != 1);"}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"_%n folder_::_%n folders_" => array("",""),
|
||||
"_%n file_::_%n files_" => array("",""),
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("","")
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
||||
12
apps/files/l10n/af_ZA.js
Normal file
12
apps/files/l10n/af_ZA.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"Share" : "Deel",
|
||||
"Unshare" : "Deel terug neem",
|
||||
"Error" : "Fout",
|
||||
"_%n folder_::_%n folders_" : ["",""],
|
||||
"_%n file_::_%n files_" : ["",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["",""],
|
||||
"Folder" : "Omslag"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
10
apps/files/l10n/af_ZA.json
Normal file
10
apps/files/l10n/af_ZA.json
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{ "translations": {
|
||||
"Share" : "Deel",
|
||||
"Unshare" : "Deel terug neem",
|
||||
"Error" : "Fout",
|
||||
"_%n folder_::_%n folders_" : ["",""],
|
||||
"_%n file_::_%n files_" : ["",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["",""],
|
||||
"Folder" : "Omslag"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"Share" => "Deel",
|
||||
"Unshare" => "Deel terug neem",
|
||||
"_%n folder_::_%n folders_" => array("",""),
|
||||
"_%n file_::_%n files_" => array("",""),
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("",""),
|
||||
"Folder" => "Omslag"
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
||||
8
apps/files/l10n/ak.js
Normal file
8
apps/files/l10n/ak.js
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"_%n folder_::_%n folders_" : ["",""],
|
||||
"_%n file_::_%n files_" : ["",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["",""]
|
||||
},
|
||||
"nplurals=2; plural=n > 1;");
|
||||
6
apps/files/l10n/ak.json
Normal file
6
apps/files/l10n/ak.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ "translations": {
|
||||
"_%n folder_::_%n folders_" : ["",""],
|
||||
"_%n file_::_%n files_" : ["",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["",""]
|
||||
},"pluralForm" :"nplurals=2; plural=n > 1;"
|
||||
}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"_%n folder_::_%n folders_" => array("",""),
|
||||
"_%n file_::_%n files_" => array("",""),
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("","")
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=2; plural=n > 1;";
|
||||
8
apps/files/l10n/am_ET.js
Normal file
8
apps/files/l10n/am_ET.js
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"_%n folder_::_%n folders_" : ["",""],
|
||||
"_%n file_::_%n files_" : ["",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["",""]
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
6
apps/files/l10n/am_ET.json
Normal file
6
apps/files/l10n/am_ET.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ "translations": {
|
||||
"_%n folder_::_%n folders_" : ["",""],
|
||||
"_%n file_::_%n files_" : ["",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["",""]
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"_%n folder_::_%n folders_" => array("",""),
|
||||
"_%n file_::_%n files_" => array("",""),
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("","")
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
||||
67
apps/files/l10n/ar.js
Normal file
67
apps/files/l10n/ar.js
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"Unknown error" : "خطأ غير معروف. ",
|
||||
"Could not move %s - File with this name already exists" : "فشل في نقل الملف %s - يوجد ملف بنفس هذا الاسم",
|
||||
"Could not move %s" : "فشل في نقل %s",
|
||||
"File name cannot be empty." : "اسم الملف لا يجوز أن يكون فارغا",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها",
|
||||
"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 ",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML.",
|
||||
"The uploaded file was only partially uploaded" : "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط",
|
||||
"No file was uploaded" : "لم يتم ترفيع أي من الملفات",
|
||||
"Missing a temporary folder" : "المجلد المؤقت غير موجود",
|
||||
"Failed to write to disk" : "خطأ في الكتابة على القرص الصلب",
|
||||
"Not enough storage available" : "لا يوجد مساحة تخزينية كافية",
|
||||
"Upload failed. Could not find uploaded file" : "*فشلت علمية الرفع. تعذر إيجاد الملف الذي تم رفعه.\n*فشلت علمية التحميل. تعذر إيجاد الملف الذي تم تحميله.",
|
||||
"Upload failed. Could not get file info." : "فشلت عملية الرفع. تعذر الحصول على معلومات الملف.",
|
||||
"Invalid directory." : "مسار غير صحيح.",
|
||||
"Files" : "الملفات",
|
||||
"Unable to upload {filename} as it is a directory or has 0 bytes" : "تعذر رفع الملف {filename} إما لأنه مجلد أو لان حجم الملف 0 بايت",
|
||||
"Upload cancelled." : "تم إلغاء عملية رفع الملفات .",
|
||||
"Could not get result from server." : "تعذر الحصول على نتيجة من الخادم",
|
||||
"File upload is in progress. Leaving the page now will cancel the upload." : "عملية رفع الملفات قيد التنفيذ. اغلاق الصفحة سوف يلغي عملية رفع الملفات.",
|
||||
"{new_name} already exists" : "{new_name} موجود مسبقا",
|
||||
"Share" : "شارك",
|
||||
"Delete" : "إلغاء",
|
||||
"Unshare" : "إلغاء المشاركة",
|
||||
"Delete permanently" : "حذف بشكل دائم",
|
||||
"Rename" : "إعادة تسميه",
|
||||
"Pending" : "قيد الانتظار",
|
||||
"Error moving file" : "حدث خطأ أثناء نقل الملف",
|
||||
"Error" : "خطأ",
|
||||
"Name" : "اسم",
|
||||
"Size" : "حجم",
|
||||
"Modified" : "معدل",
|
||||
"_%n folder_::_%n folders_" : ["لا يوجد مجلدات %n","1 مجلد %n","2 مجلد %n","عدد قليل من مجلدات %n","عدد كبير من مجلدات %n","مجلدات %n"],
|
||||
"_%n file_::_%n files_" : ["لا يوجد ملفات %n","ملف %n","2 ملف %n","قليل من ملفات %n","الكثير من ملفات %n"," ملفات %n"],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["لا يوجد ملفات %n لتحميلها","تحميل 1 ملف %n","تحميل 2 ملف %n","يتم تحميل عدد قليل من ملفات %n","يتم تحميل عدد كبير من ملفات %n","يتم تحميل ملفات %n"],
|
||||
"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." : "تم تعطيل التشفير لكن ملفاتك لا تزال مشفرة. فضلا اذهب إلى الإعدادات الشخصية لإزالة التشفير عن ملفاتك.",
|
||||
"{dirs} and {files}" : "{dirs} و {files}",
|
||||
"%s could not be renamed" : "%s لا يمكن إعادة تسميته. ",
|
||||
"File handling" : "التعامل مع الملف",
|
||||
"Maximum upload size" : "الحد الأقصى لحجم الملفات التي يمكن رفعها",
|
||||
"max. possible: " : "الحد الأقصى المسموح به",
|
||||
"Save" : "حفظ",
|
||||
"WebDAV" : "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" : "استخدم هذا العنوان لـ <a href=\"%s\" target=\"_blank\">الدخول الى ملفاتك عن طريق WebDAV</a>",
|
||||
"New" : "جديد",
|
||||
"Text file" : "ملف",
|
||||
"New folder" : "مجلد جديد",
|
||||
"Folder" : "مجلد",
|
||||
"From link" : "من رابط",
|
||||
"Nothing in here. Upload something!" : "لا يوجد شيء هنا. إرفع بعض الملفات!",
|
||||
"Download" : "تحميل",
|
||||
"Upload too large" : "حجم الترفيع أعلى من المسموح",
|
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." : "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم.",
|
||||
"Files are being scanned, please wait." : "يرجى الانتظار , جاري فحص الملفات ."
|
||||
},
|
||||
"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;");
|
||||
65
apps/files/l10n/ar.json
Normal file
65
apps/files/l10n/ar.json
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "خطأ غير معروف. ",
|
||||
"Could not move %s - File with this name already exists" : "فشل في نقل الملف %s - يوجد ملف بنفس هذا الاسم",
|
||||
"Could not move %s" : "فشل في نقل %s",
|
||||
"File name cannot be empty." : "اسم الملف لا يجوز أن يكون فارغا",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها",
|
||||
"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 ",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML.",
|
||||
"The uploaded file was only partially uploaded" : "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط",
|
||||
"No file was uploaded" : "لم يتم ترفيع أي من الملفات",
|
||||
"Missing a temporary folder" : "المجلد المؤقت غير موجود",
|
||||
"Failed to write to disk" : "خطأ في الكتابة على القرص الصلب",
|
||||
"Not enough storage available" : "لا يوجد مساحة تخزينية كافية",
|
||||
"Upload failed. Could not find uploaded file" : "*فشلت علمية الرفع. تعذر إيجاد الملف الذي تم رفعه.\n*فشلت علمية التحميل. تعذر إيجاد الملف الذي تم تحميله.",
|
||||
"Upload failed. Could not get file info." : "فشلت عملية الرفع. تعذر الحصول على معلومات الملف.",
|
||||
"Invalid directory." : "مسار غير صحيح.",
|
||||
"Files" : "الملفات",
|
||||
"Unable to upload {filename} as it is a directory or has 0 bytes" : "تعذر رفع الملف {filename} إما لأنه مجلد أو لان حجم الملف 0 بايت",
|
||||
"Upload cancelled." : "تم إلغاء عملية رفع الملفات .",
|
||||
"Could not get result from server." : "تعذر الحصول على نتيجة من الخادم",
|
||||
"File upload is in progress. Leaving the page now will cancel the upload." : "عملية رفع الملفات قيد التنفيذ. اغلاق الصفحة سوف يلغي عملية رفع الملفات.",
|
||||
"{new_name} already exists" : "{new_name} موجود مسبقا",
|
||||
"Share" : "شارك",
|
||||
"Delete" : "إلغاء",
|
||||
"Unshare" : "إلغاء المشاركة",
|
||||
"Delete permanently" : "حذف بشكل دائم",
|
||||
"Rename" : "إعادة تسميه",
|
||||
"Pending" : "قيد الانتظار",
|
||||
"Error moving file" : "حدث خطأ أثناء نقل الملف",
|
||||
"Error" : "خطأ",
|
||||
"Name" : "اسم",
|
||||
"Size" : "حجم",
|
||||
"Modified" : "معدل",
|
||||
"_%n folder_::_%n folders_" : ["لا يوجد مجلدات %n","1 مجلد %n","2 مجلد %n","عدد قليل من مجلدات %n","عدد كبير من مجلدات %n","مجلدات %n"],
|
||||
"_%n file_::_%n files_" : ["لا يوجد ملفات %n","ملف %n","2 ملف %n","قليل من ملفات %n","الكثير من ملفات %n"," ملفات %n"],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["لا يوجد ملفات %n لتحميلها","تحميل 1 ملف %n","تحميل 2 ملف %n","يتم تحميل عدد قليل من ملفات %n","يتم تحميل عدد كبير من ملفات %n","يتم تحميل ملفات %n"],
|
||||
"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." : "تم تعطيل التشفير لكن ملفاتك لا تزال مشفرة. فضلا اذهب إلى الإعدادات الشخصية لإزالة التشفير عن ملفاتك.",
|
||||
"{dirs} and {files}" : "{dirs} و {files}",
|
||||
"%s could not be renamed" : "%s لا يمكن إعادة تسميته. ",
|
||||
"File handling" : "التعامل مع الملف",
|
||||
"Maximum upload size" : "الحد الأقصى لحجم الملفات التي يمكن رفعها",
|
||||
"max. possible: " : "الحد الأقصى المسموح به",
|
||||
"Save" : "حفظ",
|
||||
"WebDAV" : "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" : "استخدم هذا العنوان لـ <a href=\"%s\" target=\"_blank\">الدخول الى ملفاتك عن طريق WebDAV</a>",
|
||||
"New" : "جديد",
|
||||
"Text file" : "ملف",
|
||||
"New folder" : "مجلد جديد",
|
||||
"Folder" : "مجلد",
|
||||
"From link" : "من رابط",
|
||||
"Nothing in here. Upload something!" : "لا يوجد شيء هنا. إرفع بعض الملفات!",
|
||||
"Download" : "تحميل",
|
||||
"Upload too large" : "حجم الترفيع أعلى من المسموح",
|
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." : "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم.",
|
||||
"Files are being scanned, please wait." : "يرجى الانتظار , جاري فحص الملفات ."
|
||||
},"pluralForm" :"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;"
|
||||
}
|
||||
|
|
@ -1,66 +0,0 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"Unknown error" => "خطأ غير معروف. ",
|
||||
"Could not move %s - File with this name already exists" => "فشل في نقل الملف %s - يوجد ملف بنفس هذا الاسم",
|
||||
"Could not move %s" => "فشل في نقل %s",
|
||||
"File name cannot be empty." => "اسم الملف لا يجوز أن يكون فارغا",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها",
|
||||
"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 ",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML.",
|
||||
"The uploaded file was only partially uploaded" => "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط",
|
||||
"No file was uploaded" => "لم يتم ترفيع أي من الملفات",
|
||||
"Missing a temporary folder" => "المجلد المؤقت غير موجود",
|
||||
"Failed to write to disk" => "خطأ في الكتابة على القرص الصلب",
|
||||
"Not enough storage available" => "لا يوجد مساحة تخزينية كافية",
|
||||
"Upload failed. Could not find uploaded file" => "*فشلت علمية الرفع. تعذر إيجاد الملف الذي تم رفعه.\n*فشلت علمية التحميل. تعذر إيجاد الملف الذي تم تحميله.",
|
||||
"Upload failed. Could not get file info." => "فشلت عملية الرفع. تعذر الحصول على معلومات الملف.",
|
||||
"Invalid directory." => "مسار غير صحيح.",
|
||||
"Files" => "الملفات",
|
||||
"Unable to upload {filename} as it is a directory or has 0 bytes" => "تعذر رفع الملف {filename} إما لأنه مجلد أو لان حجم الملف 0 بايت",
|
||||
"Upload cancelled." => "تم إلغاء عملية رفع الملفات .",
|
||||
"Could not get result from server." => "تعذر الحصول على نتيجة من الخادم",
|
||||
"File upload is in progress. Leaving the page now will cancel the upload." => "عملية رفع الملفات قيد التنفيذ. اغلاق الصفحة سوف يلغي عملية رفع الملفات.",
|
||||
"{new_name} already exists" => "{new_name} موجود مسبقا",
|
||||
"Share" => "شارك",
|
||||
"Delete" => "إلغاء",
|
||||
"Unshare" => "إلغاء المشاركة",
|
||||
"Delete permanently" => "حذف بشكل دائم",
|
||||
"Rename" => "إعادة تسميه",
|
||||
"Pending" => "قيد الانتظار",
|
||||
"Error moving file" => "حدث خطأ أثناء نقل الملف",
|
||||
"Error" => "خطأ",
|
||||
"Name" => "اسم",
|
||||
"Size" => "حجم",
|
||||
"Modified" => "معدل",
|
||||
"_%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"),
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("لا يوجد ملفات %n لتحميلها","تحميل 1 ملف %n","تحميل 2 ملف %n","يتم تحميل عدد قليل من ملفات %n","يتم تحميل عدد كبير من ملفات %n","يتم تحميل ملفات %n"),
|
||||
"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." => "تم تعطيل التشفير لكن ملفاتك لا تزال مشفرة. فضلا اذهب إلى الإعدادات الشخصية لإزالة التشفير عن ملفاتك.",
|
||||
"{dirs} and {files}" => "{dirs} و {files}",
|
||||
"%s could not be renamed" => "%s لا يمكن إعادة تسميته. ",
|
||||
"File handling" => "التعامل مع الملف",
|
||||
"Maximum upload size" => "الحد الأقصى لحجم الملفات التي يمكن رفعها",
|
||||
"max. possible: " => "الحد الأقصى المسموح به",
|
||||
"Save" => "حفظ",
|
||||
"WebDAV" => "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "استخدم هذا العنوان لـ <a href=\"%s\" target=\"_blank\">الدخول الى ملفاتك عن طريق WebDAV</a>",
|
||||
"New" => "جديد",
|
||||
"Text file" => "ملف",
|
||||
"New folder" => "مجلد جديد",
|
||||
"Folder" => "مجلد",
|
||||
"From link" => "من رابط",
|
||||
"Nothing in here. Upload something!" => "لا يوجد شيء هنا. إرفع بعض الملفات!",
|
||||
"Download" => "تحميل",
|
||||
"Upload too large" => "حجم الترفيع أعلى من المسموح",
|
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم.",
|
||||
"Files are being scanned, please wait." => "يرجى الانتظار , جاري فحص الملفات ."
|
||||
);
|
||||
$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;";
|
||||
97
apps/files/l10n/ast.js
Normal file
97
apps/files/l10n/ast.js
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"Storage not available" : "Almacenamientu non disponible",
|
||||
"Storage invalid" : "Almacenamientu inválidu",
|
||||
"Unknown error" : "Fallu desconocíu",
|
||||
"Could not move %s - File with this name already exists" : "Nun pudo movese %s - Yá existe un ficheru con esi nome.",
|
||||
"Could not move %s" : "Nun pudo movese %s",
|
||||
"Permission denied" : "Permisu denegáu",
|
||||
"File name cannot be empty." : "El nome de ficheru nun pue quedar baleru.",
|
||||
"\"%s\" is an invalid file name." : "\"%s\" ye un nome de ficheru inválidu.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Nome inválidu, los caráuteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" nun tán permitíos.",
|
||||
"The target folder has been moved or deleted." : "La carpeta oxetivu movióse o desanicióse.",
|
||||
"The name %s is already used in the folder %s. Please choose a different name." : "El nome %s yá ta n'usu na carpeta %s. Por favor, escueyi un nome diferente.",
|
||||
"Not a valid source" : "Nun ye una fonte válida",
|
||||
"Server is not allowed to open URLs, please check the server configuration" : "Nun se-y permite al sirvidor abrir URLs, por favor comprueba la configuración del sirvidor",
|
||||
"The file exceeds your quota by %s" : "El ficheru perpasa la cuota por %s",
|
||||
"Error while downloading %s to %s" : "Fallu cuando se descargaba %s a %s",
|
||||
"Error when creating the file" : "Fallu cuando se creaba'l ficheru",
|
||||
"Folder name cannot be empty." : "El nome la carpeta nun pue tar baleru.",
|
||||
"Error when creating the folder" : "Fallu cuando se creaba la carpeta",
|
||||
"Unable to set upload directory." : "Nun pue afitase la carpeta de xubida.",
|
||||
"Invalid Token" : "Token inválidu",
|
||||
"No file was uploaded. Unknown error" : "Nun se xubió dengún ficheru. Fallu desconocíu",
|
||||
"There is no error, the file uploaded with success" : "Nun hai dengún fallu, el ficheru xubióse ensin problemes",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "El ficheru xubíu perpasa la direutiva \"upload_max_filesize\" del ficheru php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El ficheru xubíu perpasa la direutiva \"MAX_FILE_SIZE\" especificada nel formulariu HTML",
|
||||
"The uploaded file was only partially uploaded" : "El ficheru xubióse de mou parcial",
|
||||
"No file was uploaded" : "Nun se xubió dengún ficheru",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Failed to write to disk" : "Fallu al escribir al discu",
|
||||
"Not enough storage available" : "Nun hai abondu espaciu disponible",
|
||||
"Upload failed. Could not find uploaded file" : "Xubida fallida. Nun pudo atopase'l ficheru xubíu.",
|
||||
"Upload failed. Could not get file info." : "Falló la xubida. Nun se pudo obtener la información del ficheru.",
|
||||
"Invalid directory." : "Direutoriu non válidu.",
|
||||
"Files" : "Ficheros",
|
||||
"All files" : "Tolos ficheros",
|
||||
"Unable to upload {filename} as it is a directory or has 0 bytes" : "Nun pudo xubise {filename}, paez que ye un directoriu o tien 0 bytes",
|
||||
"Total file size {size1} exceeds upload limit {size2}" : "El tamañu de ficheru total {size1} perpasa la llende de xuba {size2}",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" : "Nun hai abondu espaciu llibre, tas xubiendo {size1} pero namái falta {size2}",
|
||||
"Upload cancelled." : "Xuba encaboxada.",
|
||||
"Could not get result from server." : "Nun pudo obtenese'l resultáu del sirvidor.",
|
||||
"File upload is in progress. Leaving the page now will cancel the upload." : "La xuba del ficheru ta en progresu. Si dexes agora la páxina, va encaboxase la xuba.",
|
||||
"URL cannot be empty" : "La URL nun pue tar balera",
|
||||
"{new_name} already exists" : "{new_name} yá existe",
|
||||
"Could not create file" : "Nun pudo crease'l ficheru",
|
||||
"Could not create folder" : "Nun pudo crease la carpeta",
|
||||
"Error fetching URL" : "Fallu obteniendo URL",
|
||||
"Share" : "Compartir",
|
||||
"Delete" : "Desaniciar",
|
||||
"Disconnect storage" : "Desconeutar almacenamientu",
|
||||
"Unshare" : "Dexar de compartir",
|
||||
"Delete permanently" : "Desaniciar dafechu",
|
||||
"Rename" : "Renomar",
|
||||
"Pending" : "Pendiente",
|
||||
"Error moving file." : "Fallu moviendo'l ficheru.",
|
||||
"Error moving file" : "Fallu moviendo'l ficheru",
|
||||
"Error" : "Fallu",
|
||||
"Could not rename file" : "Nun pudo renomase'l ficheru",
|
||||
"Error deleting file." : "Fallu desaniciando'l ficheru.",
|
||||
"Name" : "Nome",
|
||||
"Size" : "Tamañu",
|
||||
"Modified" : "Modificáu",
|
||||
"_%n folder_::_%n folders_" : ["%n carpeta","%n carpetes"],
|
||||
"_%n file_::_%n files_" : ["%n ficheru","%n ficheros"],
|
||||
"You don’t have permission to upload or create files here" : "Nun tienes permisu pa xubir o crear ficheros equí",
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["Xubiendo %n ficheru","Xubiendo %n ficheros"],
|
||||
"\"{name}\" is an invalid file name." : "\"{name}\" ye un nome de ficheru inválidu.",
|
||||
"Your storage is full, files can not be updated or synced anymore!" : "L'almacenamientu ta completu, ¡yá nun se pueden anovar o sincronizar ficheros!",
|
||||
"Your storage is almost full ({usedSpacePercent}%)" : "L'almacenamientu ta casi completu ({usedSpacePercent}%)",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "L'aplicación Encryption ta habilitada pero les tos claves nun s'aniciaron, por favor zarra sesión y aníciala de nueves",
|
||||
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." : "Clave privada non válida pa Encryption. Por favor, anueva la to contraseña de clave nos tos axustes personales pa recuperar l'accesu a los tos ficheros cifraos.",
|
||||
"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." : "Deshabilitose'l cifráu pero los tos ficheros tovía tán cifraos. Por favor, vete a los axustes personales pa descrifrar los tos ficheros.",
|
||||
"{dirs} and {files}" : "{dirs} y {files}",
|
||||
"%s could not be renamed as it has been deleted" : "%s nun pue renomase dempués de desaniciase",
|
||||
"%s could not be renamed" : "Nun se puede renomar %s ",
|
||||
"Upload (max. %s)" : "Xuba (máx. %s)",
|
||||
"File handling" : "Alministración de ficheros",
|
||||
"Maximum upload size" : "Tamañu máximu de xubida",
|
||||
"max. possible: " : "máx. posible:",
|
||||
"Save" : "Guardar",
|
||||
"WebDAV" : "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" : "Usa esta direición <a href=\"%s\" target=\"_blank\">p'acceder a los ficheros a traviés de WebDAV</a>",
|
||||
"New" : "Nuevu",
|
||||
"New text file" : "Ficheru de testu nuevu",
|
||||
"Text file" : "Ficheru de testu",
|
||||
"New folder" : "Nueva carpeta",
|
||||
"Folder" : "Carpeta",
|
||||
"From link" : "Dende enllaz",
|
||||
"Nothing in here. Upload something!" : "Nun hai nada equí. ¡Xubi daqué!",
|
||||
"Download" : "Descargar",
|
||||
"Upload too large" : "La xuba ye abondo grande",
|
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." : "Los ficheros que tas intentando xubir perpasen el tamañu máximu pa les xubíes de ficheros nesti servidor.",
|
||||
"Files are being scanned, please wait." : "Tan escaniándose los ficheros, espera por favor.",
|
||||
"Currently scanning" : "Anguaño escaneando"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
95
apps/files/l10n/ast.json
Normal file
95
apps/files/l10n/ast.json
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
{ "translations": {
|
||||
"Storage not available" : "Almacenamientu non disponible",
|
||||
"Storage invalid" : "Almacenamientu inválidu",
|
||||
"Unknown error" : "Fallu desconocíu",
|
||||
"Could not move %s - File with this name already exists" : "Nun pudo movese %s - Yá existe un ficheru con esi nome.",
|
||||
"Could not move %s" : "Nun pudo movese %s",
|
||||
"Permission denied" : "Permisu denegáu",
|
||||
"File name cannot be empty." : "El nome de ficheru nun pue quedar baleru.",
|
||||
"\"%s\" is an invalid file name." : "\"%s\" ye un nome de ficheru inválidu.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Nome inválidu, los caráuteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" nun tán permitíos.",
|
||||
"The target folder has been moved or deleted." : "La carpeta oxetivu movióse o desanicióse.",
|
||||
"The name %s is already used in the folder %s. Please choose a different name." : "El nome %s yá ta n'usu na carpeta %s. Por favor, escueyi un nome diferente.",
|
||||
"Not a valid source" : "Nun ye una fonte válida",
|
||||
"Server is not allowed to open URLs, please check the server configuration" : "Nun se-y permite al sirvidor abrir URLs, por favor comprueba la configuración del sirvidor",
|
||||
"The file exceeds your quota by %s" : "El ficheru perpasa la cuota por %s",
|
||||
"Error while downloading %s to %s" : "Fallu cuando se descargaba %s a %s",
|
||||
"Error when creating the file" : "Fallu cuando se creaba'l ficheru",
|
||||
"Folder name cannot be empty." : "El nome la carpeta nun pue tar baleru.",
|
||||
"Error when creating the folder" : "Fallu cuando se creaba la carpeta",
|
||||
"Unable to set upload directory." : "Nun pue afitase la carpeta de xubida.",
|
||||
"Invalid Token" : "Token inválidu",
|
||||
"No file was uploaded. Unknown error" : "Nun se xubió dengún ficheru. Fallu desconocíu",
|
||||
"There is no error, the file uploaded with success" : "Nun hai dengún fallu, el ficheru xubióse ensin problemes",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "El ficheru xubíu perpasa la direutiva \"upload_max_filesize\" del ficheru php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El ficheru xubíu perpasa la direutiva \"MAX_FILE_SIZE\" especificada nel formulariu HTML",
|
||||
"The uploaded file was only partially uploaded" : "El ficheru xubióse de mou parcial",
|
||||
"No file was uploaded" : "Nun se xubió dengún ficheru",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Failed to write to disk" : "Fallu al escribir al discu",
|
||||
"Not enough storage available" : "Nun hai abondu espaciu disponible",
|
||||
"Upload failed. Could not find uploaded file" : "Xubida fallida. Nun pudo atopase'l ficheru xubíu.",
|
||||
"Upload failed. Could not get file info." : "Falló la xubida. Nun se pudo obtener la información del ficheru.",
|
||||
"Invalid directory." : "Direutoriu non válidu.",
|
||||
"Files" : "Ficheros",
|
||||
"All files" : "Tolos ficheros",
|
||||
"Unable to upload {filename} as it is a directory or has 0 bytes" : "Nun pudo xubise {filename}, paez que ye un directoriu o tien 0 bytes",
|
||||
"Total file size {size1} exceeds upload limit {size2}" : "El tamañu de ficheru total {size1} perpasa la llende de xuba {size2}",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" : "Nun hai abondu espaciu llibre, tas xubiendo {size1} pero namái falta {size2}",
|
||||
"Upload cancelled." : "Xuba encaboxada.",
|
||||
"Could not get result from server." : "Nun pudo obtenese'l resultáu del sirvidor.",
|
||||
"File upload is in progress. Leaving the page now will cancel the upload." : "La xuba del ficheru ta en progresu. Si dexes agora la páxina, va encaboxase la xuba.",
|
||||
"URL cannot be empty" : "La URL nun pue tar balera",
|
||||
"{new_name} already exists" : "{new_name} yá existe",
|
||||
"Could not create file" : "Nun pudo crease'l ficheru",
|
||||
"Could not create folder" : "Nun pudo crease la carpeta",
|
||||
"Error fetching URL" : "Fallu obteniendo URL",
|
||||
"Share" : "Compartir",
|
||||
"Delete" : "Desaniciar",
|
||||
"Disconnect storage" : "Desconeutar almacenamientu",
|
||||
"Unshare" : "Dexar de compartir",
|
||||
"Delete permanently" : "Desaniciar dafechu",
|
||||
"Rename" : "Renomar",
|
||||
"Pending" : "Pendiente",
|
||||
"Error moving file." : "Fallu moviendo'l ficheru.",
|
||||
"Error moving file" : "Fallu moviendo'l ficheru",
|
||||
"Error" : "Fallu",
|
||||
"Could not rename file" : "Nun pudo renomase'l ficheru",
|
||||
"Error deleting file." : "Fallu desaniciando'l ficheru.",
|
||||
"Name" : "Nome",
|
||||
"Size" : "Tamañu",
|
||||
"Modified" : "Modificáu",
|
||||
"_%n folder_::_%n folders_" : ["%n carpeta","%n carpetes"],
|
||||
"_%n file_::_%n files_" : ["%n ficheru","%n ficheros"],
|
||||
"You don’t have permission to upload or create files here" : "Nun tienes permisu pa xubir o crear ficheros equí",
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["Xubiendo %n ficheru","Xubiendo %n ficheros"],
|
||||
"\"{name}\" is an invalid file name." : "\"{name}\" ye un nome de ficheru inválidu.",
|
||||
"Your storage is full, files can not be updated or synced anymore!" : "L'almacenamientu ta completu, ¡yá nun se pueden anovar o sincronizar ficheros!",
|
||||
"Your storage is almost full ({usedSpacePercent}%)" : "L'almacenamientu ta casi completu ({usedSpacePercent}%)",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "L'aplicación Encryption ta habilitada pero les tos claves nun s'aniciaron, por favor zarra sesión y aníciala de nueves",
|
||||
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." : "Clave privada non válida pa Encryption. Por favor, anueva la to contraseña de clave nos tos axustes personales pa recuperar l'accesu a los tos ficheros cifraos.",
|
||||
"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." : "Deshabilitose'l cifráu pero los tos ficheros tovía tán cifraos. Por favor, vete a los axustes personales pa descrifrar los tos ficheros.",
|
||||
"{dirs} and {files}" : "{dirs} y {files}",
|
||||
"%s could not be renamed as it has been deleted" : "%s nun pue renomase dempués de desaniciase",
|
||||
"%s could not be renamed" : "Nun se puede renomar %s ",
|
||||
"Upload (max. %s)" : "Xuba (máx. %s)",
|
||||
"File handling" : "Alministración de ficheros",
|
||||
"Maximum upload size" : "Tamañu máximu de xubida",
|
||||
"max. possible: " : "máx. posible:",
|
||||
"Save" : "Guardar",
|
||||
"WebDAV" : "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" : "Usa esta direición <a href=\"%s\" target=\"_blank\">p'acceder a los ficheros a traviés de WebDAV</a>",
|
||||
"New" : "Nuevu",
|
||||
"New text file" : "Ficheru de testu nuevu",
|
||||
"Text file" : "Ficheru de testu",
|
||||
"New folder" : "Nueva carpeta",
|
||||
"Folder" : "Carpeta",
|
||||
"From link" : "Dende enllaz",
|
||||
"Nothing in here. Upload something!" : "Nun hai nada equí. ¡Xubi daqué!",
|
||||
"Download" : "Descargar",
|
||||
"Upload too large" : "La xuba ye abondo grande",
|
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." : "Los ficheros que tas intentando xubir perpasen el tamañu máximu pa les xubíes de ficheros nesti servidor.",
|
||||
"Files are being scanned, please wait." : "Tan escaniándose los ficheros, espera por favor.",
|
||||
"Currently scanning" : "Anguaño escaneando"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,94 +0,0 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"Storage not available" => "Almacenamientu non disponible",
|
||||
"Storage invalid" => "Almacenamientu inválidu",
|
||||
"Unknown error" => "Fallu desconocíu",
|
||||
"Could not move %s - File with this name already exists" => "Nun pudo movese %s - Yá existe un ficheru con esi nome.",
|
||||
"Could not move %s" => "Nun pudo movese %s",
|
||||
"File name cannot be empty." => "El nome de ficheru nun pue quedar baleru.",
|
||||
"\"%s\" is an invalid file name." => "\"%s\" ye un nome de ficheru inválidu.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome inválidu, los caráuteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" nun tán permitíos.",
|
||||
"The target folder has been moved or deleted." => "La carpeta oxetivu movióse o desanicióse.",
|
||||
"The name %s is already used in the folder %s. Please choose a different name." => "El nome %s yá ta n'usu na carpeta %s. Por favor, escueyi un nome diferente.",
|
||||
"Not a valid source" => "Nun ye una fonte válida",
|
||||
"Server is not allowed to open URLs, please check the server configuration" => "Nun se-y permite al sirvidor abrir URLs, por favor comprueba la configuración del sirvidor",
|
||||
"The file exceeds your quota by %s" => "El ficheru perpasa la cuota por %s",
|
||||
"Error while downloading %s to %s" => "Fallu cuando se descargaba %s a %s",
|
||||
"Error when creating the file" => "Fallu cuando se creaba'l ficheru",
|
||||
"Folder name cannot be empty." => "El nome la carpeta nun pue tar baleru.",
|
||||
"Error when creating the folder" => "Fallu cuando se creaba la carpeta",
|
||||
"Unable to set upload directory." => "Nun pue afitase la carpeta de xubida.",
|
||||
"Invalid Token" => "Token inválidu",
|
||||
"No file was uploaded. Unknown error" => "Nun se xubió dengún ficheru. Fallu desconocíu",
|
||||
"There is no error, the file uploaded with success" => "Nun hai dengún fallu, el ficheru xubióse ensin problemes",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "El ficheru xubíu perpasa la direutiva \"upload_max_filesize\" del ficheru php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El ficheru xubíu perpasa la direutiva \"MAX_FILE_SIZE\" especificada nel formulariu HTML",
|
||||
"The uploaded file was only partially uploaded" => "El ficheru xubióse de mou parcial",
|
||||
"No file was uploaded" => "Nun se xubió dengún ficheru",
|
||||
"Missing a temporary folder" => "Falta una carpeta temporal",
|
||||
"Failed to write to disk" => "Fallu al escribir al discu",
|
||||
"Not enough storage available" => "Nun hai abondu espaciu disponible",
|
||||
"Upload failed. Could not find uploaded file" => "Xubida fallida. Nun pudo atopase'l ficheru xubíu.",
|
||||
"Upload failed. Could not get file info." => "Falló la xubida. Nun se pudo obtener la información del ficheru.",
|
||||
"Invalid directory." => "Direutoriu non válidu.",
|
||||
"Files" => "Ficheros",
|
||||
"All files" => "Tolos ficheros",
|
||||
"Unable to upload {filename} as it is a directory or has 0 bytes" => "Nun pudo xubise {filename}, paez que ye un directoriu o tien 0 bytes",
|
||||
"Total file size {size1} exceeds upload limit {size2}" => "El tamañu de ficheru total {size1} perpasa la llende de xuba {size2}",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" => "Nun hai abondu espaciu llibre, tas xubiendo {size1} pero namái falta {size2}",
|
||||
"Upload cancelled." => "Xuba encaboxada.",
|
||||
"Could not get result from server." => "Nun pudo obtenese'l resultáu del sirvidor.",
|
||||
"File upload is in progress. Leaving the page now will cancel the upload." => "La xuba del ficheru ta en progresu. Si dexes agora la páxina, va encaboxase la xuba.",
|
||||
"URL cannot be empty" => "La URL nun pue tar balera",
|
||||
"{new_name} already exists" => "{new_name} yá existe",
|
||||
"Could not create file" => "Nun pudo crease'l ficheru",
|
||||
"Could not create folder" => "Nun pudo crease la carpeta",
|
||||
"Error fetching URL" => "Fallu obteniendo URL",
|
||||
"Share" => "Compartir",
|
||||
"Delete" => "Desaniciar",
|
||||
"Disconnect storage" => "Desconeutar almacenamientu",
|
||||
"Unshare" => "Dexar de compartir",
|
||||
"Delete permanently" => "Desaniciar dafechu",
|
||||
"Rename" => "Renomar",
|
||||
"Pending" => "Pendiente",
|
||||
"Error moving file." => "Fallu moviendo'l ficheru.",
|
||||
"Error moving file" => "Fallu moviendo'l ficheru",
|
||||
"Error" => "Fallu",
|
||||
"Could not rename file" => "Nun pudo renomase'l ficheru",
|
||||
"Error deleting file." => "Fallu desaniciando'l ficheru.",
|
||||
"Name" => "Nome",
|
||||
"Size" => "Tamañu",
|
||||
"Modified" => "Modificáu",
|
||||
"_%n folder_::_%n folders_" => array("%n carpeta","%n carpetes"),
|
||||
"_%n file_::_%n files_" => array("%n ficheru","%n ficheros"),
|
||||
"You don’t have permission to upload or create files here" => "Nun tienes permisu pa xubir o crear ficheros equí",
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("Xubiendo %n ficheru","Xubiendo %n ficheros"),
|
||||
"\"{name}\" is an invalid file name." => "\"{name}\" ye un nome de ficheru inválidu.",
|
||||
"Your storage is full, files can not be updated or synced anymore!" => "L'almacenamientu ta completu, ¡yá nun se pueden anovar o sincronizar ficheros!",
|
||||
"Your storage is almost full ({usedSpacePercent}%)" => "L'almacenamientu ta casi completu ({usedSpacePercent}%)",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "L'aplicación Encryption ta habilitada pero les tos claves nun s'aniciaron, por favor zarra sesión y aníciala de nueves",
|
||||
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Clave privada non válida pa Encryption. Por favor, anueva la to contraseña de clave nos tos axustes personales pa recuperar l'accesu a los tos ficheros cifraos.",
|
||||
"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Deshabilitose'l cifráu pero los tos ficheros tovía tán cifraos. Por favor, vete a los axustes personales pa descrifrar los tos ficheros.",
|
||||
"{dirs} and {files}" => "{dirs} y {files}",
|
||||
"%s could not be renamed" => "Nun se puede renomar %s ",
|
||||
"Upload (max. %s)" => "Xuba (máx. %s)",
|
||||
"File handling" => "Alministración de ficheros",
|
||||
"Maximum upload size" => "Tamañu máximu de xubida",
|
||||
"max. possible: " => "máx. posible:",
|
||||
"Save" => "Guardar",
|
||||
"WebDAV" => "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Usa esta direición <a href=\"%s\" target=\"_blank\">p'acceder a los ficheros a traviés de WebDAV</a>",
|
||||
"New" => "Nuevu",
|
||||
"New text file" => "Ficheru de testu nuevu",
|
||||
"Text file" => "Ficheru de testu",
|
||||
"New folder" => "Nueva carpeta",
|
||||
"Folder" => "Carpeta",
|
||||
"From link" => "Dende enllaz",
|
||||
"Nothing in here. Upload something!" => "Nun hai nada equí. ¡Xubi daqué!",
|
||||
"Download" => "Descargar",
|
||||
"Upload too large" => "La xuba ye abondo grande",
|
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los ficheros que tas intentando xubir perpasen el tamañu máximu pa les xubíes de ficheros nesti servidor.",
|
||||
"Files are being scanned, please wait." => "Tan escaniándose los ficheros, espera por favor.",
|
||||
"Currently scanning" => "Anguaño escaneando"
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
||||
64
apps/files/l10n/az.js
Normal file
64
apps/files/l10n/az.js
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"Storage not available" : "İnformasiya daşıyıcısı mövcud deyil",
|
||||
"Storage invalid" : "İnformasiya daşıyıcısı yalnışdır",
|
||||
"Unknown error" : "Bəlli olmayan səhv baş verdi",
|
||||
"Could not move %s - File with this name already exists" : "Köçürmə mümkün deyil %s - Bu adla fayl artıq mövcuddur",
|
||||
"Could not move %s" : "Yerdəyişmə mükün olmadı %s",
|
||||
"Permission denied" : "Yetki qadağandır",
|
||||
"File name cannot be empty." : "Faylın adı boş ola bilməz.",
|
||||
"\"%s\" is an invalid file name." : "\"%s\" yalnış fayl adıdır.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Yalnış ad, '\\', '/', '<', '>', ':', '\"', '|', '?' və '*' qəbul edilmir.",
|
||||
"The target folder has been moved or deleted." : "Mənsəbdə olan qovluqun ünvanı dəyişib yada silinib.",
|
||||
"The name %s is already used in the folder %s. Please choose a different name." : "Bu ad %s artıq %s qovluğunda istifadə edilir. Xahiş olunur fərqli ad istifadə edəsiniz.",
|
||||
"Not a valid source" : "Düzgün mənbə yoxdur",
|
||||
"Server is not allowed to open URLs, please check the server configuration" : "URL-ləri açmaq üçün server izin vermir, xahış olunur server quraşdırmalarını yoxlayasınız",
|
||||
"The file exceeds your quota by %s" : "Fayl sizə təyin edilmiş %s məhdudiyyətini aşır",
|
||||
"Error while downloading %s to %s" : "%s-i %s-ə yükləmə zamanı səhv baş verdi",
|
||||
"Error when creating the file" : "Fayl yaratdıqda səhv baş vermişdir",
|
||||
"Folder name cannot be empty." : "Qovluğun adı boş ola bilməz",
|
||||
"Error when creating the folder" : "Qovluğu yaratdıqda səhv baş vermişdir",
|
||||
"Unable to set upload directory." : "Əlavələr qovluğunu təyin etmək mümkün olmadı.",
|
||||
"Invalid Token" : "Yalnış token",
|
||||
"No file was uploaded. Unknown error" : "Heç bir fayl uüklənilmədi. Naməlum səhv",
|
||||
"There is no error, the file uploaded with success" : "Səhv yoxdur, fayl uğurla yüklənildi.",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "Yüklənilən faylin həcmi php.ini config faylinin upload_max_filesize direktivində göstəriləndən çoxdur.",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Yüklənilən faylın həcmi HTML formasinda olan MAX_FILE_SIZE direktivində təyin dilmiş həcmi aşır.",
|
||||
"The uploaded file was only partially uploaded" : "Yüklənilən faylın yalnız bir hissəsi yüklənildi",
|
||||
"No file was uploaded" : "Heç bir fayl yüklənilmədi",
|
||||
"Missing a temporary folder" : "Müvəqqəti qovluq çatışmır",
|
||||
"Failed to write to disk" : "Sərt diskə yazmaq mümkün olmadı",
|
||||
"Not enough storage available" : "Tələb edilən qədər yer yoxdur.",
|
||||
"Upload failed. Could not find uploaded file" : "Yüklənmədə səhv oldu. Yüklənmiş faylı tapmaq olmur.",
|
||||
"Upload failed. Could not get file info." : "Yüklənmədə səhv oldu. Faylın informasiyasını almaq mümkün olmadı.",
|
||||
"Invalid directory." : "Yalnış qovluq.",
|
||||
"Files" : "Fayllar",
|
||||
"All files" : "Bütün fayllar",
|
||||
"Unable to upload {filename} as it is a directory or has 0 bytes" : "Yükləmək olmur {filename} ona görə ki, ya qovluqdur yada ki, həcmi 0 baytdır ",
|
||||
"Total file size {size1} exceeds upload limit {size2}" : "Ümumi fayl həcmi {size1} yüklənmə limiti {size2} -ni aşır",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" : "Kifayət qədər boş yer yoxdur, siz yükləyirsiniz {size1} ancaq {size2} var. ",
|
||||
"Upload cancelled." : "Yüklənmə dayandırıldı.",
|
||||
"Could not get result from server." : "Nəticəni serverdən almaq mümkün olmur.",
|
||||
"File upload is in progress. Leaving the page now will cancel the upload." : "Faylın yüklənməsi gedir. Əgər səhifəni indi tərk etsəniz yüklənmə dayanacaq.",
|
||||
"URL cannot be empty" : "URL boş ola bilməz",
|
||||
"{new_name} already exists" : "{new_name} artıq mövcuddur",
|
||||
"Could not create file" : "Faylı yaratmaq olmur",
|
||||
"Could not create folder" : "Qovluğu yaratmaq olmur",
|
||||
"Error fetching URL" : "URL-in gətirilməsində səhv baş verdi",
|
||||
"Share" : "Yayımla",
|
||||
"Delete" : "Sil",
|
||||
"Rename" : "Adı dəyiş",
|
||||
"Error" : "Səhv",
|
||||
"Name" : "Ad",
|
||||
"Size" : "Həcm",
|
||||
"_%n folder_::_%n folders_" : ["",""],
|
||||
"_%n file_::_%n files_" : ["",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["",""],
|
||||
"Save" : "Saxlamaq",
|
||||
"New folder" : "Yeni qovluq",
|
||||
"Folder" : "Qovluq",
|
||||
"Nothing in here. Upload something!" : "Burda heçnə yoxdur. Nese yükləyin!",
|
||||
"Download" : "Yüklə"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
62
apps/files/l10n/az.json
Normal file
62
apps/files/l10n/az.json
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
{ "translations": {
|
||||
"Storage not available" : "İnformasiya daşıyıcısı mövcud deyil",
|
||||
"Storage invalid" : "İnformasiya daşıyıcısı yalnışdır",
|
||||
"Unknown error" : "Bəlli olmayan səhv baş verdi",
|
||||
"Could not move %s - File with this name already exists" : "Köçürmə mümkün deyil %s - Bu adla fayl artıq mövcuddur",
|
||||
"Could not move %s" : "Yerdəyişmə mükün olmadı %s",
|
||||
"Permission denied" : "Yetki qadağandır",
|
||||
"File name cannot be empty." : "Faylın adı boş ola bilməz.",
|
||||
"\"%s\" is an invalid file name." : "\"%s\" yalnış fayl adıdır.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Yalnış ad, '\\', '/', '<', '>', ':', '\"', '|', '?' və '*' qəbul edilmir.",
|
||||
"The target folder has been moved or deleted." : "Mənsəbdə olan qovluqun ünvanı dəyişib yada silinib.",
|
||||
"The name %s is already used in the folder %s. Please choose a different name." : "Bu ad %s artıq %s qovluğunda istifadə edilir. Xahiş olunur fərqli ad istifadə edəsiniz.",
|
||||
"Not a valid source" : "Düzgün mənbə yoxdur",
|
||||
"Server is not allowed to open URLs, please check the server configuration" : "URL-ləri açmaq üçün server izin vermir, xahış olunur server quraşdırmalarını yoxlayasınız",
|
||||
"The file exceeds your quota by %s" : "Fayl sizə təyin edilmiş %s məhdudiyyətini aşır",
|
||||
"Error while downloading %s to %s" : "%s-i %s-ə yükləmə zamanı səhv baş verdi",
|
||||
"Error when creating the file" : "Fayl yaratdıqda səhv baş vermişdir",
|
||||
"Folder name cannot be empty." : "Qovluğun adı boş ola bilməz",
|
||||
"Error when creating the folder" : "Qovluğu yaratdıqda səhv baş vermişdir",
|
||||
"Unable to set upload directory." : "Əlavələr qovluğunu təyin etmək mümkün olmadı.",
|
||||
"Invalid Token" : "Yalnış token",
|
||||
"No file was uploaded. Unknown error" : "Heç bir fayl uüklənilmədi. Naməlum səhv",
|
||||
"There is no error, the file uploaded with success" : "Səhv yoxdur, fayl uğurla yüklənildi.",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "Yüklənilən faylin həcmi php.ini config faylinin upload_max_filesize direktivində göstəriləndən çoxdur.",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Yüklənilən faylın həcmi HTML formasinda olan MAX_FILE_SIZE direktivində təyin dilmiş həcmi aşır.",
|
||||
"The uploaded file was only partially uploaded" : "Yüklənilən faylın yalnız bir hissəsi yüklənildi",
|
||||
"No file was uploaded" : "Heç bir fayl yüklənilmədi",
|
||||
"Missing a temporary folder" : "Müvəqqəti qovluq çatışmır",
|
||||
"Failed to write to disk" : "Sərt diskə yazmaq mümkün olmadı",
|
||||
"Not enough storage available" : "Tələb edilən qədər yer yoxdur.",
|
||||
"Upload failed. Could not find uploaded file" : "Yüklənmədə səhv oldu. Yüklənmiş faylı tapmaq olmur.",
|
||||
"Upload failed. Could not get file info." : "Yüklənmədə səhv oldu. Faylın informasiyasını almaq mümkün olmadı.",
|
||||
"Invalid directory." : "Yalnış qovluq.",
|
||||
"Files" : "Fayllar",
|
||||
"All files" : "Bütün fayllar",
|
||||
"Unable to upload {filename} as it is a directory or has 0 bytes" : "Yükləmək olmur {filename} ona görə ki, ya qovluqdur yada ki, həcmi 0 baytdır ",
|
||||
"Total file size {size1} exceeds upload limit {size2}" : "Ümumi fayl həcmi {size1} yüklənmə limiti {size2} -ni aşır",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" : "Kifayət qədər boş yer yoxdur, siz yükləyirsiniz {size1} ancaq {size2} var. ",
|
||||
"Upload cancelled." : "Yüklənmə dayandırıldı.",
|
||||
"Could not get result from server." : "Nəticəni serverdən almaq mümkün olmur.",
|
||||
"File upload is in progress. Leaving the page now will cancel the upload." : "Faylın yüklənməsi gedir. Əgər səhifəni indi tərk etsəniz yüklənmə dayanacaq.",
|
||||
"URL cannot be empty" : "URL boş ola bilməz",
|
||||
"{new_name} already exists" : "{new_name} artıq mövcuddur",
|
||||
"Could not create file" : "Faylı yaratmaq olmur",
|
||||
"Could not create folder" : "Qovluğu yaratmaq olmur",
|
||||
"Error fetching URL" : "URL-in gətirilməsində səhv baş verdi",
|
||||
"Share" : "Yayımla",
|
||||
"Delete" : "Sil",
|
||||
"Rename" : "Adı dəyiş",
|
||||
"Error" : "Səhv",
|
||||
"Name" : "Ad",
|
||||
"Size" : "Həcm",
|
||||
"_%n folder_::_%n folders_" : ["",""],
|
||||
"_%n file_::_%n files_" : ["",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["",""],
|
||||
"Save" : "Saxlamaq",
|
||||
"New folder" : "Yeni qovluq",
|
||||
"Folder" : "Qovluq",
|
||||
"Nothing in here. Upload something!" : "Burda heçnə yoxdur. Nese yükləyin!",
|
||||
"Download" : "Yüklə"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,63 +0,0 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"Storage not available" => "İnformasiya daşıyıcısı mövcud deyil",
|
||||
"Storage invalid" => "İnformasiya daşıyıcısı yalnışdır",
|
||||
"Unknown error" => "Bəlli olmayan səhv baş verdi",
|
||||
"Could not move %s - File with this name already exists" => "Köçürmə mümkün deyil %s - Bu adla fayl artıq mövcuddur",
|
||||
"Could not move %s" => "Yerdəyişmə mükün olmadı %s",
|
||||
"Permission denied" => "Yetki qadağandır",
|
||||
"File name cannot be empty." => "Faylın adı boş ola bilməz.",
|
||||
"\"%s\" is an invalid file name." => "\"%s\" yalnış fayl adıdır.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Yalnış ad, '\\', '/', '<', '>', ':', '\"', '|', '?' və '*' qəbul edilmir.",
|
||||
"The target folder has been moved or deleted." => "Mənsəbdə olan qovluqun ünvanı dəyişib yada silinib.",
|
||||
"The name %s is already used in the folder %s. Please choose a different name." => "Bu ad %s artıq %s qovluğunda istifadə edilir. Xahiş olunur fərqli ad istifadə edəsiniz.",
|
||||
"Not a valid source" => "Düzgün mənbə yoxdur",
|
||||
"Server is not allowed to open URLs, please check the server configuration" => "URL-ləri açmaq üçün server izin vermir, xahış olunur server quraşdırmalarını yoxlayasınız",
|
||||
"The file exceeds your quota by %s" => "Fayl sizə təyin edilmiş %s məhdudiyyətini aşır",
|
||||
"Error while downloading %s to %s" => "%s-i %s-ə yükləmə zamanı səhv baş verdi",
|
||||
"Error when creating the file" => "Fayl yaratdıqda səhv baş vermişdir",
|
||||
"Folder name cannot be empty." => "Qovluğun adı boş ola bilməz",
|
||||
"Error when creating the folder" => "Qovluğu yaratdıqda səhv baş vermişdir",
|
||||
"Unable to set upload directory." => "Əlavələr qovluğunu təyin etmək mümkün olmadı.",
|
||||
"Invalid Token" => "Yalnış token",
|
||||
"No file was uploaded. Unknown error" => "Heç bir fayl uüklənilmədi. Naməlum səhv",
|
||||
"There is no error, the file uploaded with success" => "Səhv yoxdur, fayl uğurla yüklənildi.",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Yüklənilən faylin həcmi php.ini config faylinin upload_max_filesize direktivində göstəriləndən çoxdur.",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Yüklənilən faylın həcmi HTML formasinda olan MAX_FILE_SIZE direktivində təyin dilmiş həcmi aşır.",
|
||||
"The uploaded file was only partially uploaded" => "Yüklənilən faylın yalnız bir hissəsi yüklənildi",
|
||||
"No file was uploaded" => "Heç bir fayl yüklənilmədi",
|
||||
"Missing a temporary folder" => "Müvəqqəti qovluq çatışmır",
|
||||
"Failed to write to disk" => "Sərt diskə yazmaq mümkün olmadı",
|
||||
"Not enough storage available" => "Tələb edilən qədər yer yoxdur.",
|
||||
"Upload failed. Could not find uploaded file" => "Yüklənmədə səhv oldu. Yüklənmiş faylı tapmaq olmur.",
|
||||
"Upload failed. Could not get file info." => "Yüklənmədə səhv oldu. Faylın informasiyasını almaq mümkün olmadı.",
|
||||
"Invalid directory." => "Yalnış qovluq.",
|
||||
"Files" => "Fayllar",
|
||||
"All files" => "Bütün fayllar",
|
||||
"Unable to upload {filename} as it is a directory or has 0 bytes" => "Yükləmək olmur {filename} ona görə ki, ya qovluqdur yada ki, həcmi 0 baytdır ",
|
||||
"Total file size {size1} exceeds upload limit {size2}" => "Ümumi fayl həcmi {size1} yüklənmə limiti {size2} -ni aşır",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" => "Kifayət qədər boş yer yoxdur, siz yükləyirsiniz {size1} ancaq {size2} var. ",
|
||||
"Upload cancelled." => "Yüklənmə dayandırıldı.",
|
||||
"Could not get result from server." => "Nəticəni serverdən almaq mümkün olmur.",
|
||||
"File upload is in progress. Leaving the page now will cancel the upload." => "Faylın yüklənməsi gedir. Əgər səhifəni indi tərk etsəniz yüklənmə dayanacaq.",
|
||||
"URL cannot be empty" => "URL boş ola bilməz",
|
||||
"{new_name} already exists" => "{new_name} artıq mövcuddur",
|
||||
"Could not create file" => "Faylı yaratmaq olmur",
|
||||
"Could not create folder" => "Qovluğu yaratmaq olmur",
|
||||
"Error fetching URL" => "URL-in gətirilməsində səhv baş verdi",
|
||||
"Share" => "Yayımla",
|
||||
"Delete" => "Sil",
|
||||
"Rename" => "Adı dəyiş",
|
||||
"Error" => "Səhv",
|
||||
"Name" => "Ad",
|
||||
"Size" => "Həcm",
|
||||
"_%n folder_::_%n folders_" => array("",""),
|
||||
"_%n file_::_%n files_" => array("",""),
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("",""),
|
||||
"Save" => "Saxlamaq",
|
||||
"New folder" => "Yeni qovluq",
|
||||
"Folder" => "Qovluq",
|
||||
"Nothing in here. Upload something!" => "Burda heçnə yoxdur. Nese yükləyin!",
|
||||
"Download" => "Yüklə"
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
||||
9
apps/files/l10n/be.js
Normal file
9
apps/files/l10n/be.js
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"Error" : "Памылка",
|
||||
"_%n folder_::_%n folders_" : ["","","",""],
|
||||
"_%n file_::_%n files_" : ["","","",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["","","",""]
|
||||
},
|
||||
"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);");
|
||||
7
apps/files/l10n/be.json
Normal file
7
apps/files/l10n/be.json
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{ "translations": {
|
||||
"Error" : "Памылка",
|
||||
"_%n folder_::_%n folders_" : ["","","",""],
|
||||
"_%n file_::_%n files_" : ["","","",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["","","",""]
|
||||
},"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"Error" => "Памылка",
|
||||
"_%n folder_::_%n folders_" => array("","","",""),
|
||||
"_%n file_::_%n files_" => array("","","",""),
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("","","","")
|
||||
);
|
||||
$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);";
|
||||
97
apps/files/l10n/bg_BG.js
Normal file
97
apps/files/l10n/bg_BG.js
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"Storage not available" : "Липсва дисковото устройство.",
|
||||
"Storage invalid" : "Невалидно дисково устройство.",
|
||||
"Unknown error" : "Непозната грешка.",
|
||||
"Could not move %s - File with this name already exists" : "Неуспешно преместване на %s - Файл със същото име вече съществува.",
|
||||
"Could not move %s" : "Неуспешно преместване на %s.",
|
||||
"Permission denied" : "Достъпът отказан",
|
||||
"File name cannot be empty." : "Името на файла не може да бъде оставено празно.",
|
||||
"\"%s\" is an invalid file name." : "\"%s\" е непозволено име за файл.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Невалидно име, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не са разрешени.",
|
||||
"The target folder has been moved or deleted." : "Крайната папка е изтрита или преместена.",
|
||||
"The name %s is already used in the folder %s. Please choose a different name." : "Името %s е вече в папка %s. Моля, избери друго име.",
|
||||
"Not a valid source" : "Невалиден източник.",
|
||||
"Server is not allowed to open URLs, please check the server configuration" : "На сървърът не му е разрешно да отваря интернет адреси, моля провери настройките на сървъра.",
|
||||
"The file exceeds your quota by %s" : "Файлът надвиши квотата ти с %s",
|
||||
"Error while downloading %s to %s" : "Грешка при тегленето на %s от %s.",
|
||||
"Error when creating the file" : "Грешка при създаването на файлът.",
|
||||
"Folder name cannot be empty." : "Името на папката не може да бъде оставено празно.",
|
||||
"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:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Файлът, който се опитваш да качиш надвишава стойностите в MAX_FILE_SIZE в HTML формата.",
|
||||
"The uploaded file was only partially uploaded" : "Файлът е качен частично.",
|
||||
"No file was uploaded" : "Неуспешно качване.",
|
||||
"Missing a temporary folder" : "Липсва временна папка.",
|
||||
"Failed to write to disk" : "Възникна проблем при запис на диска.",
|
||||
"Not enough storage available" : "Недостатъчно място.",
|
||||
"Upload failed. Could not find uploaded file" : "Неуспешно качване. Не бе открит качения файл.",
|
||||
"Upload failed. Could not get file info." : "Неуспешно качване. Не се получи информация за файла.",
|
||||
"Invalid directory." : "Невалидна директория.",
|
||||
"Files" : "Файлове",
|
||||
"All files" : "Всички файлове",
|
||||
"Unable to upload {filename} as it is a directory or has 0 bytes" : "Неуспешно качване на {filename}, защото е директория или е с размер от 0 байта.",
|
||||
"Total file size {size1} exceeds upload limit {size2}" : "Общия размер {size1} надминава лимита за качване {size2}.",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" : "Няма достатъчно свободно място, ти се опитваш да качиш {size1}, но са останали само {size2}.",
|
||||
"Upload cancelled." : "Качването е прекъснато.",
|
||||
"Could not get result from server." : "Не се получи резултат от сървърът.",
|
||||
"File upload is in progress. Leaving the page now will cancel the upload." : "Извършва се качване на файлове. Затварянето на тази страница ще прекъсне качването.",
|
||||
"URL cannot be empty" : "Интернет адресът не може да бъде оставен празен.",
|
||||
"{new_name} already exists" : "{new_name} вече съществува.",
|
||||
"Could not create file" : "Несупешно създаване на файла.",
|
||||
"Could not create folder" : "Неуспешно създаване на папка.",
|
||||
"Error fetching URL" : "Грешка при отварянето на интернет адреса.",
|
||||
"Share" : "Сподели",
|
||||
"Delete" : "Изтрий",
|
||||
"Disconnect storage" : "Извади дисковото устройство.",
|
||||
"Unshare" : "Премахни Споделяне",
|
||||
"Delete permanently" : "Изтрий завинаги",
|
||||
"Rename" : "Преименуване",
|
||||
"Pending" : "Чакащо",
|
||||
"Error moving file." : "Грешка при местенето на файла.",
|
||||
"Error moving file" : "Грешка при преместването на файла.",
|
||||
"Error" : "Грешка",
|
||||
"Could not rename file" : "Неуспешно преименуване на файла.",
|
||||
"Error deleting file." : "Грешка при изтриването на файла.",
|
||||
"Name" : "Име",
|
||||
"Size" : "Размер",
|
||||
"Modified" : "Променен на",
|
||||
"_%n folder_::_%n folders_" : ["%n папка","%n папки"],
|
||||
"_%n file_::_%n files_" : ["%n файл","%n файла"],
|
||||
"You don’t have permission to upload or create files here" : "Нямаш разрешение да създаваш или качваш файлове тук.",
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["Качване на %n файл","Качване на %n файла."],
|
||||
"\"{name}\" is an invalid file name." : "\"{name}\" е непозволено име за файл.",
|
||||
"Your storage is full, files can not be updated or synced anymore!" : "Заделеното място е запълнено, повече файлове не могат да бъдат синхронизирани или опреснени!",
|
||||
"Your storage is almost full ({usedSpacePercent}%)" : "Заделеното място е почити запълнено ({usedSpacePercent}%).",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Програмата за криптиране е включена, но твоите ключове не са зададени, моля отпиши си и се впиши отново.",
|
||||
"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." : "Криптирането е изключено, но файлове ти са все още защитени. Моля, отиди на лични найстройки, за да разшфроваш файловете.",
|
||||
"{dirs} and {files}" : "{dirs} и {files}",
|
||||
"%s could not be renamed as it has been deleted" : "%s не може да бъде преименуван, защото е вече изтрит",
|
||||
"%s could not be renamed" : "%s не може да бъде преименуван.",
|
||||
"Upload (max. %s)" : "Качи (макс. %s)",
|
||||
"File handling" : "Операция с файла",
|
||||
"Maximum upload size" : "Максимален размер",
|
||||
"max. possible: " : "максимално:",
|
||||
"Save" : "Запис",
|
||||
"WebDAV" : "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" : "Използвай този адрес, за да получиш <a href=\"%s\" target=\"_blank\">достъп до своите файлове чрез WebDAV</a>.",
|
||||
"New" : "Създай",
|
||||
"New text file" : "Нов текстов файл",
|
||||
"Text file" : "Текстов файл",
|
||||
"New folder" : "Нова папка",
|
||||
"Folder" : "Папка",
|
||||
"From link" : "От връзка",
|
||||
"Nothing in here. Upload something!" : "Тук няма нищо. Качи нещо!",
|
||||
"Download" : "Изтегли",
|
||||
"Upload too large" : "Прекалено голям файл за качване.",
|
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." : "Файловете, които се опитваш да качиш са по-големи от позволеното на този сървър.",
|
||||
"Files are being scanned, please wait." : "Файловете се сканирват, изчакайте.",
|
||||
"Currently scanning" : "В момента се търси"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
95
apps/files/l10n/bg_BG.json
Normal file
95
apps/files/l10n/bg_BG.json
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
{ "translations": {
|
||||
"Storage not available" : "Липсва дисковото устройство.",
|
||||
"Storage invalid" : "Невалидно дисково устройство.",
|
||||
"Unknown error" : "Непозната грешка.",
|
||||
"Could not move %s - File with this name already exists" : "Неуспешно преместване на %s - Файл със същото име вече съществува.",
|
||||
"Could not move %s" : "Неуспешно преместване на %s.",
|
||||
"Permission denied" : "Достъпът отказан",
|
||||
"File name cannot be empty." : "Името на файла не може да бъде оставено празно.",
|
||||
"\"%s\" is an invalid file name." : "\"%s\" е непозволено име за файл.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Невалидно име, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не са разрешени.",
|
||||
"The target folder has been moved or deleted." : "Крайната папка е изтрита или преместена.",
|
||||
"The name %s is already used in the folder %s. Please choose a different name." : "Името %s е вече в папка %s. Моля, избери друго име.",
|
||||
"Not a valid source" : "Невалиден източник.",
|
||||
"Server is not allowed to open URLs, please check the server configuration" : "На сървърът не му е разрешно да отваря интернет адреси, моля провери настройките на сървъра.",
|
||||
"The file exceeds your quota by %s" : "Файлът надвиши квотата ти с %s",
|
||||
"Error while downloading %s to %s" : "Грешка при тегленето на %s от %s.",
|
||||
"Error when creating the file" : "Грешка при създаването на файлът.",
|
||||
"Folder name cannot be empty." : "Името на папката не може да бъде оставено празно.",
|
||||
"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:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Файлът, който се опитваш да качиш надвишава стойностите в MAX_FILE_SIZE в HTML формата.",
|
||||
"The uploaded file was only partially uploaded" : "Файлът е качен частично.",
|
||||
"No file was uploaded" : "Неуспешно качване.",
|
||||
"Missing a temporary folder" : "Липсва временна папка.",
|
||||
"Failed to write to disk" : "Възникна проблем при запис на диска.",
|
||||
"Not enough storage available" : "Недостатъчно място.",
|
||||
"Upload failed. Could not find uploaded file" : "Неуспешно качване. Не бе открит качения файл.",
|
||||
"Upload failed. Could not get file info." : "Неуспешно качване. Не се получи информация за файла.",
|
||||
"Invalid directory." : "Невалидна директория.",
|
||||
"Files" : "Файлове",
|
||||
"All files" : "Всички файлове",
|
||||
"Unable to upload {filename} as it is a directory or has 0 bytes" : "Неуспешно качване на {filename}, защото е директория или е с размер от 0 байта.",
|
||||
"Total file size {size1} exceeds upload limit {size2}" : "Общия размер {size1} надминава лимита за качване {size2}.",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" : "Няма достатъчно свободно място, ти се опитваш да качиш {size1}, но са останали само {size2}.",
|
||||
"Upload cancelled." : "Качването е прекъснато.",
|
||||
"Could not get result from server." : "Не се получи резултат от сървърът.",
|
||||
"File upload is in progress. Leaving the page now will cancel the upload." : "Извършва се качване на файлове. Затварянето на тази страница ще прекъсне качването.",
|
||||
"URL cannot be empty" : "Интернет адресът не може да бъде оставен празен.",
|
||||
"{new_name} already exists" : "{new_name} вече съществува.",
|
||||
"Could not create file" : "Несупешно създаване на файла.",
|
||||
"Could not create folder" : "Неуспешно създаване на папка.",
|
||||
"Error fetching URL" : "Грешка при отварянето на интернет адреса.",
|
||||
"Share" : "Сподели",
|
||||
"Delete" : "Изтрий",
|
||||
"Disconnect storage" : "Извади дисковото устройство.",
|
||||
"Unshare" : "Премахни Споделяне",
|
||||
"Delete permanently" : "Изтрий завинаги",
|
||||
"Rename" : "Преименуване",
|
||||
"Pending" : "Чакащо",
|
||||
"Error moving file." : "Грешка при местенето на файла.",
|
||||
"Error moving file" : "Грешка при преместването на файла.",
|
||||
"Error" : "Грешка",
|
||||
"Could not rename file" : "Неуспешно преименуване на файла.",
|
||||
"Error deleting file." : "Грешка при изтриването на файла.",
|
||||
"Name" : "Име",
|
||||
"Size" : "Размер",
|
||||
"Modified" : "Променен на",
|
||||
"_%n folder_::_%n folders_" : ["%n папка","%n папки"],
|
||||
"_%n file_::_%n files_" : ["%n файл","%n файла"],
|
||||
"You don’t have permission to upload or create files here" : "Нямаш разрешение да създаваш или качваш файлове тук.",
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["Качване на %n файл","Качване на %n файла."],
|
||||
"\"{name}\" is an invalid file name." : "\"{name}\" е непозволено име за файл.",
|
||||
"Your storage is full, files can not be updated or synced anymore!" : "Заделеното място е запълнено, повече файлове не могат да бъдат синхронизирани или опреснени!",
|
||||
"Your storage is almost full ({usedSpacePercent}%)" : "Заделеното място е почити запълнено ({usedSpacePercent}%).",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Програмата за криптиране е включена, но твоите ключове не са зададени, моля отпиши си и се впиши отново.",
|
||||
"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." : "Криптирането е изключено, но файлове ти са все още защитени. Моля, отиди на лични найстройки, за да разшфроваш файловете.",
|
||||
"{dirs} and {files}" : "{dirs} и {files}",
|
||||
"%s could not be renamed as it has been deleted" : "%s не може да бъде преименуван, защото е вече изтрит",
|
||||
"%s could not be renamed" : "%s не може да бъде преименуван.",
|
||||
"Upload (max. %s)" : "Качи (макс. %s)",
|
||||
"File handling" : "Операция с файла",
|
||||
"Maximum upload size" : "Максимален размер",
|
||||
"max. possible: " : "максимално:",
|
||||
"Save" : "Запис",
|
||||
"WebDAV" : "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" : "Използвай този адрес, за да получиш <a href=\"%s\" target=\"_blank\">достъп до своите файлове чрез WebDAV</a>.",
|
||||
"New" : "Създай",
|
||||
"New text file" : "Нов текстов файл",
|
||||
"Text file" : "Текстов файл",
|
||||
"New folder" : "Нова папка",
|
||||
"Folder" : "Папка",
|
||||
"From link" : "От връзка",
|
||||
"Nothing in here. Upload something!" : "Тук няма нищо. Качи нещо!",
|
||||
"Download" : "Изтегли",
|
||||
"Upload too large" : "Прекалено голям файл за качване.",
|
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." : "Файловете, които се опитваш да качиш са по-големи от позволеното на този сървър.",
|
||||
"Files are being scanned, please wait." : "Файловете се сканирват, изчакайте.",
|
||||
"Currently scanning" : "В момента се търси"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,96 +0,0 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"Storage not available" => "Липсва дисковото устройство.",
|
||||
"Storage invalid" => "Невалидно дисково устройство.",
|
||||
"Unknown error" => "Непозната грешка.",
|
||||
"Could not move %s - File with this name already exists" => "Неуспешно преместване на %s - Файл със същото име вече съществува.",
|
||||
"Could not move %s" => "Неуспешно преместване на %s.",
|
||||
"Permission denied" => "Достъпът отказан",
|
||||
"File name cannot be empty." => "Името на файла не може да бъде оставено празно.",
|
||||
"\"%s\" is an invalid file name." => "\"%s\" е непозволено име за файл.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Невалидно име, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не са разрешени.",
|
||||
"The target folder has been moved or deleted." => "Крайната папка е изтрита или преместена.",
|
||||
"The name %s is already used in the folder %s. Please choose a different name." => "Името %s е вече в папка %s. Моля, избери друго име.",
|
||||
"Not a valid source" => "Невалиден източник.",
|
||||
"Server is not allowed to open URLs, please check the server configuration" => "На сървърът не му е разрешно да отваря интернет адреси, моля провери настройките на сървъра.",
|
||||
"The file exceeds your quota by %s" => "Файлът надвиши квотата ти с %s",
|
||||
"Error while downloading %s to %s" => "Грешка при тегленето на %s от %s.",
|
||||
"Error when creating the file" => "Грешка при създаването на файлът.",
|
||||
"Folder name cannot be empty." => "Името на папката не може да бъде оставено празно.",
|
||||
"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:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Файлът, който се опитваш да качиш надвишава стойностите в MAX_FILE_SIZE в HTML формата.",
|
||||
"The uploaded file was only partially uploaded" => "Файлът е качен частично.",
|
||||
"No file was uploaded" => "Неуспешно качване.",
|
||||
"Missing a temporary folder" => "Липсва временна папка.",
|
||||
"Failed to write to disk" => "Възникна проблем при запис на диска.",
|
||||
"Not enough storage available" => "Недостатъчно място.",
|
||||
"Upload failed. Could not find uploaded file" => "Неуспешно качване. Не бе открит качения файл.",
|
||||
"Upload failed. Could not get file info." => "Неуспешно качване. Не се получи информация за файла.",
|
||||
"Invalid directory." => "Невалидна директория.",
|
||||
"Files" => "Файлове",
|
||||
"All files" => "Всички файлове",
|
||||
"Unable to upload {filename} as it is a directory or has 0 bytes" => "Неуспешно качване на {filename}, защото е директория или е с размер от 0 байта.",
|
||||
"Total file size {size1} exceeds upload limit {size2}" => "Общия размер {size1} надминава лимита за качване {size2}.",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" => "Няма достатъчно свободно място, ти се опитваш да качиш {size1}, но са останали само {size2}.",
|
||||
"Upload cancelled." => "Качването е прекъснато.",
|
||||
"Could not get result from server." => "Не се получи резултат от сървърът.",
|
||||
"File upload is in progress. Leaving the page now will cancel the upload." => "Извършва се качване на файлове. Затварянето на тази страница ще прекъсне качването.",
|
||||
"URL cannot be empty" => "Интернет адресът не може да бъде оставен празен.",
|
||||
"{new_name} already exists" => "{new_name} вече съществува.",
|
||||
"Could not create file" => "Несупешно създаване на файла.",
|
||||
"Could not create folder" => "Неуспешно създаване на папка.",
|
||||
"Error fetching URL" => "Грешка при отварянето на интернет адреса.",
|
||||
"Share" => "Сподели",
|
||||
"Delete" => "Изтрий",
|
||||
"Disconnect storage" => "Извади дисковото устройство.",
|
||||
"Unshare" => "Премахни Споделяне",
|
||||
"Delete permanently" => "Изтрий завинаги",
|
||||
"Rename" => "Преименуване",
|
||||
"Pending" => "Чакащо",
|
||||
"Error moving file." => "Грешка при местенето на файла.",
|
||||
"Error moving file" => "Грешка при преместването на файла.",
|
||||
"Error" => "Грешка",
|
||||
"Could not rename file" => "Неуспешно преименуване на файла.",
|
||||
"Error deleting file." => "Грешка при изтриването на файла.",
|
||||
"Name" => "Име",
|
||||
"Size" => "Размер",
|
||||
"Modified" => "Променен на",
|
||||
"_%n folder_::_%n folders_" => array("%n папка","%n папки"),
|
||||
"_%n file_::_%n files_" => array("%n файл","%n файла"),
|
||||
"You don’t have permission to upload or create files here" => "Нямаш разрешение да създаваш или качваш файлове тук.",
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("Качване на %n файл","Качване на %n файла."),
|
||||
"\"{name}\" is an invalid file name." => "\"{name}\" е непозволено име за файл.",
|
||||
"Your storage is full, files can not be updated or synced anymore!" => "Заделеното място е запълнено, повече файлове не могат да бъдат синхронизирани или опреснени!",
|
||||
"Your storage is almost full ({usedSpacePercent}%)" => "Заделеното място е почити запълнено ({usedSpacePercent}%).",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Програмата за криптиране е включена, но твоите ключове не са зададени, моля отпиши си и се впиши отново.",
|
||||
"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." => "Криптирането е изключено, но файлове ти са все още защитени. Моля, отиди на лични найстройки, за да разшфроваш файловете.",
|
||||
"{dirs} and {files}" => "{dirs} и {files}",
|
||||
"%s could not be renamed as it has been deleted" => "%s не може да бъде преименуван, защото е вече изтрит",
|
||||
"%s could not be renamed" => "%s не може да бъде преименуван.",
|
||||
"Upload (max. %s)" => "Качи (макс. %s)",
|
||||
"File handling" => "Операция с файла",
|
||||
"Maximum upload size" => "Максимален размер",
|
||||
"max. possible: " => "максимално:",
|
||||
"Save" => "Запис",
|
||||
"WebDAV" => "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Използвай този адрес, за да получиш <a href=\"%s\" target=\"_blank\">достъп до своите файлове чрез WebDAV</a>.",
|
||||
"New" => "Създай",
|
||||
"New text file" => "Нов текстов файл",
|
||||
"Text file" => "Текстов файл",
|
||||
"New folder" => "Нова папка",
|
||||
"Folder" => "Папка",
|
||||
"From link" => "От връзка",
|
||||
"Nothing in here. Upload something!" => "Тук няма нищо. Качи нещо!",
|
||||
"Download" => "Изтегли",
|
||||
"Upload too large" => "Прекалено голям файл за качване.",
|
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файловете, които се опитваш да качиш са по-големи от позволеното на този сървър.",
|
||||
"Files are being scanned, please wait." => "Файловете се сканирват, изчакайте.",
|
||||
"Currently scanning" => "В момента се сканирва."
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
||||
68
apps/files/l10n/bn_BD.js
Normal file
68
apps/files/l10n/bn_BD.js
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"Storage not available" : "সংরক্ষণের স্থান নেই",
|
||||
"Storage invalid" : "সংরক্ষণাগার বৈধ নয়",
|
||||
"Unknown error" : "অজানা জটিলতা",
|
||||
"Could not move %s - File with this name already exists" : "%s কে স্থানান্তর করা সম্ভব হলো না - এই নামের ফাইল বিদ্যমান",
|
||||
"Could not move %s" : "%s কে স্থানান্তর করা সম্ভব হলো না",
|
||||
"Permission denied" : "অনুমতি দেয়া হয়নি",
|
||||
"File name cannot be empty." : "ফাইলের নামটি ফাঁকা রাখা যাবে না।",
|
||||
"\"%s\" is an invalid file name." : "\"%s\" টি একটি অননুমোদিত ফাইল নাম।",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।",
|
||||
"Not a valid source" : "বৈধ উৎস নয়",
|
||||
"The file exceeds your quota by %s" : "এই ফাইলটি %s আপনার নির্দিষ্ট কোটা ছাড়িয়ে যাচ্ছে",
|
||||
"Error while downloading %s to %s" : "%s হতে %s ডাউনলোড করতে সমস্যা হচ্ছে",
|
||||
"Error when creating the file" : "ফাইলটি তৈরী করতে যেয়ে সমস্যা হলো",
|
||||
"Folder name cannot be empty." : "ফোল্ডার নামটি ফাঁকা রাখা যাবে না।",
|
||||
"Error when creating the folder" : "ফোল্ডার তৈরী করতে যেয়ে সমস্যা হলো",
|
||||
"Unable to set upload directory." : "েআপলোড ডিরেক্টরি নির্ধারণ করা গেলনা।",
|
||||
"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 নির্ধারিত ফাইলের সর্বোচ্চ আকার অতিক্রম করতে চলেছে ",
|
||||
"The uploaded file was only partially uploaded" : "আপলোড করা ফাইলটি আংশিক আপলোড করা হয়েছে",
|
||||
"No file was uploaded" : "কোন ফাইল আপলোড করা হয় নি",
|
||||
"Missing a temporary folder" : "অস্থায়ী ফোল্ডারটি হারানো গিয়েছে",
|
||||
"Failed to write to disk" : "ডিস্কে লিখতে ব্যর্থ",
|
||||
"Not enough storage available" : "সংরক্ষণের যথেষ্ট জায়গা প্রাপ্তব্য নয়",
|
||||
"Invalid directory." : "ভুল ডিরেক্টরি",
|
||||
"Files" : "ফাইল",
|
||||
"All files" : "সব ফাইল",
|
||||
"Upload cancelled." : "আপলোড বাতিল করা হয়েছে।",
|
||||
"File upload is in progress. Leaving the page now will cancel the upload." : "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।",
|
||||
"{new_name} already exists" : "{new_name} টি বিদ্যমান",
|
||||
"Share" : "ভাগাভাগি কর",
|
||||
"Delete" : "মুছে",
|
||||
"Unshare" : "ভাগাভাগি বাতিল ",
|
||||
"Rename" : "পূনঃনামকরণ",
|
||||
"Pending" : "মুলতুবি",
|
||||
"Error moving file." : "ফাইল সরাতে সমস্যা হলো।",
|
||||
"Error moving file" : "ফাইল সরাতে সমস্যা হলো",
|
||||
"Error" : "সমস্যা",
|
||||
"Could not rename file" : "ফাইলের পূণঃনামকরণ করা গেলনা",
|
||||
"Name" : "রাম",
|
||||
"Size" : "আকার",
|
||||
"Modified" : "পরিবর্তিত",
|
||||
"_%n folder_::_%n folders_" : ["",""],
|
||||
"_%n file_::_%n files_" : ["",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["%n ফাইল আপলোড হচ্ছে","%n ফাইল আপলোড হচ্ছে"],
|
||||
"\"{name}\" is an invalid file name." : "\"{name}\" টি একটি অননুমোদিত ফাইল নাম।",
|
||||
"Your storage is almost full ({usedSpacePercent}%)" : "আপনার সংরক্ষণাধার প্রায় পরিপূর্ণ ({usedSpacePercent}%) ",
|
||||
"File handling" : "ফাইল হ্যার্ডলিং",
|
||||
"Maximum upload size" : "আপলোডের সর্বোচ্চ আকার",
|
||||
"max. possible: " : "অনুমোদিত সর্বোচ্চ আকার",
|
||||
"Save" : "সংরক্ষণ",
|
||||
"WebDAV" : "WebDAV",
|
||||
"New" : "নতুন",
|
||||
"Text file" : "টেক্সট ফাইল",
|
||||
"New folder" : "নব ফােলডার",
|
||||
"Folder" : "ফোল্ডার",
|
||||
"From link" : " লিংক থেকে",
|
||||
"Nothing in here. Upload something!" : "এখানে কিছুই নেই। কিছু আপলোড করুন !",
|
||||
"Download" : "ডাউনলোড",
|
||||
"Upload too large" : "আপলোডের আকারটি অনেক বড়",
|
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." : "আপনি এই সার্ভারে আপলোড করার জন্য অনুমোদিত ফাইলের সর্বোচ্চ আকারের চেয়ে বৃহদাকার ফাইল আপলোড করার চেষ্টা করছেন ",
|
||||
"Files are being scanned, please wait." : "ফাইলগুলো স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
66
apps/files/l10n/bn_BD.json
Normal file
66
apps/files/l10n/bn_BD.json
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
{ "translations": {
|
||||
"Storage not available" : "সংরক্ষণের স্থান নেই",
|
||||
"Storage invalid" : "সংরক্ষণাগার বৈধ নয়",
|
||||
"Unknown error" : "অজানা জটিলতা",
|
||||
"Could not move %s - File with this name already exists" : "%s কে স্থানান্তর করা সম্ভব হলো না - এই নামের ফাইল বিদ্যমান",
|
||||
"Could not move %s" : "%s কে স্থানান্তর করা সম্ভব হলো না",
|
||||
"Permission denied" : "অনুমতি দেয়া হয়নি",
|
||||
"File name cannot be empty." : "ফাইলের নামটি ফাঁকা রাখা যাবে না।",
|
||||
"\"%s\" is an invalid file name." : "\"%s\" টি একটি অননুমোদিত ফাইল নাম।",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।",
|
||||
"Not a valid source" : "বৈধ উৎস নয়",
|
||||
"The file exceeds your quota by %s" : "এই ফাইলটি %s আপনার নির্দিষ্ট কোটা ছাড়িয়ে যাচ্ছে",
|
||||
"Error while downloading %s to %s" : "%s হতে %s ডাউনলোড করতে সমস্যা হচ্ছে",
|
||||
"Error when creating the file" : "ফাইলটি তৈরী করতে যেয়ে সমস্যা হলো",
|
||||
"Folder name cannot be empty." : "ফোল্ডার নামটি ফাঁকা রাখা যাবে না।",
|
||||
"Error when creating the folder" : "ফোল্ডার তৈরী করতে যেয়ে সমস্যা হলো",
|
||||
"Unable to set upload directory." : "েআপলোড ডিরেক্টরি নির্ধারণ করা গেলনা।",
|
||||
"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 নির্ধারিত ফাইলের সর্বোচ্চ আকার অতিক্রম করতে চলেছে ",
|
||||
"The uploaded file was only partially uploaded" : "আপলোড করা ফাইলটি আংশিক আপলোড করা হয়েছে",
|
||||
"No file was uploaded" : "কোন ফাইল আপলোড করা হয় নি",
|
||||
"Missing a temporary folder" : "অস্থায়ী ফোল্ডারটি হারানো গিয়েছে",
|
||||
"Failed to write to disk" : "ডিস্কে লিখতে ব্যর্থ",
|
||||
"Not enough storage available" : "সংরক্ষণের যথেষ্ট জায়গা প্রাপ্তব্য নয়",
|
||||
"Invalid directory." : "ভুল ডিরেক্টরি",
|
||||
"Files" : "ফাইল",
|
||||
"All files" : "সব ফাইল",
|
||||
"Upload cancelled." : "আপলোড বাতিল করা হয়েছে।",
|
||||
"File upload is in progress. Leaving the page now will cancel the upload." : "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।",
|
||||
"{new_name} already exists" : "{new_name} টি বিদ্যমান",
|
||||
"Share" : "ভাগাভাগি কর",
|
||||
"Delete" : "মুছে",
|
||||
"Unshare" : "ভাগাভাগি বাতিল ",
|
||||
"Rename" : "পূনঃনামকরণ",
|
||||
"Pending" : "মুলতুবি",
|
||||
"Error moving file." : "ফাইল সরাতে সমস্যা হলো।",
|
||||
"Error moving file" : "ফাইল সরাতে সমস্যা হলো",
|
||||
"Error" : "সমস্যা",
|
||||
"Could not rename file" : "ফাইলের পূণঃনামকরণ করা গেলনা",
|
||||
"Name" : "রাম",
|
||||
"Size" : "আকার",
|
||||
"Modified" : "পরিবর্তিত",
|
||||
"_%n folder_::_%n folders_" : ["",""],
|
||||
"_%n file_::_%n files_" : ["",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["%n ফাইল আপলোড হচ্ছে","%n ফাইল আপলোড হচ্ছে"],
|
||||
"\"{name}\" is an invalid file name." : "\"{name}\" টি একটি অননুমোদিত ফাইল নাম।",
|
||||
"Your storage is almost full ({usedSpacePercent}%)" : "আপনার সংরক্ষণাধার প্রায় পরিপূর্ণ ({usedSpacePercent}%) ",
|
||||
"File handling" : "ফাইল হ্যার্ডলিং",
|
||||
"Maximum upload size" : "আপলোডের সর্বোচ্চ আকার",
|
||||
"max. possible: " : "অনুমোদিত সর্বোচ্চ আকার",
|
||||
"Save" : "সংরক্ষণ",
|
||||
"WebDAV" : "WebDAV",
|
||||
"New" : "নতুন",
|
||||
"Text file" : "টেক্সট ফাইল",
|
||||
"New folder" : "নব ফােলডার",
|
||||
"Folder" : "ফোল্ডার",
|
||||
"From link" : " লিংক থেকে",
|
||||
"Nothing in here. Upload something!" : "এখানে কিছুই নেই। কিছু আপলোড করুন !",
|
||||
"Download" : "ডাউনলোড",
|
||||
"Upload too large" : "আপলোডের আকারটি অনেক বড়",
|
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." : "আপনি এই সার্ভারে আপলোড করার জন্য অনুমোদিত ফাইলের সর্বোচ্চ আকারের চেয়ে বৃহদাকার ফাইল আপলোড করার চেষ্টা করছেন ",
|
||||
"Files are being scanned, please wait." : "ফাইলগুলো স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,67 +0,0 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"Storage not available" => "সংরক্ষণের স্থান নেই",
|
||||
"Storage invalid" => "সংরক্ষণাগার বৈধ নয়",
|
||||
"Unknown error" => "অজানা জটিলতা",
|
||||
"Could not move %s - File with this name already exists" => "%s কে স্থানান্তর করা সম্ভব হলো না - এই নামের ফাইল বিদ্যমান",
|
||||
"Could not move %s" => "%s কে স্থানান্তর করা সম্ভব হলো না",
|
||||
"Permission denied" => "অনুমতি দেয়া হয়নি",
|
||||
"File name cannot be empty." => "ফাইলের নামটি ফাঁকা রাখা যাবে না।",
|
||||
"\"%s\" is an invalid file name." => "\"%s\" টি একটি অননুমোদিত ফাইল নাম।",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।",
|
||||
"Not a valid source" => "বৈধ উৎস নয়",
|
||||
"The file exceeds your quota by %s" => "এই ফাইলটি %s আপনার নির্দিষ্ট কোটা ছাড়িয়ে যাচ্ছে",
|
||||
"Error while downloading %s to %s" => "%s হতে %s ডাউনলোড করতে সমস্যা হচ্ছে",
|
||||
"Error when creating the file" => "ফাইলটি তৈরী করতে যেয়ে সমস্যা হলো",
|
||||
"Folder name cannot be empty." => "ফোল্ডার নামটি ফাঁকা রাখা যাবে না।",
|
||||
"Error when creating the folder" => "ফোল্ডার তৈরী করতে যেয়ে সমস্যা হলো",
|
||||
"Unable to set upload directory." => "েআপলোড ডিরেক্টরি নির্ধারণ করা গেলনা।",
|
||||
"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 নির্ধারিত ফাইলের সর্বোচ্চ আকার অতিক্রম করতে চলেছে ",
|
||||
"The uploaded file was only partially uploaded" => "আপলোড করা ফাইলটি আংশিক আপলোড করা হয়েছে",
|
||||
"No file was uploaded" => "কোন ফাইল আপলোড করা হয় নি",
|
||||
"Missing a temporary folder" => "অস্থায়ী ফোল্ডারটি হারানো গিয়েছে",
|
||||
"Failed to write to disk" => "ডিস্কে লিখতে ব্যর্থ",
|
||||
"Not enough storage available" => "সংরক্ষণের যথেষ্ট জায়গা প্রাপ্তব্য নয়",
|
||||
"Invalid directory." => "ভুল ডিরেক্টরি",
|
||||
"Files" => "ফাইল",
|
||||
"All files" => "সব ফাইল",
|
||||
"Upload cancelled." => "আপলোড বাতিল করা হয়েছে।",
|
||||
"File upload is in progress. Leaving the page now will cancel the upload." => "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।",
|
||||
"{new_name} already exists" => "{new_name} টি বিদ্যমান",
|
||||
"Share" => "ভাগাভাগি কর",
|
||||
"Delete" => "মুছে",
|
||||
"Unshare" => "ভাগাভাগি বাতিল ",
|
||||
"Rename" => "পূনঃনামকরণ",
|
||||
"Pending" => "মুলতুবি",
|
||||
"Error moving file." => "ফাইল সরাতে সমস্যা হলো।",
|
||||
"Error moving file" => "ফাইল সরাতে সমস্যা হলো",
|
||||
"Error" => "সমস্যা",
|
||||
"Could not rename file" => "ফাইলের পূণঃনামকরণ করা গেলনা",
|
||||
"Name" => "রাম",
|
||||
"Size" => "আকার",
|
||||
"Modified" => "পরিবর্তিত",
|
||||
"_%n folder_::_%n folders_" => array("",""),
|
||||
"_%n file_::_%n files_" => array("",""),
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("%n ফাইল আপলোড হচ্ছে","%n ফাইল আপলোড হচ্ছে"),
|
||||
"\"{name}\" is an invalid file name." => "\"{name}\" টি একটি অননুমোদিত ফাইল নাম।",
|
||||
"Your storage is almost full ({usedSpacePercent}%)" => "আপনার সংরক্ষণাধার প্রায় পরিপূর্ণ ({usedSpacePercent}%) ",
|
||||
"File handling" => "ফাইল হ্যার্ডলিং",
|
||||
"Maximum upload size" => "আপলোডের সর্বোচ্চ আকার",
|
||||
"max. possible: " => "অনুমোদিত সর্বোচ্চ আকার",
|
||||
"Save" => "সংরক্ষণ",
|
||||
"WebDAV" => "WebDAV",
|
||||
"New" => "নতুন",
|
||||
"Text file" => "টেক্সট ফাইল",
|
||||
"New folder" => "নব ফােলডার",
|
||||
"Folder" => "ফোল্ডার",
|
||||
"From link" => " লিংক থেকে",
|
||||
"Nothing in here. Upload something!" => "এখানে কিছুই নেই। কিছু আপলোড করুন !",
|
||||
"Download" => "ডাউনলোড",
|
||||
"Upload too large" => "আপলোডের আকারটি অনেক বড়",
|
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "আপনি এই সার্ভারে আপলোড করার জন্য অনুমোদিত ফাইলের সর্বোচ্চ আকারের চেয়ে বৃহদাকার ফাইল আপলোড করার চেষ্টা করছেন ",
|
||||
"Files are being scanned, please wait." => "ফাইলগুলো স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।"
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
||||
33
apps/files/l10n/bn_IN.js
Normal file
33
apps/files/l10n/bn_IN.js
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"Could not move %s - File with this name already exists" : "%s সরানো যায়নি-এই নামে আগে থেকেই ফাইল আছে",
|
||||
"Could not move %s" : "%s সরানো যায়নি",
|
||||
"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 নির্দেশ অতিক্রম করে",
|
||||
"The uploaded file was only partially uploaded" : "আপলোড করা ফাইল শুধুমাত্র আংশিকভাবে আপলোড করা হয়েছে",
|
||||
"No file was uploaded" : "কোন ফাইল আপলোড করা হয় নি",
|
||||
"Missing a temporary folder" : "একটি অস্থায়ী ফোল্ডার পাওয়া যাচ্ছেনা",
|
||||
"Failed to write to disk" : "ডিস্কে লিখতে ব্যর্থ",
|
||||
"Not enough storage available" : "যথেষ্ট স্টোরেজ পাওয়া যায় না",
|
||||
"Invalid directory." : "অবৈধ ডিরেক্টরি।",
|
||||
"Files" : "ফাইলস",
|
||||
"Share" : "শেয়ার",
|
||||
"Delete" : "মুছে ফেলা",
|
||||
"Delete permanently" : "স্থায়ীভাবে মুছে দিন",
|
||||
"Rename" : "পুনঃনামকরণ",
|
||||
"Pending" : "মুলতুবি",
|
||||
"Error" : "ভুল",
|
||||
"Name" : "নাম",
|
||||
"Size" : "আকার",
|
||||
"_%n folder_::_%n folders_" : ["",""],
|
||||
"_%n file_::_%n files_" : ["",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["",""],
|
||||
"Save" : "সেভ",
|
||||
"New folder" : "নতুন ফোল্ডার",
|
||||
"Folder" : "ফোল্ডার",
|
||||
"Download" : "ডাউনলোড করুন"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
31
apps/files/l10n/bn_IN.json
Normal file
31
apps/files/l10n/bn_IN.json
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{ "translations": {
|
||||
"Could not move %s - File with this name already exists" : "%s সরানো যায়নি-এই নামে আগে থেকেই ফাইল আছে",
|
||||
"Could not move %s" : "%s সরানো যায়নি",
|
||||
"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 নির্দেশ অতিক্রম করে",
|
||||
"The uploaded file was only partially uploaded" : "আপলোড করা ফাইল শুধুমাত্র আংশিকভাবে আপলোড করা হয়েছে",
|
||||
"No file was uploaded" : "কোন ফাইল আপলোড করা হয় নি",
|
||||
"Missing a temporary folder" : "একটি অস্থায়ী ফোল্ডার পাওয়া যাচ্ছেনা",
|
||||
"Failed to write to disk" : "ডিস্কে লিখতে ব্যর্থ",
|
||||
"Not enough storage available" : "যথেষ্ট স্টোরেজ পাওয়া যায় না",
|
||||
"Invalid directory." : "অবৈধ ডিরেক্টরি।",
|
||||
"Files" : "ফাইলস",
|
||||
"Share" : "শেয়ার",
|
||||
"Delete" : "মুছে ফেলা",
|
||||
"Delete permanently" : "স্থায়ীভাবে মুছে দিন",
|
||||
"Rename" : "পুনঃনামকরণ",
|
||||
"Pending" : "মুলতুবি",
|
||||
"Error" : "ভুল",
|
||||
"Name" : "নাম",
|
||||
"Size" : "আকার",
|
||||
"_%n folder_::_%n folders_" : ["",""],
|
||||
"_%n file_::_%n files_" : ["",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["",""],
|
||||
"Save" : "সেভ",
|
||||
"New folder" : "নতুন ফোল্ডার",
|
||||
"Folder" : "ফোল্ডার",
|
||||
"Download" : "ডাউনলোড করুন"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"Could not move %s - File with this name already exists" => "%s সরানো যায়নি-এই নামে আগে থেকেই ফাইল আছে",
|
||||
"Could not move %s" => "%s সরানো যায়নি",
|
||||
"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 নির্দেশ অতিক্রম করে",
|
||||
"The uploaded file was only partially uploaded" => "আপলোড করা ফাইল শুধুমাত্র আংশিকভাবে আপলোড করা হয়েছে",
|
||||
"No file was uploaded" => "কোন ফাইল আপলোড করা হয় নি",
|
||||
"Missing a temporary folder" => "একটি অস্থায়ী ফোল্ডার পাওয়া যাচ্ছেনা",
|
||||
"Failed to write to disk" => "ডিস্কে লিখতে ব্যর্থ",
|
||||
"Not enough storage available" => "যথেষ্ট স্টোরেজ পাওয়া যায় না",
|
||||
"Invalid directory." => "অবৈধ ডিরেক্টরি।",
|
||||
"Files" => "ফাইলস",
|
||||
"Share" => "শেয়ার",
|
||||
"Delete" => "মুছে ফেলা",
|
||||
"Delete permanently" => "স্থায়ীভাবে মুছে দিন",
|
||||
"Rename" => "পুনঃনামকরণ",
|
||||
"Pending" => "মুলতুবি",
|
||||
"Error" => "ভুল",
|
||||
"Name" => "নাম",
|
||||
"Size" => "আকার",
|
||||
"_%n folder_::_%n folders_" => array("",""),
|
||||
"_%n file_::_%n files_" => array("",""),
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("",""),
|
||||
"Save" => "সেভ",
|
||||
"New folder" => "নতুন ফোল্ডার",
|
||||
"Folder" => "ফোল্ডার",
|
||||
"Download" => "ডাউনলোড করুন"
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
||||
14
apps/files/l10n/bs.js
Normal file
14
apps/files/l10n/bs.js
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"Share" : "Podijeli",
|
||||
"Name" : "Ime",
|
||||
"Size" : "Veličina",
|
||||
"_%n folder_::_%n folders_" : ["","",""],
|
||||
"_%n file_::_%n files_" : ["","",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["","",""],
|
||||
"Save" : "Spasi",
|
||||
"New folder" : "Nova fascikla",
|
||||
"Folder" : "Fasikla"
|
||||
},
|
||||
"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);");
|
||||
12
apps/files/l10n/bs.json
Normal file
12
apps/files/l10n/bs.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ "translations": {
|
||||
"Share" : "Podijeli",
|
||||
"Name" : "Ime",
|
||||
"Size" : "Veličina",
|
||||
"_%n folder_::_%n folders_" : ["","",""],
|
||||
"_%n file_::_%n files_" : ["","",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["","",""],
|
||||
"Save" : "Spasi",
|
||||
"New folder" : "Nova fascikla",
|
||||
"Folder" : "Fasikla"
|
||||
},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"
|
||||
}
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"Share" => "Podijeli",
|
||||
"Name" => "Ime",
|
||||
"Size" => "Veličina",
|
||||
"_%n folder_::_%n folders_" => array("","",""),
|
||||
"_%n file_::_%n files_" => array("","",""),
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("","",""),
|
||||
"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);";
|
||||
97
apps/files/l10n/ca.js
Normal file
97
apps/files/l10n/ca.js
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"Storage not available" : "Emmagatzemament no disponible",
|
||||
"Storage invalid" : "Emmagatzemament no vàlid",
|
||||
"Unknown error" : "Error desconegut",
|
||||
"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",
|
||||
"Permission denied" : "Permís denegat",
|
||||
"File name cannot be empty." : "El nom del fitxer no pot ser buit.",
|
||||
"\"%s\" is an invalid file name." : "\"%s\" no es un fitxer vàlid.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos.",
|
||||
"The target folder has been moved or deleted." : "La carpeta de destí s'ha mogut o eliminat.",
|
||||
"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",
|
||||
"Server is not allowed to open URLs, please check the server configuration" : "El servidor no té autorització per obrir URLs, comproveu la configuració del servidor",
|
||||
"The file exceeds your quota by %s" : "El fitxer excedeix de la teva quota per %s",
|
||||
"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.",
|
||||
"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",
|
||||
"There is no error, the file uploaded with success" : "No hi ha errors, el fitxer s'ha carregat correctament",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "L’arxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El fitxer carregat supera la directiva MAX_FILE_SIZE especificada al formulari HTML",
|
||||
"The uploaded file was only partially uploaded" : "El fitxer només s'ha carregat parcialment",
|
||||
"No file was uploaded" : "No s'ha carregat cap fitxer",
|
||||
"Missing a temporary folder" : "Falta un fitxer temporal",
|
||||
"Failed to write to disk" : "Ha fallat en escriure al disc",
|
||||
"Not enough storage available" : "No hi ha prou espai disponible",
|
||||
"Upload failed. Could not find uploaded file" : "La pujada ha fallat. El fitxer pujat no s'ha trobat.",
|
||||
"Upload failed. Could not get file info." : "La pujada ha fallat. No s'ha pogut obtenir informació del fitxer.",
|
||||
"Invalid directory." : "Directori no vàlid.",
|
||||
"Files" : "Fitxers",
|
||||
"All files" : "Tots els fitxers",
|
||||
"Unable to upload {filename} as it is a directory or has 0 bytes" : "No es pot pujar {filename} perquè és una carpeta o té 0 bytes",
|
||||
"Total file size {size1} exceeds upload limit {size2}" : "Mida total del fitxer {size1} excedeix el límit de pujada {size2}",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" : "No hi ha prou espai lliure, està carregant {size1} però només pot {size2}",
|
||||
"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" : "L'URL no pot ser buit",
|
||||
"{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",
|
||||
"Error fetching URL" : "Error en obtenir la URL",
|
||||
"Share" : "Comparteix",
|
||||
"Delete" : "Esborra",
|
||||
"Disconnect storage" : "Desonnecta l'emmagatzematge",
|
||||
"Unshare" : "Deixa de compartir",
|
||||
"Delete permanently" : "Esborra permanentment",
|
||||
"Rename" : "Reanomena",
|
||||
"Pending" : "Pendent",
|
||||
"Error moving file." : "Error en moure el fitxer.",
|
||||
"Error moving file" : "Error en moure el fitxer",
|
||||
"Error" : "Error",
|
||||
"Could not rename file" : "No es pot canviar el nom de fitxer",
|
||||
"Error deleting file." : "Error en esborrar el fitxer.",
|
||||
"Name" : "Nom",
|
||||
"Size" : "Mida",
|
||||
"Modified" : "Modificat",
|
||||
"_%n folder_::_%n folders_" : ["%n carpeta","%n carpetes"],
|
||||
"_%n file_::_%n files_" : ["%n fitxer","%n fitxers"],
|
||||
"You don’t have permission to upload or create files here" : "No teniu permisos per a pujar o crear els fitxers aquí",
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["Pujant %n fitxer","Pujant %n fitxers"],
|
||||
"\"{name}\" is an invalid file name." : "\"{name}\" no es un fitxer vàlid.",
|
||||
"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.",
|
||||
"{dirs} and {files}" : "{dirs} i {files}",
|
||||
"%s could not be renamed as it has been deleted" : "No s'ha pogut renombrar %s ja que ha estat borrat",
|
||||
"%s could not be renamed" : "%s no es pot canviar el nom",
|
||||
"Upload (max. %s)" : "Pujada (màx. %s)",
|
||||
"File handling" : "Gestió de fitxers",
|
||||
"Maximum upload size" : "Mida màxima de pujada",
|
||||
"max. possible: " : "màxim possible:",
|
||||
"Save" : "Desa",
|
||||
"WebDAV" : "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" : "Useu aquesta adreça per <a href=\"%s\" target=\"_blank\">accedir als fitxers via WebDAV</a>",
|
||||
"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ç",
|
||||
"Nothing in here. Upload something!" : "Res per aquí. Pugeu alguna cosa!",
|
||||
"Download" : "Baixa",
|
||||
"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",
|
||||
"Files are being scanned, please wait." : "S'estan escanejant els fitxers, espereu",
|
||||
"Currently scanning" : "Actualment escanejant"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
95
apps/files/l10n/ca.json
Normal file
95
apps/files/l10n/ca.json
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
{ "translations": {
|
||||
"Storage not available" : "Emmagatzemament no disponible",
|
||||
"Storage invalid" : "Emmagatzemament no vàlid",
|
||||
"Unknown error" : "Error desconegut",
|
||||
"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",
|
||||
"Permission denied" : "Permís denegat",
|
||||
"File name cannot be empty." : "El nom del fitxer no pot ser buit.",
|
||||
"\"%s\" is an invalid file name." : "\"%s\" no es un fitxer vàlid.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos.",
|
||||
"The target folder has been moved or deleted." : "La carpeta de destí s'ha mogut o eliminat.",
|
||||
"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",
|
||||
"Server is not allowed to open URLs, please check the server configuration" : "El servidor no té autorització per obrir URLs, comproveu la configuració del servidor",
|
||||
"The file exceeds your quota by %s" : "El fitxer excedeix de la teva quota per %s",
|
||||
"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.",
|
||||
"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",
|
||||
"There is no error, the file uploaded with success" : "No hi ha errors, el fitxer s'ha carregat correctament",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "L’arxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El fitxer carregat supera la directiva MAX_FILE_SIZE especificada al formulari HTML",
|
||||
"The uploaded file was only partially uploaded" : "El fitxer només s'ha carregat parcialment",
|
||||
"No file was uploaded" : "No s'ha carregat cap fitxer",
|
||||
"Missing a temporary folder" : "Falta un fitxer temporal",
|
||||
"Failed to write to disk" : "Ha fallat en escriure al disc",
|
||||
"Not enough storage available" : "No hi ha prou espai disponible",
|
||||
"Upload failed. Could not find uploaded file" : "La pujada ha fallat. El fitxer pujat no s'ha trobat.",
|
||||
"Upload failed. Could not get file info." : "La pujada ha fallat. No s'ha pogut obtenir informació del fitxer.",
|
||||
"Invalid directory." : "Directori no vàlid.",
|
||||
"Files" : "Fitxers",
|
||||
"All files" : "Tots els fitxers",
|
||||
"Unable to upload {filename} as it is a directory or has 0 bytes" : "No es pot pujar {filename} perquè és una carpeta o té 0 bytes",
|
||||
"Total file size {size1} exceeds upload limit {size2}" : "Mida total del fitxer {size1} excedeix el límit de pujada {size2}",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" : "No hi ha prou espai lliure, està carregant {size1} però només pot {size2}",
|
||||
"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" : "L'URL no pot ser buit",
|
||||
"{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",
|
||||
"Error fetching URL" : "Error en obtenir la URL",
|
||||
"Share" : "Comparteix",
|
||||
"Delete" : "Esborra",
|
||||
"Disconnect storage" : "Desonnecta l'emmagatzematge",
|
||||
"Unshare" : "Deixa de compartir",
|
||||
"Delete permanently" : "Esborra permanentment",
|
||||
"Rename" : "Reanomena",
|
||||
"Pending" : "Pendent",
|
||||
"Error moving file." : "Error en moure el fitxer.",
|
||||
"Error moving file" : "Error en moure el fitxer",
|
||||
"Error" : "Error",
|
||||
"Could not rename file" : "No es pot canviar el nom de fitxer",
|
||||
"Error deleting file." : "Error en esborrar el fitxer.",
|
||||
"Name" : "Nom",
|
||||
"Size" : "Mida",
|
||||
"Modified" : "Modificat",
|
||||
"_%n folder_::_%n folders_" : ["%n carpeta","%n carpetes"],
|
||||
"_%n file_::_%n files_" : ["%n fitxer","%n fitxers"],
|
||||
"You don’t have permission to upload or create files here" : "No teniu permisos per a pujar o crear els fitxers aquí",
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["Pujant %n fitxer","Pujant %n fitxers"],
|
||||
"\"{name}\" is an invalid file name." : "\"{name}\" no es un fitxer vàlid.",
|
||||
"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.",
|
||||
"{dirs} and {files}" : "{dirs} i {files}",
|
||||
"%s could not be renamed as it has been deleted" : "No s'ha pogut renombrar %s ja que ha estat borrat",
|
||||
"%s could not be renamed" : "%s no es pot canviar el nom",
|
||||
"Upload (max. %s)" : "Pujada (màx. %s)",
|
||||
"File handling" : "Gestió de fitxers",
|
||||
"Maximum upload size" : "Mida màxima de pujada",
|
||||
"max. possible: " : "màxim possible:",
|
||||
"Save" : "Desa",
|
||||
"WebDAV" : "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" : "Useu aquesta adreça per <a href=\"%s\" target=\"_blank\">accedir als fitxers via WebDAV</a>",
|
||||
"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ç",
|
||||
"Nothing in here. Upload something!" : "Res per aquí. Pugeu alguna cosa!",
|
||||
"Download" : "Baixa",
|
||||
"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",
|
||||
"Files are being scanned, please wait." : "S'estan escanejant els fitxers, espereu",
|
||||
"Currently scanning" : "Actualment escanejant"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"Storage not available" => "Emmagatzemament no disponible",
|
||||
"Storage invalid" => "Emmagatzemament no vàlid",
|
||||
"Unknown error" => "Error desconegut",
|
||||
"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.",
|
||||
"\"%s\" is an invalid file name." => "\"%s\" no es un fitxer vàlid.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos.",
|
||||
"The target folder has been moved or deleted." => "La carpeta de destí s'ha mogut o eliminat.",
|
||||
"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",
|
||||
"Server is not allowed to open URLs, please check the server configuration" => "El servidor no té autorització per obrir URLs, comproveu la configuració del servidor",
|
||||
"The file exceeds your quota by %s" => "El fitxer excedeix de la teva quota per %s",
|
||||
"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.",
|
||||
"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",
|
||||
"There is no error, the file uploaded with success" => "No hi ha errors, el fitxer s'ha carregat correctament",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "L’arxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El fitxer carregat supera la directiva MAX_FILE_SIZE especificada al formulari HTML",
|
||||
"The uploaded file was only partially uploaded" => "El fitxer només s'ha carregat parcialment",
|
||||
"No file was uploaded" => "No s'ha carregat cap fitxer",
|
||||
"Missing a temporary folder" => "Falta un fitxer temporal",
|
||||
"Failed to write to disk" => "Ha fallat en escriure al disc",
|
||||
"Not enough storage available" => "No hi ha prou espai disponible",
|
||||
"Upload failed. Could not find uploaded file" => "La pujada ha fallat. El fitxer pujat no s'ha trobat.",
|
||||
"Upload failed. Could not get file info." => "La pujada ha fallat. No s'ha pogut obtenir informació del fitxer.",
|
||||
"Invalid directory." => "Directori no vàlid.",
|
||||
"Files" => "Fitxers",
|
||||
"All files" => "Tots els fitxers",
|
||||
"Unable to upload {filename} as it is a directory or has 0 bytes" => "No es pot pujar {filename} perquè és una carpeta o té 0 bytes",
|
||||
"Total file size {size1} exceeds upload limit {size2}" => "Mida total del fitxer {size1} excedeix el límit de pujada {size2}",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" => "No hi ha prou espai lliure, està carregant {size1} però només pot {size2}",
|
||||
"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" => "L'URL no pot ser buit",
|
||||
"{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",
|
||||
"Error fetching URL" => "Error en obtenir la URL",
|
||||
"Share" => "Comparteix",
|
||||
"Delete" => "Esborra",
|
||||
"Disconnect storage" => "Desonnecta l'emmagatzematge",
|
||||
"Unshare" => "Deixa de compartir",
|
||||
"Delete permanently" => "Esborra permanentment",
|
||||
"Rename" => "Reanomena",
|
||||
"Pending" => "Pendent",
|
||||
"Error moving file." => "Error en moure el fitxer.",
|
||||
"Error moving file" => "Error en moure el fitxer",
|
||||
"Error" => "Error",
|
||||
"Could not rename file" => "No es pot canviar el nom de fitxer",
|
||||
"Error deleting file." => "Error en esborrar el fitxer.",
|
||||
"Name" => "Nom",
|
||||
"Size" => "Mida",
|
||||
"Modified" => "Modificat",
|
||||
"_%n folder_::_%n folders_" => array("%n carpeta","%n carpetes"),
|
||||
"_%n file_::_%n files_" => array("%n fitxer","%n fitxers"),
|
||||
"You don’t have permission to upload or create files here" => "No teniu permisos per a pujar o crear els fitxers aquí",
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("Pujant %n fitxer","Pujant %n fitxers"),
|
||||
"\"{name}\" is an invalid file name." => "\"{name}\" no es un fitxer vàlid.",
|
||||
"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.",
|
||||
"{dirs} and {files}" => "{dirs} i {files}",
|
||||
"%s could not be renamed as it has been deleted" => "No s'ha pogut renombrar %s ja que ha estat borrat",
|
||||
"%s could not be renamed" => "%s no es pot canviar el nom",
|
||||
"Upload (max. %s)" => "Pujada (màx. %s)",
|
||||
"File handling" => "Gestió de fitxers",
|
||||
"Maximum upload size" => "Mida màxima de pujada",
|
||||
"max. possible: " => "màxim possible:",
|
||||
"Save" => "Desa",
|
||||
"WebDAV" => "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Useu aquesta adreça per <a href=\"%s\" target=\"_blank\">accedir als fitxers via WebDAV</a>",
|
||||
"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ç",
|
||||
"Nothing in here. Upload something!" => "Res per aquí. Pugeu alguna cosa!",
|
||||
"Download" => "Baixa",
|
||||
"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",
|
||||
"Files are being scanned, please wait." => "S'estan escanejant els fitxers, espereu",
|
||||
"Currently scanning" => "Actualment escanejant"
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
||||
8
apps/files/l10n/ca@valencia.js
Normal file
8
apps/files/l10n/ca@valencia.js
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"_%n folder_::_%n folders_" : ["",""],
|
||||
"_%n file_::_%n files_" : ["",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["",""]
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
6
apps/files/l10n/ca@valencia.json
Normal file
6
apps/files/l10n/ca@valencia.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ "translations": {
|
||||
"_%n folder_::_%n folders_" : ["",""],
|
||||
"_%n file_::_%n files_" : ["",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["",""]
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"_%n folder_::_%n folders_" => array("",""),
|
||||
"_%n file_::_%n files_" => array("",""),
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("","")
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
||||
97
apps/files/l10n/cs_CZ.js
Normal file
97
apps/files/l10n/cs_CZ.js
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"Storage not available" : "Úložiště není dostupné",
|
||||
"Storage invalid" : "Neplatné úložiště",
|
||||
"Unknown error" : "Neznámá chyba",
|
||||
"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",
|
||||
"Permission denied" : "Přístup odepřen",
|
||||
"File name cannot be empty." : "Název souboru nemůže být prázdný řetězec.",
|
||||
"\"%s\" is an invalid file name." : "\"%s\" je neplatným názvem souboru.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny.",
|
||||
"The target folder has been moved or deleted." : "Cílová složka byla přesunuta nebo smazána.",
|
||||
"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.",
|
||||
"The file exceeds your quota by %s" : "Soubor překračuje povolenou kvótu o %s",
|
||||
"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ý.",
|
||||
"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",
|
||||
"There is no error, the file uploaded with success" : "Soubor byl odeslán úspěšně",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný ve formuláři HTML",
|
||||
"The uploaded file was only partially uploaded" : "Soubor byl odeslán pouze částečně",
|
||||
"No file was uploaded" : "Žádný soubor nebyl odeslán",
|
||||
"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 find uploaded file" : "Nahrávání selhalo. Nepodařilo se nalézt nahraný soubor.",
|
||||
"Upload failed. Could not get file info." : "Nahrávání selhalo. Nepodařilo se získat informace o souboru.",
|
||||
"Invalid directory." : "Neplatný adresář",
|
||||
"Files" : "Soubory",
|
||||
"All files" : "Všechny 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ů",
|
||||
"Total file size {size1} exceeds upload limit {size2}" : "Celková velikost souboru {size1} překračuje povolenou velikost pro nahrávání {size2}",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" : "Není dostatek místa pro uložení, velikost souboru je {size1}, zbývá pouze {size2}",
|
||||
"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 zůstat prázdná",
|
||||
"{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" : "Smazat",
|
||||
"Disconnect storage" : "Odpojit úložiště",
|
||||
"Unshare" : "Zrušit sdílení",
|
||||
"Delete permanently" : "Trvale odstranit",
|
||||
"Rename" : "Přejmenovat",
|
||||
"Pending" : "Nevyřízené",
|
||||
"Error moving file." : "Chyba při přesunu souboru.",
|
||||
"Error moving file" : "Chyba při přesunu souboru",
|
||||
"Error" : "Chyba",
|
||||
"Could not rename file" : "Nepodařilo se přejmenovat soubor",
|
||||
"Error deleting file." : "Chyba při mazání souboru.",
|
||||
"Name" : "Název",
|
||||
"Size" : "Velikost",
|
||||
"Modified" : "Upraveno",
|
||||
"_%n folder_::_%n folders_" : ["%n složka","%n složky","%n složek"],
|
||||
"_%n file_::_%n files_" : ["%n soubor","%n soubory","%n souborů"],
|
||||
"You don’t have permission to upload or create files here" : "Nemáte oprávnění sem nahrávat nebo vytvářet soubory",
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["Nahrávám %n soubor","Nahrávám %n soubory","Nahrávám %n souborů"],
|
||||
"\"{name}\" is an invalid file name." : "\"{name}\" je neplatným názvem souboru.",
|
||||
"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.",
|
||||
"{dirs} and {files}" : "{dirs} a {files}",
|
||||
"%s could not be renamed as it has been deleted" : "%s nelze přejmenovat, protože byl smazán",
|
||||
"%s could not be renamed" : "%s nemůže být přejmenován",
|
||||
"Upload (max. %s)" : "Nahrát (max. %s)",
|
||||
"File handling" : "Zacházení se soubory",
|
||||
"Maximum upload size" : "Maximální velikost pro odesílání",
|
||||
"max. possible: " : "největší možná: ",
|
||||
"Save" : "Uložit",
|
||||
"WebDAV" : "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" : "Použijte tuto adresu pro <a href=\"%s\" target=\"_blank\">přístup k vašim souborům přes WebDAV</a>",
|
||||
"New" : "Nový",
|
||||
"New text file" : "Nový textový soubor",
|
||||
"Text file" : "Textový soubor",
|
||||
"New folder" : "Nová složka",
|
||||
"Folder" : "Složka",
|
||||
"From link" : "Z odkazu",
|
||||
"Nothing in here. Upload something!" : "Žádný obsah. Nahrajte něco.",
|
||||
"Download" : "Stáhnout",
|
||||
"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.",
|
||||
"Files are being scanned, please wait." : "Soubory se prohledávají, prosím čekejte.",
|
||||
"Currently scanning" : "Prohledává se"
|
||||
},
|
||||
"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;");
|
||||
95
apps/files/l10n/cs_CZ.json
Normal file
95
apps/files/l10n/cs_CZ.json
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
{ "translations": {
|
||||
"Storage not available" : "Úložiště není dostupné",
|
||||
"Storage invalid" : "Neplatné úložiště",
|
||||
"Unknown error" : "Neznámá chyba",
|
||||
"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",
|
||||
"Permission denied" : "Přístup odepřen",
|
||||
"File name cannot be empty." : "Název souboru nemůže být prázdný řetězec.",
|
||||
"\"%s\" is an invalid file name." : "\"%s\" je neplatným názvem souboru.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny.",
|
||||
"The target folder has been moved or deleted." : "Cílová složka byla přesunuta nebo smazána.",
|
||||
"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.",
|
||||
"The file exceeds your quota by %s" : "Soubor překračuje povolenou kvótu o %s",
|
||||
"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ý.",
|
||||
"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",
|
||||
"There is no error, the file uploaded with success" : "Soubor byl odeslán úspěšně",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný ve formuláři HTML",
|
||||
"The uploaded file was only partially uploaded" : "Soubor byl odeslán pouze částečně",
|
||||
"No file was uploaded" : "Žádný soubor nebyl odeslán",
|
||||
"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 find uploaded file" : "Nahrávání selhalo. Nepodařilo se nalézt nahraný soubor.",
|
||||
"Upload failed. Could not get file info." : "Nahrávání selhalo. Nepodařilo se získat informace o souboru.",
|
||||
"Invalid directory." : "Neplatný adresář",
|
||||
"Files" : "Soubory",
|
||||
"All files" : "Všechny 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ů",
|
||||
"Total file size {size1} exceeds upload limit {size2}" : "Celková velikost souboru {size1} překračuje povolenou velikost pro nahrávání {size2}",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" : "Není dostatek místa pro uložení, velikost souboru je {size1}, zbývá pouze {size2}",
|
||||
"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 zůstat prázdná",
|
||||
"{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" : "Smazat",
|
||||
"Disconnect storage" : "Odpojit úložiště",
|
||||
"Unshare" : "Zrušit sdílení",
|
||||
"Delete permanently" : "Trvale odstranit",
|
||||
"Rename" : "Přejmenovat",
|
||||
"Pending" : "Nevyřízené",
|
||||
"Error moving file." : "Chyba při přesunu souboru.",
|
||||
"Error moving file" : "Chyba při přesunu souboru",
|
||||
"Error" : "Chyba",
|
||||
"Could not rename file" : "Nepodařilo se přejmenovat soubor",
|
||||
"Error deleting file." : "Chyba při mazání souboru.",
|
||||
"Name" : "Název",
|
||||
"Size" : "Velikost",
|
||||
"Modified" : "Upraveno",
|
||||
"_%n folder_::_%n folders_" : ["%n složka","%n složky","%n složek"],
|
||||
"_%n file_::_%n files_" : ["%n soubor","%n soubory","%n souborů"],
|
||||
"You don’t have permission to upload or create files here" : "Nemáte oprávnění sem nahrávat nebo vytvářet soubory",
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["Nahrávám %n soubor","Nahrávám %n soubory","Nahrávám %n souborů"],
|
||||
"\"{name}\" is an invalid file name." : "\"{name}\" je neplatným názvem souboru.",
|
||||
"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.",
|
||||
"{dirs} and {files}" : "{dirs} a {files}",
|
||||
"%s could not be renamed as it has been deleted" : "%s nelze přejmenovat, protože byl smazán",
|
||||
"%s could not be renamed" : "%s nemůže být přejmenován",
|
||||
"Upload (max. %s)" : "Nahrát (max. %s)",
|
||||
"File handling" : "Zacházení se soubory",
|
||||
"Maximum upload size" : "Maximální velikost pro odesílání",
|
||||
"max. possible: " : "největší možná: ",
|
||||
"Save" : "Uložit",
|
||||
"WebDAV" : "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" : "Použijte tuto adresu pro <a href=\"%s\" target=\"_blank\">přístup k vašim souborům přes WebDAV</a>",
|
||||
"New" : "Nový",
|
||||
"New text file" : "Nový textový soubor",
|
||||
"Text file" : "Textový soubor",
|
||||
"New folder" : "Nová složka",
|
||||
"Folder" : "Složka",
|
||||
"From link" : "Z odkazu",
|
||||
"Nothing in here. Upload something!" : "Žádný obsah. Nahrajte něco.",
|
||||
"Download" : "Stáhnout",
|
||||
"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.",
|
||||
"Files are being scanned, please wait." : "Soubory se prohledávají, prosím čekejte.",
|
||||
"Currently scanning" : "Prohledává se"
|
||||
},"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"
|
||||
}
|
||||
|
|
@ -1,96 +0,0 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"Storage not available" => "Úložiště není dostupné",
|
||||
"Storage invalid" => "Neplatné úložiště",
|
||||
"Unknown error" => "Neznámá chyba",
|
||||
"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",
|
||||
"Permission denied" => "Přístup odepřen",
|
||||
"File name cannot be empty." => "Název souboru nemůže být prázdný řetězec.",
|
||||
"\"%s\" is an invalid file name." => "\"%s\" je neplatným názvem souboru.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny.",
|
||||
"The target folder has been moved or deleted." => "Cílová složka byla přesunuta nebo smazána.",
|
||||
"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.",
|
||||
"The file exceeds your quota by %s" => "Soubor překračuje povolenou kvótu o %s",
|
||||
"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ý.",
|
||||
"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",
|
||||
"There is no error, the file uploaded with success" => "Soubor byl odeslán úspěšně",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný ve formuláři HTML",
|
||||
"The uploaded file was only partially uploaded" => "Soubor byl odeslán pouze částečně",
|
||||
"No file was uploaded" => "Žádný soubor nebyl odeslán",
|
||||
"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 find uploaded file" => "Nahrávání selhalo. Nepodařilo se nalézt nahraný soubor.",
|
||||
"Upload failed. Could not get file info." => "Nahrávání selhalo. Nepodařilo se získat informace o souboru.",
|
||||
"Invalid directory." => "Neplatný adresář",
|
||||
"Files" => "Soubory",
|
||||
"All files" => "Všechny 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ů",
|
||||
"Total file size {size1} exceeds upload limit {size2}" => "Celková velikost souboru {size1} překračuje povolenou velikost pro nahrávání {size2}",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" => "Není dostatek místa pro uložení, velikost souboru je {size1}, zbývá pouze {size2}",
|
||||
"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 zůstat prázdná",
|
||||
"{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" => "Smazat",
|
||||
"Disconnect storage" => "Odpojit úložiště",
|
||||
"Unshare" => "Zrušit sdílení",
|
||||
"Delete permanently" => "Trvale odstranit",
|
||||
"Rename" => "Přejmenovat",
|
||||
"Pending" => "Nevyřízené",
|
||||
"Error moving file." => "Chyba při přesunu souboru.",
|
||||
"Error moving file" => "Chyba při přesunu souboru",
|
||||
"Error" => "Chyba",
|
||||
"Could not rename file" => "Nepodařilo se přejmenovat soubor",
|
||||
"Error deleting file." => "Chyba při mazání souboru.",
|
||||
"Name" => "Název",
|
||||
"Size" => "Velikost",
|
||||
"Modified" => "Upraveno",
|
||||
"_%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ů"),
|
||||
"You don’t have permission to upload or create files here" => "Nemáte oprávnění zde nahrávat či vytvářet soubory",
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("Nahrávám %n soubor","Nahrávám %n soubory","Nahrávám %n souborů"),
|
||||
"\"{name}\" is an invalid file name." => "\"{name}\" je neplatným názvem souboru.",
|
||||
"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.",
|
||||
"{dirs} and {files}" => "{dirs} a {files}",
|
||||
"%s could not be renamed as it has been deleted" => "%s nelze přejmenovat, protože byl smazán",
|
||||
"%s could not be renamed" => "%s nemůže být přejmenován",
|
||||
"Upload (max. %s)" => "Nahrát (max. %s)",
|
||||
"File handling" => "Zacházení se soubory",
|
||||
"Maximum upload size" => "Maximální velikost pro odesílání",
|
||||
"max. possible: " => "největší možná: ",
|
||||
"Save" => "Uložit",
|
||||
"WebDAV" => "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Použijte tuto adresu pro <a href=\"%s\" target=\"_blank\">přístup k vašim souborům přes WebDAV</a>",
|
||||
"New" => "Nový",
|
||||
"New text file" => "Nový textový soubor",
|
||||
"Text file" => "Textový soubor",
|
||||
"New folder" => "Nová složka",
|
||||
"Folder" => "Složka",
|
||||
"From link" => "Z odkazu",
|
||||
"Nothing in here. Upload something!" => "Žádný obsah. Nahrajte něco.",
|
||||
"Download" => "Stáhnout",
|
||||
"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.",
|
||||
"Files are being scanned, please wait." => "Soubory se prohledávají, prosím čekejte.",
|
||||
"Currently scanning" => "Prohledává se"
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;";
|
||||
51
apps/files/l10n/cy_GB.js
Normal file
51
apps/files/l10n/cy_GB.js
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"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.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'.",
|
||||
"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:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb MAX_FILE_SIZE bennwyd yn y ffurflen HTML",
|
||||
"The uploaded file was only partially uploaded" : "Dim ond yn rhannol y llwythwyd y ffeil i fyny",
|
||||
"No file was uploaded" : "Ni lwythwyd ffeil i fyny",
|
||||
"Missing a temporary folder" : "Plygell dros dro yn eisiau",
|
||||
"Failed to write to disk" : "Methwyd ysgrifennu i'r ddisg",
|
||||
"Not enough storage available" : "Dim digon o le storio ar gael",
|
||||
"Invalid directory." : "Cyfeiriadur annilys.",
|
||||
"Files" : "Ffeiliau",
|
||||
"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.",
|
||||
"{new_name} already exists" : "{new_name} yn bodoli'n barod",
|
||||
"Share" : "Rhannu",
|
||||
"Delete" : "Dileu",
|
||||
"Unshare" : "Dad-rannu",
|
||||
"Delete permanently" : "Dileu'n barhaol",
|
||||
"Rename" : "Ailenwi",
|
||||
"Pending" : "I ddod",
|
||||
"Error" : "Gwall",
|
||||
"Name" : "Enw",
|
||||
"Size" : "Maint",
|
||||
"Modified" : "Addaswyd",
|
||||
"_%n folder_::_%n folders_" : ["","","",""],
|
||||
"_%n file_::_%n files_" : ["","","",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["","","",""],
|
||||
"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}%)",
|
||||
"File handling" : "Trafod ffeiliau",
|
||||
"Maximum upload size" : "Maint mwyaf llwytho i fyny",
|
||||
"max. possible: " : "mwyaf. posib:",
|
||||
"Save" : "Cadw",
|
||||
"New" : "Newydd",
|
||||
"Text file" : "Ffeil destun",
|
||||
"Folder" : "Plygell",
|
||||
"From link" : "Dolen o",
|
||||
"Nothing in here. Upload something!" : "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!",
|
||||
"Download" : "Llwytho i lawr",
|
||||
"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.",
|
||||
"Files are being scanned, please wait." : "Arhoswch, mae ffeiliau'n cael eu sganio."
|
||||
},
|
||||
"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;");
|
||||
49
apps/files/l10n/cy_GB.json
Normal file
49
apps/files/l10n/cy_GB.json
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
{ "translations": {
|
||||
"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.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'.",
|
||||
"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:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb MAX_FILE_SIZE bennwyd yn y ffurflen HTML",
|
||||
"The uploaded file was only partially uploaded" : "Dim ond yn rhannol y llwythwyd y ffeil i fyny",
|
||||
"No file was uploaded" : "Ni lwythwyd ffeil i fyny",
|
||||
"Missing a temporary folder" : "Plygell dros dro yn eisiau",
|
||||
"Failed to write to disk" : "Methwyd ysgrifennu i'r ddisg",
|
||||
"Not enough storage available" : "Dim digon o le storio ar gael",
|
||||
"Invalid directory." : "Cyfeiriadur annilys.",
|
||||
"Files" : "Ffeiliau",
|
||||
"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.",
|
||||
"{new_name} already exists" : "{new_name} yn bodoli'n barod",
|
||||
"Share" : "Rhannu",
|
||||
"Delete" : "Dileu",
|
||||
"Unshare" : "Dad-rannu",
|
||||
"Delete permanently" : "Dileu'n barhaol",
|
||||
"Rename" : "Ailenwi",
|
||||
"Pending" : "I ddod",
|
||||
"Error" : "Gwall",
|
||||
"Name" : "Enw",
|
||||
"Size" : "Maint",
|
||||
"Modified" : "Addaswyd",
|
||||
"_%n folder_::_%n folders_" : ["","","",""],
|
||||
"_%n file_::_%n files_" : ["","","",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["","","",""],
|
||||
"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}%)",
|
||||
"File handling" : "Trafod ffeiliau",
|
||||
"Maximum upload size" : "Maint mwyaf llwytho i fyny",
|
||||
"max. possible: " : "mwyaf. posib:",
|
||||
"Save" : "Cadw",
|
||||
"New" : "Newydd",
|
||||
"Text file" : "Ffeil destun",
|
||||
"Folder" : "Plygell",
|
||||
"From link" : "Dolen o",
|
||||
"Nothing in here. Upload something!" : "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!",
|
||||
"Download" : "Llwytho i lawr",
|
||||
"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.",
|
||||
"Files are being scanned, please wait." : "Arhoswch, mae ffeiliau'n cael eu sganio."
|
||||
},"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"
|
||||
}
|
||||
|
|
@ -1,50 +0,0 @@
|
|||
<?php
|
||||
$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.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'.",
|
||||
"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:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb MAX_FILE_SIZE bennwyd yn y ffurflen HTML",
|
||||
"The uploaded file was only partially uploaded" => "Dim ond yn rhannol y llwythwyd y ffeil i fyny",
|
||||
"No file was uploaded" => "Ni lwythwyd ffeil i fyny",
|
||||
"Missing a temporary folder" => "Plygell dros dro yn eisiau",
|
||||
"Failed to write to disk" => "Methwyd ysgrifennu i'r ddisg",
|
||||
"Not enough storage available" => "Dim digon o le storio ar gael",
|
||||
"Invalid directory." => "Cyfeiriadur annilys.",
|
||||
"Files" => "Ffeiliau",
|
||||
"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.",
|
||||
"{new_name} already exists" => "{new_name} yn bodoli'n barod",
|
||||
"Share" => "Rhannu",
|
||||
"Delete" => "Dileu",
|
||||
"Unshare" => "Dad-rannu",
|
||||
"Delete permanently" => "Dileu'n barhaol",
|
||||
"Rename" => "Ailenwi",
|
||||
"Pending" => "I ddod",
|
||||
"Error" => "Gwall",
|
||||
"Name" => "Enw",
|
||||
"Size" => "Maint",
|
||||
"Modified" => "Addaswyd",
|
||||
"_%n folder_::_%n folders_" => array("","","",""),
|
||||
"_%n file_::_%n files_" => array("","","",""),
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("","","",""),
|
||||
"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}%)",
|
||||
"File handling" => "Trafod ffeiliau",
|
||||
"Maximum upload size" => "Maint mwyaf llwytho i fyny",
|
||||
"max. possible: " => "mwyaf. posib:",
|
||||
"Save" => "Cadw",
|
||||
"New" => "Newydd",
|
||||
"Text file" => "Ffeil destun",
|
||||
"Folder" => "Plygell",
|
||||
"From link" => "Dolen o",
|
||||
"Nothing in here. Upload something!" => "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!",
|
||||
"Download" => "Llwytho i lawr",
|
||||
"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.",
|
||||
"Files are being scanned, please wait." => "Arhoswch, mae ffeiliau'n cael eu sganio."
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;";
|
||||
97
apps/files/l10n/da.js
Normal file
97
apps/files/l10n/da.js
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"Storage not available" : "Lagerplads er ikke tilgængeligt",
|
||||
"Storage invalid" : "Lagerplads er ugyldig",
|
||||
"Unknown error" : "Ukendt fejl",
|
||||
"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",
|
||||
"Permission denied" : "Adgang nægtet",
|
||||
"File name cannot be empty." : "Filnavnet kan ikke stå tomt.",
|
||||
"\"%s\" is an invalid file name." : "\"%s\" er et ugyldigt filnavn.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt.",
|
||||
"The target folder has been moved or deleted." : "Mappen er blevet slettet eller fjernet.",
|
||||
"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",
|
||||
"The file exceeds your quota by %s" : "Denne fil overskrider dit kvota med %s",
|
||||
"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.",
|
||||
"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.",
|
||||
"There is no error, the file uploaded with success" : "Der skete ingen fejl, filen blev succesfuldt uploadet",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Den uploadede fil overstiger MAX_FILE_SIZE indstilingen, som specificeret i HTML formularen",
|
||||
"The uploaded file was only partially uploaded" : "Filen blev kun delvist uploadet.",
|
||||
"No file was uploaded" : "Ingen fil uploadet",
|
||||
"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 find uploaded file" : "Upload fejlede. Kunne ikke finde den uploadede fil.",
|
||||
"Upload failed. Could not get file info." : "Upload fejlede. Kunne ikke hente filinformation.",
|
||||
"Invalid directory." : "Ugyldig mappe.",
|
||||
"Files" : "Filer",
|
||||
"All files" : "Alle 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.",
|
||||
"Total file size {size1} exceeds upload limit {size2}" : "Den totale filstørrelse {size1} er større end uploadgrænsen {size2}",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" : "Der er ikke tilstrækkeligt friplads. Du uplaoder {size1} men der er kun {size2} tilbage",
|
||||
"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" : "URL kan ikke være tom",
|
||||
"{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" : "Slet",
|
||||
"Disconnect storage" : "Frakobl lager",
|
||||
"Unshare" : "Fjern deling",
|
||||
"Delete permanently" : "Slet permanent",
|
||||
"Rename" : "Omdøb",
|
||||
"Pending" : "Afventer",
|
||||
"Error moving file." : "Fejl ved flytning af fil",
|
||||
"Error moving file" : "Fejl ved flytning af fil",
|
||||
"Error" : "Fejl",
|
||||
"Could not rename file" : "Kunne ikke omdøbe filen",
|
||||
"Error deleting file." : "Fejl ved sletnign af fil.",
|
||||
"Name" : "Navn",
|
||||
"Size" : "Størrelse",
|
||||
"Modified" : "Ændret",
|
||||
"_%n folder_::_%n folders_" : ["%n mappe","%n mapper"],
|
||||
"_%n file_::_%n files_" : ["%n fil","%n filer"],
|
||||
"You don’t have permission to upload or create files here" : "Du har ikke tilladelse til at uploade eller oprette filer her",
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["Uploader %n fil","Uploader %n filer"],
|
||||
"\"{name}\" is an invalid file name." : "'{name}' er et ugyldigt filnavn.",
|
||||
"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. ",
|
||||
"{dirs} and {files}" : "{dirs} og {files}",
|
||||
"%s could not be renamed as it has been deleted" : "%s kunne ikke omdøbes, da den er blevet slettet",
|
||||
"%s could not be renamed" : "%s kunne ikke omdøbes",
|
||||
"Upload (max. %s)" : "Upload (max. %s)",
|
||||
"File handling" : "Filhåndtering",
|
||||
"Maximum upload size" : "Maksimal upload-størrelse",
|
||||
"max. possible: " : "max. mulige: ",
|
||||
"Save" : "Gem",
|
||||
"WebDAV" : "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" : "Brug denne adresse for at <a href=\"%s\" target=\"_blank\">tilgå dine filer via WebDAV</a>",
|
||||
"New" : "Ny",
|
||||
"New text file" : "Ny tekstfil",
|
||||
"Text file" : "Tekstfil",
|
||||
"New folder" : "Ny Mappe",
|
||||
"Folder" : "Mappe",
|
||||
"From link" : "Fra link",
|
||||
"Nothing in here. Upload something!" : "Her er tomt. Upload noget!",
|
||||
"Download" : "Download",
|
||||
"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.",
|
||||
"Files are being scanned, please wait." : "Filerne bliver indlæst, vent venligst.",
|
||||
"Currently scanning" : "Indlæser"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
95
apps/files/l10n/da.json
Normal file
95
apps/files/l10n/da.json
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
{ "translations": {
|
||||
"Storage not available" : "Lagerplads er ikke tilgængeligt",
|
||||
"Storage invalid" : "Lagerplads er ugyldig",
|
||||
"Unknown error" : "Ukendt fejl",
|
||||
"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",
|
||||
"Permission denied" : "Adgang nægtet",
|
||||
"File name cannot be empty." : "Filnavnet kan ikke stå tomt.",
|
||||
"\"%s\" is an invalid file name." : "\"%s\" er et ugyldigt filnavn.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt.",
|
||||
"The target folder has been moved or deleted." : "Mappen er blevet slettet eller fjernet.",
|
||||
"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",
|
||||
"The file exceeds your quota by %s" : "Denne fil overskrider dit kvota med %s",
|
||||
"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.",
|
||||
"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.",
|
||||
"There is no error, the file uploaded with success" : "Der skete ingen fejl, filen blev succesfuldt uploadet",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Den uploadede fil overstiger MAX_FILE_SIZE indstilingen, som specificeret i HTML formularen",
|
||||
"The uploaded file was only partially uploaded" : "Filen blev kun delvist uploadet.",
|
||||
"No file was uploaded" : "Ingen fil uploadet",
|
||||
"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 find uploaded file" : "Upload fejlede. Kunne ikke finde den uploadede fil.",
|
||||
"Upload failed. Could not get file info." : "Upload fejlede. Kunne ikke hente filinformation.",
|
||||
"Invalid directory." : "Ugyldig mappe.",
|
||||
"Files" : "Filer",
|
||||
"All files" : "Alle 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.",
|
||||
"Total file size {size1} exceeds upload limit {size2}" : "Den totale filstørrelse {size1} er større end uploadgrænsen {size2}",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" : "Der er ikke tilstrækkeligt friplads. Du uplaoder {size1} men der er kun {size2} tilbage",
|
||||
"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" : "URL kan ikke være tom",
|
||||
"{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" : "Slet",
|
||||
"Disconnect storage" : "Frakobl lager",
|
||||
"Unshare" : "Fjern deling",
|
||||
"Delete permanently" : "Slet permanent",
|
||||
"Rename" : "Omdøb",
|
||||
"Pending" : "Afventer",
|
||||
"Error moving file." : "Fejl ved flytning af fil",
|
||||
"Error moving file" : "Fejl ved flytning af fil",
|
||||
"Error" : "Fejl",
|
||||
"Could not rename file" : "Kunne ikke omdøbe filen",
|
||||
"Error deleting file." : "Fejl ved sletnign af fil.",
|
||||
"Name" : "Navn",
|
||||
"Size" : "Størrelse",
|
||||
"Modified" : "Ændret",
|
||||
"_%n folder_::_%n folders_" : ["%n mappe","%n mapper"],
|
||||
"_%n file_::_%n files_" : ["%n fil","%n filer"],
|
||||
"You don’t have permission to upload or create files here" : "Du har ikke tilladelse til at uploade eller oprette filer her",
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["Uploader %n fil","Uploader %n filer"],
|
||||
"\"{name}\" is an invalid file name." : "'{name}' er et ugyldigt filnavn.",
|
||||
"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. ",
|
||||
"{dirs} and {files}" : "{dirs} og {files}",
|
||||
"%s could not be renamed as it has been deleted" : "%s kunne ikke omdøbes, da den er blevet slettet",
|
||||
"%s could not be renamed" : "%s kunne ikke omdøbes",
|
||||
"Upload (max. %s)" : "Upload (max. %s)",
|
||||
"File handling" : "Filhåndtering",
|
||||
"Maximum upload size" : "Maksimal upload-størrelse",
|
||||
"max. possible: " : "max. mulige: ",
|
||||
"Save" : "Gem",
|
||||
"WebDAV" : "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" : "Brug denne adresse for at <a href=\"%s\" target=\"_blank\">tilgå dine filer via WebDAV</a>",
|
||||
"New" : "Ny",
|
||||
"New text file" : "Ny tekstfil",
|
||||
"Text file" : "Tekstfil",
|
||||
"New folder" : "Ny Mappe",
|
||||
"Folder" : "Mappe",
|
||||
"From link" : "Fra link",
|
||||
"Nothing in here. Upload something!" : "Her er tomt. Upload noget!",
|
||||
"Download" : "Download",
|
||||
"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.",
|
||||
"Files are being scanned, please wait." : "Filerne bliver indlæst, vent venligst.",
|
||||
"Currently scanning" : "Indlæser"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,96 +0,0 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"Storage not available" => "Lagerplads er ikke tilgængeligt",
|
||||
"Storage invalid" => "Lagerplads er ugyldig",
|
||||
"Unknown error" => "Ukendt fejl",
|
||||
"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",
|
||||
"Permission denied" => "Adgang nægtet",
|
||||
"File name cannot be empty." => "Filnavnet kan ikke stå tomt.",
|
||||
"\"%s\" is an invalid file name." => "\"%s\" er et ugyldigt filnavn.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt.",
|
||||
"The target folder has been moved or deleted." => "Mappen er blevet slettet eller fjernet.",
|
||||
"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",
|
||||
"The file exceeds your quota by %s" => "Denne fil overskrider dit kvota med %s",
|
||||
"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.",
|
||||
"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.",
|
||||
"There is no error, the file uploaded with success" => "Der skete ingen fejl, filen blev succesfuldt uploadet",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Den uploadede fil overstiger MAX_FILE_SIZE indstilingen, som specificeret i HTML formularen",
|
||||
"The uploaded file was only partially uploaded" => "Filen blev kun delvist uploadet.",
|
||||
"No file was uploaded" => "Ingen fil uploadet",
|
||||
"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 find uploaded file" => "Upload fejlede. Kunne ikke finde den uploadede fil.",
|
||||
"Upload failed. Could not get file info." => "Upload fejlede. Kunne ikke hente filinformation.",
|
||||
"Invalid directory." => "Ugyldig mappe.",
|
||||
"Files" => "Filer",
|
||||
"All files" => "Alle 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.",
|
||||
"Total file size {size1} exceeds upload limit {size2}" => "Den totale filstørrelse {size1} er større end uploadgrænsen {size2}",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" => "Der er ikke tilstrækkeligt friplads. Du uplaoder {size1} men der er kun {size2} tilbage",
|
||||
"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" => "URL kan ikke være tom",
|
||||
"{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" => "Slet",
|
||||
"Disconnect storage" => "Frakobl lager",
|
||||
"Unshare" => "Fjern deling",
|
||||
"Delete permanently" => "Slet permanent",
|
||||
"Rename" => "Omdøb",
|
||||
"Pending" => "Afventer",
|
||||
"Error moving file." => "Fejl ved flytning af fil",
|
||||
"Error moving file" => "Fejl ved flytning af fil",
|
||||
"Error" => "Fejl",
|
||||
"Could not rename file" => "Kunne ikke omdøbe filen",
|
||||
"Error deleting file." => "Fejl ved sletnign af fil.",
|
||||
"Name" => "Navn",
|
||||
"Size" => "Størrelse",
|
||||
"Modified" => "Ændret",
|
||||
"_%n folder_::_%n folders_" => array("%n mappe","%n mapper"),
|
||||
"_%n file_::_%n files_" => array("%n fil","%n filer"),
|
||||
"You don’t have permission to upload or create files here" => "Du har ikke tilladelse til at uploade eller oprette filer her",
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("Uploader %n fil","Uploader %n filer"),
|
||||
"\"{name}\" is an invalid file name." => "'{name}' er et ugyldigt filnavn.",
|
||||
"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. ",
|
||||
"{dirs} and {files}" => "{dirs} og {files}",
|
||||
"%s could not be renamed as it has been deleted" => "%s kunne ikke omdøbes, da den er blevet slettet",
|
||||
"%s could not be renamed" => "%s kunne ikke omdøbes",
|
||||
"Upload (max. %s)" => "Upload (max. %s)",
|
||||
"File handling" => "Filhåndtering",
|
||||
"Maximum upload size" => "Maksimal upload-størrelse",
|
||||
"max. possible: " => "max. mulige: ",
|
||||
"Save" => "Gem",
|
||||
"WebDAV" => "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Brug denne adresse for at <a href=\"%s\" target=\"_blank\">tilgå dine filer via WebDAV</a>",
|
||||
"New" => "Ny",
|
||||
"New text file" => "Ny tekstfil",
|
||||
"Text file" => "Tekstfil",
|
||||
"New folder" => "Ny Mappe",
|
||||
"Folder" => "Mappe",
|
||||
"From link" => "Fra link",
|
||||
"Nothing in here. Upload something!" => "Her er tomt. Upload noget!",
|
||||
"Download" => "Download",
|
||||
"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.",
|
||||
"Files are being scanned, please wait." => "Filerne bliver indlæst, vent venligst.",
|
||||
"Currently scanning" => "Indlæser"
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
||||
97
apps/files/l10n/de.js
Normal file
97
apps/files/l10n/de.js
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"Storage not available" : "Speicher nicht verfügbar",
|
||||
"Storage invalid" : "Speicher ungültig",
|
||||
"Unknown error" : "Unbekannter Fehler",
|
||||
"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",
|
||||
"Permission denied" : "Zugriff verweigert",
|
||||
"File name cannot be empty." : "Der Dateiname darf nicht leer sein.",
|
||||
"\"%s\" is an invalid file name." : "»%s« ist kein gültiger Dateiname.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.",
|
||||
"The target folder has been moved or deleted." : "Der Zielordner wurde verschoben oder gelöscht.",
|
||||
"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",
|
||||
"The file exceeds your quota by %s" : "Die Datei überschreitet Dein Limit um %s",
|
||||
"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.",
|
||||
"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",
|
||||
"There is no error, the file uploaded with success" : "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer, als die MAX_FILE_SIZE Direktive erlaubt, die im HTML-Formular spezifiziert ist",
|
||||
"The uploaded file was only partially uploaded" : "Die Datei konnte nur teilweise übertragen werden",
|
||||
"No file was uploaded" : "Keine Datei konnte übertragen werden.",
|
||||
"Missing a temporary folder" : "Kein temporärer Ordner vorhanden",
|
||||
"Failed to write to disk" : "Fehler beim Schreiben auf die Festplatte",
|
||||
"Not enough storage available" : "Nicht genug Speicher vorhanden.",
|
||||
"Upload failed. Could not find uploaded file" : "Hochladen fehlgeschlagen. Hochgeladene Datei konnte nicht gefunden werden.",
|
||||
"Upload failed. Could not get file info." : "Hochladen fehlgeschlagen. Dateiinformationen konnten nicht abgerufen werden.",
|
||||
"Invalid directory." : "Ungültiges Verzeichnis.",
|
||||
"Files" : "Dateien",
|
||||
"All files" : "Alle Dateien",
|
||||
"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",
|
||||
"Total file size {size1} exceeds upload limit {size2}" : "Die Gesamt-Größe {size1} überschreitet die Upload-Begrenzung {size2}",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" : "Nicht genügend freier Speicherplatz, du möchtest {size1} hochladen, es sind jedoch nur noch {size2} 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",
|
||||
"{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" : "Löschen",
|
||||
"Disconnect storage" : "Speicher trennen",
|
||||
"Unshare" : "Freigabe aufheben",
|
||||
"Delete permanently" : "Endgültig löschen",
|
||||
"Rename" : "Umbenennen",
|
||||
"Pending" : "Ausstehend",
|
||||
"Error moving file." : "Fehler beim Verschieben der Datei.",
|
||||
"Error moving file" : "Fehler beim Verschieben der Datei",
|
||||
"Error" : "Fehler",
|
||||
"Could not rename file" : "Die Datei konnte nicht umbenannt werden",
|
||||
"Error deleting file." : "Fehler beim Löschen der Datei.",
|
||||
"Name" : "Name",
|
||||
"Size" : "Größe",
|
||||
"Modified" : "Geändert",
|
||||
"_%n folder_::_%n folders_" : ["%n Ordner","%n Ordner"],
|
||||
"_%n file_::_%n files_" : ["%n Datei","%n Dateien"],
|
||||
"You don’t have permission to upload or create files here" : "Du besitzt hier keine Berechtigung, um Dateien hochzuladen oder zu erstellen",
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["%n Datei wird hochgeladen","%n Dateien werden hochgeladen"],
|
||||
"\"{name}\" is an invalid file name." : "»{name}« ist kein gültiger Dateiname.",
|
||||
"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 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.",
|
||||
"{dirs} and {files}" : "{dirs} und {files}",
|
||||
"%s could not be renamed as it has been deleted" : "%s konnte nicht umbenannt werden, da es gelöscht wurde",
|
||||
"%s could not be renamed" : "%s konnte nicht umbenannt werden",
|
||||
"Upload (max. %s)" : "Hochladen (max. %s)",
|
||||
"File handling" : "Dateibehandlung",
|
||||
"Maximum upload size" : "Maximale Upload-Größe",
|
||||
"max. possible: " : "maximal möglich:",
|
||||
"Save" : "Speichern",
|
||||
"WebDAV" : "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" : "Diese Adresse benutzen, um <a href=\"%s\" target=\"_blank\">über WebDAV auf Ihre Dateien zuzugreifen</a>",
|
||||
"New" : "Neu",
|
||||
"New text file" : "Neue Textdatei",
|
||||
"Text file" : "Textdatei",
|
||||
"New folder" : "Neuer Ordner",
|
||||
"Folder" : "Ordner",
|
||||
"From link" : "Von einem Link",
|
||||
"Nothing in here. Upload something!" : "Alles leer. Lade etwas hoch!",
|
||||
"Download" : "Herunterladen",
|
||||
"Upload too large" : "Der Upload ist zu groß",
|
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." : "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.",
|
||||
"Files are being scanned, please wait." : "Dateien werden gescannt, bitte warten.",
|
||||
"Currently scanning" : "Durchsuchen läuft"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
95
apps/files/l10n/de.json
Normal file
95
apps/files/l10n/de.json
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
{ "translations": {
|
||||
"Storage not available" : "Speicher nicht verfügbar",
|
||||
"Storage invalid" : "Speicher ungültig",
|
||||
"Unknown error" : "Unbekannter Fehler",
|
||||
"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",
|
||||
"Permission denied" : "Zugriff verweigert",
|
||||
"File name cannot be empty." : "Der Dateiname darf nicht leer sein.",
|
||||
"\"%s\" is an invalid file name." : "»%s« ist kein gültiger Dateiname.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.",
|
||||
"The target folder has been moved or deleted." : "Der Zielordner wurde verschoben oder gelöscht.",
|
||||
"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",
|
||||
"The file exceeds your quota by %s" : "Die Datei überschreitet Dein Limit um %s",
|
||||
"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.",
|
||||
"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",
|
||||
"There is no error, the file uploaded with success" : "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer, als die MAX_FILE_SIZE Direktive erlaubt, die im HTML-Formular spezifiziert ist",
|
||||
"The uploaded file was only partially uploaded" : "Die Datei konnte nur teilweise übertragen werden",
|
||||
"No file was uploaded" : "Keine Datei konnte übertragen werden.",
|
||||
"Missing a temporary folder" : "Kein temporärer Ordner vorhanden",
|
||||
"Failed to write to disk" : "Fehler beim Schreiben auf die Festplatte",
|
||||
"Not enough storage available" : "Nicht genug Speicher vorhanden.",
|
||||
"Upload failed. Could not find uploaded file" : "Hochladen fehlgeschlagen. Hochgeladene Datei konnte nicht gefunden werden.",
|
||||
"Upload failed. Could not get file info." : "Hochladen fehlgeschlagen. Dateiinformationen konnten nicht abgerufen werden.",
|
||||
"Invalid directory." : "Ungültiges Verzeichnis.",
|
||||
"Files" : "Dateien",
|
||||
"All files" : "Alle Dateien",
|
||||
"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",
|
||||
"Total file size {size1} exceeds upload limit {size2}" : "Die Gesamt-Größe {size1} überschreitet die Upload-Begrenzung {size2}",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" : "Nicht genügend freier Speicherplatz, du möchtest {size1} hochladen, es sind jedoch nur noch {size2} 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",
|
||||
"{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" : "Löschen",
|
||||
"Disconnect storage" : "Speicher trennen",
|
||||
"Unshare" : "Freigabe aufheben",
|
||||
"Delete permanently" : "Endgültig löschen",
|
||||
"Rename" : "Umbenennen",
|
||||
"Pending" : "Ausstehend",
|
||||
"Error moving file." : "Fehler beim Verschieben der Datei.",
|
||||
"Error moving file" : "Fehler beim Verschieben der Datei",
|
||||
"Error" : "Fehler",
|
||||
"Could not rename file" : "Die Datei konnte nicht umbenannt werden",
|
||||
"Error deleting file." : "Fehler beim Löschen der Datei.",
|
||||
"Name" : "Name",
|
||||
"Size" : "Größe",
|
||||
"Modified" : "Geändert",
|
||||
"_%n folder_::_%n folders_" : ["%n Ordner","%n Ordner"],
|
||||
"_%n file_::_%n files_" : ["%n Datei","%n Dateien"],
|
||||
"You don’t have permission to upload or create files here" : "Du besitzt hier keine Berechtigung, um Dateien hochzuladen oder zu erstellen",
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["%n Datei wird hochgeladen","%n Dateien werden hochgeladen"],
|
||||
"\"{name}\" is an invalid file name." : "»{name}« ist kein gültiger Dateiname.",
|
||||
"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 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.",
|
||||
"{dirs} and {files}" : "{dirs} und {files}",
|
||||
"%s could not be renamed as it has been deleted" : "%s konnte nicht umbenannt werden, da es gelöscht wurde",
|
||||
"%s could not be renamed" : "%s konnte nicht umbenannt werden",
|
||||
"Upload (max. %s)" : "Hochladen (max. %s)",
|
||||
"File handling" : "Dateibehandlung",
|
||||
"Maximum upload size" : "Maximale Upload-Größe",
|
||||
"max. possible: " : "maximal möglich:",
|
||||
"Save" : "Speichern",
|
||||
"WebDAV" : "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" : "Diese Adresse benutzen, um <a href=\"%s\" target=\"_blank\">über WebDAV auf Ihre Dateien zuzugreifen</a>",
|
||||
"New" : "Neu",
|
||||
"New text file" : "Neue Textdatei",
|
||||
"Text file" : "Textdatei",
|
||||
"New folder" : "Neuer Ordner",
|
||||
"Folder" : "Ordner",
|
||||
"From link" : "Von einem Link",
|
||||
"Nothing in here. Upload something!" : "Alles leer. Lade etwas hoch!",
|
||||
"Download" : "Herunterladen",
|
||||
"Upload too large" : "Der Upload ist zu groß",
|
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." : "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.",
|
||||
"Files are being scanned, please wait." : "Dateien werden gescannt, bitte warten.",
|
||||
"Currently scanning" : "Durchsuchen läuft"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,96 +0,0 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"Storage not available" => "Speicher nicht verfügbar",
|
||||
"Storage invalid" => "Speicher ungültig",
|
||||
"Unknown error" => "Unbekannter Fehler",
|
||||
"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",
|
||||
"Permission denied" => "Zugriff verweigert",
|
||||
"File name cannot be empty." => "Der Dateiname darf nicht leer sein.",
|
||||
"\"%s\" is an invalid file name." => "»%s« ist kein gültiger Dateiname.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.",
|
||||
"The target folder has been moved or deleted." => "Der Zielordner wurde verschoben oder gelöscht.",
|
||||
"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",
|
||||
"The file exceeds your quota by %s" => "Die Datei überschreitet Dein Limit um %s",
|
||||
"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.",
|
||||
"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",
|
||||
"There is no error, the file uploaded with success" => "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die Datei ist größer, als die MAX_FILE_SIZE Direktive erlaubt, die im HTML-Formular spezifiziert ist",
|
||||
"The uploaded file was only partially uploaded" => "Die Datei konnte nur teilweise übertragen werden",
|
||||
"No file was uploaded" => "Keine Datei konnte übertragen werden.",
|
||||
"Missing a temporary folder" => "Kein temporärer Ordner vorhanden",
|
||||
"Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte",
|
||||
"Not enough storage available" => "Nicht genug Speicher vorhanden.",
|
||||
"Upload failed. Could not find uploaded file" => "Hochladen fehlgeschlagen. Hochgeladene Datei konnte nicht gefunden werden.",
|
||||
"Upload failed. Could not get file info." => "Hochladen fehlgeschlagen. Dateiinformationen konnten nicht abgerufen werden.",
|
||||
"Invalid directory." => "Ungültiges Verzeichnis.",
|
||||
"Files" => "Dateien",
|
||||
"All files" => "Alle Dateien",
|
||||
"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",
|
||||
"Total file size {size1} exceeds upload limit {size2}" => "Die Gesamt-Größe {size1} überschreitet die Upload-Begrenzung {size2}",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" => "Nicht genügend freier Speicherplatz, du möchtest {size1} hochladen, es sind jedoch nur noch {size2} 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",
|
||||
"{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" => "Löschen",
|
||||
"Disconnect storage" => "Speicher trennen",
|
||||
"Unshare" => "Freigabe aufheben",
|
||||
"Delete permanently" => "Endgültig löschen",
|
||||
"Rename" => "Umbenennen",
|
||||
"Pending" => "Ausstehend",
|
||||
"Error moving file." => "Fehler beim Verschieben der Datei.",
|
||||
"Error moving file" => "Fehler beim Verschieben der Datei",
|
||||
"Error" => "Fehler",
|
||||
"Could not rename file" => "Die Datei konnte nicht umbenannt werden",
|
||||
"Error deleting file." => "Fehler beim Löschen der Datei.",
|
||||
"Name" => "Name",
|
||||
"Size" => "Größe",
|
||||
"Modified" => "Geändert",
|
||||
"_%n folder_::_%n folders_" => array("%n Ordner","%n Ordner"),
|
||||
"_%n file_::_%n files_" => array("%n Datei","%n Dateien"),
|
||||
"You don’t have permission to upload or create files here" => "Du besitzt hier keine Berechtigung, um Dateien hochzuladen oder zu erstellen",
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("%n Datei wird hochgeladen","%n Dateien werden hochgeladen"),
|
||||
"\"{name}\" is an invalid file name." => "»{name}« ist kein gültiger Dateiname.",
|
||||
"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 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.",
|
||||
"{dirs} and {files}" => "{dirs} und {files}",
|
||||
"%s could not be renamed as it has been deleted" => "%s konnte nicht umbenannt werden, da es gelöscht wurde",
|
||||
"%s could not be renamed" => "%s konnte nicht umbenannt werden",
|
||||
"Upload (max. %s)" => "Hochladen (max. %s)",
|
||||
"File handling" => "Dateibehandlung",
|
||||
"Maximum upload size" => "Maximale Upload-Größe",
|
||||
"max. possible: " => "maximal möglich:",
|
||||
"Save" => "Speichern",
|
||||
"WebDAV" => "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Diese Adresse benutzen, um <a href=\"%s\" target=\"_blank\">über WebDAV auf Ihre Dateien zuzugreifen</a>",
|
||||
"New" => "Neu",
|
||||
"New text file" => "Neue Textdatei",
|
||||
"Text file" => "Textdatei",
|
||||
"New folder" => "Neuer Ordner",
|
||||
"Folder" => "Ordner",
|
||||
"From link" => "Von einem Link",
|
||||
"Nothing in here. Upload something!" => "Alles leer. Lade etwas hoch!",
|
||||
"Download" => "Herunterladen",
|
||||
"Upload too large" => "Der Upload ist zu groß",
|
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.",
|
||||
"Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten.",
|
||||
"Currently scanning" => "Durchsuchen läuft"
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
||||
15
apps/files/l10n/de_AT.js
Normal file
15
apps/files/l10n/de_AT.js
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"Files" : "Dateien",
|
||||
"Share" : "Freigeben",
|
||||
"Delete" : "Löschen",
|
||||
"Unshare" : "Teilung zurücknehmen",
|
||||
"Error" : "Fehler",
|
||||
"_%n folder_::_%n folders_" : ["",""],
|
||||
"_%n file_::_%n files_" : ["",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["",""],
|
||||
"Save" : "Speichern",
|
||||
"Download" : "Herunterladen"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
13
apps/files/l10n/de_AT.json
Normal file
13
apps/files/l10n/de_AT.json
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ "translations": {
|
||||
"Files" : "Dateien",
|
||||
"Share" : "Freigeben",
|
||||
"Delete" : "Löschen",
|
||||
"Unshare" : "Teilung zurücknehmen",
|
||||
"Error" : "Fehler",
|
||||
"_%n folder_::_%n folders_" : ["",""],
|
||||
"_%n file_::_%n files_" : ["",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["",""],
|
||||
"Save" : "Speichern",
|
||||
"Download" : "Herunterladen"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"Files" => "Dateien",
|
||||
"Share" => "Freigeben",
|
||||
"Delete" => "Löschen",
|
||||
"Unshare" => "Teilung zurücknehmen",
|
||||
"Error" => "Fehler",
|
||||
"_%n folder_::_%n folders_" => array("",""),
|
||||
"_%n file_::_%n files_" => array("",""),
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("",""),
|
||||
"Save" => "Speichern",
|
||||
"Download" => "Herunterladen"
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
||||
58
apps/files/l10n/de_CH.js
Normal file
58
apps/files/l10n/de_CH.js
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"Unknown error" : "Unbekannter Fehler",
|
||||
"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.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Ungültiger Name, «\\», «/», «<», «>», «:», «\"», «|», «?» und «*» sind nicht zulässig.",
|
||||
"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",
|
||||
"There is no error, the file uploaded with success" : "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist grösser, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist",
|
||||
"The uploaded file was only partially uploaded" : "Die Datei konnte nur teilweise übertragen werden",
|
||||
"No file was uploaded" : "Keine Datei konnte übertragen werden.",
|
||||
"Missing a temporary folder" : "Kein temporärer Ordner vorhanden",
|
||||
"Failed to write to disk" : "Fehler beim Schreiben auf die Festplatte",
|
||||
"Not enough storage available" : "Nicht genug Speicher vorhanden.",
|
||||
"Invalid directory." : "Ungültiges Verzeichnis.",
|
||||
"Files" : "Dateien",
|
||||
"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.",
|
||||
"{new_name} already exists" : "{new_name} existiert bereits",
|
||||
"Share" : "Teilen",
|
||||
"Delete" : "Löschen",
|
||||
"Unshare" : "Teilung aufheben",
|
||||
"Delete permanently" : "Endgültig löschen",
|
||||
"Rename" : "Umbenennen",
|
||||
"Pending" : "Ausstehend",
|
||||
"Error" : "Fehler",
|
||||
"Name" : "Name",
|
||||
"Size" : "Grösse",
|
||||
"Modified" : "Geändert",
|
||||
"_%n folder_::_%n folders_" : ["","%n Ordner"],
|
||||
"_%n file_::_%n files_" : ["","%n Dateien"],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["%n Datei wird hochgeladen","%n Dateien werden hochgeladen"],
|
||||
"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.",
|
||||
"%s could not be renamed" : "%s konnte nicht umbenannt werden",
|
||||
"File handling" : "Dateibehandlung",
|
||||
"Maximum upload size" : "Maximale Upload-Grösse",
|
||||
"max. possible: " : "maximal möglich:",
|
||||
"Save" : "Speichern",
|
||||
"WebDAV" : "WebDAV",
|
||||
"New" : "Neu",
|
||||
"Text file" : "Textdatei",
|
||||
"New folder" : "Neues Verzeichnis",
|
||||
"Folder" : "Ordner",
|
||||
"From link" : "Von einem Link",
|
||||
"Nothing in here. Upload something!" : "Alles leer. Laden Sie etwas hoch!",
|
||||
"Download" : "Herunterladen",
|
||||
"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.",
|
||||
"Files are being scanned, please wait." : "Dateien werden gescannt, bitte warten."
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
56
apps/files/l10n/de_CH.json
Normal file
56
apps/files/l10n/de_CH.json
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Unbekannter Fehler",
|
||||
"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.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Ungültiger Name, «\\», «/», «<», «>», «:», «\"», «|», «?» und «*» sind nicht zulässig.",
|
||||
"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",
|
||||
"There is no error, the file uploaded with success" : "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist grösser, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist",
|
||||
"The uploaded file was only partially uploaded" : "Die Datei konnte nur teilweise übertragen werden",
|
||||
"No file was uploaded" : "Keine Datei konnte übertragen werden.",
|
||||
"Missing a temporary folder" : "Kein temporärer Ordner vorhanden",
|
||||
"Failed to write to disk" : "Fehler beim Schreiben auf die Festplatte",
|
||||
"Not enough storage available" : "Nicht genug Speicher vorhanden.",
|
||||
"Invalid directory." : "Ungültiges Verzeichnis.",
|
||||
"Files" : "Dateien",
|
||||
"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.",
|
||||
"{new_name} already exists" : "{new_name} existiert bereits",
|
||||
"Share" : "Teilen",
|
||||
"Delete" : "Löschen",
|
||||
"Unshare" : "Teilung aufheben",
|
||||
"Delete permanently" : "Endgültig löschen",
|
||||
"Rename" : "Umbenennen",
|
||||
"Pending" : "Ausstehend",
|
||||
"Error" : "Fehler",
|
||||
"Name" : "Name",
|
||||
"Size" : "Grösse",
|
||||
"Modified" : "Geändert",
|
||||
"_%n folder_::_%n folders_" : ["","%n Ordner"],
|
||||
"_%n file_::_%n files_" : ["","%n Dateien"],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["%n Datei wird hochgeladen","%n Dateien werden hochgeladen"],
|
||||
"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.",
|
||||
"%s could not be renamed" : "%s konnte nicht umbenannt werden",
|
||||
"File handling" : "Dateibehandlung",
|
||||
"Maximum upload size" : "Maximale Upload-Grösse",
|
||||
"max. possible: " : "maximal möglich:",
|
||||
"Save" : "Speichern",
|
||||
"WebDAV" : "WebDAV",
|
||||
"New" : "Neu",
|
||||
"Text file" : "Textdatei",
|
||||
"New folder" : "Neues Verzeichnis",
|
||||
"Folder" : "Ordner",
|
||||
"From link" : "Von einem Link",
|
||||
"Nothing in here. Upload something!" : "Alles leer. Laden Sie etwas hoch!",
|
||||
"Download" : "Herunterladen",
|
||||
"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.",
|
||||
"Files are being scanned, please wait." : "Dateien werden gescannt, bitte warten."
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,57 +0,0 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"Unknown error" => "Unbekannter Fehler",
|
||||
"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.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, «\\», «/», «<», «>», «:», «\"», «|», «?» und «*» sind nicht zulässig.",
|
||||
"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",
|
||||
"There is no error, the file uploaded with success" => "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die Datei ist grösser, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist",
|
||||
"The uploaded file was only partially uploaded" => "Die Datei konnte nur teilweise übertragen werden",
|
||||
"No file was uploaded" => "Keine Datei konnte übertragen werden.",
|
||||
"Missing a temporary folder" => "Kein temporärer Ordner vorhanden",
|
||||
"Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte",
|
||||
"Not enough storage available" => "Nicht genug Speicher vorhanden.",
|
||||
"Invalid directory." => "Ungültiges Verzeichnis.",
|
||||
"Files" => "Dateien",
|
||||
"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.",
|
||||
"{new_name} already exists" => "{new_name} existiert bereits",
|
||||
"Share" => "Teilen",
|
||||
"Delete" => "Löschen",
|
||||
"Unshare" => "Teilung aufheben",
|
||||
"Delete permanently" => "Endgültig löschen",
|
||||
"Rename" => "Umbenennen",
|
||||
"Pending" => "Ausstehend",
|
||||
"Error" => "Fehler",
|
||||
"Name" => "Name",
|
||||
"Size" => "Grösse",
|
||||
"Modified" => "Geändert",
|
||||
"_%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"),
|
||||
"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.",
|
||||
"%s could not be renamed" => "%s konnte nicht umbenannt werden",
|
||||
"File handling" => "Dateibehandlung",
|
||||
"Maximum upload size" => "Maximale Upload-Grösse",
|
||||
"max. possible: " => "maximal möglich:",
|
||||
"Save" => "Speichern",
|
||||
"WebDAV" => "WebDAV",
|
||||
"New" => "Neu",
|
||||
"Text file" => "Textdatei",
|
||||
"New folder" => "Neues Verzeichnis",
|
||||
"Folder" => "Ordner",
|
||||
"From link" => "Von einem Link",
|
||||
"Nothing in here. Upload something!" => "Alles leer. Laden Sie etwas hoch!",
|
||||
"Download" => "Herunterladen",
|
||||
"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.",
|
||||
"Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten."
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
||||
97
apps/files/l10n/de_DE.js
Normal file
97
apps/files/l10n/de_DE.js
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"Storage not available" : "Speicher nicht verfügbar",
|
||||
"Storage invalid" : "Speicher ungültig",
|
||||
"Unknown error" : "Unbekannter Fehler",
|
||||
"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",
|
||||
"Permission denied" : "Zugriff verweigert",
|
||||
"File name cannot be empty." : "Der Dateiname darf nicht leer sein.",
|
||||
"\"%s\" is an invalid file name." : "\"%s\" ist kein gültiger Dateiname.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.",
|
||||
"The target folder has been moved or deleted." : "Der Ziel-Ordner wurde verschoben oder gelöscht.",
|
||||
"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",
|
||||
"The file exceeds your quota by %s" : "Die Datei überschreitet Ihr Limit um %s",
|
||||
"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.",
|
||||
"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",
|
||||
"There is no error, the file uploaded with success" : "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist",
|
||||
"The uploaded file was only partially uploaded" : "Die Datei konnte nur teilweise übertragen werden",
|
||||
"No file was uploaded" : "Keine Datei konnte übertragen werden.",
|
||||
"Missing a temporary folder" : "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 find uploaded file" : "Hochladen fehlgeschlagen. Die hochgeladene Datei konnte nicht gefunden werden.",
|
||||
"Upload failed. Could not get file info." : "Hochladen fehlgeschlagen. Die Dateiinformationen konnten nicht abgerufen werden.",
|
||||
"Invalid directory." : "Ungültiges Verzeichnis.",
|
||||
"Files" : "Dateien",
|
||||
"All files" : "Alle Dateien",
|
||||
"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",
|
||||
"Total file size {size1} exceeds upload limit {size2}" : "Die Gesamt-Größe {size1} überschreitet die Upload-Begrenzung {size2}",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" : "Nicht genügend freier Speicherplatz, Sie möchten {size1} hochladen, es sind jedoch nur noch {size2} 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",
|
||||
"{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" : "Löschen",
|
||||
"Disconnect storage" : "Speicher trennen",
|
||||
"Unshare" : "Freigabe aufheben",
|
||||
"Delete permanently" : "Endgültig löschen",
|
||||
"Rename" : "Umbenennen",
|
||||
"Pending" : "Ausstehend",
|
||||
"Error moving file." : "Fehler beim Verschieben der Datei.",
|
||||
"Error moving file" : "Fehler beim Verschieben der Datei",
|
||||
"Error" : "Fehler",
|
||||
"Could not rename file" : "Die Datei konnte nicht umbenannt werden",
|
||||
"Error deleting file." : "Fehler beim Löschen der Datei.",
|
||||
"Name" : "Name",
|
||||
"Size" : "Größe",
|
||||
"Modified" : "Geändert",
|
||||
"_%n folder_::_%n folders_" : ["%n Ordner","%n Ordner"],
|
||||
"_%n file_::_%n files_" : ["%n Datei","%n Dateien"],
|
||||
"You don’t have permission to upload or create files here" : "Sie besitzen hier keine Berechtigung Dateien hochzuladen oder zu erstellen",
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["%n Datei wird hoch geladen","%n Dateien werden hoch geladen"],
|
||||
"\"{name}\" is an invalid file name." : "»{name}« ist kein gültiger Dateiname.",
|
||||
"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üsselungs-App ist aktiviert, aber Ihre Schlüssel sind nicht initialisiert. Bitte melden Sie 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üsselungs-App. Bitte aktualisieren Sie Ihr privates Schlüsselpasswort, 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.",
|
||||
"{dirs} and {files}" : "{dirs} und {files}",
|
||||
"%s could not be renamed as it has been deleted" : "%s konnte nicht umbenannt werden, da es gelöscht wurde",
|
||||
"%s could not be renamed" : "%s konnte nicht umbenannt werden",
|
||||
"Upload (max. %s)" : "Hochladen (max. %s)",
|
||||
"File handling" : "Dateibehandlung",
|
||||
"Maximum upload size" : "Maximale Upload-Größe",
|
||||
"max. possible: " : "maximal möglich:",
|
||||
"Save" : "Speichern",
|
||||
"WebDAV" : "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" : "Diese Adresse benutzen, um <a href=\"%s\" target=\"_blank\">über WebDAV auf Ihre Dateien zuzugreifen</a>",
|
||||
"New" : "Neu",
|
||||
"New text file" : "Neue Textdatei",
|
||||
"Text file" : "Textdatei",
|
||||
"New folder" : "Neuer Ordner",
|
||||
"Folder" : "Ordner",
|
||||
"From link" : "Von einem Link",
|
||||
"Nothing in here. Upload something!" : "Alles leer. Laden Sie etwas hoch!",
|
||||
"Download" : "Herunterladen",
|
||||
"Upload too large" : "Der Upload ist zu groß",
|
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." : "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.",
|
||||
"Files are being scanned, please wait." : "Dateien werden gescannt, bitte warten.",
|
||||
"Currently scanning" : "Durchsuchen läuft"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
95
apps/files/l10n/de_DE.json
Normal file
95
apps/files/l10n/de_DE.json
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
{ "translations": {
|
||||
"Storage not available" : "Speicher nicht verfügbar",
|
||||
"Storage invalid" : "Speicher ungültig",
|
||||
"Unknown error" : "Unbekannter Fehler",
|
||||
"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",
|
||||
"Permission denied" : "Zugriff verweigert",
|
||||
"File name cannot be empty." : "Der Dateiname darf nicht leer sein.",
|
||||
"\"%s\" is an invalid file name." : "\"%s\" ist kein gültiger Dateiname.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.",
|
||||
"The target folder has been moved or deleted." : "Der Ziel-Ordner wurde verschoben oder gelöscht.",
|
||||
"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",
|
||||
"The file exceeds your quota by %s" : "Die Datei überschreitet Ihr Limit um %s",
|
||||
"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.",
|
||||
"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",
|
||||
"There is no error, the file uploaded with success" : "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist",
|
||||
"The uploaded file was only partially uploaded" : "Die Datei konnte nur teilweise übertragen werden",
|
||||
"No file was uploaded" : "Keine Datei konnte übertragen werden.",
|
||||
"Missing a temporary folder" : "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 find uploaded file" : "Hochladen fehlgeschlagen. Die hochgeladene Datei konnte nicht gefunden werden.",
|
||||
"Upload failed. Could not get file info." : "Hochladen fehlgeschlagen. Die Dateiinformationen konnten nicht abgerufen werden.",
|
||||
"Invalid directory." : "Ungültiges Verzeichnis.",
|
||||
"Files" : "Dateien",
|
||||
"All files" : "Alle Dateien",
|
||||
"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",
|
||||
"Total file size {size1} exceeds upload limit {size2}" : "Die Gesamt-Größe {size1} überschreitet die Upload-Begrenzung {size2}",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" : "Nicht genügend freier Speicherplatz, Sie möchten {size1} hochladen, es sind jedoch nur noch {size2} 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",
|
||||
"{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" : "Löschen",
|
||||
"Disconnect storage" : "Speicher trennen",
|
||||
"Unshare" : "Freigabe aufheben",
|
||||
"Delete permanently" : "Endgültig löschen",
|
||||
"Rename" : "Umbenennen",
|
||||
"Pending" : "Ausstehend",
|
||||
"Error moving file." : "Fehler beim Verschieben der Datei.",
|
||||
"Error moving file" : "Fehler beim Verschieben der Datei",
|
||||
"Error" : "Fehler",
|
||||
"Could not rename file" : "Die Datei konnte nicht umbenannt werden",
|
||||
"Error deleting file." : "Fehler beim Löschen der Datei.",
|
||||
"Name" : "Name",
|
||||
"Size" : "Größe",
|
||||
"Modified" : "Geändert",
|
||||
"_%n folder_::_%n folders_" : ["%n Ordner","%n Ordner"],
|
||||
"_%n file_::_%n files_" : ["%n Datei","%n Dateien"],
|
||||
"You don’t have permission to upload or create files here" : "Sie besitzen hier keine Berechtigung Dateien hochzuladen oder zu erstellen",
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["%n Datei wird hoch geladen","%n Dateien werden hoch geladen"],
|
||||
"\"{name}\" is an invalid file name." : "»{name}« ist kein gültiger Dateiname.",
|
||||
"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üsselungs-App ist aktiviert, aber Ihre Schlüssel sind nicht initialisiert. Bitte melden Sie 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üsselungs-App. Bitte aktualisieren Sie Ihr privates Schlüsselpasswort, 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.",
|
||||
"{dirs} and {files}" : "{dirs} und {files}",
|
||||
"%s could not be renamed as it has been deleted" : "%s konnte nicht umbenannt werden, da es gelöscht wurde",
|
||||
"%s could not be renamed" : "%s konnte nicht umbenannt werden",
|
||||
"Upload (max. %s)" : "Hochladen (max. %s)",
|
||||
"File handling" : "Dateibehandlung",
|
||||
"Maximum upload size" : "Maximale Upload-Größe",
|
||||
"max. possible: " : "maximal möglich:",
|
||||
"Save" : "Speichern",
|
||||
"WebDAV" : "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" : "Diese Adresse benutzen, um <a href=\"%s\" target=\"_blank\">über WebDAV auf Ihre Dateien zuzugreifen</a>",
|
||||
"New" : "Neu",
|
||||
"New text file" : "Neue Textdatei",
|
||||
"Text file" : "Textdatei",
|
||||
"New folder" : "Neuer Ordner",
|
||||
"Folder" : "Ordner",
|
||||
"From link" : "Von einem Link",
|
||||
"Nothing in here. Upload something!" : "Alles leer. Laden Sie etwas hoch!",
|
||||
"Download" : "Herunterladen",
|
||||
"Upload too large" : "Der Upload ist zu groß",
|
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." : "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.",
|
||||
"Files are being scanned, please wait." : "Dateien werden gescannt, bitte warten.",
|
||||
"Currently scanning" : "Durchsuchen läuft"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,96 +0,0 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"Storage not available" => "Speicher nicht verfügbar",
|
||||
"Storage invalid" => "Speicher ungültig",
|
||||
"Unknown error" => "Unbekannter Fehler",
|
||||
"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",
|
||||
"Permission denied" => "Zugriff verweigert",
|
||||
"File name cannot be empty." => "Der Dateiname darf nicht leer sein.",
|
||||
"\"%s\" is an invalid file name." => "\"%s\" ist kein gültiger Dateiname.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.",
|
||||
"The target folder has been moved or deleted." => "Der Ziel-Ordner wurde verschoben oder gelöscht.",
|
||||
"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",
|
||||
"The file exceeds your quota by %s" => "Die Datei überschreitet Ihr Limit um %s",
|
||||
"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.",
|
||||
"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",
|
||||
"There is no error, the file uploaded with success" => "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die Datei ist größer, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist",
|
||||
"The uploaded file was only partially uploaded" => "Die Datei konnte nur teilweise übertragen werden",
|
||||
"No file was uploaded" => "Keine Datei konnte übertragen werden.",
|
||||
"Missing a temporary folder" => "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 find uploaded file" => "Hochladen fehlgeschlagen. Die hochgeladene Datei konnte nicht gefunden werden.",
|
||||
"Upload failed. Could not get file info." => "Hochladen fehlgeschlagen. Die Dateiinformationen konnten nicht abgerufen werden.",
|
||||
"Invalid directory." => "Ungültiges Verzeichnis.",
|
||||
"Files" => "Dateien",
|
||||
"All files" => "Alle Dateien",
|
||||
"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",
|
||||
"Total file size {size1} exceeds upload limit {size2}" => "Die Gesamt-Größe {size1} überschreitet die Upload-Begrenzung {size2}",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" => "Nicht genügend freier Speicherplatz, Sie möchten {size1} hochladen, es sind jedoch nur noch {size2} 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",
|
||||
"{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" => "Löschen",
|
||||
"Disconnect storage" => "Speicher trennen",
|
||||
"Unshare" => "Freigabe aufheben",
|
||||
"Delete permanently" => "Endgültig löschen",
|
||||
"Rename" => "Umbenennen",
|
||||
"Pending" => "Ausstehend",
|
||||
"Error moving file." => "Fehler beim Verschieben der Datei.",
|
||||
"Error moving file" => "Fehler beim Verschieben der Datei",
|
||||
"Error" => "Fehler",
|
||||
"Could not rename file" => "Die Datei konnte nicht umbenannt werden",
|
||||
"Error deleting file." => "Fehler beim Löschen der Datei.",
|
||||
"Name" => "Name",
|
||||
"Size" => "Größe",
|
||||
"Modified" => "Geändert",
|
||||
"_%n folder_::_%n folders_" => array("%n Ordner","%n Ordner"),
|
||||
"_%n file_::_%n files_" => array("%n Datei","%n Dateien"),
|
||||
"You don’t have permission to upload or create files here" => "Sie besitzen hier keine Berechtigung Dateien hochzuladen oder zu erstellen",
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("%n Datei wird hoch geladen","%n Dateien werden hoch geladen"),
|
||||
"\"{name}\" is an invalid file name." => "»{name}« ist kein gültiger Dateiname.",
|
||||
"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üsselungs-App ist aktiviert, aber Ihre Schlüssel sind nicht initialisiert. Bitte melden Sie 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üsselungs-App. Bitte aktualisieren Sie Ihr privates Schlüsselpasswort, 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.",
|
||||
"{dirs} and {files}" => "{dirs} und {files}",
|
||||
"%s could not be renamed as it has been deleted" => "%s konnte nicht umbenannt werden, da es gelöscht wurde",
|
||||
"%s could not be renamed" => "%s konnte nicht umbenannt werden",
|
||||
"Upload (max. %s)" => "Hochladen (max. %s)",
|
||||
"File handling" => "Dateibehandlung",
|
||||
"Maximum upload size" => "Maximale Upload-Größe",
|
||||
"max. possible: " => "maximal möglich:",
|
||||
"Save" => "Speichern",
|
||||
"WebDAV" => "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Diese Adresse benutzen, um <a href=\"%s\" target=\"_blank\">über WebDAV auf Ihre Dateien zuzugreifen</a>",
|
||||
"New" => "Neu",
|
||||
"New text file" => "Neue Textdatei",
|
||||
"Text file" => "Textdatei",
|
||||
"New folder" => "Neuer Ordner",
|
||||
"Folder" => "Ordner",
|
||||
"From link" => "Von einem Link",
|
||||
"Nothing in here. Upload something!" => "Alles leer. Laden Sie etwas hoch!",
|
||||
"Download" => "Herunterladen",
|
||||
"Upload too large" => "Der Upload ist zu groß",
|
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.",
|
||||
"Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten.",
|
||||
"Currently scanning" => "Durchsuchen läuft"
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
||||
97
apps/files/l10n/el.js
Normal file
97
apps/files/l10n/el.js
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"Storage not available" : "Μη διαθέσιμος αποθηκευτικός χώρος",
|
||||
"Storage invalid" : "Μη έγκυρος αποθηκευτικός χώρος",
|
||||
"Unknown error" : "Άγνωστο σφάλμα",
|
||||
"Could not move %s - File with this name already exists" : "Αδυναμία μετακίνησης του %s - υπάρχει ήδη αρχείο με αυτό το όνομα",
|
||||
"Could not move %s" : "Αδυναμία μετακίνησης του %s",
|
||||
"Permission denied" : "Η πρόσβαση απορρίφθηκε",
|
||||
"File name cannot be empty." : "Το όνομα αρχείου δεν μπορεί να είναι κενό.",
|
||||
"\"%s\" is an invalid file name." : "Το \"%s\" είναι ένα μη έγκυρο όνομα αρχείου.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται.",
|
||||
"The target folder has been moved or deleted." : "Ο φάκελος προορισμού έχει μετακινηθεί ή διαγραφεί.",
|
||||
"The name %s is already used in the folder %s. Please choose a different name." : "Το όνομα %s χρησιμοποιείτε ήδη στον φάκελο %s. Παρακαλώ επιλέξτε ένα άλλο όνομα.",
|
||||
"Not a valid source" : "Μη έγκυρη πηγή",
|
||||
"Server is not allowed to open URLs, please check the server configuration" : "Ο διακομιστής δεν επιτρέπεται να ανοίγει URL, παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή",
|
||||
"The file exceeds your quota by %s" : "Ο φάκελλος ξεπερνάει το όριό σας κατά %s",
|
||||
"Error while downloading %s to %s" : "Σφάλμα κατά τη λήψη του %s στο %s",
|
||||
"Error when creating the file" : "Σφάλμα κατά τη δημιουργία του αρχείου",
|
||||
"Folder name cannot be empty." : "Το όνομα φακέλου δεν μπορεί να είναι κενό.",
|
||||
"Error when creating the folder" : "Σφάλμα δημιουργίας φακέλου",
|
||||
"Unable to set upload directory." : "Αδυναμία ορισμού καταλόγου αποστολής.",
|
||||
"Invalid Token" : "Μη έγκυρο 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",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Το ανεβασμένο αρχείο υπερβαίνει το MAX_FILE_SIZE που ορίζεται στην HTML φόρμα",
|
||||
"The uploaded file was only partially uploaded" : "Το αρχείο εστάλει μόνο εν μέρει",
|
||||
"No file was uploaded" : "Κανένα αρχείο δεν στάλθηκε",
|
||||
"Missing a temporary folder" : "Λείπει ο προσωρινός φάκελος",
|
||||
"Failed to write to disk" : "Αποτυχία εγγραφής στο δίσκο",
|
||||
"Not enough storage available" : "Μη επαρκής διαθέσιμος αποθηκευτικός χώρος",
|
||||
"Upload failed. Could not find uploaded file" : "Η φόρτωση απέτυχε. Αδυναμία εύρεσης αρχείου προς φόρτωση.",
|
||||
"Upload failed. Could not get file info." : "Η φόρτωση απέτυχε. Αδυναμία λήψης πληροφοριών αρχείων.",
|
||||
"Invalid directory." : "Μη έγκυρος φάκελος.",
|
||||
"Files" : "Αρχεία",
|
||||
"All files" : "Όλα τα αρχεία",
|
||||
"Unable to upload {filename} as it is a directory or has 0 bytes" : "Αδυναμία φόρτωσης {filename} καθώς είναι κατάλογος αρχείων ή έχει 0 bytes",
|
||||
"Total file size {size1} exceeds upload limit {size2}" : "Το συνολικό μέγεθος αρχείου {size1} υπερβαίνει το όριο μεταφόρτωσης {size2}",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" : "Δεν υπάρχει αρκετός ελεύθερος χώρος, μεταφορτώνετε μέγεθος {size1} αλλά υπάρχει χώρος μόνο {size2}",
|
||||
"Upload cancelled." : "Η αποστολή ακυρώθηκε.",
|
||||
"Could not get result from server." : "Αδυναμία λήψης αποτελέσματος από το διακομιστή.",
|
||||
"File upload is in progress. Leaving the page now will cancel the upload." : "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή.",
|
||||
"URL cannot be empty" : "Η URL δεν πρέπει να είναι κενή",
|
||||
"{new_name} already exists" : "{new_name} υπάρχει ήδη",
|
||||
"Could not create file" : "Αδυναμία δημιουργίας αρχείου",
|
||||
"Could not create folder" : "Αδυναμία δημιουργίας φακέλου",
|
||||
"Error fetching URL" : "Σφάλμα φόρτωσης URL",
|
||||
"Share" : "Διαμοιρασμός",
|
||||
"Delete" : "Διαγραφή",
|
||||
"Disconnect storage" : "Αποσυνδεδεμένος αποθηκευτικός χώρος",
|
||||
"Unshare" : "Διακοπή διαμοιρασμού",
|
||||
"Delete permanently" : "Μόνιμη διαγραφή",
|
||||
"Rename" : "Μετονομασία",
|
||||
"Pending" : "Εκκρεμεί",
|
||||
"Error moving file." : "Σφάλμα κατά τη μετακίνηση του αρχείου.",
|
||||
"Error moving file" : "Σφάλμα κατά τη μετακίνηση του αρχείου",
|
||||
"Error" : "Σφάλμα",
|
||||
"Could not rename file" : "Αδυναμία μετονομασίας αρχείου",
|
||||
"Error deleting file." : "Σφάλμα διαγραφής αρχείου.",
|
||||
"Name" : "Όνομα",
|
||||
"Size" : "Μέγεθος",
|
||||
"Modified" : "Τροποποιήθηκε",
|
||||
"_%n folder_::_%n folders_" : ["%n φάκελος","%n φάκελοι"],
|
||||
"_%n file_::_%n files_" : ["%n αρχείο","%n αρχεία"],
|
||||
"You don’t have permission to upload or create files here" : "Δεν έχετε δικαιώματα φόρτωσης ή δημιουργίας αρχείων εδώ",
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["Ανέβασμα %n αρχείου","Ανέβασμα %n αρχείων"],
|
||||
"\"{name}\" is an invalid file name." : "Το \"{name}\" είναι μη έγκυρο όνομα αρχείου.",
|
||||
"Your storage is full, files can not be updated or synced anymore!" : "Ο αποθηκευτικός σας χώρος είναι γεμάτος, τα αρχεία δεν μπορούν να ενημερωθούν ή να συγχρονιστούν πια!",
|
||||
"Your storage is almost full ({usedSpacePercent}%)" : "Ο αποθηκευτικός χώρος είναι σχεδόν γεμάτος ({usedSpacePercent}%)",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Η εφαρμογή κρυπτογράφησης είναι ενεργοποιημένη αλλά τα κλειδιά σας δεν έχουν καταγραφεί, παρακαλώ αποσυνδεθείτε και επανασυνδεθείτε.",
|
||||
"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." : "Η κρυπτογράφηση απενεργοποιήθηκε, αλλά τα αρχεία σας είναι ακόμα κρυπτογραφημένα. Παρακαλούμε απενεργοποιήσετε την κρυπτογράφηση αρχείων από τις προσωπικές σας ρυθμίσεις",
|
||||
"{dirs} and {files}" : "{Κατάλογοι αρχείων} και {αρχεία}",
|
||||
"%s could not be renamed as it has been deleted" : "%s δεν μπορούσε να μετονομαστεί εφόσον είχε διαγραφεί",
|
||||
"%s could not be renamed" : "Αδυναμία μετονομασίας του %s",
|
||||
"Upload (max. %s)" : "Διαμοιρασμός (max. %s)",
|
||||
"File handling" : "Διαχείριση αρχείων",
|
||||
"Maximum upload size" : "Μέγιστο μέγεθος αποστολής",
|
||||
"max. possible: " : "μέγιστο δυνατό:",
|
||||
"Save" : "Αποθήκευση",
|
||||
"WebDAV" : "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" : "Χρησιμοποιήστε αυτήν την διεύθυνση για να αποκτήσετε <a href=\"%s\" target=\"_blank\">πρόσβαση στα αρχεία σας μέσω WebDAV</a>",
|
||||
"New" : "Νέο",
|
||||
"New text file" : "Νέο αρχείο κειμένου",
|
||||
"Text file" : "Αρχείο κειμένου",
|
||||
"New folder" : "Νέος κατάλογος",
|
||||
"Folder" : "Φάκελος",
|
||||
"From link" : "Από σύνδεσμο",
|
||||
"Nothing in here. Upload something!" : "Δεν υπάρχει τίποτα εδώ. Ανεβάστε κάτι!",
|
||||
"Download" : "Λήψη",
|
||||
"Upload too large" : "Πολύ μεγάλο αρχείο προς αποστολή",
|
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." : "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν τον διακομιστή.",
|
||||
"Files are being scanned, please wait." : "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε.",
|
||||
"Currently scanning" : "Σάρωση σε εξέλιξη"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
95
apps/files/l10n/el.json
Normal file
95
apps/files/l10n/el.json
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
{ "translations": {
|
||||
"Storage not available" : "Μη διαθέσιμος αποθηκευτικός χώρος",
|
||||
"Storage invalid" : "Μη έγκυρος αποθηκευτικός χώρος",
|
||||
"Unknown error" : "Άγνωστο σφάλμα",
|
||||
"Could not move %s - File with this name already exists" : "Αδυναμία μετακίνησης του %s - υπάρχει ήδη αρχείο με αυτό το όνομα",
|
||||
"Could not move %s" : "Αδυναμία μετακίνησης του %s",
|
||||
"Permission denied" : "Η πρόσβαση απορρίφθηκε",
|
||||
"File name cannot be empty." : "Το όνομα αρχείου δεν μπορεί να είναι κενό.",
|
||||
"\"%s\" is an invalid file name." : "Το \"%s\" είναι ένα μη έγκυρο όνομα αρχείου.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται.",
|
||||
"The target folder has been moved or deleted." : "Ο φάκελος προορισμού έχει μετακινηθεί ή διαγραφεί.",
|
||||
"The name %s is already used in the folder %s. Please choose a different name." : "Το όνομα %s χρησιμοποιείτε ήδη στον φάκελο %s. Παρακαλώ επιλέξτε ένα άλλο όνομα.",
|
||||
"Not a valid source" : "Μη έγκυρη πηγή",
|
||||
"Server is not allowed to open URLs, please check the server configuration" : "Ο διακομιστής δεν επιτρέπεται να ανοίγει URL, παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή",
|
||||
"The file exceeds your quota by %s" : "Ο φάκελλος ξεπερνάει το όριό σας κατά %s",
|
||||
"Error while downloading %s to %s" : "Σφάλμα κατά τη λήψη του %s στο %s",
|
||||
"Error when creating the file" : "Σφάλμα κατά τη δημιουργία του αρχείου",
|
||||
"Folder name cannot be empty." : "Το όνομα φακέλου δεν μπορεί να είναι κενό.",
|
||||
"Error when creating the folder" : "Σφάλμα δημιουργίας φακέλου",
|
||||
"Unable to set upload directory." : "Αδυναμία ορισμού καταλόγου αποστολής.",
|
||||
"Invalid Token" : "Μη έγκυρο 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",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Το ανεβασμένο αρχείο υπερβαίνει το MAX_FILE_SIZE που ορίζεται στην HTML φόρμα",
|
||||
"The uploaded file was only partially uploaded" : "Το αρχείο εστάλει μόνο εν μέρει",
|
||||
"No file was uploaded" : "Κανένα αρχείο δεν στάλθηκε",
|
||||
"Missing a temporary folder" : "Λείπει ο προσωρινός φάκελος",
|
||||
"Failed to write to disk" : "Αποτυχία εγγραφής στο δίσκο",
|
||||
"Not enough storage available" : "Μη επαρκής διαθέσιμος αποθηκευτικός χώρος",
|
||||
"Upload failed. Could not find uploaded file" : "Η φόρτωση απέτυχε. Αδυναμία εύρεσης αρχείου προς φόρτωση.",
|
||||
"Upload failed. Could not get file info." : "Η φόρτωση απέτυχε. Αδυναμία λήψης πληροφοριών αρχείων.",
|
||||
"Invalid directory." : "Μη έγκυρος φάκελος.",
|
||||
"Files" : "Αρχεία",
|
||||
"All files" : "Όλα τα αρχεία",
|
||||
"Unable to upload {filename} as it is a directory or has 0 bytes" : "Αδυναμία φόρτωσης {filename} καθώς είναι κατάλογος αρχείων ή έχει 0 bytes",
|
||||
"Total file size {size1} exceeds upload limit {size2}" : "Το συνολικό μέγεθος αρχείου {size1} υπερβαίνει το όριο μεταφόρτωσης {size2}",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" : "Δεν υπάρχει αρκετός ελεύθερος χώρος, μεταφορτώνετε μέγεθος {size1} αλλά υπάρχει χώρος μόνο {size2}",
|
||||
"Upload cancelled." : "Η αποστολή ακυρώθηκε.",
|
||||
"Could not get result from server." : "Αδυναμία λήψης αποτελέσματος από το διακομιστή.",
|
||||
"File upload is in progress. Leaving the page now will cancel the upload." : "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή.",
|
||||
"URL cannot be empty" : "Η URL δεν πρέπει να είναι κενή",
|
||||
"{new_name} already exists" : "{new_name} υπάρχει ήδη",
|
||||
"Could not create file" : "Αδυναμία δημιουργίας αρχείου",
|
||||
"Could not create folder" : "Αδυναμία δημιουργίας φακέλου",
|
||||
"Error fetching URL" : "Σφάλμα φόρτωσης URL",
|
||||
"Share" : "Διαμοιρασμός",
|
||||
"Delete" : "Διαγραφή",
|
||||
"Disconnect storage" : "Αποσυνδεδεμένος αποθηκευτικός χώρος",
|
||||
"Unshare" : "Διακοπή διαμοιρασμού",
|
||||
"Delete permanently" : "Μόνιμη διαγραφή",
|
||||
"Rename" : "Μετονομασία",
|
||||
"Pending" : "Εκκρεμεί",
|
||||
"Error moving file." : "Σφάλμα κατά τη μετακίνηση του αρχείου.",
|
||||
"Error moving file" : "Σφάλμα κατά τη μετακίνηση του αρχείου",
|
||||
"Error" : "Σφάλμα",
|
||||
"Could not rename file" : "Αδυναμία μετονομασίας αρχείου",
|
||||
"Error deleting file." : "Σφάλμα διαγραφής αρχείου.",
|
||||
"Name" : "Όνομα",
|
||||
"Size" : "Μέγεθος",
|
||||
"Modified" : "Τροποποιήθηκε",
|
||||
"_%n folder_::_%n folders_" : ["%n φάκελος","%n φάκελοι"],
|
||||
"_%n file_::_%n files_" : ["%n αρχείο","%n αρχεία"],
|
||||
"You don’t have permission to upload or create files here" : "Δεν έχετε δικαιώματα φόρτωσης ή δημιουργίας αρχείων εδώ",
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["Ανέβασμα %n αρχείου","Ανέβασμα %n αρχείων"],
|
||||
"\"{name}\" is an invalid file name." : "Το \"{name}\" είναι μη έγκυρο όνομα αρχείου.",
|
||||
"Your storage is full, files can not be updated or synced anymore!" : "Ο αποθηκευτικός σας χώρος είναι γεμάτος, τα αρχεία δεν μπορούν να ενημερωθούν ή να συγχρονιστούν πια!",
|
||||
"Your storage is almost full ({usedSpacePercent}%)" : "Ο αποθηκευτικός χώρος είναι σχεδόν γεμάτος ({usedSpacePercent}%)",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Η εφαρμογή κρυπτογράφησης είναι ενεργοποιημένη αλλά τα κλειδιά σας δεν έχουν καταγραφεί, παρακαλώ αποσυνδεθείτε και επανασυνδεθείτε.",
|
||||
"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." : "Η κρυπτογράφηση απενεργοποιήθηκε, αλλά τα αρχεία σας είναι ακόμα κρυπτογραφημένα. Παρακαλούμε απενεργοποιήσετε την κρυπτογράφηση αρχείων από τις προσωπικές σας ρυθμίσεις",
|
||||
"{dirs} and {files}" : "{Κατάλογοι αρχείων} και {αρχεία}",
|
||||
"%s could not be renamed as it has been deleted" : "%s δεν μπορούσε να μετονομαστεί εφόσον είχε διαγραφεί",
|
||||
"%s could not be renamed" : "Αδυναμία μετονομασίας του %s",
|
||||
"Upload (max. %s)" : "Διαμοιρασμός (max. %s)",
|
||||
"File handling" : "Διαχείριση αρχείων",
|
||||
"Maximum upload size" : "Μέγιστο μέγεθος αποστολής",
|
||||
"max. possible: " : "μέγιστο δυνατό:",
|
||||
"Save" : "Αποθήκευση",
|
||||
"WebDAV" : "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" : "Χρησιμοποιήστε αυτήν την διεύθυνση για να αποκτήσετε <a href=\"%s\" target=\"_blank\">πρόσβαση στα αρχεία σας μέσω WebDAV</a>",
|
||||
"New" : "Νέο",
|
||||
"New text file" : "Νέο αρχείο κειμένου",
|
||||
"Text file" : "Αρχείο κειμένου",
|
||||
"New folder" : "Νέος κατάλογος",
|
||||
"Folder" : "Φάκελος",
|
||||
"From link" : "Από σύνδεσμο",
|
||||
"Nothing in here. Upload something!" : "Δεν υπάρχει τίποτα εδώ. Ανεβάστε κάτι!",
|
||||
"Download" : "Λήψη",
|
||||
"Upload too large" : "Πολύ μεγάλο αρχείο προς αποστολή",
|
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." : "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν τον διακομιστή.",
|
||||
"Files are being scanned, please wait." : "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε.",
|
||||
"Currently scanning" : "Σάρωση σε εξέλιξη"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,96 +0,0 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"Storage not available" => "Μη διαθέσιμος αποθηκευτικός χώρος",
|
||||
"Storage invalid" => "Μη έγκυρος αποθηκευτικός χώρος",
|
||||
"Unknown error" => "Άγνωστο σφάλμα",
|
||||
"Could not move %s - File with this name already exists" => "Αδυναμία μετακίνησης του %s - υπάρχει ήδη αρχείο με αυτό το όνομα",
|
||||
"Could not move %s" => "Αδυναμία μετακίνησης του %s",
|
||||
"Permission denied" => "Η πρόσβαση απορρίφθηκε",
|
||||
"File name cannot be empty." => "Το όνομα αρχείου δεν μπορεί να είναι κενό.",
|
||||
"\"%s\" is an invalid file name." => "Το \"%s\" είναι ένα μη έγκυρο όνομα αρχείου.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται.",
|
||||
"The target folder has been moved or deleted." => "Ο φάκελος προορισμού έχει μετακινηθεί ή διαγραφεί.",
|
||||
"The name %s is already used in the folder %s. Please choose a different name." => "Το όνομα %s χρησιμοποιείτε ήδη στον φάκελο %s. Παρακαλώ επιλέξτε ένα άλλο όνομα.",
|
||||
"Not a valid source" => "Μη έγκυρη πηγή",
|
||||
"Server is not allowed to open URLs, please check the server configuration" => "Ο διακομιστής δεν επιτρέπεται να ανοίγει URL, παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή",
|
||||
"The file exceeds your quota by %s" => "Ο φάκελλος ξεπερνάει το όριό σας κατά %s",
|
||||
"Error while downloading %s to %s" => "Σφάλμα κατά τη λήψη του %s στο %s",
|
||||
"Error when creating the file" => "Σφάλμα κατά τη δημιουργία του αρχείου",
|
||||
"Folder name cannot be empty." => "Το όνομα φακέλου δεν μπορεί να είναι κενό.",
|
||||
"Error when creating the folder" => "Σφάλμα δημιουργίας φακέλου",
|
||||
"Unable to set upload directory." => "Αδυναμία ορισμού καταλόγου αποστολής.",
|
||||
"Invalid Token" => "Μη έγκυρο 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",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Το ανεβασμένο αρχείο υπερβαίνει το MAX_FILE_SIZE που ορίζεται στην HTML φόρμα",
|
||||
"The uploaded file was only partially uploaded" => "Το αρχείο εστάλει μόνο εν μέρει",
|
||||
"No file was uploaded" => "Κανένα αρχείο δεν στάλθηκε",
|
||||
"Missing a temporary folder" => "Λείπει ο προσωρινός φάκελος",
|
||||
"Failed to write to disk" => "Αποτυχία εγγραφής στο δίσκο",
|
||||
"Not enough storage available" => "Μη επαρκής διαθέσιμος αποθηκευτικός χώρος",
|
||||
"Upload failed. Could not find uploaded file" => "Η φόρτωση απέτυχε. Αδυναμία εύρεσης αρχείου προς φόρτωση.",
|
||||
"Upload failed. Could not get file info." => "Η φόρτωση απέτυχε. Αδυναμία λήψης πληροφοριών αρχείων.",
|
||||
"Invalid directory." => "Μη έγκυρος φάκελος.",
|
||||
"Files" => "Αρχεία",
|
||||
"All files" => "Όλα τα αρχεία",
|
||||
"Unable to upload {filename} as it is a directory or has 0 bytes" => "Αδυναμία φόρτωσης {filename} καθώς είναι κατάλογος αρχείων ή έχει 0 bytes",
|
||||
"Total file size {size1} exceeds upload limit {size2}" => "Το συνολικό μέγεθος αρχείου {size1} υπερβαίνει το όριο μεταφόρτωσης {size2}",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" => "Δεν υπάρχει αρκετός ελεύθερος χώρος, μεταφορτώνετε μέγεθος {size1} αλλά υπάρχει χώρος μόνο {size2}",
|
||||
"Upload cancelled." => "Η αποστολή ακυρώθηκε.",
|
||||
"Could not get result from server." => "Αδυναμία λήψης αποτελέσματος από το διακομιστή.",
|
||||
"File upload is in progress. Leaving the page now will cancel the upload." => "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή.",
|
||||
"URL cannot be empty" => "Η URL δεν πρέπει να είναι κενή",
|
||||
"{new_name} already exists" => "{new_name} υπάρχει ήδη",
|
||||
"Could not create file" => "Αδυναμία δημιουργίας αρχείου",
|
||||
"Could not create folder" => "Αδυναμία δημιουργίας φακέλου",
|
||||
"Error fetching URL" => "Σφάλμα φόρτωσης URL",
|
||||
"Share" => "Διαμοιρασμός",
|
||||
"Delete" => "Διαγραφή",
|
||||
"Disconnect storage" => "Αποσυνδεδεμένος αποθηκευτικός χώρος",
|
||||
"Unshare" => "Διακοπή διαμοιρασμού",
|
||||
"Delete permanently" => "Μόνιμη διαγραφή",
|
||||
"Rename" => "Μετονομασία",
|
||||
"Pending" => "Εκκρεμεί",
|
||||
"Error moving file." => "Σφάλμα κατά τη μετακίνηση του αρχείου.",
|
||||
"Error moving file" => "Σφάλμα κατά τη μετακίνηση του αρχείου",
|
||||
"Error" => "Σφάλμα",
|
||||
"Could not rename file" => "Αδυναμία μετονομασίας αρχείου",
|
||||
"Error deleting file." => "Σφάλμα διαγραφής αρχείου.",
|
||||
"Name" => "Όνομα",
|
||||
"Size" => "Μέγεθος",
|
||||
"Modified" => "Τροποποιήθηκε",
|
||||
"_%n folder_::_%n folders_" => array("%n φάκελος","%n φάκελοι"),
|
||||
"_%n file_::_%n files_" => array("%n αρχείο","%n αρχεία"),
|
||||
"You don’t have permission to upload or create files here" => "Δεν έχετε δικαιώματα φόρτωσης ή δημιουργίας αρχείων εδώ",
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("Ανέβασμα %n αρχείου","Ανέβασμα %n αρχείων"),
|
||||
"\"{name}\" is an invalid file name." => "Το \"{name}\" είναι μη έγκυρο όνομα αρχείου.",
|
||||
"Your storage is full, files can not be updated or synced anymore!" => "Ο αποθηκευτικός σας χώρος είναι γεμάτος, τα αρχεία δεν μπορούν να ενημερωθούν ή να συγχρονιστούν πια!",
|
||||
"Your storage is almost full ({usedSpacePercent}%)" => "Ο αποθηκευτικός χώρος είναι σχεδόν γεμάτος ({usedSpacePercent}%)",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Η εφαρμογή κρυπτογράφησης είναι ενεργοποιημένη αλλά τα κλειδιά σας δεν έχουν καταγραφεί, παρακαλώ αποσυνδεθείτε και επανασυνδεθείτε.",
|
||||
"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." => "Η κρυπτογράφηση απενεργοποιήθηκε, αλλά τα αρχεία σας είναι ακόμα κρυπτογραφημένα. Παρακαλούμε απενεργοποιήσετε την κρυπτογράφηση αρχείων από τις προσωπικές σας ρυθμίσεις",
|
||||
"{dirs} and {files}" => "{Κατάλογοι αρχείων} και {αρχεία}",
|
||||
"%s could not be renamed as it has been deleted" => "%s δεν μπορούσε να μετονομαστεί εφόσον είχε διαγραφεί",
|
||||
"%s could not be renamed" => "Αδυναμία μετονομασίας του %s",
|
||||
"Upload (max. %s)" => "Διαμοιρασμός (max. %s)",
|
||||
"File handling" => "Διαχείριση αρχείων",
|
||||
"Maximum upload size" => "Μέγιστο μέγεθος αποστολής",
|
||||
"max. possible: " => "μέγιστο δυνατό:",
|
||||
"Save" => "Αποθήκευση",
|
||||
"WebDAV" => "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Χρησιμοποιήστε αυτήν την διεύθυνση για να αποκτήσετε <a href=\"%s\" target=\"_blank\">πρόσβαση στα αρχεία σας μέσω WebDAV</a>",
|
||||
"New" => "Νέο",
|
||||
"New text file" => "Νέο αρχείο κειμένου",
|
||||
"Text file" => "Αρχείο κειμένου",
|
||||
"New folder" => "Νέος κατάλογος",
|
||||
"Folder" => "Φάκελος",
|
||||
"From link" => "Από σύνδεσμο",
|
||||
"Nothing in here. Upload something!" => "Δεν υπάρχει τίποτα εδώ. Ανεβάστε κάτι!",
|
||||
"Download" => "Λήψη",
|
||||
"Upload too large" => "Πολύ μεγάλο αρχείο προς αποστολή",
|
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν τον διακομιστή.",
|
||||
"Files are being scanned, please wait." => "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε.",
|
||||
"Currently scanning" => "Σάρωση σε εξέλιξη"
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
||||
9
apps/files/l10n/en@pirate.js
Normal file
9
apps/files/l10n/en@pirate.js
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"_%n folder_::_%n folders_" : ["",""],
|
||||
"_%n file_::_%n files_" : ["",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["",""],
|
||||
"Download" : "Download"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
7
apps/files/l10n/en@pirate.json
Normal file
7
apps/files/l10n/en@pirate.json
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{ "translations": {
|
||||
"_%n folder_::_%n folders_" : ["",""],
|
||||
"_%n file_::_%n files_" : ["",""],
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["",""],
|
||||
"Download" : "Download"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"_%n folder_::_%n folders_" => array("",""),
|
||||
"_%n file_::_%n files_" => array("",""),
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("",""),
|
||||
"Download" => "Download"
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
||||
97
apps/files/l10n/en_GB.js
Normal file
97
apps/files/l10n/en_GB.js
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
OC.L10N.register(
|
||||
"files",
|
||||
{
|
||||
"Storage not available" : "Storage not available",
|
||||
"Storage invalid" : "Storage invalid",
|
||||
"Unknown error" : "Unknown error",
|
||||
"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",
|
||||
"Permission denied" : "Permission denied",
|
||||
"File name cannot be empty." : "File name cannot be empty.",
|
||||
"\"%s\" is an invalid file name." : "\"%s\" is an invalid file name.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." : "Invalid name: '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed.",
|
||||
"The target folder has been moved or deleted." : "The target folder has been moved or deleted.",
|
||||
"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",
|
||||
"The file exceeds your quota by %s" : "The file exceeds your quota by %s",
|
||||
"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.",
|
||||
"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",
|
||||
"There is no error, the file uploaded with success" : "There is no error, the file uploaded successfully",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "The uploaded file exceeds the upload_max_filesize directive in php.ini: ",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form",
|
||||
"The uploaded file was only partially uploaded" : "The uploaded file was only partially uploaded",
|
||||
"No file was uploaded" : "No file was uploaded",
|
||||
"Missing a temporary folder" : "Missing a temporary folder",
|
||||
"Failed to write to disk" : "Failed to write to disk",
|
||||
"Not enough storage available" : "Not enough storage available",
|
||||
"Upload failed. Could not find uploaded file" : "Upload failed. Could not find uploaded file",
|
||||
"Upload failed. Could not get file info." : "Upload failed. Could not get file info.",
|
||||
"Invalid directory." : "Invalid directory.",
|
||||
"Files" : "Files",
|
||||
"All files" : "All files",
|
||||
"Unable to upload {filename} as it is a directory or has 0 bytes" : "Unable to upload {filename} as it is a directory or has 0 bytes",
|
||||
"Total file size {size1} exceeds upload limit {size2}" : "Total file size {size1} exceeds upload limit {size2}",
|
||||
"Not enough free space, you are uploading {size1} but only {size2} is left" : "Not enough free space, you are uploading {size1} but only {size2} is left",
|
||||
"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",
|
||||
"{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" : "Delete",
|
||||
"Disconnect storage" : "Disconnect storage",
|
||||
"Unshare" : "Unshare",
|
||||
"Delete permanently" : "Delete permanently",
|
||||
"Rename" : "Rename",
|
||||
"Pending" : "Pending",
|
||||
"Error moving file." : "Error moving file.",
|
||||
"Error moving file" : "Error moving file",
|
||||
"Error" : "Error",
|
||||
"Could not rename file" : "Could not rename file",
|
||||
"Error deleting file." : "Error deleting file.",
|
||||
"Name" : "Name",
|
||||
"Size" : "Size",
|
||||
"Modified" : "Modified",
|
||||
"_%n folder_::_%n folders_" : ["%n folder","%n folders"],
|
||||
"_%n file_::_%n files_" : ["%n file","%n files"],
|
||||
"You don’t have permission to upload or create files here" : "You don’t have permission to upload or create files here",
|
||||
"_Uploading %n file_::_Uploading %n files_" : ["Uploading %n file","Uploading %n files"],
|
||||
"\"{name}\" is an invalid file name." : "\"{name}\" is an invalid file name.",
|
||||
"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.",
|
||||
"{dirs} and {files}" : "{dirs} and {files}",
|
||||
"%s could not be renamed as it has been deleted" : "%s could not be renamed as it has been deleted",
|
||||
"%s could not be renamed" : "%s could not be renamed",
|
||||
"Upload (max. %s)" : "Upload (max. %s)",
|
||||
"File handling" : "File handling",
|
||||
"Maximum upload size" : "Maximum upload size",
|
||||
"max. possible: " : "max. possible: ",
|
||||
"Save" : "Save",
|
||||
"WebDAV" : "WebDAV",
|
||||
"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" : "Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>",
|
||||
"New" : "New",
|
||||
"New text file" : "New text file",
|
||||
"Text file" : "Text file",
|
||||
"New folder" : "New folder",
|
||||
"Folder" : "Folder",
|
||||
"From link" : "From link",
|
||||
"Nothing in here. Upload something!" : "Nothing in here. Upload something!",
|
||||
"Download" : "Download",
|
||||
"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.",
|
||||
"Files are being scanned, please wait." : "Files are being scanned, please wait.",
|
||||
"Currently scanning" : "Currently scanning"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue