diff options
Diffstat (limited to 'core')
92 files changed, 673 insertions, 176 deletions
diff --git a/core/Command/Db/Migrations/GenerateFromSchemaFileCommand.php b/core/Command/Db/Migrations/GenerateFromSchemaFileCommand.php index 54a4d95738e..4f888b38a14 100644 --- a/core/Command/Db/Migrations/GenerateFromSchemaFileCommand.php +++ b/core/Command/Db/Migrations/GenerateFromSchemaFileCommand.php @@ -139,6 +139,13 @@ EOT EOT ); } + if ($column->getUnsigned()) { + $content .= <<<'EOT' + 'unsigned' => true, + +EOT; + } + $content .= <<<'EOT' ]); diff --git a/core/Migrations/Version13000Date20170718121200.php b/core/Migrations/Version13000Date20170718121200.php index 4e61e3e2814..d8d66696a14 100644 --- a/core/Migrations/Version13000Date20170718121200.php +++ b/core/Migrations/Version13000Date20170718121200.php @@ -33,15 +33,6 @@ class Version13000Date20170718121200 extends SimpleMigrationStep { * @param IOutput $output * @param \Closure $schemaClosure The `\Closure` returns a `Schema` * @param array $options - * @since 13.0.0 - */ - public function preSchemaChange(IOutput $output, \Closure $schemaClosure, array $options) { - } - - /** - * @param IOutput $output - * @param \Closure $schemaClosure The `\Closure` returns a `Schema` - * @param array $options * @return null|Schema * @since 13.0.0 */ @@ -416,6 +407,7 @@ class Version13000Date20170718121200 extends SimpleMigrationStep { 'autoincrement' => true, 'notnull' => true, 'length' => 4, + 'unsigned' => true, ]); $table->addColumn('class', 'string', [ 'notnull' => true, @@ -472,6 +464,7 @@ class Version13000Date20170718121200 extends SimpleMigrationStep { 'autoincrement' => true, 'notnull' => true, 'length' => 4, + 'unsigned' => true, ]); $table->addColumn('uid', 'string', [ 'notnull' => true, @@ -499,21 +492,25 @@ class Version13000Date20170718121200 extends SimpleMigrationStep { 'notnull' => true, 'length' => 2, 'default' => 0, + 'unsigned' => true, ]); $table->addColumn('remember', 'smallint', [ 'notnull' => true, 'length' => 1, 'default' => 0, + 'unsigned' => true, ]); $table->addColumn('last_activity', 'integer', [ 'notnull' => true, 'length' => 4, 'default' => 0, + 'unsigned' => true, ]); $table->addColumn('last_check', 'integer', [ 'notnull' => true, 'length' => 4, 'default' => 0, + 'unsigned' => true, ]); $table->addColumn('scope', 'text', [ 'notnull' => false, @@ -529,6 +526,7 @@ class Version13000Date20170718121200 extends SimpleMigrationStep { 'autoincrement' => true, 'notnull' => true, 'length' => 4, + 'unsigned' => true, ]); $table->addColumn('action', 'string', [ 'notnull' => true, @@ -539,6 +537,7 @@ class Version13000Date20170718121200 extends SimpleMigrationStep { 'notnull' => true, 'length' => 4, 'default' => 0, + 'unsigned' => true, ]); $table->addColumn('ip', 'string', [ 'notnull' => true, @@ -566,6 +565,7 @@ class Version13000Date20170718121200 extends SimpleMigrationStep { 'autoincrement' => true, 'notnull' => true, 'length' => 4, + 'unsigned' => true, ]); $table->addColumn('uid', 'string', [ 'notnull' => true, @@ -594,11 +594,13 @@ class Version13000Date20170718121200 extends SimpleMigrationStep { 'notnull' => true, 'length' => 4, 'default' => 0, + 'unsigned' => true, ]); $table->addColumn('categoryid', 'integer', [ 'notnull' => true, 'length' => 4, 'default' => 0, + 'unsigned' => true, ]); $table->addColumn('type', 'string', [ 'notnull' => true, @@ -615,6 +617,7 @@ class Version13000Date20170718121200 extends SimpleMigrationStep { 'autoincrement' => true, 'notnull' => true, 'length' => 4, + 'unsigned' => true, ]); $table->addColumn('name', 'string', [ 'notnull' => true, @@ -651,6 +654,7 @@ class Version13000Date20170718121200 extends SimpleMigrationStep { 'notnull' => true, 'length' => 4, 'default' => 0, + 'unsigned' => true, ]); $table->addUniqueIndex(['objecttype', 'objectid', 'systemtagid'], 'mapping'); } @@ -661,6 +665,7 @@ class Version13000Date20170718121200 extends SimpleMigrationStep { 'notnull' => true, 'length' => 4, 'default' => 0, + 'unsigned' => true, ]); $table->addColumn('gid', 'string', [ 'notnull' => true, @@ -674,6 +679,7 @@ class Version13000Date20170718121200 extends SimpleMigrationStep { 'autoincrement' => true, 'notnull' => true, 'length' => 4, + 'unsigned' => true, ]); $table->addColumn('lock', 'integer', [ 'notnull' => true, @@ -700,21 +706,25 @@ class Version13000Date20170718121200 extends SimpleMigrationStep { 'autoincrement' => true, 'notnull' => true, 'length' => 4, + 'unsigned' => true, ]); $table->addColumn('parent_id', 'integer', [ 'notnull' => true, 'length' => 4, 'default' => 0, + 'unsigned' => true, ]); $table->addColumn('topmost_parent_id', 'integer', [ 'notnull' => true, 'length' => 4, 'default' => 0, + 'unsigned' => true, ]); $table->addColumn('children_count', 'integer', [ 'notnull' => true, 'length' => 4, 'default' => 0, + 'unsigned' => true, ]); $table->addColumn('actor_type', 'string', [ 'notnull' => true, @@ -905,12 +915,4 @@ class Version13000Date20170718121200 extends SimpleMigrationStep { return $schema; } - /** - * @param IOutput $output - * @param \Closure $schemaClosure The `\Closure` returns a `Schema` - * @param array $options - * @since 13.0.0 - */ - public function postSchemaChange(IOutput $output, \Closure $schemaClosure, array $options) { - } } diff --git a/core/Migrations/Version13000Date20170919121250.php b/core/Migrations/Version13000Date20170919121250.php new file mode 100644 index 00000000000..c709875984c --- /dev/null +++ b/core/Migrations/Version13000Date20170919121250.php @@ -0,0 +1,102 @@ +<?php +namespace OC\Core\Migrations; + +use Doctrine\DBAL\Schema\Schema; +use OCP\Migration\SimpleMigrationStep; +use OCP\Migration\IOutput; + +/** + * Auto-generated migration step: Please modify to your needs! + */ +class Version13000Date20170919121250 extends SimpleMigrationStep { + + /** + * @param IOutput $output + * @param \Closure $schemaClosure The `\Closure` returns a `Schema` + * @param array $options + * @since 13.0.0 + */ + public function preSchemaChange(IOutput $output, \Closure $schemaClosure, array $options) { + } + + /** + * @param IOutput $output + * @param \Closure $schemaClosure The `\Closure` returns a `Schema` + * @param array $options + * @return null|Schema + * @since 13.0.0 + */ + public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { + /** @var Schema $schema */ + $schema = $schemaClosure(); + + $table = $schema->getTable('jobs'); + $column = $table->getColumn('id'); + $column->setUnsigned(true); + + $table = $schema->getTable('authtoken'); + $column = $table->getColumn('id'); + $column->setUnsigned(true); + $column = $table->getColumn('type'); + $column->setUnsigned(true); + $column = $table->getColumn('remember'); + $column->setUnsigned(true); + $column = $table->getColumn('last_activity'); + $column->setUnsigned(true); + $column = $table->getColumn('last_check'); + $column->setUnsigned(true); + + $table = $schema->getTable('bruteforce_attempts'); + $column = $table->getColumn('id'); + $column->setUnsigned(true); + $column = $table->getColumn('occurred'); + $column->setUnsigned(true); + + $table = $schema->getTable('comments'); + $column = $table->getColumn('id'); + $column->setUnsigned(true); + $column = $table->getColumn('parent_id'); + $column->setUnsigned(true); + $column = $table->getColumn('topmost_parent_id'); + $column->setUnsigned(true); + $column = $table->getColumn('children_count'); + $column->setUnsigned(true); + + $table = $schema->getTable('file_locks'); + $column = $table->getColumn('id'); + $column->setUnsigned(true); + + $table = $schema->getTable('systemtag'); + $column = $table->getColumn('id'); + $column->setUnsigned(true); + + $table = $schema->getTable('systemtag_object_mapping'); + $column = $table->getColumn('systemtagid'); + $column->setUnsigned(true); + + $table = $schema->getTable('systemtag_group'); + $column = $table->getColumn('systemtagid'); + $column->setUnsigned(true); + + $table = $schema->getTable('vcategory'); + $column = $table->getColumn('id'); + $column->setUnsigned(true); + + $table = $schema->getTable('vcategory_to_object'); + $column = $table->getColumn('objid'); + $column->setUnsigned(true); + $column = $table->getColumn('categoryid'); + $column->setUnsigned(true); + + return $schema; + } + + /** + * @param IOutput $output + * @param \Closure $schemaClosure The `\Closure` returns a `Schema` + * @param array $options + * @since 13.0.0 + */ + public function postSchemaChange(IOutput $output, \Closure $schemaClosure, array $options) { + } +} diff --git a/core/css/jquery.ocdialog.css b/core/css/jquery.ocdialog.css index 487bc1c4f69..2100a3db7a6 100644 --- a/core/css/jquery.ocdialog.css +++ b/core/css/jquery.ocdialog.css @@ -38,6 +38,9 @@ .oc-dialog-buttonrow.twobuttons button:nth-child(1) { float: left; } +.oc-dialog-buttonrow.twobuttons.aside button:nth-child(1) { + float: none; +} .oc-dialog-buttonrow.twobuttons button:nth-child(2) { float: right; } diff --git a/core/js/files/client.js b/core/js/files/client.js index 176cabf04b1..dc9f6ade641 100644 --- a/core/js/files/client.js +++ b/core/js/files/client.js @@ -737,6 +737,51 @@ }, /** + * Copies path to another path + * + * @param {String} path path to copy + * @param {String} destinationPath destination path + * @param {boolean} [allowOverwrite=false] true to allow overwriting, + * false otherwise + * + * @return {Promise} promise + */ + copy: function (path, destinationPath, allowOverwrite) { + if (!path) { + throw 'Missing argument "path"'; + } + if (!destinationPath) { + throw 'Missing argument "destinationPath"'; + } + + var self = this; + var deferred = $.Deferred(); + var promise = deferred.promise(); + var headers = { + 'Destination' : this._buildUrl(destinationPath) + }; + + if (!allowOverwrite) { + headers.Overwrite = 'F'; + } + + this._client.request( + 'COPY', + this._buildUrl(path), + headers + ).then( + function(response) { + if (self._isSuccessStatus(response.status)) { + deferred.resolve(response.status); + } else { + deferred.reject(response.status); + } + } + ); + return promise; + }, + + /** * Add a file info parser function * * @param {OC.Files.Client~parseFileInfo>} diff --git a/core/js/jquery.ocdialog.js b/core/js/jquery.ocdialog.js index b54cce2c0ca..555b35e59ff 100644 --- a/core/js/jquery.ocdialog.js +++ b/core/js/jquery.ocdialog.js @@ -130,6 +130,11 @@ }); this._setSizes(); break; + case 'style': + if (value.buttons !== undefined) { + this.$buttonrow.addClass(value.buttons); + } + break; case 'closeButton': if(value) { var $closeButton = $('<a class="oc-dialog-close"></a>'); diff --git a/core/js/oc-dialogs.js b/core/js/oc-dialogs.js index 5fc224e38bf..1bc1399466d 100644 --- a/core/js/oc-dialogs.js +++ b/core/js/oc-dialogs.js @@ -29,6 +29,12 @@ var OCdialogs = { // dialog button types YES_NO_BUTTONS: 70, OK_BUTTONS: 71, + + FILEPICKER_TYPE_CHOOSE: 1, + FILEPICKER_TYPE_MOVE: 2, + FILEPICKER_TYPE_COPY: 3, + FILEPICKER_TYPE_COPY_MOVE: 4, + // used to name each dialog dialogsCounter: 0, /** @@ -174,13 +180,19 @@ var OCdialogs = { * @param multiselect whether it should be possible to select multiple files * @param mimetypeFilter mimetype to filter by - directories will always be included * @param modal make the dialog modal + * @param type Type of file picker : Choose, copy, move, copy and move */ - filepicker:function(title, callback, multiselect, mimetypeFilter, modal) { + filepicker:function(title, callback, multiselect, mimetypeFilter, modal, type) { var self = this; // avoid opening the picker twice if (this.filepicker.loading) { return; } + + if (type === undefined) { + type = this.FILEPICKER_TYPE_CHOOSE; + } + this.filepicker.loading = true; this.filepicker.filesClient = (OCA.Sharing && OCA.Sharing.PublicApp && OCA.Sharing.PublicApp.fileList)? OCA.Sharing.PublicApp.fileList.filesClient: OC.Files.getClient(); $.when(this._getFilePickerTemplate()).then(function($tmpl) { @@ -210,15 +222,17 @@ var OCdialogs = { self.$filePicker.ready(function() { self.$filelist = self.$filePicker.find('.filelist tbody'); self.$dirTree = self.$filePicker.find('.dirtree'); - self.$dirTree.on('click', 'div:not(:last-child)', self, self._handleTreeListSelect.bind(self)); + self.$dirTree.on('click', 'div:not(:last-child)', self, function (event) { + self._handleTreeListSelect(event, type); + }); self.$filelist.on('click', 'tr', function(event) { - self._handlePickerClick(event, $(this)); + self._handlePickerClick(event, $(this), type); }); self._fillFilePicker(''); }); // build buttons - var functionToCall = function() { + var functionToCall = function(returnType) { if (callback !== undefined) { var datapath; if (multiselect === true) { @@ -233,15 +247,46 @@ var OCdialogs = { datapath += '/' + selectedName; } } - callback(datapath); + callback(datapath, returnType); self.$filePicker.ocdialog('close'); } }; - var buttonlist = [{ - text: t('core', 'Choose'), - click: functionToCall, - defaultButton: true - }]; + + var chooseCallback = function () { + functionToCall(OCdialogs.FILEPICKER_TYPE_CHOOSE); + }; + + var copyCallback = function () { + functionToCall(OCdialogs.FILEPICKER_TYPE_COPY); + }; + + var moveCallback = function () { + functionToCall(OCdialogs.FILEPICKER_TYPE_MOVE); + }; + + var buttonlist = []; + if (type === OCdialogs.FILEPICKER_TYPE_CHOOSE) { + buttonlist.push({ + text: t('core', 'Choose'), + click: chooseCallback, + defaultButton: true + }); + } else { + if (type === OCdialogs.FILEPICKER_TYPE_COPY || type === OCdialogs.FILEPICKER_TYPE_COPY_MOVE) { + buttonlist.push({ + text: t('core', 'Copy'), + click: copyCallback, + defaultButton: false + }); + } + if (type === OCdialogs.FILEPICKER_TYPE_MOVE || type === OCdialogs.FILEPICKER_TYPE_COPY_MOVE) { + buttonlist.push({ + text: t('core', 'Move'), + click: moveCallback, + defaultButton: true + }); + } + } self.$filePicker.ocdialog({ closeOnEscape: true, @@ -250,6 +295,9 @@ var OCdialogs = { height: 500, modal: modal, buttons: buttonlist, + style: { + buttons: 'aside', + }, close: function() { try { $(this).ocdialog('destroy').remove(); @@ -879,12 +927,13 @@ var OCdialogs = { /** * handle selection made in the tree list */ - _handleTreeListSelect:function(event) { + _handleTreeListSelect:function(event, type) { var self = event.data; var dir = $(event.target).parent().data('dir'); self._fillFilePicker(dir); var getOcDialog = (event.target).closest('.oc-dialog'); var buttonEnableDisable = $('.primary', getOcDialog); + this._changeButtonsText(type, dir.split(/[/]+/).pop()); if (this.$filePicker.data('mimetype') === "httpd/unix-directory") { buttonEnableDisable.prop("disabled", false); } else { @@ -894,7 +943,7 @@ var OCdialogs = { /** * handle clicks made in the filepicker */ - _handlePickerClick:function(event, $element) { + _handlePickerClick:function(event, $element, type) { var getOcDialog = this.$filePicker.closest('.oc-dialog'); var buttonEnableDisable = getOcDialog.find('.primary'); if ($element.data('type') === 'file') { @@ -905,11 +954,38 @@ var OCdialogs = { buttonEnableDisable.prop("disabled", false); } else if ( $element.data('type') === 'dir' ) { this._fillFilePicker(this.$filePicker.data('path') + '/' + $element.data('entryname')); + this._changeButtonsText(type, $element.data('entryname')); if (this.$filePicker.data('mimetype') === "httpd/unix-directory") { buttonEnableDisable.prop("disabled", false); } else { buttonEnableDisable.prop("disabled", true); } } + }, + + /** + * Handle + * @param type of action + * @param dir on which to change buttons text + * @private + */ + _changeButtonsText: function(type, dir) { + var copyText = dir === '' ? t('core', 'Copy') : t('core', 'Copy to {folder}', {folder: dir}); + var moveText = dir === '' ? t('core', 'Move') : t('core', 'Move to {folder}', {folder: dir}); + var buttons = $('.oc-dialog-buttonrow button'); + switch (type) { + case this.FILEPICKER_TYPE_CHOOSE: + break; + case this.FILEPICKER_TYPE_COPY: + buttons.text(copyText); + break; + case this.FILEPICKER_TYPE_MOVE: + buttons.text(moveText); + break; + case this.FILEPICKER_TYPE_COPY_MOVE: + buttons.eq(0).text(copyText); + buttons.eq(1).text(moveText); + break; + } } }; diff --git a/core/l10n/ast.js b/core/l10n/ast.js index 5bcfb427ddf..fabd65f64c9 100644 --- a/core/l10n/ast.js +++ b/core/l10n/ast.js @@ -74,6 +74,7 @@ OC.L10N.register( "Yes" : "Sí", "No files in here" : "Equí nun hai ficheros", "Choose" : "Escoyer", + "Copy" : "Copiar", "Error loading file picker template: {error}" : "Fallu cargando'l ficheru de plantía d'escoyeta: {error}", "OK" : "Aceutar", "Error loading message template: {error}" : "Fallu cargando'l mensaxe de la plantía: {error}", @@ -105,7 +106,6 @@ OC.L10N.register( "Expiration date" : "Data de caducidá", "Choose a password for the public link" : "Escueyi una contraseña pal enllaz públicu", "Copied!" : "¡Copióse!", - "Copy" : "Copiar", "Not supported!" : "¡Nun se sofita!", "Press ⌘-C to copy." : "Primi ⌘-C pa copiar.", "Press Ctrl-C to copy." : "Primi Ctrl-C pa copiar.", diff --git a/core/l10n/ast.json b/core/l10n/ast.json index 40840eb917f..78364fbcd41 100644 --- a/core/l10n/ast.json +++ b/core/l10n/ast.json @@ -72,6 +72,7 @@ "Yes" : "Sí", "No files in here" : "Equí nun hai ficheros", "Choose" : "Escoyer", + "Copy" : "Copiar", "Error loading file picker template: {error}" : "Fallu cargando'l ficheru de plantía d'escoyeta: {error}", "OK" : "Aceutar", "Error loading message template: {error}" : "Fallu cargando'l mensaxe de la plantía: {error}", @@ -103,7 +104,6 @@ "Expiration date" : "Data de caducidá", "Choose a password for the public link" : "Escueyi una contraseña pal enllaz públicu", "Copied!" : "¡Copióse!", - "Copy" : "Copiar", "Not supported!" : "¡Nun se sofita!", "Press ⌘-C to copy." : "Primi ⌘-C pa copiar.", "Press Ctrl-C to copy." : "Primi Ctrl-C pa copiar.", diff --git a/core/l10n/bg.js b/core/l10n/bg.js index f8fafd1ba55..54f0b7fd51b 100644 --- a/core/l10n/bg.js +++ b/core/l10n/bg.js @@ -66,6 +66,7 @@ OC.L10N.register( "Yes" : "Да", "No files in here" : "Тук няма файлове", "Choose" : "Избиране", + "Copy" : "Копиране", "Error loading file picker template: {error}" : "Грешка при зареждането на шаблон за избор на файл: {error}", "Error loading message template: {error}" : "Грешка при зареждането на шаблон за съобщения: {error}", "read-only" : "Само за четене", @@ -107,7 +108,6 @@ OC.L10N.register( "Expiration date" : "Дата на изтичане", "Choose a password for the public link" : "Изберете парола за общодостъпната връзка", "Copied!" : "Копирано!", - "Copy" : "Копиране", "Not supported!" : "Не се поддържа!", "Press ⌘-C to copy." : "За копиране натиснете ⌘-C.", "Press Ctrl-C to copy." : "За копиране натиснете Ctrl-C.", diff --git a/core/l10n/bg.json b/core/l10n/bg.json index 24dadb0b970..a11c604a4e9 100644 --- a/core/l10n/bg.json +++ b/core/l10n/bg.json @@ -64,6 +64,7 @@ "Yes" : "Да", "No files in here" : "Тук няма файлове", "Choose" : "Избиране", + "Copy" : "Копиране", "Error loading file picker template: {error}" : "Грешка при зареждането на шаблон за избор на файл: {error}", "Error loading message template: {error}" : "Грешка при зареждането на шаблон за съобщения: {error}", "read-only" : "Само за четене", @@ -105,7 +106,6 @@ "Expiration date" : "Дата на изтичане", "Choose a password for the public link" : "Изберете парола за общодостъпната връзка", "Copied!" : "Копирано!", - "Copy" : "Копиране", "Not supported!" : "Не се поддържа!", "Press ⌘-C to copy." : "За копиране натиснете ⌘-C.", "Press Ctrl-C to copy." : "За копиране натиснете Ctrl-C.", diff --git a/core/l10n/ca.js b/core/l10n/ca.js index 5cfd056c494..156789a43c8 100644 --- a/core/l10n/ca.js +++ b/core/l10n/ca.js @@ -84,6 +84,7 @@ OC.L10N.register( "Yes" : "Sí", "No files in here" : "No hi ha arxius aquí", "Choose" : "Escull", + "Copy" : "Copia", "Error loading file picker template: {error}" : "Error en carregar la plantilla de càrrega de fitxers: {error}", "OK" : "D'acord", "Error loading message template: {error}" : "Error en carregar la plantilla de missatge: {error}", @@ -130,7 +131,6 @@ OC.L10N.register( "Choose a password for the public link" : "Escolliu una contrasenya per l'enllaç públic", "Choose a password for the public link or press the \"Enter\" key" : "Escolliu una contrasenya per l'enllaç públic o premeu la tecla \"Enter\"", "Copied!" : "Copiat!", - "Copy" : "Copia", "Not supported!" : "No soportat!", "Press ⌘-C to copy." : "Prem ⌘-C per copiar.", "Press Ctrl-C to copy." : "Prem Ctrl-C per copiar.", diff --git a/core/l10n/ca.json b/core/l10n/ca.json index 264449b5162..d1c08ec69f5 100644 --- a/core/l10n/ca.json +++ b/core/l10n/ca.json @@ -82,6 +82,7 @@ "Yes" : "Sí", "No files in here" : "No hi ha arxius aquí", "Choose" : "Escull", + "Copy" : "Copia", "Error loading file picker template: {error}" : "Error en carregar la plantilla de càrrega de fitxers: {error}", "OK" : "D'acord", "Error loading message template: {error}" : "Error en carregar la plantilla de missatge: {error}", @@ -128,7 +129,6 @@ "Choose a password for the public link" : "Escolliu una contrasenya per l'enllaç públic", "Choose a password for the public link or press the \"Enter\" key" : "Escolliu una contrasenya per l'enllaç públic o premeu la tecla \"Enter\"", "Copied!" : "Copiat!", - "Copy" : "Copia", "Not supported!" : "No soportat!", "Press ⌘-C to copy." : "Prem ⌘-C per copiar.", "Press Ctrl-C to copy." : "Prem Ctrl-C per copiar.", diff --git a/core/l10n/cs.js b/core/l10n/cs.js index 353d89eb735..8c18d0ac93f 100644 --- a/core/l10n/cs.js +++ b/core/l10n/cs.js @@ -84,6 +84,7 @@ OC.L10N.register( "Yes" : "Ano", "No files in here" : "Nesou zde žádné soubory", "Choose" : "Vybrat", + "Copy" : "Zkopírovat", "Error loading file picker template: {error}" : "Chyba při nahrávání šablony výběru souborů: {error}", "OK" : "OK", "Error loading message template: {error}" : "Chyba při nahrávání šablony zprávy: {error}", @@ -130,7 +131,6 @@ OC.L10N.register( "Choose a password for the public link" : "Zadej heslo pro tento veřejný odkaz", "Choose a password for the public link or press the \"Enter\" key" : "Zvolte heslo pro veřejný odkaz nebo stiskněte klávesu \"Enter\"", "Copied!" : "Zkopírováno!", - "Copy" : "Zkopírovat", "Not supported!" : "Nepodporováno!", "Press ⌘-C to copy." : "Zmáčknout ⌘-C pro kopírování.", "Press Ctrl-C to copy." : "Zmáčknout Ctrl-C pro kopírování.", diff --git a/core/l10n/cs.json b/core/l10n/cs.json index 3fcdf388b9b..3001399c6d7 100644 --- a/core/l10n/cs.json +++ b/core/l10n/cs.json @@ -82,6 +82,7 @@ "Yes" : "Ano", "No files in here" : "Nesou zde žádné soubory", "Choose" : "Vybrat", + "Copy" : "Zkopírovat", "Error loading file picker template: {error}" : "Chyba při nahrávání šablony výběru souborů: {error}", "OK" : "OK", "Error loading message template: {error}" : "Chyba při nahrávání šablony zprávy: {error}", @@ -128,7 +129,6 @@ "Choose a password for the public link" : "Zadej heslo pro tento veřejný odkaz", "Choose a password for the public link or press the \"Enter\" key" : "Zvolte heslo pro veřejný odkaz nebo stiskněte klávesu \"Enter\"", "Copied!" : "Zkopírováno!", - "Copy" : "Zkopírovat", "Not supported!" : "Nepodporováno!", "Press ⌘-C to copy." : "Zmáčknout ⌘-C pro kopírování.", "Press Ctrl-C to copy." : "Zmáčknout Ctrl-C pro kopírování.", diff --git a/core/l10n/da.js b/core/l10n/da.js index 8133d3228bb..976872e324f 100644 --- a/core/l10n/da.js +++ b/core/l10n/da.js @@ -84,6 +84,8 @@ OC.L10N.register( "Yes" : "Ja", "No files in here" : "Ingen filer", "Choose" : "Vælg", + "Copy" : "Kopiér", + "Move" : "Flyt", "Error loading file picker template: {error}" : "Fejl ved indlæsning af filvælger skabelon: {error}", "OK" : "Ok", "Error loading message template: {error}" : "Fejl ved indlæsning af besked skabelon: {error}", @@ -99,6 +101,8 @@ OC.L10N.register( "({count} selected)" : "({count} valgt)", "Error loading file exists template" : "Fejl ved inlæsning af; fil eksistere skabelon", "Pending" : "Afventer", + "Copy to {folder}" : "Kopier til {folder}", + "Move to {folder}" : "Flyt til {folder}", "Very weak password" : "Meget svagt kodeord", "Weak password" : "Svagt kodeord", "So-so password" : "Jævnt kodeord", @@ -130,7 +134,6 @@ OC.L10N.register( "Choose a password for the public link" : "Vælg et kodeord til det offentlige link", "Choose a password for the public link or press the \"Enter\" key" : "Vælg en kode for det \"offentlige link\" og tryk \"Enter\"", "Copied!" : "Kopirét!", - "Copy" : "Kopiér", "Not supported!" : "Ikke understøttet!", "Press ⌘-C to copy." : "Tryk ⌘-C for at kopiere.", "Press Ctrl-C to copy." : "Tryk Ctrl-C for at kopiere.", diff --git a/core/l10n/da.json b/core/l10n/da.json index ce2760f1bbc..bec587d031d 100644 --- a/core/l10n/da.json +++ b/core/l10n/da.json @@ -82,6 +82,8 @@ "Yes" : "Ja", "No files in here" : "Ingen filer", "Choose" : "Vælg", + "Copy" : "Kopiér", + "Move" : "Flyt", "Error loading file picker template: {error}" : "Fejl ved indlæsning af filvælger skabelon: {error}", "OK" : "Ok", "Error loading message template: {error}" : "Fejl ved indlæsning af besked skabelon: {error}", @@ -97,6 +99,8 @@ "({count} selected)" : "({count} valgt)", "Error loading file exists template" : "Fejl ved inlæsning af; fil eksistere skabelon", "Pending" : "Afventer", + "Copy to {folder}" : "Kopier til {folder}", + "Move to {folder}" : "Flyt til {folder}", "Very weak password" : "Meget svagt kodeord", "Weak password" : "Svagt kodeord", "So-so password" : "Jævnt kodeord", @@ -128,7 +132,6 @@ "Choose a password for the public link" : "Vælg et kodeord til det offentlige link", "Choose a password for the public link or press the \"Enter\" key" : "Vælg en kode for det \"offentlige link\" og tryk \"Enter\"", "Copied!" : "Kopirét!", - "Copy" : "Kopiér", "Not supported!" : "Ikke understøttet!", "Press ⌘-C to copy." : "Tryk ⌘-C for at kopiere.", "Press Ctrl-C to copy." : "Tryk Ctrl-C for at kopiere.", diff --git a/core/l10n/de.js b/core/l10n/de.js index 235911af78b..b6975f79d54 100644 --- a/core/l10n/de.js +++ b/core/l10n/de.js @@ -84,6 +84,8 @@ OC.L10N.register( "Yes" : "Ja", "No files in here" : "Keine Dateien vorhanden", "Choose" : "Auswählen", + "Copy" : "Kopieren", + "Move" : "Verschieben", "Error loading file picker template: {error}" : "Fehler beim Laden der Dateiauswahlvorlage: {error}", "OK" : "OK", "Error loading message template: {error}" : "Fehler beim Laden der Nachrichtenvorlage: {error}", @@ -99,6 +101,8 @@ OC.L10N.register( "({count} selected)" : "({count} ausgewählt)", "Error loading file exists template" : "Fehler beim Laden der vorhanden Dateivorlage", "Pending" : "Ausstehend", + "Copy to {folder}" : "Kopieren nach {folder}", + "Move to {folder}" : "Verschieben nach {folder}", "Very weak password" : "Sehr schwaches Passwort", "Weak password" : "Schwaches Passwort", "So-so password" : "Passables Passwort", @@ -130,7 +134,6 @@ OC.L10N.register( "Choose a password for the public link" : "Wähle ein Passwort für den öffentlichen Link", "Choose a password for the public link or press the \"Enter\" key" : "Wähle ein Passwort für die öffentliche Freigabe oder drücke \"Eingabe\"", "Copied!" : "Kopiert!", - "Copy" : "Kopieren", "Not supported!" : "Nicht unterstützt!", "Press ⌘-C to copy." : "Zum Kopieren ⌘-C drücken.", "Press Ctrl-C to copy." : "Zum Kopieren Strg-C drücken.", diff --git a/core/l10n/de.json b/core/l10n/de.json index d178d4f74e5..6cf69743f47 100644 --- a/core/l10n/de.json +++ b/core/l10n/de.json @@ -82,6 +82,8 @@ "Yes" : "Ja", "No files in here" : "Keine Dateien vorhanden", "Choose" : "Auswählen", + "Copy" : "Kopieren", + "Move" : "Verschieben", "Error loading file picker template: {error}" : "Fehler beim Laden der Dateiauswahlvorlage: {error}", "OK" : "OK", "Error loading message template: {error}" : "Fehler beim Laden der Nachrichtenvorlage: {error}", @@ -97,6 +99,8 @@ "({count} selected)" : "({count} ausgewählt)", "Error loading file exists template" : "Fehler beim Laden der vorhanden Dateivorlage", "Pending" : "Ausstehend", + "Copy to {folder}" : "Kopieren nach {folder}", + "Move to {folder}" : "Verschieben nach {folder}", "Very weak password" : "Sehr schwaches Passwort", "Weak password" : "Schwaches Passwort", "So-so password" : "Passables Passwort", @@ -128,7 +132,6 @@ "Choose a password for the public link" : "Wähle ein Passwort für den öffentlichen Link", "Choose a password for the public link or press the \"Enter\" key" : "Wähle ein Passwort für die öffentliche Freigabe oder drücke \"Eingabe\"", "Copied!" : "Kopiert!", - "Copy" : "Kopieren", "Not supported!" : "Nicht unterstützt!", "Press ⌘-C to copy." : "Zum Kopieren ⌘-C drücken.", "Press Ctrl-C to copy." : "Zum Kopieren Strg-C drücken.", diff --git a/core/l10n/de_DE.js b/core/l10n/de_DE.js index 3b767e0b67f..44482a3f1d0 100644 --- a/core/l10n/de_DE.js +++ b/core/l10n/de_DE.js @@ -84,6 +84,8 @@ OC.L10N.register( "Yes" : "Ja", "No files in here" : "Keine Dateien vorhanden", "Choose" : "Auswählen", + "Copy" : "Kopieren", + "Move" : "Verschieben", "Error loading file picker template: {error}" : "Fehler beim Laden der Dateiauswahlvorlage: {error}", "OK" : "OK", "Error loading message template: {error}" : "Fehler beim Laden der Nachrichtenvorlage: {error}", @@ -99,6 +101,8 @@ OC.L10N.register( "({count} selected)" : "({count} ausgewählt)", "Error loading file exists template" : "Fehler beim Laden der vorhanden Dateivorlage", "Pending" : "Ausstehend", + "Copy to {folder}" : "Kopieren nach {folder}", + "Move to {folder}" : "Verschieben nach {folder}", "Very weak password" : "Sehr schwaches Passwort", "Weak password" : "Schwaches Passwort", "So-so password" : "Passables Passwort", @@ -130,7 +134,6 @@ OC.L10N.register( "Choose a password for the public link" : "Wählen Sie ein Passwort für den öffentlichen Link", "Choose a password for the public link or press the \"Enter\" key" : "Wählen Sie ein Passwort für die öffentliche Freigabe oder drücken Sie \"Eingabe\"", "Copied!" : "Kopiert!", - "Copy" : "Kopieren", "Not supported!" : "Nicht unterstützt!", "Press ⌘-C to copy." : "Zum Kopieren ⌘-C drücken.", "Press Ctrl-C to copy." : "Zum Kopieren Strg-C drücken.", diff --git a/core/l10n/de_DE.json b/core/l10n/de_DE.json index 8eea41d9f4d..5f4da5f5cd7 100644 --- a/core/l10n/de_DE.json +++ b/core/l10n/de_DE.json @@ -82,6 +82,8 @@ "Yes" : "Ja", "No files in here" : "Keine Dateien vorhanden", "Choose" : "Auswählen", + "Copy" : "Kopieren", + "Move" : "Verschieben", "Error loading file picker template: {error}" : "Fehler beim Laden der Dateiauswahlvorlage: {error}", "OK" : "OK", "Error loading message template: {error}" : "Fehler beim Laden der Nachrichtenvorlage: {error}", @@ -97,6 +99,8 @@ "({count} selected)" : "({count} ausgewählt)", "Error loading file exists template" : "Fehler beim Laden der vorhanden Dateivorlage", "Pending" : "Ausstehend", + "Copy to {folder}" : "Kopieren nach {folder}", + "Move to {folder}" : "Verschieben nach {folder}", "Very weak password" : "Sehr schwaches Passwort", "Weak password" : "Schwaches Passwort", "So-so password" : "Passables Passwort", @@ -128,7 +132,6 @@ "Choose a password for the public link" : "Wählen Sie ein Passwort für den öffentlichen Link", "Choose a password for the public link or press the \"Enter\" key" : "Wählen Sie ein Passwort für die öffentliche Freigabe oder drücken Sie \"Eingabe\"", "Copied!" : "Kopiert!", - "Copy" : "Kopieren", "Not supported!" : "Nicht unterstützt!", "Press ⌘-C to copy." : "Zum Kopieren ⌘-C drücken.", "Press Ctrl-C to copy." : "Zum Kopieren Strg-C drücken.", diff --git a/core/l10n/el.js b/core/l10n/el.js index b1315309e0c..d7a569f8272 100644 --- a/core/l10n/el.js +++ b/core/l10n/el.js @@ -84,6 +84,7 @@ OC.L10N.register( "Yes" : "Ναι", "No files in here" : "Δεν υπάρχουν αρχεία", "Choose" : "Επιλέξτε", + "Copy" : "Αντιγραφή", "Error loading file picker template: {error}" : "Σφάλμα κατά την φόρτωση του προτύπου επιλογέα αρχείων: {error}", "OK" : "ΟΚ", "Error loading message template: {error}" : "Σφάλμα φόρτωσης προτύπου μηνυμάτων: {error}", @@ -130,7 +131,6 @@ OC.L10N.register( "Choose a password for the public link" : "Επιλέξτε συνθηματικό για τον δημόσιο σύνδεσμο", "Choose a password for the public link or press the \"Enter\" key" : "Επιλέξτε ένα συνθηματικό για την δημόσια διεύθυνση ή πατήστε το \"Enter\" πλήκτρο", "Copied!" : "Αντιγράφτηκε!", - "Copy" : "Αντιγραφή", "Not supported!" : "Δεν υποστηρίζεται!", "Press ⌘-C to copy." : "Για αντιγραφή πατήστε ⌘-C.", "Press Ctrl-C to copy." : "Για αντιγραφή πατήστε Ctrl-C.", diff --git a/core/l10n/el.json b/core/l10n/el.json index 795f4bffd27..d48a9ecc507 100644 --- a/core/l10n/el.json +++ b/core/l10n/el.json @@ -82,6 +82,7 @@ "Yes" : "Ναι", "No files in here" : "Δεν υπάρχουν αρχεία", "Choose" : "Επιλέξτε", + "Copy" : "Αντιγραφή", "Error loading file picker template: {error}" : "Σφάλμα κατά την φόρτωση του προτύπου επιλογέα αρχείων: {error}", "OK" : "ΟΚ", "Error loading message template: {error}" : "Σφάλμα φόρτωσης προτύπου μηνυμάτων: {error}", @@ -128,7 +129,6 @@ "Choose a password for the public link" : "Επιλέξτε συνθηματικό για τον δημόσιο σύνδεσμο", "Choose a password for the public link or press the \"Enter\" key" : "Επιλέξτε ένα συνθηματικό για την δημόσια διεύθυνση ή πατήστε το \"Enter\" πλήκτρο", "Copied!" : "Αντιγράφτηκε!", - "Copy" : "Αντιγραφή", "Not supported!" : "Δεν υποστηρίζεται!", "Press ⌘-C to copy." : "Για αντιγραφή πατήστε ⌘-C.", "Press Ctrl-C to copy." : "Για αντιγραφή πατήστε Ctrl-C.", diff --git a/core/l10n/en_GB.js b/core/l10n/en_GB.js index e06d3005054..b171f0aaeeb 100644 --- a/core/l10n/en_GB.js +++ b/core/l10n/en_GB.js @@ -84,6 +84,8 @@ OC.L10N.register( "Yes" : "Yes", "No files in here" : "No files in here", "Choose" : "Choose", + "Copy" : "Copy", + "Move" : "Move", "Error loading file picker template: {error}" : "Error loading file picker template: {error}", "OK" : "OK", "Error loading message template: {error}" : "Error loading message template: {error}", @@ -99,6 +101,8 @@ OC.L10N.register( "({count} selected)" : "({count} selected)", "Error loading file exists template" : "Error loading file exists template", "Pending" : "Pending", + "Copy to {folder}" : "Copy to {folder}", + "Move to {folder}" : "Move to {folder}", "Very weak password" : "Very weak password", "Weak password" : "Weak password", "So-so password" : "So-so password", @@ -130,7 +134,6 @@ OC.L10N.register( "Choose a password for the public link" : "Choose a password for the public link", "Choose a password for the public link or press the \"Enter\" key" : "Choose a password for the public link or press the \"Enter\" key", "Copied!" : "Copied!", - "Copy" : "Copy", "Not supported!" : "Not supported!", "Press ⌘-C to copy." : "Press ⌘-C to copy.", "Press Ctrl-C to copy." : "Press Ctrl-C to copy.", diff --git a/core/l10n/en_GB.json b/core/l10n/en_GB.json index e16bc07be03..b5a5322b056 100644 --- a/core/l10n/en_GB.json +++ b/core/l10n/en_GB.json @@ -82,6 +82,8 @@ "Yes" : "Yes", "No files in here" : "No files in here", "Choose" : "Choose", + "Copy" : "Copy", + "Move" : "Move", "Error loading file picker template: {error}" : "Error loading file picker template: {error}", "OK" : "OK", "Error loading message template: {error}" : "Error loading message template: {error}", @@ -97,6 +99,8 @@ "({count} selected)" : "({count} selected)", "Error loading file exists template" : "Error loading file exists template", "Pending" : "Pending", + "Copy to {folder}" : "Copy to {folder}", + "Move to {folder}" : "Move to {folder}", "Very weak password" : "Very weak password", "Weak password" : "Weak password", "So-so password" : "So-so password", @@ -128,7 +132,6 @@ "Choose a password for the public link" : "Choose a password for the public link", "Choose a password for the public link or press the \"Enter\" key" : "Choose a password for the public link or press the \"Enter\" key", "Copied!" : "Copied!", - "Copy" : "Copy", "Not supported!" : "Not supported!", "Press ⌘-C to copy." : "Press ⌘-C to copy.", "Press Ctrl-C to copy." : "Press Ctrl-C to copy.", diff --git a/core/l10n/es.js b/core/l10n/es.js index 3976a3aad1b..a0d77bc1afe 100644 --- a/core/l10n/es.js +++ b/core/l10n/es.js @@ -84,6 +84,7 @@ OC.L10N.register( "Yes" : "Sí", "No files in here" : "Aquí no hay archivos", "Choose" : "Seleccionar", + "Copy" : "Copiar", "Error loading file picker template: {error}" : "Error al cargar plantilla del seleccionador de archivos: {error}", "OK" : "OK", "Error loading message template: {error}" : "Error al cargar plantilla del mensaje: {error}", @@ -130,7 +131,6 @@ OC.L10N.register( "Choose a password for the public link" : "Elija una contraseña para el enlace publico", "Choose a password for the public link or press the \"Enter\" key" : "Escoge una contraseña para el enlace público ", "Copied!" : "¡Copiado!", - "Copy" : "Copiar", "Not supported!" : "¡No se puede!", "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", diff --git a/core/l10n/es.json b/core/l10n/es.json index 57276760a7c..559fa023f8d 100644 --- a/core/l10n/es.json +++ b/core/l10n/es.json @@ -82,6 +82,7 @@ "Yes" : "Sí", "No files in here" : "Aquí no hay archivos", "Choose" : "Seleccionar", + "Copy" : "Copiar", "Error loading file picker template: {error}" : "Error al cargar plantilla del seleccionador de archivos: {error}", "OK" : "OK", "Error loading message template: {error}" : "Error al cargar plantilla del mensaje: {error}", @@ -128,7 +129,6 @@ "Choose a password for the public link" : "Elija una contraseña para el enlace publico", "Choose a password for the public link or press the \"Enter\" key" : "Escoge una contraseña para el enlace público ", "Copied!" : "¡Copiado!", - "Copy" : "Copiar", "Not supported!" : "¡No se puede!", "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", diff --git a/core/l10n/es_AR.js b/core/l10n/es_AR.js index 6b88b8f109c..202c6b14ad8 100644 --- a/core/l10n/es_AR.js +++ b/core/l10n/es_AR.js @@ -84,6 +84,7 @@ OC.L10N.register( "Yes" : "Sí", "No files in here" : "No hay archivos aquí", "Choose" : "Seleccionar", + "Copy" : "Copiar", "Error loading file picker template: {error}" : "Se presentó un error al cargar la plantilla del seleccionador de archivos: {error}", "OK" : "OK", "Error loading message template: {error}" : "Se presentó un error al cargar la plantilla del mensaje: {error}", @@ -130,7 +131,6 @@ OC.L10N.register( "Choose a password for the public link" : "Seleccione una contraseña para el link público", "Choose a password for the public link or press the \"Enter\" key" : "Favor de elegir una contraseña para el link público o presione \"Intro
\"", "Copied!" : "¡Copiado!", - "Copy" : "Copiar", "Not supported!" : "¡No está soportado!", "Press ⌘-C to copy." : "Presione ⌘-C para copiar.", "Press Ctrl-C to copy." : "Presione Ctrl-C para copiar.", diff --git a/core/l10n/es_AR.json b/core/l10n/es_AR.json index de40ed92b5e..dfcf525a6e7 100644 --- a/core/l10n/es_AR.json +++ b/core/l10n/es_AR.json @@ -82,6 +82,7 @@ "Yes" : "Sí", "No files in here" : "No hay archivos aquí", "Choose" : "Seleccionar", + "Copy" : "Copiar", "Error loading file picker template: {error}" : "Se presentó un error al cargar la plantilla del seleccionador de archivos: {error}", "OK" : "OK", "Error loading message template: {error}" : "Se presentó un error al cargar la plantilla del mensaje: {error}", @@ -128,7 +129,6 @@ "Choose a password for the public link" : "Seleccione una contraseña para el link público", "Choose a password for the public link or press the \"Enter\" key" : "Favor de elegir una contraseña para el link público o presione \"Intro
\"", "Copied!" : "¡Copiado!", - "Copy" : "Copiar", "Not supported!" : "¡No está soportado!", "Press ⌘-C to copy." : "Presione ⌘-C para copiar.", "Press Ctrl-C to copy." : "Presione Ctrl-C para copiar.", diff --git a/core/l10n/es_MX.js b/core/l10n/es_MX.js index 02807189fa1..e934d028a61 100644 --- a/core/l10n/es_MX.js +++ b/core/l10n/es_MX.js @@ -84,6 +84,8 @@ OC.L10N.register( "Yes" : "Sí", "No files in here" : "No hay archivos aquí", "Choose" : "Seleccionar", + "Copy" : "Copiar", + "Move" : "Mover", "Error loading file picker template: {error}" : "Se presentó un error al cargar la plantilla del seleccionador de archivos: {error}", "OK" : "OK", "Error loading message template: {error}" : "Se presentó un error al cargar la plantilla del mensaje: {error}", @@ -99,6 +101,8 @@ OC.L10N.register( "({count} selected)" : "({count} seleccionados)", "Error loading file exists template" : "Se presentó un error al cargar la plantilla de existe archivo ", "Pending" : "Pendiente", + "Copy to {folder}" : "Copiar a {folder}", + "Move to {folder}" : "Mover a {folder}", "Very weak password" : "Contraseña muy débil", "Weak password" : "Contraseña débil", "So-so password" : "Contraseña aceptable", @@ -130,7 +134,6 @@ OC.L10N.register( "Choose a password for the public link" : "Seleccione una contraseña para la liga pública", "Choose a password for the public link or press the \"Enter\" key" : "Elige una contraseña para la liga pública o presiona la tecla \"Intro\"", "Copied!" : "¡Copiado!", - "Copy" : "Copiar", "Not supported!" : "¡No está soportado!", "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", diff --git a/core/l10n/es_MX.json b/core/l10n/es_MX.json index 5bd09c50cf7..c50d58f7885 100644 --- a/core/l10n/es_MX.json +++ b/core/l10n/es_MX.json @@ -82,6 +82,8 @@ "Yes" : "Sí", "No files in here" : "No hay archivos aquí", "Choose" : "Seleccionar", + "Copy" : "Copiar", + "Move" : "Mover", "Error loading file picker template: {error}" : "Se presentó un error al cargar la plantilla del seleccionador de archivos: {error}", "OK" : "OK", "Error loading message template: {error}" : "Se presentó un error al cargar la plantilla del mensaje: {error}", @@ -97,6 +99,8 @@ "({count} selected)" : "({count} seleccionados)", "Error loading file exists template" : "Se presentó un error al cargar la plantilla de existe archivo ", "Pending" : "Pendiente", + "Copy to {folder}" : "Copiar a {folder}", + "Move to {folder}" : "Mover a {folder}", "Very weak password" : "Contraseña muy débil", "Weak password" : "Contraseña débil", "So-so password" : "Contraseña aceptable", @@ -128,7 +132,6 @@ "Choose a password for the public link" : "Seleccione una contraseña para la liga pública", "Choose a password for the public link or press the \"Enter\" key" : "Elige una contraseña para la liga pública o presiona la tecla \"Intro\"", "Copied!" : "¡Copiado!", - "Copy" : "Copiar", "Not supported!" : "¡No está soportado!", "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", diff --git a/core/l10n/et_EE.js b/core/l10n/et_EE.js index e69b0ad61b8..6dbfa4d1ddb 100644 --- a/core/l10n/et_EE.js +++ b/core/l10n/et_EE.js @@ -30,8 +30,8 @@ OC.L10N.register( "Repair warning: " : "Paranda hoiatus:", "Repair error: " : "Paranda viga:", "Please use the command line updater because automatic updating is disabled in the config.php." : "Palun kasutage uuendamiseks käsurida, kuna automaatne uuendamine on config.php failis välja lülitatud.", - "Turned on maintenance mode" : "Haldusrežiimis sisse lülitatud", - "Turned off maintenance mode" : "Haldusrežiimis välja lülitatud", + "Turned on maintenance mode" : "Hooldusrežiim sisse lülitatud", + "Turned off maintenance mode" : "Hooldusrežiim välja lülitatud", "Maintenance mode is kept active" : "Hooldusrežiim on aktiivne", "Updating database schema" : "Andmebaasi skeemi uuendamine", "Updated database" : "Uuendatud andmebaas", @@ -77,6 +77,7 @@ OC.L10N.register( "Yes" : "Jah", "No files in here" : "Siin ei ole faile", "Choose" : "Vali", + "Copy" : "Kopeeri", "Error loading file picker template: {error}" : "Viga failivalija malli laadimisel: {error}", "OK" : "OK", "Error loading message template: {error}" : "Viga sõnumi malli laadimisel: {error}", @@ -110,7 +111,6 @@ OC.L10N.register( "Choose a password for the public link" : "Vali avaliku lingi jaoks parool", "Choose a password for the public link or press the \"Enter\" key" : "Vali avaliku lingi jaoks parool või vajuta klahvi \"Enter\"", "Copied!" : "Kopeeritud!", - "Copy" : "Kopeeri", "Not supported!" : "Pole toetatud!", "Press ⌘-C to copy." : "Kopeerimiseks vajuta ⌘ + C.", "Press Ctrl-C to copy." : "Kopeerimiseks vajuta Ctrl + C.", @@ -149,6 +149,7 @@ OC.L10N.register( "Name..." : "Nimi...", "Error" : "Viga", "Error removing share" : "Viga jagamise eemaldamisel", + "Non-existing tag #{tag}" : "Olematu silt #{tag}", "restricted" : "piiratud", "invisible" : "nähtamatu", "({scope})" : "({scope})", @@ -177,6 +178,8 @@ OC.L10N.register( "The specified document has not been found on the server." : "Määratud dokumenti serverist ei leitud.", "You can click here to return to %s." : "%s tagasi minemiseks võid sa siia klikkida.", "Internal Server Error" : "Serveri sisemine viga", + "The server was unable to complete your request." : "Server ei suutnud sinu päringut lõpetada.", + "If this happens again, please send the technical details below to the server administrator." : "Kui see veel kord juhtub, saada tehnilised detailid allpool serveri administraatorile.", "More details can be found in the server log." : "Lisainfot võib leida serveri logist.", "Technical details" : "Tehnilised andmed", "Remote Address: %s" : "Kaugaadress: %s", @@ -195,6 +198,7 @@ OC.L10N.register( "Data folder" : "Andmete kaust", "Configure the database" : "Seadista andmebaasi", "Only %s is available." : "Ainult %s on saadaval.", + "Install and activate additional PHP modules to choose other database types." : "Paigalda ja aktiveeri täiendavaid PHP mooduleid, et teisi andmebaasi tüüpe valida.", "For more details check out the documentation." : "Lisainfot vaata dokumentatsioonist.", "Database user" : "Andmebaasi kasutaja", "Database password" : "Andmebaasi parool", @@ -229,6 +233,7 @@ OC.L10N.register( "Reset password" : "Nulli parool", "Two-factor authentication" : "Kaheastmeline autentimine", "Cancel log in" : "Katkesta sisselogimine", + "Access through untrusted domain" : "Ligipääs läbi ebausaldusväärse domeeni", "Add \"%s\" as trusted domain" : "Lisa \"%s\" usaldusväärse domeenina", "App update required" : "Rakenduse uuendus on nõutud", "%s will be updated to version %s" : "%s uuendatakse versioonile %s", diff --git a/core/l10n/et_EE.json b/core/l10n/et_EE.json index 1e94d3982dc..a77307456dd 100644 --- a/core/l10n/et_EE.json +++ b/core/l10n/et_EE.json @@ -28,8 +28,8 @@ "Repair warning: " : "Paranda hoiatus:", "Repair error: " : "Paranda viga:", "Please use the command line updater because automatic updating is disabled in the config.php." : "Palun kasutage uuendamiseks käsurida, kuna automaatne uuendamine on config.php failis välja lülitatud.", - "Turned on maintenance mode" : "Haldusrežiimis sisse lülitatud", - "Turned off maintenance mode" : "Haldusrežiimis välja lülitatud", + "Turned on maintenance mode" : "Hooldusrežiim sisse lülitatud", + "Turned off maintenance mode" : "Hooldusrežiim välja lülitatud", "Maintenance mode is kept active" : "Hooldusrežiim on aktiivne", "Updating database schema" : "Andmebaasi skeemi uuendamine", "Updated database" : "Uuendatud andmebaas", @@ -75,6 +75,7 @@ "Yes" : "Jah", "No files in here" : "Siin ei ole faile", "Choose" : "Vali", + "Copy" : "Kopeeri", "Error loading file picker template: {error}" : "Viga failivalija malli laadimisel: {error}", "OK" : "OK", "Error loading message template: {error}" : "Viga sõnumi malli laadimisel: {error}", @@ -108,7 +109,6 @@ "Choose a password for the public link" : "Vali avaliku lingi jaoks parool", "Choose a password for the public link or press the \"Enter\" key" : "Vali avaliku lingi jaoks parool või vajuta klahvi \"Enter\"", "Copied!" : "Kopeeritud!", - "Copy" : "Kopeeri", "Not supported!" : "Pole toetatud!", "Press ⌘-C to copy." : "Kopeerimiseks vajuta ⌘ + C.", "Press Ctrl-C to copy." : "Kopeerimiseks vajuta Ctrl + C.", @@ -147,6 +147,7 @@ "Name..." : "Nimi...", "Error" : "Viga", "Error removing share" : "Viga jagamise eemaldamisel", + "Non-existing tag #{tag}" : "Olematu silt #{tag}", "restricted" : "piiratud", "invisible" : "nähtamatu", "({scope})" : "({scope})", @@ -175,6 +176,8 @@ "The specified document has not been found on the server." : "Määratud dokumenti serverist ei leitud.", "You can click here to return to %s." : "%s tagasi minemiseks võid sa siia klikkida.", "Internal Server Error" : "Serveri sisemine viga", + "The server was unable to complete your request." : "Server ei suutnud sinu päringut lõpetada.", + "If this happens again, please send the technical details below to the server administrator." : "Kui see veel kord juhtub, saada tehnilised detailid allpool serveri administraatorile.", "More details can be found in the server log." : "Lisainfot võib leida serveri logist.", "Technical details" : "Tehnilised andmed", "Remote Address: %s" : "Kaugaadress: %s", @@ -193,6 +196,7 @@ "Data folder" : "Andmete kaust", "Configure the database" : "Seadista andmebaasi", "Only %s is available." : "Ainult %s on saadaval.", + "Install and activate additional PHP modules to choose other database types." : "Paigalda ja aktiveeri täiendavaid PHP mooduleid, et teisi andmebaasi tüüpe valida.", "For more details check out the documentation." : "Lisainfot vaata dokumentatsioonist.", "Database user" : "Andmebaasi kasutaja", "Database password" : "Andmebaasi parool", @@ -227,6 +231,7 @@ "Reset password" : "Nulli parool", "Two-factor authentication" : "Kaheastmeline autentimine", "Cancel log in" : "Katkesta sisselogimine", + "Access through untrusted domain" : "Ligipääs läbi ebausaldusväärse domeeni", "Add \"%s\" as trusted domain" : "Lisa \"%s\" usaldusväärse domeenina", "App update required" : "Rakenduse uuendus on nõutud", "%s will be updated to version %s" : "%s uuendatakse versioonile %s", diff --git a/core/l10n/eu.js b/core/l10n/eu.js index f19bc1a908a..ecf14802c43 100644 --- a/core/l10n/eu.js +++ b/core/l10n/eu.js @@ -83,6 +83,7 @@ OC.L10N.register( "Yes" : "Bai", "No files in here" : "Ez dago fitxategirik hemen", "Choose" : "Aukeratu", + "Copy" : "Kopiatu", "Error loading file picker template: {error}" : "Errorea fitxategi hautatzaile txantiloiak kargatzerakoan: {error}", "OK" : "Ados", "Error loading message template: {error}" : "Errorea mezu txantiloia kargatzean: {error}", @@ -127,7 +128,6 @@ OC.L10N.register( "Choose a password for the public link" : "Aukeratu pasahitz bat esteka publikorako", "Choose a password for the public link or press the \"Enter\" key" : "Hautatu pasahitz bat esteka publikoarentzat edo sakatu \"Sartu\" tekla", "Copied!" : "Kopiatuta!", - "Copy" : "Kopiatu", "Not supported!" : "Ez da onartzen!", "Press ⌘-C to copy." : "Sakatu ⌘-C kopiatzeko.", "Press Ctrl-C to copy." : "Sakatu Ctrl-C kpiatzeko.", diff --git a/core/l10n/eu.json b/core/l10n/eu.json index 56312cec4ce..4177198ae72 100644 --- a/core/l10n/eu.json +++ b/core/l10n/eu.json @@ -81,6 +81,7 @@ "Yes" : "Bai", "No files in here" : "Ez dago fitxategirik hemen", "Choose" : "Aukeratu", + "Copy" : "Kopiatu", "Error loading file picker template: {error}" : "Errorea fitxategi hautatzaile txantiloiak kargatzerakoan: {error}", "OK" : "Ados", "Error loading message template: {error}" : "Errorea mezu txantiloia kargatzean: {error}", @@ -125,7 +126,6 @@ "Choose a password for the public link" : "Aukeratu pasahitz bat esteka publikorako", "Choose a password for the public link or press the \"Enter\" key" : "Hautatu pasahitz bat esteka publikoarentzat edo sakatu \"Sartu\" tekla", "Copied!" : "Kopiatuta!", - "Copy" : "Kopiatu", "Not supported!" : "Ez da onartzen!", "Press ⌘-C to copy." : "Sakatu ⌘-C kopiatzeko.", "Press Ctrl-C to copy." : "Sakatu Ctrl-C kpiatzeko.", diff --git a/core/l10n/fa.js b/core/l10n/fa.js index de284d1a23b..0096829bab5 100644 --- a/core/l10n/fa.js +++ b/core/l10n/fa.js @@ -84,6 +84,7 @@ OC.L10N.register( "Yes" : "بله", "No files in here" : "هیچ فایلی اینجا وجود ندارد", "Choose" : "انتخاب کردن", + "Copy" : "کپی", "Error loading file picker template: {error}" : "خطا در بارگذاری قالب انتخاب فایل : {error}", "OK" : "تایید", "Error loading message template: {error}" : "خطا در بارگذاری قالب پیام : {error}", @@ -130,7 +131,6 @@ OC.L10N.register( "Choose a password for the public link" : "انتخاب رمز برای لینک عمومی", "Choose a password for the public link or press the \"Enter\" key" : "یک رمز عبور برای لینک عمومی انتخاب کنید یا کلید \"Enter\" را فشار دهید", "Copied!" : "کپی انجام شد!", - "Copy" : "کپی", "Not supported!" : "پشتیبانی وجود ندارد!", "Press ⌘-C to copy." : "برای کپی کردن از دکمه های C+⌘ استفاده نمایید", "Press Ctrl-C to copy." : "برای کپی کردن از دکمه ctrl+c استفاده نمایید", @@ -272,6 +272,8 @@ OC.L10N.register( "New password" : "گذرواژه جدید", "New Password" : "رمزعبور جدید", "Reset password" : "تنظیم مجدد رمز عبور", + "Cancel log in" : "لغو ورود", + "Use backup code" : "از کد پشتیبان استفاده شود", "Add \"%s\" as trusted domain" : "افزودن \"%s\" به عنوان دامنه مورد اعتماد", "App update required" : "نیاز به بروزرسانی برنامه وجود دارد", "%s will be updated to version %s" : "%s به نسخهی %s بروزرسانی خواهد شد", @@ -290,6 +292,10 @@ OC.L10N.register( "can change" : "می توان تغییر داد", "can delete" : "می توان حذف کرد", "access control" : "کنترل دسترسی", + "Share with users or by mail..." : "اشتراک گذاری با استفاده کنندگان یا با ایمیل ...", + "Share with users or remote users..." : "اشتراک گذاری با استفاده کنندگان یا استفاده کنندگان دور ...", + "Share with users, remote users or by mail..." : "اشتراک گذاری با استفاده کنندگان یا استفاده کنندگان دور یا با ایمیل ...", + "Share with users or groups..." : "اشتراک گذاری با استفاده کنندگان یا گروه ها ...", "The object type is not specified." : "نوع شی تعیین نشده است.", "Enter new" : "مورد جدید را وارد کنید", "Add" : "افزودن", diff --git a/core/l10n/fa.json b/core/l10n/fa.json index 609852c823a..95b3730b146 100644 --- a/core/l10n/fa.json +++ b/core/l10n/fa.json @@ -82,6 +82,7 @@ "Yes" : "بله", "No files in here" : "هیچ فایلی اینجا وجود ندارد", "Choose" : "انتخاب کردن", + "Copy" : "کپی", "Error loading file picker template: {error}" : "خطا در بارگذاری قالب انتخاب فایل : {error}", "OK" : "تایید", "Error loading message template: {error}" : "خطا در بارگذاری قالب پیام : {error}", @@ -128,7 +129,6 @@ "Choose a password for the public link" : "انتخاب رمز برای لینک عمومی", "Choose a password for the public link or press the \"Enter\" key" : "یک رمز عبور برای لینک عمومی انتخاب کنید یا کلید \"Enter\" را فشار دهید", "Copied!" : "کپی انجام شد!", - "Copy" : "کپی", "Not supported!" : "پشتیبانی وجود ندارد!", "Press ⌘-C to copy." : "برای کپی کردن از دکمه های C+⌘ استفاده نمایید", "Press Ctrl-C to copy." : "برای کپی کردن از دکمه ctrl+c استفاده نمایید", @@ -270,6 +270,8 @@ "New password" : "گذرواژه جدید", "New Password" : "رمزعبور جدید", "Reset password" : "تنظیم مجدد رمز عبور", + "Cancel log in" : "لغو ورود", + "Use backup code" : "از کد پشتیبان استفاده شود", "Add \"%s\" as trusted domain" : "افزودن \"%s\" به عنوان دامنه مورد اعتماد", "App update required" : "نیاز به بروزرسانی برنامه وجود دارد", "%s will be updated to version %s" : "%s به نسخهی %s بروزرسانی خواهد شد", @@ -288,6 +290,10 @@ "can change" : "می توان تغییر داد", "can delete" : "می توان حذف کرد", "access control" : "کنترل دسترسی", + "Share with users or by mail..." : "اشتراک گذاری با استفاده کنندگان یا با ایمیل ...", + "Share with users or remote users..." : "اشتراک گذاری با استفاده کنندگان یا استفاده کنندگان دور ...", + "Share with users, remote users or by mail..." : "اشتراک گذاری با استفاده کنندگان یا استفاده کنندگان دور یا با ایمیل ...", + "Share with users or groups..." : "اشتراک گذاری با استفاده کنندگان یا گروه ها ...", "The object type is not specified." : "نوع شی تعیین نشده است.", "Enter new" : "مورد جدید را وارد کنید", "Add" : "افزودن", diff --git a/core/l10n/fi.js b/core/l10n/fi.js index bbdc98176a1..f18bf065a7b 100644 --- a/core/l10n/fi.js +++ b/core/l10n/fi.js @@ -83,6 +83,7 @@ OC.L10N.register( "Yes" : "Kyllä", "No files in here" : "Täällä ei ole tiedostoja", "Choose" : "Valitse", + "Copy" : "Kopioi", "Error loading file picker template: {error}" : "Virhe ladatessa tiedostopohjia: {error}", "OK" : "OK", "Error loading message template: {error}" : "Virhe ladatessa viestipohjaa: {error}", @@ -126,7 +127,6 @@ OC.L10N.register( "Choose a password for the public link" : "Valitse salasana julkiselle linkille", "Choose a password for the public link or press the \"Enter\" key" : "Valitse salasana julkiselle linkille tai paina \"Enter\" näppäintä", "Copied!" : "Kopioitu!", - "Copy" : "Kopioi", "Not supported!" : "Ei tuettu!", "Press ⌘-C to copy." : "Paina ⌘-C kopioidaksesi.", "Press Ctrl-C to copy." : "Paina Ctrl-C kopioidaksesi.", @@ -215,6 +215,8 @@ OC.L10N.register( "The specified document has not been found on the server." : "Määritettyä asiakirjaa ei löytynyt palvelimelta.", "You can click here to return to %s." : "Napsauta tästä palataksesi %siin.", "Internal Server Error" : "Sisäinen palvelinvirhe", + "The server was unable to complete your request." : "Palvelin ei kyennyt käsittelemään pyyntöäsi.", + "If this happens again, please send the technical details below to the server administrator." : "Jos tämä tapahtuu uudelleen, lähetä alla olevat tekniset tiedot palvelimen ylläpitäjälle.", "More details can be found in the server log." : "Lisätietoja on palvelimen lokitiedostossa.", "Technical details" : "Tekniset tiedot", "Remote Address: %s" : "Etäosoite: %s", diff --git a/core/l10n/fi.json b/core/l10n/fi.json index 9476082efdb..339c96657a8 100644 --- a/core/l10n/fi.json +++ b/core/l10n/fi.json @@ -81,6 +81,7 @@ "Yes" : "Kyllä", "No files in here" : "Täällä ei ole tiedostoja", "Choose" : "Valitse", + "Copy" : "Kopioi", "Error loading file picker template: {error}" : "Virhe ladatessa tiedostopohjia: {error}", "OK" : "OK", "Error loading message template: {error}" : "Virhe ladatessa viestipohjaa: {error}", @@ -124,7 +125,6 @@ "Choose a password for the public link" : "Valitse salasana julkiselle linkille", "Choose a password for the public link or press the \"Enter\" key" : "Valitse salasana julkiselle linkille tai paina \"Enter\" näppäintä", "Copied!" : "Kopioitu!", - "Copy" : "Kopioi", "Not supported!" : "Ei tuettu!", "Press ⌘-C to copy." : "Paina ⌘-C kopioidaksesi.", "Press Ctrl-C to copy." : "Paina Ctrl-C kopioidaksesi.", @@ -213,6 +213,8 @@ "The specified document has not been found on the server." : "Määritettyä asiakirjaa ei löytynyt palvelimelta.", "You can click here to return to %s." : "Napsauta tästä palataksesi %siin.", "Internal Server Error" : "Sisäinen palvelinvirhe", + "The server was unable to complete your request." : "Palvelin ei kyennyt käsittelemään pyyntöäsi.", + "If this happens again, please send the technical details below to the server administrator." : "Jos tämä tapahtuu uudelleen, lähetä alla olevat tekniset tiedot palvelimen ylläpitäjälle.", "More details can be found in the server log." : "Lisätietoja on palvelimen lokitiedostossa.", "Technical details" : "Tekniset tiedot", "Remote Address: %s" : "Etäosoite: %s", diff --git a/core/l10n/fr.js b/core/l10n/fr.js index 79bfa33eeea..9aec227f66c 100644 --- a/core/l10n/fr.js +++ b/core/l10n/fr.js @@ -84,6 +84,8 @@ OC.L10N.register( "Yes" : "Oui", "No files in here" : "Aucun fichier", "Choose" : "Choisir", + "Copy" : "Copier", + "Move" : "Déplacer", "Error loading file picker template: {error}" : "Erreur lors du chargement du modèle du sélecteur de fichiers : {error}", "OK" : "OK", "Error loading message template: {error}" : "Erreur de chargement du modèle de message : {error}", @@ -99,6 +101,8 @@ OC.L10N.register( "({count} selected)" : "({count} sélectionné(s))", "Error loading file exists template" : "Erreur de chargement du modèle de fichier existant", "Pending" : "En attente", + "Copy to {folder}" : "Copier vers {folder}", + "Move to {folder}" : "Déplacer vers {folder}", "Very weak password" : "Mot de passe très faible", "Weak password" : "Mot de passe faible", "So-so password" : "Mot de passe tout juste acceptable", @@ -130,7 +134,6 @@ OC.L10N.register( "Choose a password for the public link" : "Choisissez un mot de passe pour le lien public", "Choose a password for the public link or press the \"Enter\" key" : "Choisissez un mot de passe pour le lien public ou appuyer sur \"Entrée\"", "Copied!" : "Copié !", - "Copy" : "Copier", "Not supported!" : "Non supporté!", "Press ⌘-C to copy." : "Appuyez sur ⌘-C pour copier.", "Press Ctrl-C to copy." : "Appuyez sur Ctrl-C pour copier.", diff --git a/core/l10n/fr.json b/core/l10n/fr.json index b4c90da1425..0103f86c859 100644 --- a/core/l10n/fr.json +++ b/core/l10n/fr.json @@ -82,6 +82,8 @@ "Yes" : "Oui", "No files in here" : "Aucun fichier", "Choose" : "Choisir", + "Copy" : "Copier", + "Move" : "Déplacer", "Error loading file picker template: {error}" : "Erreur lors du chargement du modèle du sélecteur de fichiers : {error}", "OK" : "OK", "Error loading message template: {error}" : "Erreur de chargement du modèle de message : {error}", @@ -97,6 +99,8 @@ "({count} selected)" : "({count} sélectionné(s))", "Error loading file exists template" : "Erreur de chargement du modèle de fichier existant", "Pending" : "En attente", + "Copy to {folder}" : "Copier vers {folder}", + "Move to {folder}" : "Déplacer vers {folder}", "Very weak password" : "Mot de passe très faible", "Weak password" : "Mot de passe faible", "So-so password" : "Mot de passe tout juste acceptable", @@ -128,7 +132,6 @@ "Choose a password for the public link" : "Choisissez un mot de passe pour le lien public", "Choose a password for the public link or press the \"Enter\" key" : "Choisissez un mot de passe pour le lien public ou appuyer sur \"Entrée\"", "Copied!" : "Copié !", - "Copy" : "Copier", "Not supported!" : "Non supporté!", "Press ⌘-C to copy." : "Appuyez sur ⌘-C pour copier.", "Press Ctrl-C to copy." : "Appuyez sur Ctrl-C pour copier.", diff --git a/core/l10n/hu.js b/core/l10n/hu.js index b10e8b700db..3b3c783dcb8 100644 --- a/core/l10n/hu.js +++ b/core/l10n/hu.js @@ -14,6 +14,7 @@ OC.L10N.register( "No crop data provided" : "Vágáshoz nincs adat megadva", "No valid crop data provided" : "Nem lett valós levágási adat megadva", "Crop is not square" : "Levágás nem négyzet alakú", + "State token does not match" : "Állapot tokenek nem egyeznek", "Password reset is disabled" : "Jelszó visszaállítás letiltva", "Couldn't reset password because the token is invalid" : "Nem lehet a jelszót törölni, mert a token érvénytelen.", "Couldn't reset password because the token is expired" : "Nem lehet a jelszót törölni, mert a token lejárt.", @@ -74,6 +75,7 @@ OC.L10N.register( "Yes" : "Igen", "No files in here" : "Itt nincsenek fájlok", "Choose" : "Válasszon", + "Copy" : "Másol", "Error loading file picker template: {error}" : "Nem sikerült betölteni a fájlkiválasztó sablont: {error}", "OK" : "OK", "Error loading message template: {error}" : "Nem sikerült betölteni az üzenet sablont: {error}", @@ -116,7 +118,6 @@ OC.L10N.register( "Expiration date" : "Lejárati idő", "Choose a password for the public link" : "Válasszon egy jelszót a nyilvános hivatkozáshoz", "Copied!" : "Másolva!", - "Copy" : "Másol", "Not supported!" : "Nem támogatott!", "Press ⌘-C to copy." : "A másoláshoz nyomj ⌘-C-t.", "Press Ctrl-C to copy." : "A másoláshoz nyomj Ctrl-C-t.", diff --git a/core/l10n/hu.json b/core/l10n/hu.json index d8dee178ea9..993d588187a 100644 --- a/core/l10n/hu.json +++ b/core/l10n/hu.json @@ -12,6 +12,7 @@ "No crop data provided" : "Vágáshoz nincs adat megadva", "No valid crop data provided" : "Nem lett valós levágási adat megadva", "Crop is not square" : "Levágás nem négyzet alakú", + "State token does not match" : "Állapot tokenek nem egyeznek", "Password reset is disabled" : "Jelszó visszaállítás letiltva", "Couldn't reset password because the token is invalid" : "Nem lehet a jelszót törölni, mert a token érvénytelen.", "Couldn't reset password because the token is expired" : "Nem lehet a jelszót törölni, mert a token lejárt.", @@ -72,6 +73,7 @@ "Yes" : "Igen", "No files in here" : "Itt nincsenek fájlok", "Choose" : "Válasszon", + "Copy" : "Másol", "Error loading file picker template: {error}" : "Nem sikerült betölteni a fájlkiválasztó sablont: {error}", "OK" : "OK", "Error loading message template: {error}" : "Nem sikerült betölteni az üzenet sablont: {error}", @@ -114,7 +116,6 @@ "Expiration date" : "Lejárati idő", "Choose a password for the public link" : "Válasszon egy jelszót a nyilvános hivatkozáshoz", "Copied!" : "Másolva!", - "Copy" : "Másol", "Not supported!" : "Nem támogatott!", "Press ⌘-C to copy." : "A másoláshoz nyomj ⌘-C-t.", "Press Ctrl-C to copy." : "A másoláshoz nyomj Ctrl-C-t.", diff --git a/core/l10n/id.js b/core/l10n/id.js index 6427d6d98eb..7f5ee26028f 100644 --- a/core/l10n/id.js +++ b/core/l10n/id.js @@ -67,6 +67,7 @@ OC.L10N.register( "Yes" : "Ya", "No files in here" : "Tidak ada berkas disini", "Choose" : "Pilih", + "Copy" : "Salin", "Error loading file picker template: {error}" : "Kesalahan saat memuat templat berkas pemilih: {error}", "Error loading message template: {error}" : "Kesalahan memuat templat pesan: {error}", "read-only" : "hanya-baca", @@ -108,7 +109,6 @@ OC.L10N.register( "Expiration date" : "Tanggal kedaluwarsa", "Choose a password for the public link" : "Tetapkan sandi untuk tautan publik", "Copied!" : "Tersalin!", - "Copy" : "Salin", "Not supported!" : "Tidak didukung!", "Press ⌘-C to copy." : "Tekan ⌘-C untuk menyalin.", "Press Ctrl-C to copy." : "Tekan Ctrl-C untuk menyalin.", diff --git a/core/l10n/id.json b/core/l10n/id.json index db684e71ac6..7d623ff4828 100644 --- a/core/l10n/id.json +++ b/core/l10n/id.json @@ -65,6 +65,7 @@ "Yes" : "Ya", "No files in here" : "Tidak ada berkas disini", "Choose" : "Pilih", + "Copy" : "Salin", "Error loading file picker template: {error}" : "Kesalahan saat memuat templat berkas pemilih: {error}", "Error loading message template: {error}" : "Kesalahan memuat templat pesan: {error}", "read-only" : "hanya-baca", @@ -106,7 +107,6 @@ "Expiration date" : "Tanggal kedaluwarsa", "Choose a password for the public link" : "Tetapkan sandi untuk tautan publik", "Copied!" : "Tersalin!", - "Copy" : "Salin", "Not supported!" : "Tidak didukung!", "Press ⌘-C to copy." : "Tekan ⌘-C untuk menyalin.", "Press Ctrl-C to copy." : "Tekan Ctrl-C untuk menyalin.", diff --git a/core/l10n/is.js b/core/l10n/is.js index bfb44ff7615..4511880685a 100644 --- a/core/l10n/is.js +++ b/core/l10n/is.js @@ -84,6 +84,8 @@ OC.L10N.register( "Yes" : "Já", "No files in here" : "Engar skrár hér", "Choose" : "Veldu", + "Copy" : "Afrita", + "Move" : "Færa", "Error loading file picker template: {error}" : "Villa við að hlaða inn sniðmáti fyrir skráaveljara: {error}", "OK" : "Í lagi", "Error loading message template: {error}" : "Villa við að hlaða inn sniðmáti fyrir skilaboð: {error}", @@ -99,6 +101,8 @@ OC.L10N.register( "({count} selected)" : "({count} valið)", "Error loading file exists template" : "Villa við að hlaða inn sniðmáti fyrir skrá-er-til", "Pending" : "Í bið", + "Copy to {folder}" : "Afrita í {folder}", + "Move to {folder}" : "Færa í {folder}", "Very weak password" : "Mjög veikt lykilorð", "Weak password" : "Veikt lykilorð", "So-so password" : "Miðlungs lykilorð", @@ -130,7 +134,6 @@ OC.L10N.register( "Choose a password for the public link" : "Veldu þér lykilorð fyrir almenningstengil", "Choose a password for the public link or press the \"Enter\" key" : "Veldu þér lykilorð fyrir opinbera tengilinn eða ýttu á \"Enter
\" lykilinn", "Copied!" : "Afritað!", - "Copy" : "Afrita", "Not supported!" : "Óstutt!", "Press ⌘-C to copy." : "Ýttu á ⌘-C til að afrita.", "Press Ctrl-C to copy." : "Ýttu á Ctrl-C til að afrita.", diff --git a/core/l10n/is.json b/core/l10n/is.json index bcd135a402c..bb9b6b394de 100644 --- a/core/l10n/is.json +++ b/core/l10n/is.json @@ -82,6 +82,8 @@ "Yes" : "Já", "No files in here" : "Engar skrár hér", "Choose" : "Veldu", + "Copy" : "Afrita", + "Move" : "Færa", "Error loading file picker template: {error}" : "Villa við að hlaða inn sniðmáti fyrir skráaveljara: {error}", "OK" : "Í lagi", "Error loading message template: {error}" : "Villa við að hlaða inn sniðmáti fyrir skilaboð: {error}", @@ -97,6 +99,8 @@ "({count} selected)" : "({count} valið)", "Error loading file exists template" : "Villa við að hlaða inn sniðmáti fyrir skrá-er-til", "Pending" : "Í bið", + "Copy to {folder}" : "Afrita í {folder}", + "Move to {folder}" : "Færa í {folder}", "Very weak password" : "Mjög veikt lykilorð", "Weak password" : "Veikt lykilorð", "So-so password" : "Miðlungs lykilorð", @@ -128,7 +132,6 @@ "Choose a password for the public link" : "Veldu þér lykilorð fyrir almenningstengil", "Choose a password for the public link or press the \"Enter\" key" : "Veldu þér lykilorð fyrir opinbera tengilinn eða ýttu á \"Enter
\" lykilinn", "Copied!" : "Afritað!", - "Copy" : "Afrita", "Not supported!" : "Óstutt!", "Press ⌘-C to copy." : "Ýttu á ⌘-C til að afrita.", "Press Ctrl-C to copy." : "Ýttu á Ctrl-C til að afrita.", diff --git a/core/l10n/it.js b/core/l10n/it.js index a76ff3e8645..85a2038c5c6 100644 --- a/core/l10n/it.js +++ b/core/l10n/it.js @@ -84,6 +84,8 @@ OC.L10N.register( "Yes" : "Sì", "No files in here" : "Qui non c'è alcun file", "Choose" : "Scegli", + "Copy" : "Copia", + "Move" : "Sposta", "Error loading file picker template: {error}" : "Errore durante il caricamento del modello del selettore file: {error}", "OK" : "OK", "Error loading message template: {error}" : "Errore durante il caricamento del modello di messaggio: {error}", @@ -99,6 +101,8 @@ OC.L10N.register( "({count} selected)" : "({count} selezionati)", "Error loading file exists template" : "Errore durante il caricamento del modello del file esistente", "Pending" : "In corso", + "Copy to {folder}" : "Copia in {folder}", + "Move to {folder}" : "Sposta in {folder}", "Very weak password" : "Password molto debole", "Weak password" : "Password debole", "So-so password" : "Password così-così", @@ -130,7 +134,6 @@ OC.L10N.register( "Choose a password for the public link" : "Scegli una password per il collegamento pubblico", "Choose a password for the public link or press the \"Enter\" key" : "Scegli una password per il collegamento pubblico o premi il tasto \"Invio\"", "Copied!" : "Copiati!", - "Copy" : "Copia", "Not supported!" : "Non supportato!", "Press ⌘-C to copy." : "Premi ⌘-C per copiare.", "Press Ctrl-C to copy." : "Premi Ctrl-C per copiare.", diff --git a/core/l10n/it.json b/core/l10n/it.json index 92968bd8af5..377cc319658 100644 --- a/core/l10n/it.json +++ b/core/l10n/it.json @@ -82,6 +82,8 @@ "Yes" : "Sì", "No files in here" : "Qui non c'è alcun file", "Choose" : "Scegli", + "Copy" : "Copia", + "Move" : "Sposta", "Error loading file picker template: {error}" : "Errore durante il caricamento del modello del selettore file: {error}", "OK" : "OK", "Error loading message template: {error}" : "Errore durante il caricamento del modello di messaggio: {error}", @@ -97,6 +99,8 @@ "({count} selected)" : "({count} selezionati)", "Error loading file exists template" : "Errore durante il caricamento del modello del file esistente", "Pending" : "In corso", + "Copy to {folder}" : "Copia in {folder}", + "Move to {folder}" : "Sposta in {folder}", "Very weak password" : "Password molto debole", "Weak password" : "Password debole", "So-so password" : "Password così-così", @@ -128,7 +132,6 @@ "Choose a password for the public link" : "Scegli una password per il collegamento pubblico", "Choose a password for the public link or press the \"Enter\" key" : "Scegli una password per il collegamento pubblico o premi il tasto \"Invio\"", "Copied!" : "Copiati!", - "Copy" : "Copia", "Not supported!" : "Non supportato!", "Press ⌘-C to copy." : "Premi ⌘-C per copiare.", "Press Ctrl-C to copy." : "Premi Ctrl-C per copiare.", diff --git a/core/l10n/ja.js b/core/l10n/ja.js index 1d9e27804b6..5527b26b764 100644 --- a/core/l10n/ja.js +++ b/core/l10n/ja.js @@ -84,6 +84,7 @@ OC.L10N.register( "Yes" : "はい", "No files in here" : "ここにはファイルがありません", "Choose" : "選択", + "Copy" : "コピー", "Error loading file picker template: {error}" : "ファイル選択テンプレートの読み込みエラー: {error}", "OK" : "OK", "Error loading message template: {error}" : "メッセージテンプレートの読み込みエラー: {error}", @@ -130,7 +131,6 @@ OC.L10N.register( "Choose a password for the public link" : "URLによる共有のパスワードを入力", "Choose a password for the public link or press the \"Enter\" key" : "公開リンクのパスワードを入力、または、\"エンター\"のみを叩く", "Copied!" : "コピーされました!", - "Copy" : "コピー", "Not supported!" : "サポートされていません!", "Press ⌘-C to copy." : "⌘+Cを押してコピーします。", "Press Ctrl-C to copy." : "Ctrl+Cを押してコピーします。", diff --git a/core/l10n/ja.json b/core/l10n/ja.json index c79d7a6b24c..b9dc880f6bf 100644 --- a/core/l10n/ja.json +++ b/core/l10n/ja.json @@ -82,6 +82,7 @@ "Yes" : "はい", "No files in here" : "ここにはファイルがありません", "Choose" : "選択", + "Copy" : "コピー", "Error loading file picker template: {error}" : "ファイル選択テンプレートの読み込みエラー: {error}", "OK" : "OK", "Error loading message template: {error}" : "メッセージテンプレートの読み込みエラー: {error}", @@ -128,7 +129,6 @@ "Choose a password for the public link" : "URLによる共有のパスワードを入力", "Choose a password for the public link or press the \"Enter\" key" : "公開リンクのパスワードを入力、または、\"エンター\"のみを叩く", "Copied!" : "コピーされました!", - "Copy" : "コピー", "Not supported!" : "サポートされていません!", "Press ⌘-C to copy." : "⌘+Cを押してコピーします。", "Press Ctrl-C to copy." : "Ctrl+Cを押してコピーします。", diff --git a/core/l10n/ko.js b/core/l10n/ko.js index 9d6bbb965cc..2acea2d182f 100644 --- a/core/l10n/ko.js +++ b/core/l10n/ko.js @@ -15,6 +15,7 @@ OC.L10N.register( "No valid crop data provided" : "올바른 잘라내기 데이터가 지정되지 않음", "Crop is not square" : "잘라내는 영역이 사각형이 아님", "State token does not match" : "상태 토크인 일치하지 않음", + "Password reset is disabled" : "암호 리셋이 비활성화 되었습니다.", "Couldn't reset password because the token is invalid" : "토큰이 잘못되었기 때문에 암호를 초기화할 수 없습니다", "Couldn't reset password because the token is expired" : "토큰이 만료되어 암호를 초기화할 수 없습니다", "Could not send reset email because there is no email address for this username. Please contact your administrator." : "이 사용자 이름과 연결된 이메일 주소가 없어서 초기화 메일을 보낼 수 없습니다. 시스템 관리자에게 연락하십시오.", @@ -79,6 +80,8 @@ OC.L10N.register( "Yes" : "예", "No files in here" : "여기에 파일이 없음", "Choose" : "선택", + "Copy" : "복사", + "Move" : "이동", "Error loading file picker template: {error}" : "파일 선택 템플릿을 불러오는 중 오류 발생: {error}", "OK" : "확인", "Error loading message template: {error}" : "메시지 템플릿을 불러오는 중 오류 발생: {error}", @@ -94,6 +97,8 @@ OC.L10N.register( "({count} selected)" : "({count}개 선택됨)", "Error loading file exists template" : "파일 존재함 템플릿을 불러오는 중 오류 발생", "Pending" : "보류 중", + "Copy to {folder}" : "[folder] 에 복사하기", + "Move to {folder}" : "[folder] 에 이동하기", "Very weak password" : "매우 약한 암호", "Weak password" : "약한 암호", "So-so password" : "그저 그런 암호", @@ -123,7 +128,6 @@ OC.L10N.register( "Expiration date" : "만료 날짜", "Choose a password for the public link" : "공개 링크 암호를 입력하십시오", "Copied!" : "복사 성공!", - "Copy" : "복사", "Not supported!" : "지원하지 않음!", "Press ⌘-C to copy." : "복사하려면 ⌘-C 키를 누르십시오.", "Press Ctrl-C to copy." : "복사하려면 Ctrl-C 키를 누르십시오.", diff --git a/core/l10n/ko.json b/core/l10n/ko.json index 76d916971d0..d936bdb405c 100644 --- a/core/l10n/ko.json +++ b/core/l10n/ko.json @@ -13,6 +13,7 @@ "No valid crop data provided" : "올바른 잘라내기 데이터가 지정되지 않음", "Crop is not square" : "잘라내는 영역이 사각형이 아님", "State token does not match" : "상태 토크인 일치하지 않음", + "Password reset is disabled" : "암호 리셋이 비활성화 되었습니다.", "Couldn't reset password because the token is invalid" : "토큰이 잘못되었기 때문에 암호를 초기화할 수 없습니다", "Couldn't reset password because the token is expired" : "토큰이 만료되어 암호를 초기화할 수 없습니다", "Could not send reset email because there is no email address for this username. Please contact your administrator." : "이 사용자 이름과 연결된 이메일 주소가 없어서 초기화 메일을 보낼 수 없습니다. 시스템 관리자에게 연락하십시오.", @@ -77,6 +78,8 @@ "Yes" : "예", "No files in here" : "여기에 파일이 없음", "Choose" : "선택", + "Copy" : "복사", + "Move" : "이동", "Error loading file picker template: {error}" : "파일 선택 템플릿을 불러오는 중 오류 발생: {error}", "OK" : "확인", "Error loading message template: {error}" : "메시지 템플릿을 불러오는 중 오류 발생: {error}", @@ -92,6 +95,8 @@ "({count} selected)" : "({count}개 선택됨)", "Error loading file exists template" : "파일 존재함 템플릿을 불러오는 중 오류 발생", "Pending" : "보류 중", + "Copy to {folder}" : "[folder] 에 복사하기", + "Move to {folder}" : "[folder] 에 이동하기", "Very weak password" : "매우 약한 암호", "Weak password" : "약한 암호", "So-so password" : "그저 그런 암호", @@ -121,7 +126,6 @@ "Expiration date" : "만료 날짜", "Choose a password for the public link" : "공개 링크 암호를 입력하십시오", "Copied!" : "복사 성공!", - "Copy" : "복사", "Not supported!" : "지원하지 않음!", "Press ⌘-C to copy." : "복사하려면 ⌘-C 키를 누르십시오.", "Press Ctrl-C to copy." : "복사하려면 Ctrl-C 키를 누르십시오.", diff --git a/core/l10n/lt_LT.js b/core/l10n/lt_LT.js index 541bbd81625..0a9b11084e0 100644 --- a/core/l10n/lt_LT.js +++ b/core/l10n/lt_LT.js @@ -84,6 +84,7 @@ OC.L10N.register( "Yes" : "Taip", "No files in here" : "Duomenų nėra", "Choose" : "Pasirinkti", + "Copy" : "Kopijuoti", "Error loading file picker template: {error}" : "Klaida įkeliant failo parinkimo ruošinį: {error}", "OK" : "Gerai", "Error loading message template: {error}" : "Klaida įkeliant žinutės ruošinį: {error}", @@ -112,7 +113,7 @@ OC.L10N.register( "You are currently running PHP {version}. We encourage you to upgrade your PHP version to take advantage of <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it." : "Naudojama {version} PHP versija. Rekomenduojame atnaujinti PHP versiją ir turėti <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\"> geresnį sistemos efektyvumą ir saugumą užtikrinančius atnaujinimus iš PHP Group </a>", "The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Tarpinio serverio antraščių konfigūracija neteisinga, nebent jūs bandote pasiekti NextCloud per patikimą tarpinį serverį. Jei jūs nebandote pasiekti NextCloud per patikimą tarpinį serverį, tai yra tikėtina, kad turite saugumo problemą, kuri leidžia įsilaužėliams šnipinėti prisijungiančius IP adresus. Detalesnę informaciją galima rasti <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentacijoje</a>.", "Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Sukonfigūruota \"Memcached\" skirstoma spartinančiosios atminties sistema, tačiau neteisingas PHP modulis \"memcache\" yra įdiegtas. \\OC\\Memcache\\Memcached palaiko \"memcached\" sistemą, o ne \"memcache\". Dėl detalesnės informacijos žiūrėkite <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki pasakojimą apie abu modulius</a>.", - "Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Kai kurie duomenys neįveikė integralumo patikrinimo. Detalesnę informaciją, kaip išspręsti šią problemą galima rasti mūsų <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentacijoje</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Sugadintų rinkmenų sąrašas...</a> / <a href=\"{rescanEndpoint}\">Patikrinti iš naujo...</a>)", + "Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Kai kurie failai nepraėjo vientisumo patikrinimo. Tolimesnę informaciją apie tai, kaip išspręsti šią problemą, galima rasti mūsų <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentacijoje</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Neteisingų failų sąrašas…</a> / <a href=\"{rescanEndpoint}\">Peržiūrėti iš naujo…</a>)", "The PHP OPcache is not properly configured. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">For better performance we recommend</a> to use following settings in the <code>php.ini</code>:" : "PHP OPcache yra neteisingai sukonfigūruotas. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Siekiant geresnio sistemos našumo rekomenduojame</a> įrašyti šiuos nustatymus <code>php.ini</code> byloje:", "The PHP function \"set_time_limit\" is not available. This could result in scripts being halted mid-execution, breaking your installation. We strongly recommend enabling this function." : "PHP sistemos funkcija \"set_time_limit\" yra nepasiekiama. To pasekmėje, tikėtina, kad įdiegta sistema bus sugadinta. Primygtinai reikalaujame įjungti šią funkciją.", "Error occurred while checking server setup" : "Tikrinant serverio sąranką, įvyko klaida", @@ -130,7 +131,6 @@ OC.L10N.register( "Choose a password for the public link" : "Pasirinkite slaptažodį, skirtą nuorodai atidaryti", "Choose a password for the public link or press the \"Enter\" key" : "Pasirinkite slaptažodį, skirtą nuorodai atidaryti arba paspauskite \"Enter\" klavišą", "Copied!" : "Nukopijuota!", - "Copy" : "Kopijuoti", "Not supported!" : "Nepalaikoma!", "Press ⌘-C to copy." : "Norėdami nukopijuoti, paspauskite ⌘-C.", "Press Ctrl-C to copy." : "Norėdami nukopijuoti, paspauskite Ctrl-C.", @@ -272,7 +272,7 @@ OC.L10N.register( "Stay logged in" : "Likti prisijungus", "Alternative Logins" : "Alternatyvūs prisijungimai", "Account access" : "Paskyros prieiga", - "You are about to grant %s access to your %s account." : "Leisite %s naudoti jūsų %s paskyrą.", + "You are about to grant %s access to your %s account." : "Jūs ketinate suteikti %s prieigą prie savo %s paskyros.", "App token" : "Išorinės sistemos įskiepio kodas", "Alternative login using app token" : "Alternatyvus prisijungimas naudojant išorinės sistemos kodą", "Redirecting …" : "Nukreipiama...", diff --git a/core/l10n/lt_LT.json b/core/l10n/lt_LT.json index 3465b72f495..9dd7fa88d22 100644 --- a/core/l10n/lt_LT.json +++ b/core/l10n/lt_LT.json @@ -82,6 +82,7 @@ "Yes" : "Taip", "No files in here" : "Duomenų nėra", "Choose" : "Pasirinkti", + "Copy" : "Kopijuoti", "Error loading file picker template: {error}" : "Klaida įkeliant failo parinkimo ruošinį: {error}", "OK" : "Gerai", "Error loading message template: {error}" : "Klaida įkeliant žinutės ruošinį: {error}", @@ -110,7 +111,7 @@ "You are currently running PHP {version}. We encourage you to upgrade your PHP version to take advantage of <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it." : "Naudojama {version} PHP versija. Rekomenduojame atnaujinti PHP versiją ir turėti <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\"> geresnį sistemos efektyvumą ir saugumą užtikrinančius atnaujinimus iš PHP Group </a>", "The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Tarpinio serverio antraščių konfigūracija neteisinga, nebent jūs bandote pasiekti NextCloud per patikimą tarpinį serverį. Jei jūs nebandote pasiekti NextCloud per patikimą tarpinį serverį, tai yra tikėtina, kad turite saugumo problemą, kuri leidžia įsilaužėliams šnipinėti prisijungiančius IP adresus. Detalesnę informaciją galima rasti <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentacijoje</a>.", "Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Sukonfigūruota \"Memcached\" skirstoma spartinančiosios atminties sistema, tačiau neteisingas PHP modulis \"memcache\" yra įdiegtas. \\OC\\Memcache\\Memcached palaiko \"memcached\" sistemą, o ne \"memcache\". Dėl detalesnės informacijos žiūrėkite <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki pasakojimą apie abu modulius</a>.", - "Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Kai kurie duomenys neįveikė integralumo patikrinimo. Detalesnę informaciją, kaip išspręsti šią problemą galima rasti mūsų <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentacijoje</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Sugadintų rinkmenų sąrašas...</a> / <a href=\"{rescanEndpoint}\">Patikrinti iš naujo...</a>)", + "Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Kai kurie failai nepraėjo vientisumo patikrinimo. Tolimesnę informaciją apie tai, kaip išspręsti šią problemą, galima rasti mūsų <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentacijoje</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Neteisingų failų sąrašas…</a> / <a href=\"{rescanEndpoint}\">Peržiūrėti iš naujo…</a>)", "The PHP OPcache is not properly configured. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">For better performance we recommend</a> to use following settings in the <code>php.ini</code>:" : "PHP OPcache yra neteisingai sukonfigūruotas. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Siekiant geresnio sistemos našumo rekomenduojame</a> įrašyti šiuos nustatymus <code>php.ini</code> byloje:", "The PHP function \"set_time_limit\" is not available. This could result in scripts being halted mid-execution, breaking your installation. We strongly recommend enabling this function." : "PHP sistemos funkcija \"set_time_limit\" yra nepasiekiama. To pasekmėje, tikėtina, kad įdiegta sistema bus sugadinta. Primygtinai reikalaujame įjungti šią funkciją.", "Error occurred while checking server setup" : "Tikrinant serverio sąranką, įvyko klaida", @@ -128,7 +129,6 @@ "Choose a password for the public link" : "Pasirinkite slaptažodį, skirtą nuorodai atidaryti", "Choose a password for the public link or press the \"Enter\" key" : "Pasirinkite slaptažodį, skirtą nuorodai atidaryti arba paspauskite \"Enter\" klavišą", "Copied!" : "Nukopijuota!", - "Copy" : "Kopijuoti", "Not supported!" : "Nepalaikoma!", "Press ⌘-C to copy." : "Norėdami nukopijuoti, paspauskite ⌘-C.", "Press Ctrl-C to copy." : "Norėdami nukopijuoti, paspauskite Ctrl-C.", @@ -270,7 +270,7 @@ "Stay logged in" : "Likti prisijungus", "Alternative Logins" : "Alternatyvūs prisijungimai", "Account access" : "Paskyros prieiga", - "You are about to grant %s access to your %s account." : "Leisite %s naudoti jūsų %s paskyrą.", + "You are about to grant %s access to your %s account." : "Jūs ketinate suteikti %s prieigą prie savo %s paskyros.", "App token" : "Išorinės sistemos įskiepio kodas", "Alternative login using app token" : "Alternatyvus prisijungimas naudojant išorinės sistemos kodą", "Redirecting …" : "Nukreipiama...", diff --git a/core/l10n/lv.js b/core/l10n/lv.js index 56157fb3a95..87bfb3834a3 100644 --- a/core/l10n/lv.js +++ b/core/l10n/lv.js @@ -84,6 +84,7 @@ OC.L10N.register( "Yes" : "Jā", "No files in here" : "Šeit nav datņu", "Choose" : "Izvēlieties", + "Copy" : "Kopēt", "Error loading file picker template: {error}" : "Kļūda ielādējot izvēlēto veidni: {error}", "OK" : "Labi", "Error loading message template: {error}" : "Kļūda ielādējot ziņojuma veidni: {error}", @@ -114,7 +115,6 @@ OC.L10N.register( "Choose a password for the public link" : "Izvēlies paroli publiskai saitei", "Choose a password for the public link or press the \"Enter\" key" : "Izvēlies paroli publiskai saitei vai nospiediet \"Enter\" taustiņu", "Copied!" : "Nokopēts!", - "Copy" : "Kopēt", "Not supported!" : "Nav atbalstīts!", "Press ⌘-C to copy." : "Spiet ⌘-C lai kopētu.", "Press Ctrl-C to copy." : "Spiet Ctrl-C lai kopētu.", diff --git a/core/l10n/lv.json b/core/l10n/lv.json index 6deeac97c20..d4c464e39ac 100644 --- a/core/l10n/lv.json +++ b/core/l10n/lv.json @@ -82,6 +82,7 @@ "Yes" : "Jā", "No files in here" : "Šeit nav datņu", "Choose" : "Izvēlieties", + "Copy" : "Kopēt", "Error loading file picker template: {error}" : "Kļūda ielādējot izvēlēto veidni: {error}", "OK" : "Labi", "Error loading message template: {error}" : "Kļūda ielādējot ziņojuma veidni: {error}", @@ -112,7 +113,6 @@ "Choose a password for the public link" : "Izvēlies paroli publiskai saitei", "Choose a password for the public link or press the \"Enter\" key" : "Izvēlies paroli publiskai saitei vai nospiediet \"Enter\" taustiņu", "Copied!" : "Nokopēts!", - "Copy" : "Kopēt", "Not supported!" : "Nav atbalstīts!", "Press ⌘-C to copy." : "Spiet ⌘-C lai kopētu.", "Press Ctrl-C to copy." : "Spiet Ctrl-C lai kopētu.", diff --git a/core/l10n/nb.js b/core/l10n/nb.js index 35455d2be81..05a408ccdbe 100644 --- a/core/l10n/nb.js +++ b/core/l10n/nb.js @@ -84,6 +84,8 @@ OC.L10N.register( "Yes" : "Ja", "No files in here" : "Ingen filer her", "Choose" : "Velg", + "Copy" : "Kopier", + "Move" : "Flytt", "Error loading file picker template: {error}" : "Feil ved lasting av filvelger-mal: {error}", "OK" : "OK", "Error loading message template: {error}" : "Feil ved lasting av meldingsmal: {error}", @@ -99,6 +101,8 @@ OC.L10N.register( "({count} selected)" : "({count} valgt)", "Error loading file exists template" : "Feil ved lasting av \"filen eksisterer\"-mal", "Pending" : "Venter", + "Copy to {folder}" : "Kopier til {mappe}", + "Move to {folder}" : "Flytt til {mappe}", "Very weak password" : "Veldig svakt passord", "Weak password" : "Svakt passord", "So-so password" : "Bob-bob-passord", @@ -130,7 +134,6 @@ OC.L10N.register( "Choose a password for the public link" : "Velg et passord for den offentlige lenken", "Choose a password for the public link or press the \"Enter\" key" : "Velg et passord for den offentlige lenken eller trykk \"Enter\"-tasten", "Copied!" : "Kopiert!", - "Copy" : "Kopier", "Not supported!" : "Ikke støttet!", "Press ⌘-C to copy." : "Trykk ⌘-C for å kopiere", "Press Ctrl-C to copy." : "Trykk Ctrl-C for å kopiere", diff --git a/core/l10n/nb.json b/core/l10n/nb.json index f56f9ea0d11..120c141cd63 100644 --- a/core/l10n/nb.json +++ b/core/l10n/nb.json @@ -82,6 +82,8 @@ "Yes" : "Ja", "No files in here" : "Ingen filer her", "Choose" : "Velg", + "Copy" : "Kopier", + "Move" : "Flytt", "Error loading file picker template: {error}" : "Feil ved lasting av filvelger-mal: {error}", "OK" : "OK", "Error loading message template: {error}" : "Feil ved lasting av meldingsmal: {error}", @@ -97,6 +99,8 @@ "({count} selected)" : "({count} valgt)", "Error loading file exists template" : "Feil ved lasting av \"filen eksisterer\"-mal", "Pending" : "Venter", + "Copy to {folder}" : "Kopier til {mappe}", + "Move to {folder}" : "Flytt til {mappe}", "Very weak password" : "Veldig svakt passord", "Weak password" : "Svakt passord", "So-so password" : "Bob-bob-passord", @@ -128,7 +132,6 @@ "Choose a password for the public link" : "Velg et passord for den offentlige lenken", "Choose a password for the public link or press the \"Enter\" key" : "Velg et passord for den offentlige lenken eller trykk \"Enter\"-tasten", "Copied!" : "Kopiert!", - "Copy" : "Kopier", "Not supported!" : "Ikke støttet!", "Press ⌘-C to copy." : "Trykk ⌘-C for å kopiere", "Press Ctrl-C to copy." : "Trykk Ctrl-C for å kopiere", diff --git a/core/l10n/nl.js b/core/l10n/nl.js index fd5c82bff85..dafcc421e9b 100644 --- a/core/l10n/nl.js +++ b/core/l10n/nl.js @@ -84,6 +84,8 @@ OC.L10N.register( "Yes" : "Ja", "No files in here" : "Hier geen bestanden", "Choose" : "Kies", + "Copy" : "Kopiëren", + "Move" : "Verplaats", "Error loading file picker template: {error}" : "Fout bij laden bestandenselecteur sjabloon: {error}", "OK" : "OK", "Error loading message template: {error}" : "Fout bij laden berichtensjabloon: {error}", @@ -99,6 +101,8 @@ OC.L10N.register( "({count} selected)" : "({count} geselecteerd)", "Error loading file exists template" : "Fout bij laden bestand bestaat al sjabloon", "Pending" : "Onderhanden", + "Copy to {folder}" : "Copiëer naar {folder}", + "Move to {folder}" : "Verplaats naar {folder}", "Very weak password" : "Zeer zwak wachtwoord", "Weak password" : "Zwak wachtwoord", "So-so password" : "Matig wachtwoord", @@ -130,7 +134,6 @@ OC.L10N.register( "Choose a password for the public link" : "Kies een wachtwoord voor de openbare link", "Choose a password for the public link or press the \"Enter\" key" : "Kies een wachtwoord voor de openbare link of druk op \"Enter\"", "Copied!" : "Gekopieerd!", - "Copy" : "Kopiëren", "Not supported!" : "Niet ondersteund!", "Press ⌘-C to copy." : "Druk op ⌘-C om te kopiëren.", "Press Ctrl-C to copy." : "Druk op Ctrl-C om te kopiëren.", diff --git a/core/l10n/nl.json b/core/l10n/nl.json index ae8f0c771af..1ee3fb222af 100644 --- a/core/l10n/nl.json +++ b/core/l10n/nl.json @@ -82,6 +82,8 @@ "Yes" : "Ja", "No files in here" : "Hier geen bestanden", "Choose" : "Kies", + "Copy" : "Kopiëren", + "Move" : "Verplaats", "Error loading file picker template: {error}" : "Fout bij laden bestandenselecteur sjabloon: {error}", "OK" : "OK", "Error loading message template: {error}" : "Fout bij laden berichtensjabloon: {error}", @@ -97,6 +99,8 @@ "({count} selected)" : "({count} geselecteerd)", "Error loading file exists template" : "Fout bij laden bestand bestaat al sjabloon", "Pending" : "Onderhanden", + "Copy to {folder}" : "Copiëer naar {folder}", + "Move to {folder}" : "Verplaats naar {folder}", "Very weak password" : "Zeer zwak wachtwoord", "Weak password" : "Zwak wachtwoord", "So-so password" : "Matig wachtwoord", @@ -128,7 +132,6 @@ "Choose a password for the public link" : "Kies een wachtwoord voor de openbare link", "Choose a password for the public link or press the \"Enter\" key" : "Kies een wachtwoord voor de openbare link of druk op \"Enter\"", "Copied!" : "Gekopieerd!", - "Copy" : "Kopiëren", "Not supported!" : "Niet ondersteund!", "Press ⌘-C to copy." : "Druk op ⌘-C om te kopiëren.", "Press Ctrl-C to copy." : "Druk op Ctrl-C om te kopiëren.", diff --git a/core/l10n/pl.js b/core/l10n/pl.js index 6d56f2213a6..c824ba067d7 100644 --- a/core/l10n/pl.js +++ b/core/l10n/pl.js @@ -84,6 +84,7 @@ OC.L10N.register( "Yes" : "Tak", "No files in here" : "Nie ma tu żadnych plików", "Choose" : "Wybierz", + "Copy" : "Skopiuj", "Error loading file picker template: {error}" : "Błąd podczas ładowania pliku wybranego szablonu: {error}", "OK" : "OK", "Error loading message template: {error}" : "Błąd podczas ładowania szablonu wiadomości: {error}", @@ -130,7 +131,6 @@ OC.L10N.register( "Choose a password for the public link" : "Wybierz hasło dla linku publicznego", "Choose a password for the public link or press the \"Enter\" key" : "Wybierz hasło dla publicznego linka lub wciśnij klawisz \"Enter\"", "Copied!" : "Skopiowano!", - "Copy" : "Skopiuj", "Not supported!" : "Brak wsparcia!", "Press ⌘-C to copy." : "Wciśnij ⌘-C by skopiować.", "Press Ctrl-C to copy." : "Wciśnij Ctrl-C by skopiować,", diff --git a/core/l10n/pl.json b/core/l10n/pl.json index 1d8b1f51ca8..79d4677e6a0 100644 --- a/core/l10n/pl.json +++ b/core/l10n/pl.json @@ -82,6 +82,7 @@ "Yes" : "Tak", "No files in here" : "Nie ma tu żadnych plików", "Choose" : "Wybierz", + "Copy" : "Skopiuj", "Error loading file picker template: {error}" : "Błąd podczas ładowania pliku wybranego szablonu: {error}", "OK" : "OK", "Error loading message template: {error}" : "Błąd podczas ładowania szablonu wiadomości: {error}", @@ -128,7 +129,6 @@ "Choose a password for the public link" : "Wybierz hasło dla linku publicznego", "Choose a password for the public link or press the \"Enter\" key" : "Wybierz hasło dla publicznego linka lub wciśnij klawisz \"Enter\"", "Copied!" : "Skopiowano!", - "Copy" : "Skopiuj", "Not supported!" : "Brak wsparcia!", "Press ⌘-C to copy." : "Wciśnij ⌘-C by skopiować.", "Press Ctrl-C to copy." : "Wciśnij Ctrl-C by skopiować,", diff --git a/core/l10n/pt_BR.js b/core/l10n/pt_BR.js index c31767a2279..91558548b2d 100644 --- a/core/l10n/pt_BR.js +++ b/core/l10n/pt_BR.js @@ -84,6 +84,8 @@ OC.L10N.register( "Yes" : "Sim", "No files in here" : "Nenhum arquivos aqui", "Choose" : "Escolher", + "Copy" : "Copiar", + "Move" : "Mover", "Error loading file picker template: {error}" : "Erro carregando o seletor de modelo de arquivos: {error}", "OK" : "OK", "Error loading message template: {error}" : "Erro carregando o modelo de mensagem: {error}", @@ -99,6 +101,8 @@ OC.L10N.register( "({count} selected)" : "({count} selecionados)", "Error loading file exists template" : "Erro carregando arquivo. Já existe o modelo", "Pending" : "Pendente", + "Copy to {folder}" : "Copiar para {folder}", + "Move to {folder}" : "Mover para {folder}", "Very weak password" : "Senha muito fraca", "Weak password" : "Senha fraca", "So-so password" : "Senha mais ou menos", @@ -130,7 +134,6 @@ OC.L10N.register( "Choose a password for the public link" : "Escolha uma senha para o link público", "Choose a password for the public link or press the \"Enter\" key" : "Escolha uma senha para o link público ou pressione \"Enter\"", "Copied!" : "Copiado!", - "Copy" : "Copiar", "Not supported!" : "Não suportado!", "Press ⌘-C to copy." : "Pressione ⌘-C para copiar.", "Press Ctrl-C to copy." : "Pressione Ctrl-C para copiar.", diff --git a/core/l10n/pt_BR.json b/core/l10n/pt_BR.json index 40b0b530482..c6e45c95b30 100644 --- a/core/l10n/pt_BR.json +++ b/core/l10n/pt_BR.json @@ -82,6 +82,8 @@ "Yes" : "Sim", "No files in here" : "Nenhum arquivos aqui", "Choose" : "Escolher", + "Copy" : "Copiar", + "Move" : "Mover", "Error loading file picker template: {error}" : "Erro carregando o seletor de modelo de arquivos: {error}", "OK" : "OK", "Error loading message template: {error}" : "Erro carregando o modelo de mensagem: {error}", @@ -97,6 +99,8 @@ "({count} selected)" : "({count} selecionados)", "Error loading file exists template" : "Erro carregando arquivo. Já existe o modelo", "Pending" : "Pendente", + "Copy to {folder}" : "Copiar para {folder}", + "Move to {folder}" : "Mover para {folder}", "Very weak password" : "Senha muito fraca", "Weak password" : "Senha fraca", "So-so password" : "Senha mais ou menos", @@ -128,7 +132,6 @@ "Choose a password for the public link" : "Escolha uma senha para o link público", "Choose a password for the public link or press the \"Enter\" key" : "Escolha uma senha para o link público ou pressione \"Enter\"", "Copied!" : "Copiado!", - "Copy" : "Copiar", "Not supported!" : "Não suportado!", "Press ⌘-C to copy." : "Pressione ⌘-C para copiar.", "Press Ctrl-C to copy." : "Pressione Ctrl-C para copiar.", diff --git a/core/l10n/pt_PT.js b/core/l10n/pt_PT.js index 7c22aa948e8..d7b3e5a5155 100644 --- a/core/l10n/pt_PT.js +++ b/core/l10n/pt_PT.js @@ -67,6 +67,7 @@ OC.L10N.register( "Yes" : "Sim", "No files in here" : "Não ficheiros aqui", "Choose" : "Escolher", + "Copy" : "Copiar", "Error loading file picker template: {error}" : "Ocorreu um erro ao carregar o modelo de seleção de ficheiro: {error}", "Error loading message template: {error}" : "Ocorreu um erro ao carregar o modelo: {error}", "read-only" : "só de leitura", @@ -109,7 +110,6 @@ OC.L10N.register( "Expiration date" : "Data de expiração", "Choose a password for the public link" : "Defina a palavra-passe para a hiperligação pública", "Copied!" : "Copiado!", - "Copy" : "Copiar", "Not supported!" : "Não suportado!", "Press ⌘-C to copy." : "Prima ⌘-C para copiar.", "Press Ctrl-C to copy." : "Prima Ctrl-C para copiar.", diff --git a/core/l10n/pt_PT.json b/core/l10n/pt_PT.json index 7febe97fe2f..bbad764c6d9 100644 --- a/core/l10n/pt_PT.json +++ b/core/l10n/pt_PT.json @@ -65,6 +65,7 @@ "Yes" : "Sim", "No files in here" : "Não ficheiros aqui", "Choose" : "Escolher", + "Copy" : "Copiar", "Error loading file picker template: {error}" : "Ocorreu um erro ao carregar o modelo de seleção de ficheiro: {error}", "Error loading message template: {error}" : "Ocorreu um erro ao carregar o modelo: {error}", "read-only" : "só de leitura", @@ -107,7 +108,6 @@ "Expiration date" : "Data de expiração", "Choose a password for the public link" : "Defina a palavra-passe para a hiperligação pública", "Copied!" : "Copiado!", - "Copy" : "Copiar", "Not supported!" : "Não suportado!", "Press ⌘-C to copy." : "Prima ⌘-C para copiar.", "Press Ctrl-C to copy." : "Prima Ctrl-C para copiar.", diff --git a/core/l10n/ro.js b/core/l10n/ro.js index 4c2f7af4e8e..c945f070b96 100644 --- a/core/l10n/ro.js +++ b/core/l10n/ro.js @@ -14,10 +14,15 @@ OC.L10N.register( "No crop data provided" : "Nu există informație pentru operațiunea crop", "No valid crop data provided" : "Nu există informație validă pentru operațiunea crop", "Crop is not square" : "Selecția nu este pătrată", + "State token does not match" : "Statusul token-ului nu se potrivește", + "Password reset is disabled" : "Resetarea parolei este dezactivată.", "Couldn't reset password because the token is invalid" : "Parola nu a putut fi resetată deoarece token-ul este invalid", - "Couldn't reset password because the token is expired" : "Parola nu a putut fi resetată deoarece token-ul a expirat", - "Could not send reset email because there is no email address for this username. Please contact your administrator." : "Nu a putut fi trimis un email pentru resetare deoarece nu există o adresă email pentru acest utilizator. Contactează-ți administratorul.", + "Couldn't reset password because the token is expired" : "Parola nu a putut fi resetată deoarece token-ul este expirat", + "Could not send reset email because there is no email address for this username. Please contact your administrator." : "Nu a putut fi trimis un email pentru resetare deoarece nu există o adresă de email pentru acest utilizator. Vă rugăm contactați administratorul.", "Password reset" : "Resetare parolă", + "Click the following button to reset your password. If you have not requested the password reset, then ignore this email." : "Apăsați butonul următor pentru resetarea parolei dumneavoastră. Dacă nu ați solicitat resetarea parolei, ignorați acest email.", + "Click the following link to reset your password. If you have not requested the password reset, then ignore this email." : "Apăsați link-ul următor pentru resetarea parolei dumneavoastră. Dacă nu ați solicitat resetarea parolei, ignorați acest email.", + "Reset your password" : "Resetați-vă parola", "%s password reset" : "%s resetare parola", "Couldn't send reset email. Please contact your administrator." : "Expedierea email-ului de resetare a eşuat. Vă rugăm să contactaţi administratorul dvs.", "Couldn't send reset email. Please make sure your username is correct." : "Nu a putut fi trimis un email pentru resetare. Asigură-te că numele de utilizator este corect.", @@ -35,6 +40,9 @@ OC.L10N.register( "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Se verifică dacă schema bazei de date poate fi actualizată (această verificare poate lua mult timp în funcție de mărimea bazei de date)", "Checked database schema update" : "S-a verificat actualizarea schemei bazei de date", "Checking updates of apps" : "Se verifică actualizările aplicațiilor", + "Checking for update of app \"%s\" in appstore" : "Se verifică dacă sunt actualizări pentru aplicația \"%s\" în magazinul de aplicații", + "Update app \"%s\" from appstore" : "Actualizare aplicație \"%s\" din magazinul de aplicații", + "Checked for update of app \"%s\" in appstore" : "S-a verificat dacă sunt actualizări pentru aplicația \"%s\" în magazinul de aplicații", "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Se verifică dacă schema bazei de date pentru %s poate fi actualizată (poate dura un timp îndelungat, în funcție de dimensiunea bazei de date)", "Checked database schema update for apps" : "S-a verificat actualizarea schemei bazei de date pentru aplicații", "Updated \"%s\" to %s" : "\"%s\" a fost actualizat până la %s", @@ -47,8 +55,14 @@ OC.L10N.register( "Following apps have been disabled: %s" : "Următoarele aplicații au fost dezactivate: %s", "Already up to date" : "Deja actualizat", "Search contacts …" : "Cauta contacte ...", + "No contacts found" : "Nu s-au găsit contacte", "Show all contacts …" : "Arata toate contactele ...", + "There was an error loading your contacts" : "A apărut o eroare la încărcarea contactelor ", + "Loading your contacts …" : "Se încarcă contactele ...", + "Looking for {term} …" : "Se caută {term} …", "<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">Au apărut probleme la verificarea integrității codului. Mai multe informații…</a>", + "No action available" : "Nici o acțiune disponibilă", + "Error fetching contact actions" : "A apărut o eroare la preluarea activităților privind contactele", "Settings" : "Setări", "Connection to server lost" : "S-a pierdut conexiunea la server", "_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["Probleme la încărcarea paginii, se reîncarcă într-o secundă","Probleme la încărcarea paginii, se reîncarcă în câteva secunde","Probleme la încărcarea paginii, se reîncarcă în %n secunde"], @@ -70,7 +84,9 @@ OC.L10N.register( "Yes" : "Da", "No files in here" : "Nu există fișiere aici", "Choose" : "Alege", + "Copy" : "Copiază", "Error loading file picker template: {error}" : "Eroare la încărcarea șablonului selectorului de fișiere: {error}", + "OK" : "OK", "Error loading message template: {error}" : "Eroare la încărcarea şablonului de mesaje: {error}", "read-only" : "doar citire", "_{count} file conflict_::_{count} file conflicts_" : ["Un conflict de fişiere","{count} conflicte de fişiere","{count} conflicte de fişiere"], @@ -98,7 +114,10 @@ OC.L10N.register( "The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Configurarea headerelor pentru <i>reverse proxy</i> sunt incorecte, sau accesezi Nextcloud printr-un proxy de încredere. Dacă nu accesezi Nextcloud printr-un proxy de încredere, aceasta este o problemă de securitate și poate permite unui atacator mascarea adresei IP vizibile pentru Nextcloud. Mai multe informații pot fi găsite în <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentație</a>.", "Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached este configurat ca și cache distribuit, dar este instalat un modul PHP greșit pentru ”memcache”. \\OC\\Memcache\\Memcached suportă numai ”memcached” și nu ”memcache”. Vezi și <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">wiki-ul memcached despre ambele module</a>.", "Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Unele fișiere nu au trecut de verificarea de integritate. Mai multe informații despre cum se rezolvă această problemă pot fi găsite în <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentație</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Lista fișierelor non-valide…</a> / <a href=\"{rescanEndpoint}\">Rescanează…</a>)", + "The PHP OPcache is not properly configured. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">For better performance we recommend</a> to use following settings in the <code>php.ini</code>:" : "OPcache pentru PHP nu este configurat corespunzător. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\"> Pentru o performanță mai bună recomandăm </a> folosirea următoarelor setări în <code>php.ini</code>:", + "The PHP function \"set_time_limit\" is not available. This could result in scripts being halted mid-execution, breaking your installation. We strongly recommend enabling this function." : "Funcția PHP \"set_time_limit\" nu este disponibilă. Aceasta ar putea determina oprirea scripturilor în timpul rulării, blocarea instalării. Recomandăm insistent activarea acestei funcții.", "Error occurred while checking server setup" : "A apărut o eroare la verificarea configurației serverului", + "Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Directorul de date și fișierele tale sunt probabil accesibile de pe Internet. Fișierul .htaccess nu funcționează. Îți recomandăm cu tărie să configurezi serverul web astfel încât directorul de date să nu mai fie accesibil, sau să muți folderul în afara rădăcinii serverului web.", "The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "Header-ul HTTP ”{header}” nu este configurat să fie identic cu \"{expected}\". Aceasta reprezintă un potențial risc de securitate sau de confidențialitate și recomandăm modificarea corespunzătoare a acestei setări.", "The \"Strict-Transport-Security\" HTTP header is not configured to at least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\" rel=\"noreferrer\">security tips</a>." : "Header-ul HTTP \"Strict-Transport-Security\" nu este configurat cu cel puțin \"{seconds}\" secunde. Pentru o securitate îmbunătățită recomandăm activarea HSTS așa cum este descris în <a href=\"{docUrl}\" rel=\"noreferrer\">sfaturile de securitate</a>.", "You are accessing this site via HTTP. We strongly suggest you configure your server to require using HTTPS instead as described in our <a href=\"{docUrl}\">security tips</a>." : "Accesezi acest site prin HTTP. Îți sugerăm cu tărie să configurezi serverul tău să foloseasca HTTPS, așa cum este descris în <a href=\"{docUrl}\" rel=\"noreferrer\">sfaturile de securitate</a>.", @@ -110,12 +129,13 @@ OC.L10N.register( "Expiration" : "Expira", "Expiration date" : "Data expirării", "Choose a password for the public link" : "Alege o parolă pentru acest link public", + "Choose a password for the public link or press the \"Enter\" key" : "Alege o parolă pentru link-ul public sau apasă \"Enter\"", "Copied!" : "S-a copiat!", - "Copy" : "Copiază", "Not supported!" : "Nu este suportat!", "Press ⌘-C to copy." : "Apasă ⌘-C pentru a copia.", "Press Ctrl-C to copy." : "Apasă Ctrl+C pentru a copia.", "Resharing is not allowed" : "Repartajarea nu este permisă", + "Share to {name}" : "Distribuie către {name}", "Share link" : "Împărtășește link-ul", "Link" : "Legătură", "Password protect" : "Protejare cu parolă", @@ -123,15 +143,22 @@ OC.L10N.register( "Email link to person" : "Expediază legătura prin poșta electronică", "Send" : "Trimite", "Allow upload and editing" : "Permite încărcarea și editarea", + "Read only" : "Doar citire", "File drop (upload only)" : "Aruncă fișierul (numai încărcare)", "Shared with you and the group {group} by {owner}" : "Distribuie cu tine si grupul {group} de {owner}", "Shared with you by {owner}" : "Distribuie cu tine de {owner}", + "Choose a password for the mail share" : "Alege o parolă pentru partajare prin email", "{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} partajat prin legătura", "group" : "grup", "remote" : "de la distanță", "email" : "email", "shared by {sharer}" : "partajat de {sharer}", "Unshare" : "Anulare partajare", + "Can reshare" : "Poate repartaja", + "Can edit" : "Poate edita", + "Can create" : "Poate crea", + "Can change" : "Poate schimba", + "Can delete" : "Poate șterge", "Access control" : "Control acces", "Could not unshare" : "Nu s-a putut elimina partajarea", "Error while sharing" : "Eroare la partajare", @@ -144,7 +171,14 @@ OC.L10N.register( "{sharee} (group)" : "{sharee} (grup)", "{sharee} (remote)" : "{sharee} (distanță)", "{sharee} (email)" : "{sharee} (email)", + "{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})", "Share" : "Partajează", + "Share with other people by entering a user or group, a federated cloud ID or an email address." : "Partajează cu alte persoane prin introducerea unui utilizator sau grup, a unui ID de cloud federalizat sau a unei adrese de email.", + "Share with other people by entering a user or group or a federated cloud ID." : "Partajează cu alte persoane prin introducerea unui utilizator sau grup sau a unui ID de cloud federalizat.", + "Share with other people by entering a user or group or an email address." : "Partajează cu alte persoane prin introducerea unui utilizator sau grup sau a unei adrese de email.", + "Name or email address..." : "Nume sau adresă de email...", + "Name or federated cloud ID..." : "Nume sau ID de cloud federalizat...", + "Name, federated cloud ID or email address..." : "Nume, ID de cloud federalizat sau adresă de email...", "Name..." : "Nume ...", "Error" : "Eroare", "Error removing share" : "Eroare la înlăturarea elementului partajat", @@ -161,6 +195,7 @@ OC.L10N.register( "sunny" : "însorit", "Hello {name}, the weather is {weather}" : "Bună {name}, vremea este {weather}", "Hello {name}" : "Salut {name}", + "<strong>These are your search results<script>alert(1)</script></strong>" : "<strong>Acestea sunt rezultatele căutării tale<script>alert(1)</script></strong>", "new" : "nou", "_download %n file_::_download %n files_" : ["descarcă %n fișier","descarcă %n fișiere","descarcă %n fișiere"], "The update is in progress, leaving this page might interrupt the process in some environments." : "Actualizarea este în desfășurare, părăsirea acestei pagini ar putea întrerupe procesul în anumite medii.", @@ -171,6 +206,7 @@ OC.L10N.register( "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/nextcloud/server/issues\" target=\"_blank\">Nextcloud community</a>." : "Actualizarea nu a reușit. Te rugăm să raportezi această problemă <a href=\"https://github.com/nextcloud/server/issues\" target=\"_blank\">comunității Nextcloud</a>.", "Continue to Nextcloud" : "Continuă la Nextcloud", "Searching other places" : "Se caută în alte locuri", + "No search results in other folders for {tag}{filter}{endtag}" : "Nu au fost găsite rezultate în alte directoare pentru {tag}{filter}{endtag}", "_{count} search result in another folder_::_{count} search results in other folders_" : ["{count} rezultat al căutării în alte directoare","{count} rezultate ale căutării în alte directoare","{count} rezultate ale căutării în alte directoare"], "Personal" : "Personal", "Users" : "Utilizatori", @@ -182,6 +218,8 @@ OC.L10N.register( "The specified document has not been found on the server." : "Documentul specificat nu a fost găsit pe server.", "You can click here to return to %s." : "Poți da click aici pentru a te întoarce la %s.", "Internal Server Error" : "Eroare internă a serverului", + "The server was unable to complete your request." : "Serverul nu a reușit să proceseze cererea ta.", + "If this happens again, please send the technical details below to the server administrator." : "Dacă se repetă, te rugăm trimite detaliile tehnice către administratorul de server.", "More details can be found in the server log." : "Mai multe detalii pot fi găsite în jurnalul serverului.", "Technical details" : "Detalii tehnice", "Remote Address: %s" : "Adresa la distanță: %s", @@ -232,6 +270,11 @@ OC.L10N.register( "Log in" : "Autentificare", "Stay logged in" : "Rămâi autentificat", "Alternative Logins" : "Conectări alternative", + "Account access" : "Acces cont", + "You are about to grant %s access to your %s account." : "Ești pe cale să permiți %s accesul la %s contul tău.", + "App token" : "Token aplicație", + "Alternative login using app token" : "Conectare alternativă folosind token-ul aplicației", + "Redirecting …" : "Redirectare...", "New password" : "Noua parolă", "New Password" : "Noua Parolă", "Reset password" : "Resetează parola", @@ -240,6 +283,9 @@ OC.L10N.register( "Cancel log in" : "Anulează conectarea", "Use backup code" : "Folosește un cod de backup", "Error while validating your second factor" : "Eroare la validarea celui de-al doilea factor", + "Access through untrusted domain" : "Acces printr-un domeniu nesigur", + "Please contact your administrator. If you are an administrator, edit the \"trusted_domains\" setting in config/config.php like the example in config.sample.php." : "Vă rugăm contactați administratorul. Dacă sunteți administrator, editați setarea \"trusted_domains\" în config/config.php la fel ca în exemplul din config.sample.php", + "Depending on your configuration, this button could also work to trust the domain:" : "În funcție de configurație, acest buton poate fi folosit pentru a te încrede în domeniul:", "Add \"%s\" as trusted domain" : "Adaugă \"%s\" ca domeniu de încredere", "App update required" : "E necesară o actualizare a aplicației", "%s will be updated to version %s" : "%s va fi actualizat la versiunea %s", @@ -251,7 +297,10 @@ OC.L10N.register( "To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Pentru a evita timeout-uri la instalări de mari dimensiuni, poți rula în schimb următoarea comandă în folderul de instalare:", "Detailed logs" : "Loguri detaliate", "Update needed" : "E necesară actualizarea", + "Please use the command line updater because you have a big instance with more than 50 users." : "Vă rugăm folosiți actualizarea din linia de comandă pentru că aveți o sesiune mare cu mai mult de 50 de utilizatori.", "For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Pentru ajutor, verifică <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentația</a>.", + "I know that if I continue doing the update via web UI has the risk, that the request runs into a timeout and could cause data loss, but I have a backup and know how to restore my instance in case of a failure." : "Înțeleg că dacă continui să folosesc actualizarea din interfața web, există riscul ca cererea să expire și să cauzeze pierderi de date, dar am un backup și știu cum sa restaurez sesiunea în caz de eșec.", + "Upgrade via web on my own risk" : "Actualizare prin interfața web pe riscul meu", "This %s instance is currently in maintenance mode, which may take a while." : "Instanța %s este acum în modul de mentenanță, ceea ce ar putea dura o vreme.", "This page will refresh itself when the %s instance is available again." : "Această pagină se va reîmprospăta atunci când %s instance e disponibil din nou.", "Contact your system administrator if this message persists or appeared unexpectedly." : "Contactează-ți administratorul de sistem dacă acest mesaj persistă sau a apărut neașteptat.", diff --git a/core/l10n/ro.json b/core/l10n/ro.json index f139c1900d1..83f602d4ad3 100644 --- a/core/l10n/ro.json +++ b/core/l10n/ro.json @@ -12,10 +12,15 @@ "No crop data provided" : "Nu există informație pentru operațiunea crop", "No valid crop data provided" : "Nu există informație validă pentru operațiunea crop", "Crop is not square" : "Selecția nu este pătrată", + "State token does not match" : "Statusul token-ului nu se potrivește", + "Password reset is disabled" : "Resetarea parolei este dezactivată.", "Couldn't reset password because the token is invalid" : "Parola nu a putut fi resetată deoarece token-ul este invalid", - "Couldn't reset password because the token is expired" : "Parola nu a putut fi resetată deoarece token-ul a expirat", - "Could not send reset email because there is no email address for this username. Please contact your administrator." : "Nu a putut fi trimis un email pentru resetare deoarece nu există o adresă email pentru acest utilizator. Contactează-ți administratorul.", + "Couldn't reset password because the token is expired" : "Parola nu a putut fi resetată deoarece token-ul este expirat", + "Could not send reset email because there is no email address for this username. Please contact your administrator." : "Nu a putut fi trimis un email pentru resetare deoarece nu există o adresă de email pentru acest utilizator. Vă rugăm contactați administratorul.", "Password reset" : "Resetare parolă", + "Click the following button to reset your password. If you have not requested the password reset, then ignore this email." : "Apăsați butonul următor pentru resetarea parolei dumneavoastră. Dacă nu ați solicitat resetarea parolei, ignorați acest email.", + "Click the following link to reset your password. If you have not requested the password reset, then ignore this email." : "Apăsați link-ul următor pentru resetarea parolei dumneavoastră. Dacă nu ați solicitat resetarea parolei, ignorați acest email.", + "Reset your password" : "Resetați-vă parola", "%s password reset" : "%s resetare parola", "Couldn't send reset email. Please contact your administrator." : "Expedierea email-ului de resetare a eşuat. Vă rugăm să contactaţi administratorul dvs.", "Couldn't send reset email. Please make sure your username is correct." : "Nu a putut fi trimis un email pentru resetare. Asigură-te că numele de utilizator este corect.", @@ -33,6 +38,9 @@ "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Se verifică dacă schema bazei de date poate fi actualizată (această verificare poate lua mult timp în funcție de mărimea bazei de date)", "Checked database schema update" : "S-a verificat actualizarea schemei bazei de date", "Checking updates of apps" : "Se verifică actualizările aplicațiilor", + "Checking for update of app \"%s\" in appstore" : "Se verifică dacă sunt actualizări pentru aplicația \"%s\" în magazinul de aplicații", + "Update app \"%s\" from appstore" : "Actualizare aplicație \"%s\" din magazinul de aplicații", + "Checked for update of app \"%s\" in appstore" : "S-a verificat dacă sunt actualizări pentru aplicația \"%s\" în magazinul de aplicații", "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Se verifică dacă schema bazei de date pentru %s poate fi actualizată (poate dura un timp îndelungat, în funcție de dimensiunea bazei de date)", "Checked database schema update for apps" : "S-a verificat actualizarea schemei bazei de date pentru aplicații", "Updated \"%s\" to %s" : "\"%s\" a fost actualizat până la %s", @@ -45,8 +53,14 @@ "Following apps have been disabled: %s" : "Următoarele aplicații au fost dezactivate: %s", "Already up to date" : "Deja actualizat", "Search contacts …" : "Cauta contacte ...", + "No contacts found" : "Nu s-au găsit contacte", "Show all contacts …" : "Arata toate contactele ...", + "There was an error loading your contacts" : "A apărut o eroare la încărcarea contactelor ", + "Loading your contacts …" : "Se încarcă contactele ...", + "Looking for {term} …" : "Se caută {term} …", "<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">Au apărut probleme la verificarea integrității codului. Mai multe informații…</a>", + "No action available" : "Nici o acțiune disponibilă", + "Error fetching contact actions" : "A apărut o eroare la preluarea activităților privind contactele", "Settings" : "Setări", "Connection to server lost" : "S-a pierdut conexiunea la server", "_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["Probleme la încărcarea paginii, se reîncarcă într-o secundă","Probleme la încărcarea paginii, se reîncarcă în câteva secunde","Probleme la încărcarea paginii, se reîncarcă în %n secunde"], @@ -68,7 +82,9 @@ "Yes" : "Da", "No files in here" : "Nu există fișiere aici", "Choose" : "Alege", + "Copy" : "Copiază", "Error loading file picker template: {error}" : "Eroare la încărcarea șablonului selectorului de fișiere: {error}", + "OK" : "OK", "Error loading message template: {error}" : "Eroare la încărcarea şablonului de mesaje: {error}", "read-only" : "doar citire", "_{count} file conflict_::_{count} file conflicts_" : ["Un conflict de fişiere","{count} conflicte de fişiere","{count} conflicte de fişiere"], @@ -96,7 +112,10 @@ "The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Configurarea headerelor pentru <i>reverse proxy</i> sunt incorecte, sau accesezi Nextcloud printr-un proxy de încredere. Dacă nu accesezi Nextcloud printr-un proxy de încredere, aceasta este o problemă de securitate și poate permite unui atacator mascarea adresei IP vizibile pentru Nextcloud. Mai multe informații pot fi găsite în <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentație</a>.", "Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached este configurat ca și cache distribuit, dar este instalat un modul PHP greșit pentru ”memcache”. \\OC\\Memcache\\Memcached suportă numai ”memcached” și nu ”memcache”. Vezi și <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">wiki-ul memcached despre ambele module</a>.", "Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Unele fișiere nu au trecut de verificarea de integritate. Mai multe informații despre cum se rezolvă această problemă pot fi găsite în <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentație</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Lista fișierelor non-valide…</a> / <a href=\"{rescanEndpoint}\">Rescanează…</a>)", + "The PHP OPcache is not properly configured. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">For better performance we recommend</a> to use following settings in the <code>php.ini</code>:" : "OPcache pentru PHP nu este configurat corespunzător. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\"> Pentru o performanță mai bună recomandăm </a> folosirea următoarelor setări în <code>php.ini</code>:", + "The PHP function \"set_time_limit\" is not available. This could result in scripts being halted mid-execution, breaking your installation. We strongly recommend enabling this function." : "Funcția PHP \"set_time_limit\" nu este disponibilă. Aceasta ar putea determina oprirea scripturilor în timpul rulării, blocarea instalării. Recomandăm insistent activarea acestei funcții.", "Error occurred while checking server setup" : "A apărut o eroare la verificarea configurației serverului", + "Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Directorul de date și fișierele tale sunt probabil accesibile de pe Internet. Fișierul .htaccess nu funcționează. Îți recomandăm cu tărie să configurezi serverul web astfel încât directorul de date să nu mai fie accesibil, sau să muți folderul în afara rădăcinii serverului web.", "The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "Header-ul HTTP ”{header}” nu este configurat să fie identic cu \"{expected}\". Aceasta reprezintă un potențial risc de securitate sau de confidențialitate și recomandăm modificarea corespunzătoare a acestei setări.", "The \"Strict-Transport-Security\" HTTP header is not configured to at least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\" rel=\"noreferrer\">security tips</a>." : "Header-ul HTTP \"Strict-Transport-Security\" nu este configurat cu cel puțin \"{seconds}\" secunde. Pentru o securitate îmbunătățită recomandăm activarea HSTS așa cum este descris în <a href=\"{docUrl}\" rel=\"noreferrer\">sfaturile de securitate</a>.", "You are accessing this site via HTTP. We strongly suggest you configure your server to require using HTTPS instead as described in our <a href=\"{docUrl}\">security tips</a>." : "Accesezi acest site prin HTTP. Îți sugerăm cu tărie să configurezi serverul tău să foloseasca HTTPS, așa cum este descris în <a href=\"{docUrl}\" rel=\"noreferrer\">sfaturile de securitate</a>.", @@ -108,12 +127,13 @@ "Expiration" : "Expira", "Expiration date" : "Data expirării", "Choose a password for the public link" : "Alege o parolă pentru acest link public", + "Choose a password for the public link or press the \"Enter\" key" : "Alege o parolă pentru link-ul public sau apasă \"Enter\"", "Copied!" : "S-a copiat!", - "Copy" : "Copiază", "Not supported!" : "Nu este suportat!", "Press ⌘-C to copy." : "Apasă ⌘-C pentru a copia.", "Press Ctrl-C to copy." : "Apasă Ctrl+C pentru a copia.", "Resharing is not allowed" : "Repartajarea nu este permisă", + "Share to {name}" : "Distribuie către {name}", "Share link" : "Împărtășește link-ul", "Link" : "Legătură", "Password protect" : "Protejare cu parolă", @@ -121,15 +141,22 @@ "Email link to person" : "Expediază legătura prin poșta electronică", "Send" : "Trimite", "Allow upload and editing" : "Permite încărcarea și editarea", + "Read only" : "Doar citire", "File drop (upload only)" : "Aruncă fișierul (numai încărcare)", "Shared with you and the group {group} by {owner}" : "Distribuie cu tine si grupul {group} de {owner}", "Shared with you by {owner}" : "Distribuie cu tine de {owner}", + "Choose a password for the mail share" : "Alege o parolă pentru partajare prin email", "{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} partajat prin legătura", "group" : "grup", "remote" : "de la distanță", "email" : "email", "shared by {sharer}" : "partajat de {sharer}", "Unshare" : "Anulare partajare", + "Can reshare" : "Poate repartaja", + "Can edit" : "Poate edita", + "Can create" : "Poate crea", + "Can change" : "Poate schimba", + "Can delete" : "Poate șterge", "Access control" : "Control acces", "Could not unshare" : "Nu s-a putut elimina partajarea", "Error while sharing" : "Eroare la partajare", @@ -142,7 +169,14 @@ "{sharee} (group)" : "{sharee} (grup)", "{sharee} (remote)" : "{sharee} (distanță)", "{sharee} (email)" : "{sharee} (email)", + "{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})", "Share" : "Partajează", + "Share with other people by entering a user or group, a federated cloud ID or an email address." : "Partajează cu alte persoane prin introducerea unui utilizator sau grup, a unui ID de cloud federalizat sau a unei adrese de email.", + "Share with other people by entering a user or group or a federated cloud ID." : "Partajează cu alte persoane prin introducerea unui utilizator sau grup sau a unui ID de cloud federalizat.", + "Share with other people by entering a user or group or an email address." : "Partajează cu alte persoane prin introducerea unui utilizator sau grup sau a unei adrese de email.", + "Name or email address..." : "Nume sau adresă de email...", + "Name or federated cloud ID..." : "Nume sau ID de cloud federalizat...", + "Name, federated cloud ID or email address..." : "Nume, ID de cloud federalizat sau adresă de email...", "Name..." : "Nume ...", "Error" : "Eroare", "Error removing share" : "Eroare la înlăturarea elementului partajat", @@ -159,6 +193,7 @@ "sunny" : "însorit", "Hello {name}, the weather is {weather}" : "Bună {name}, vremea este {weather}", "Hello {name}" : "Salut {name}", + "<strong>These are your search results<script>alert(1)</script></strong>" : "<strong>Acestea sunt rezultatele căutării tale<script>alert(1)</script></strong>", "new" : "nou", "_download %n file_::_download %n files_" : ["descarcă %n fișier","descarcă %n fișiere","descarcă %n fișiere"], "The update is in progress, leaving this page might interrupt the process in some environments." : "Actualizarea este în desfășurare, părăsirea acestei pagini ar putea întrerupe procesul în anumite medii.", @@ -169,6 +204,7 @@ "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/nextcloud/server/issues\" target=\"_blank\">Nextcloud community</a>." : "Actualizarea nu a reușit. Te rugăm să raportezi această problemă <a href=\"https://github.com/nextcloud/server/issues\" target=\"_blank\">comunității Nextcloud</a>.", "Continue to Nextcloud" : "Continuă la Nextcloud", "Searching other places" : "Se caută în alte locuri", + "No search results in other folders for {tag}{filter}{endtag}" : "Nu au fost găsite rezultate în alte directoare pentru {tag}{filter}{endtag}", "_{count} search result in another folder_::_{count} search results in other folders_" : ["{count} rezultat al căutării în alte directoare","{count} rezultate ale căutării în alte directoare","{count} rezultate ale căutării în alte directoare"], "Personal" : "Personal", "Users" : "Utilizatori", @@ -180,6 +216,8 @@ "The specified document has not been found on the server." : "Documentul specificat nu a fost găsit pe server.", "You can click here to return to %s." : "Poți da click aici pentru a te întoarce la %s.", "Internal Server Error" : "Eroare internă a serverului", + "The server was unable to complete your request." : "Serverul nu a reușit să proceseze cererea ta.", + "If this happens again, please send the technical details below to the server administrator." : "Dacă se repetă, te rugăm trimite detaliile tehnice către administratorul de server.", "More details can be found in the server log." : "Mai multe detalii pot fi găsite în jurnalul serverului.", "Technical details" : "Detalii tehnice", "Remote Address: %s" : "Adresa la distanță: %s", @@ -230,6 +268,11 @@ "Log in" : "Autentificare", "Stay logged in" : "Rămâi autentificat", "Alternative Logins" : "Conectări alternative", + "Account access" : "Acces cont", + "You are about to grant %s access to your %s account." : "Ești pe cale să permiți %s accesul la %s contul tău.", + "App token" : "Token aplicație", + "Alternative login using app token" : "Conectare alternativă folosind token-ul aplicației", + "Redirecting …" : "Redirectare...", "New password" : "Noua parolă", "New Password" : "Noua Parolă", "Reset password" : "Resetează parola", @@ -238,6 +281,9 @@ "Cancel log in" : "Anulează conectarea", "Use backup code" : "Folosește un cod de backup", "Error while validating your second factor" : "Eroare la validarea celui de-al doilea factor", + "Access through untrusted domain" : "Acces printr-un domeniu nesigur", + "Please contact your administrator. If you are an administrator, edit the \"trusted_domains\" setting in config/config.php like the example in config.sample.php." : "Vă rugăm contactați administratorul. Dacă sunteți administrator, editați setarea \"trusted_domains\" în config/config.php la fel ca în exemplul din config.sample.php", + "Depending on your configuration, this button could also work to trust the domain:" : "În funcție de configurație, acest buton poate fi folosit pentru a te încrede în domeniul:", "Add \"%s\" as trusted domain" : "Adaugă \"%s\" ca domeniu de încredere", "App update required" : "E necesară o actualizare a aplicației", "%s will be updated to version %s" : "%s va fi actualizat la versiunea %s", @@ -249,7 +295,10 @@ "To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Pentru a evita timeout-uri la instalări de mari dimensiuni, poți rula în schimb următoarea comandă în folderul de instalare:", "Detailed logs" : "Loguri detaliate", "Update needed" : "E necesară actualizarea", + "Please use the command line updater because you have a big instance with more than 50 users." : "Vă rugăm folosiți actualizarea din linia de comandă pentru că aveți o sesiune mare cu mai mult de 50 de utilizatori.", "For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Pentru ajutor, verifică <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentația</a>.", + "I know that if I continue doing the update via web UI has the risk, that the request runs into a timeout and could cause data loss, but I have a backup and know how to restore my instance in case of a failure." : "Înțeleg că dacă continui să folosesc actualizarea din interfața web, există riscul ca cererea să expire și să cauzeze pierderi de date, dar am un backup și știu cum sa restaurez sesiunea în caz de eșec.", + "Upgrade via web on my own risk" : "Actualizare prin interfața web pe riscul meu", "This %s instance is currently in maintenance mode, which may take a while." : "Instanța %s este acum în modul de mentenanță, ceea ce ar putea dura o vreme.", "This page will refresh itself when the %s instance is available again." : "Această pagină se va reîmprospăta atunci când %s instance e disponibil din nou.", "Contact your system administrator if this message persists or appeared unexpectedly." : "Contactează-ți administratorul de sistem dacă acest mesaj persistă sau a apărut neașteptat.", diff --git a/core/l10n/ru.js b/core/l10n/ru.js index 24f87c017c7..f752162f149 100644 --- a/core/l10n/ru.js +++ b/core/l10n/ru.js @@ -84,6 +84,8 @@ OC.L10N.register( "Yes" : "Да", "No files in here" : "Здесь нет файлов", "Choose" : "Выбрать", + "Copy" : "Копировать", + "Move" : "Переместить", "Error loading file picker template: {error}" : "Ошибка при загрузке шаблона выбора файлов: {error}", "OK" : "ОК", "Error loading message template: {error}" : "Ошибка загрузки шаблона сообщений: {error}", @@ -99,6 +101,8 @@ OC.L10N.register( "({count} selected)" : "(выбрано: {count})", "Error loading file exists template" : "Ошибка при загрузке шаблона существующего файла", "Pending" : "Ожидание", + "Copy to {folder}" : "Копировать в {folder}", + "Move to {folder}" : "Переместить в {folder}", "Very weak password" : "Очень слабый пароль", "Weak password" : "Слабый пароль", "So-so password" : "Так себе пароль", @@ -130,7 +134,6 @@ OC.L10N.register( "Choose a password for the public link" : "Укажите пароль для общедоступной ссылки", "Choose a password for the public link or press the \"Enter\" key" : "Укажите пароль для общедоступной ссылки или нажмите «Ввод»", "Copied!" : "Скопировано!", - "Copy" : "Копировать", "Not supported!" : "Не поддерживается!", "Press ⌘-C to copy." : "Нажмите ⌘-C для копирования.", "Press Ctrl-C to copy." : "Нажмите Ctrl-C для копирования.", diff --git a/core/l10n/ru.json b/core/l10n/ru.json index bf4d4fb8c78..aa21e36c886 100644 --- a/core/l10n/ru.json +++ b/core/l10n/ru.json @@ -82,6 +82,8 @@ "Yes" : "Да", "No files in here" : "Здесь нет файлов", "Choose" : "Выбрать", + "Copy" : "Копировать", + "Move" : "Переместить", "Error loading file picker template: {error}" : "Ошибка при загрузке шаблона выбора файлов: {error}", "OK" : "ОК", "Error loading message template: {error}" : "Ошибка загрузки шаблона сообщений: {error}", @@ -97,6 +99,8 @@ "({count} selected)" : "(выбрано: {count})", "Error loading file exists template" : "Ошибка при загрузке шаблона существующего файла", "Pending" : "Ожидание", + "Copy to {folder}" : "Копировать в {folder}", + "Move to {folder}" : "Переместить в {folder}", "Very weak password" : "Очень слабый пароль", "Weak password" : "Слабый пароль", "So-so password" : "Так себе пароль", @@ -128,7 +132,6 @@ "Choose a password for the public link" : "Укажите пароль для общедоступной ссылки", "Choose a password for the public link or press the \"Enter\" key" : "Укажите пароль для общедоступной ссылки или нажмите «Ввод»", "Copied!" : "Скопировано!", - "Copy" : "Копировать", "Not supported!" : "Не поддерживается!", "Press ⌘-C to copy." : "Нажмите ⌘-C для копирования.", "Press Ctrl-C to copy." : "Нажмите Ctrl-C для копирования.", diff --git a/core/l10n/sk.js b/core/l10n/sk.js index 965330c4824..4a0d6da160e 100644 --- a/core/l10n/sk.js +++ b/core/l10n/sk.js @@ -84,6 +84,7 @@ OC.L10N.register( "Yes" : "Áno", "No files in here" : "Nie sú tu žiadne súbory", "Choose" : "Vybrať", + "Copy" : "Kopírovať", "Error loading file picker template: {error}" : "Chyba pri nahrávaní šablóny výberu súborov: {error}", "OK" : "Ok", "Error loading message template: {error}" : "Chyba pri nahrávaní šablóny správy: {error}", @@ -130,7 +131,6 @@ OC.L10N.register( "Choose a password for the public link" : "Zadajte heslo pre tento verejný odkaz", "Choose a password for the public link or press the \"Enter\" key" : "Zvoľte heslo pre verejný link alebo stlačte klávesu \"Enter\"", "Copied!" : "Skopírované!", - "Copy" : "Kopírovať", "Not supported!" : "Nie je podporované!", "Press ⌘-C to copy." : "Stlač ⌘-C pre skopírovanie.", "Press Ctrl-C to copy." : "Stlač Ctrl-C pre skopírovanie.", diff --git a/core/l10n/sk.json b/core/l10n/sk.json index 5954b647dad..d4c183805b3 100644 --- a/core/l10n/sk.json +++ b/core/l10n/sk.json @@ -82,6 +82,7 @@ "Yes" : "Áno", "No files in here" : "Nie sú tu žiadne súbory", "Choose" : "Vybrať", + "Copy" : "Kopírovať", "Error loading file picker template: {error}" : "Chyba pri nahrávaní šablóny výberu súborov: {error}", "OK" : "Ok", "Error loading message template: {error}" : "Chyba pri nahrávaní šablóny správy: {error}", @@ -128,7 +129,6 @@ "Choose a password for the public link" : "Zadajte heslo pre tento verejný odkaz", "Choose a password for the public link or press the \"Enter\" key" : "Zvoľte heslo pre verejný link alebo stlačte klávesu \"Enter\"", "Copied!" : "Skopírované!", - "Copy" : "Kopírovať", "Not supported!" : "Nie je podporované!", "Press ⌘-C to copy." : "Stlač ⌘-C pre skopírovanie.", "Press Ctrl-C to copy." : "Stlač Ctrl-C pre skopírovanie.", diff --git a/core/l10n/sl.js b/core/l10n/sl.js index 058aecb8be7..077fd007086 100644 --- a/core/l10n/sl.js +++ b/core/l10n/sl.js @@ -78,6 +78,7 @@ OC.L10N.register( "Yes" : "Da", "No files in here" : "Tukaj ni datotek", "Choose" : "Izbor", + "Copy" : "Kopiraj", "Error loading file picker template: {error}" : "Napaka nalaganja predloge izbirnika datotek: {error}", "OK" : "V redu", "Error loading message template: {error}" : "Napaka nalaganja predloge sporočil: {error}", @@ -117,7 +118,6 @@ OC.L10N.register( "Expiration date" : "Datum preteka", "Choose a password for the public link" : "Izberite geslo za javno povezavo", "Copied!" : "Skopirano!", - "Copy" : "Kopiraj", "Not supported!" : "Ni podprto!", "Press ⌘-C to copy." : "Pritisni ⌘-C za kopiranje.", "Press Ctrl-C to copy." : "Pritisni Ctrl-C za kopiranje.", diff --git a/core/l10n/sl.json b/core/l10n/sl.json index ab4082d1098..d4a39448e0e 100644 --- a/core/l10n/sl.json +++ b/core/l10n/sl.json @@ -76,6 +76,7 @@ "Yes" : "Da", "No files in here" : "Tukaj ni datotek", "Choose" : "Izbor", + "Copy" : "Kopiraj", "Error loading file picker template: {error}" : "Napaka nalaganja predloge izbirnika datotek: {error}", "OK" : "V redu", "Error loading message template: {error}" : "Napaka nalaganja predloge sporočil: {error}", @@ -115,7 +116,6 @@ "Expiration date" : "Datum preteka", "Choose a password for the public link" : "Izberite geslo za javno povezavo", "Copied!" : "Skopirano!", - "Copy" : "Kopiraj", "Not supported!" : "Ni podprto!", "Press ⌘-C to copy." : "Pritisni ⌘-C za kopiranje.", "Press Ctrl-C to copy." : "Pritisni Ctrl-C za kopiranje.", diff --git a/core/l10n/sq.js b/core/l10n/sq.js index d4195fc6a14..81e52a0dcfd 100644 --- a/core/l10n/sq.js +++ b/core/l10n/sq.js @@ -84,6 +84,7 @@ OC.L10N.register( "Yes" : "Po", "No files in here" : "Jo skedar këtu", "Choose" : "Zgjidhni", + "Copy" : "Kopjo", "Error loading file picker template: {error}" : "Gabim në ngarkimin e gjedhes së marrësit të kartelave: {error}", "OK" : "OK", "Error loading message template: {error}" : "Gabim gjatë ngarkimit të gjedhes së mesazheve: {error}", @@ -130,7 +131,6 @@ OC.L10N.register( "Choose a password for the public link" : "Zgjidhni një fjalëkalim për lidhjen publike", "Choose a password for the public link or press the \"Enter\" key" : "Zgjidhni një fjalëkalim për lidhjen publike ose shtypni butonin \"Enter\"", "Copied!" : "U kopjua!", - "Copy" : "Kopjo", "Not supported!" : "Jo i përshtatshëm!", "Press ⌘-C to copy." : "Shtyp ⌘-C për të kopjuar.", "Press Ctrl-C to copy." : "Shtypni Ctrl-C për të kopjuar.", diff --git a/core/l10n/sq.json b/core/l10n/sq.json index d329ab5a0de..a040c1fe832 100644 --- a/core/l10n/sq.json +++ b/core/l10n/sq.json @@ -82,6 +82,7 @@ "Yes" : "Po", "No files in here" : "Jo skedar këtu", "Choose" : "Zgjidhni", + "Copy" : "Kopjo", "Error loading file picker template: {error}" : "Gabim në ngarkimin e gjedhes së marrësit të kartelave: {error}", "OK" : "OK", "Error loading message template: {error}" : "Gabim gjatë ngarkimit të gjedhes së mesazheve: {error}", @@ -128,7 +129,6 @@ "Choose a password for the public link" : "Zgjidhni një fjalëkalim për lidhjen publike", "Choose a password for the public link or press the \"Enter\" key" : "Zgjidhni një fjalëkalim për lidhjen publike ose shtypni butonin \"Enter\"", "Copied!" : "U kopjua!", - "Copy" : "Kopjo", "Not supported!" : "Jo i përshtatshëm!", "Press ⌘-C to copy." : "Shtyp ⌘-C për të kopjuar.", "Press Ctrl-C to copy." : "Shtypni Ctrl-C për të kopjuar.", diff --git a/core/l10n/sr.js b/core/l10n/sr.js index 51b9fa314ad..2b1aede64b7 100644 --- a/core/l10n/sr.js +++ b/core/l10n/sr.js @@ -4,12 +4,12 @@ OC.L10N.register( "Please select a file." : "Изаберите фајл.", "File is too big" : "Фајл је превелик", "The selected file is not an image." : "Изабрани фајл није слика.", - "The selected file cannot be read." : "Немогуће је прочитати изабрани фајл.", + "The selected file cannot be read." : "Није могуће читати изабрани фајл.", "Invalid file provided" : "Понуђени фајл није исправан", - "No image or file provided" : "Није дата ни слика ни фајл", + "No image or file provided" : "Нису понуђени ни слика ни фајл", "Unknown filetype" : "Непознат тип фајла", "Invalid image" : "Неисправна слика", - "An error occurred. Please contact your admin." : "Дошло је до грешке. Молимо контактирајте администратора.", + "An error occurred. Please contact your admin." : "Дошло је до грешке. Контактирајте администратора.", "No temporary profile picture available, try again" : "Нема привремене слике профила. Покушајте поново", "No crop data provided" : "Нема података о опсецању", "No valid crop data provided" : "Нема исправних података о опсецању", @@ -17,21 +17,21 @@ OC.L10N.register( "State token does not match" : "Стање жетона се не слаже", "Password reset is disabled" : "Ресетовање лозинке није омогућено", "Couldn't reset password because the token is invalid" : "Није могуће ресетовање лозинке јер je жетон неважећи", - "Couldn't reset password because the token is expired" : "Немогуће ресетовање лозинке јер је жетон истекао", - "Could not send reset email because there is no email address for this username. Please contact your administrator." : "Немогуће је послати е-пошту за ресетовање лозинке јер није подешена адреса е-поште за овог корисника. Контактирајте администратора.", + "Couldn't reset password because the token is expired" : "Није могуће ресетовање лозинке јер је жетон истекао", + "Could not send reset email because there is no email address for this username. Please contact your administrator." : "Није могуће послати е-пошту за ресетовање лозинке јер није подешена адреса е-поште за овог корисника. Контактирајте администратора.", "Password reset" : "Ресетовање лозинке", - "Click the following button to reset your password. If you have not requested the password reset, then ignore this email." : "Кликните следеће дугме за ресетовање лозинке. Ако нисте тражили ресетовање лозинке, игноришите ову поруку.", - "Click the following link to reset your password. If you have not requested the password reset, then ignore this email." : "Кликните следећу везу за ресетовање лозинке. Ако нисте тражили ресетовање лозинке, игноришите ову поруку.", + "Click the following button to reset your password. If you have not requested the password reset, then ignore this email." : "Кликните следеће дугме за ресетовање лозинке. Ако нисте тражили ресетовање лозинке, занемарите ову поруку.", + "Click the following link to reset your password. If you have not requested the password reset, then ignore this email." : "Кликните следећу везу за ресетовање лозинке. Ако нисте тражили ресетовање лозинке, занемарите ову поруку.", "Reset your password" : "Ресетуј лозинку", "%s password reset" : "%s лозинка ресетована", - "Couldn't send reset email. Please contact your administrator." : "Не могу да пошаљем е-пошту за ресетовање лозинке. Контактирајте администратора.", - "Couldn't send reset email. Please make sure your username is correct." : "Не могу да пошаљем поруку за ресетовање лозинке. Проверите да ли је корисничко име исправно.", + "Couldn't send reset email. Please contact your administrator." : "Не могу да пошаљем поруку за ресетовање. Контактирајте администратора.", + "Couldn't send reset email. Please make sure your username is correct." : "Не могу да пошаљем поруку за ресетовање. Проверите да ли је корисничко име исправно.", "Preparing update" : "Припремам ажурирање", "[%d / %d]: %s" : "[%d / %d]: %s", "Repair warning: " : "Упозорење о поправци :", "Repair error: " : "Грешка поправке:", - "Please use the command line updater because automatic updating is disabled in the config.php." : "Молимо да ажурирање урадите преко командне линије јер је аутоматско ажурирање онемогућено у config.php.", - "[%d / %d]: Checking table %s" : "[%d / %d]: Проверавање табеле %s", + "Please use the command line updater because automatic updating is disabled in the config.php." : "Ажурирање урадите преко командне линије јер је аутоматско ажурирање онемогућено у config.php.", + "[%d / %d]: Checking table %s" : "[%d / %d]: Проверавам табелу %s", "Turned on maintenance mode" : "Режим одржавања укључен", "Turned off maintenance mode" : "Режим одржавања искључен", "Maintenance mode is kept active" : "Режим одржавања се држи активним", @@ -39,9 +39,9 @@ OC.L10N.register( "Updated database" : "База података ажурирана", "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Провера да ли шема базе података може да се ажурира (ово може потрајати, у зависности колика је база)", "Checked database schema update" : "Проверено ажурирање шеме базе података", - "Checking updates of apps" : "Провера ажурирања апликација", - "Checking for update of app \"%s\" in appstore" : "Провера ажурирања апликације \"%s\" у продавници", - "Update app \"%s\" from appstore" : "Ажурирање апликације \"%s\" из продавнице", + "Checking updates of apps" : "Проверавам ажурирања апликација", + "Checking for update of app \"%s\" in appstore" : "Проверавам ажурирања апликације „%s“ у продавници", + "Update app \"%s\" from appstore" : "Ажурирај апликацију „%s“ из продавнице", "Checked for update of app \"%s\" in appstore" : "Проверено ажурирање апликације \"%s\" у продавници", "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Провера да ли шема база за %s може бити ажурирана (ово може да потраје, у зависности колика је база)", "Checked database schema update for apps" : "Проверено ажурирање шеме базе података за апликације", @@ -59,9 +59,9 @@ OC.L10N.register( "Show all contacts …" : "Прикажи све контакте ...", "There was an error loading your contacts" : "Догодила се грешка приликом учитавања Ваших контаката", "Loading your contacts …" : "Учитавам контакте ...", - "Looking for {term} …" : "Тражење {term} …", + "Looking for {term} …" : "Тражим {term} …", "<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">Догодила се грешка приликом провере интегритета кода. Више информација...</a>", - "No action available" : "Нема доступних радњи", + "No action available" : "Нема доступне радње", "Error fetching contact actions" : "Грешка приликом дохватања акција над контактима", "Settings" : "Поставке", "Connection to server lost" : "Изгубљена је веза са сервером", @@ -84,6 +84,7 @@ OC.L10N.register( "Yes" : "Да", "No files in here" : "Овде нема фајлова", "Choose" : "Изаберите", + "Copy" : "Копирај", "Error loading file picker template: {error}" : "Грешка при учитавању шаблона бирача фајлова: {error}", "OK" : "У реду", "Error loading message template: {error}" : "Грешка при учитавању шаблона поруке: {error}", @@ -93,10 +94,10 @@ OC.L10N.register( "New Files" : "Нови фајлови", "Already existing files" : "Постојећи фајлови", "Which files do you want to keep?" : "Које фајлове желите да задржите?", - "If you select both versions, the copied file will have a number added to its name." : "Ако изаберете обе верзије, копираној датотеци ће бити додат број у назив.", + "If you select both versions, the copied file will have a number added to its name." : "Ако изаберете обе верзије, копираном фајлу ће бити додат број у називу.", "Continue" : "Настави", "(all selected)" : "(све изабрано)", - "({count} selected)" : "(изабраних: {count})", + "({count} selected)" : "(изабрано: {count})", "Error loading file exists template" : "Грешка при учитавању шаблона „Фајл постоји“", "Pending" : "На чекању", "Very weak password" : "Веома слаба лозинка", @@ -130,7 +131,6 @@ OC.L10N.register( "Choose a password for the public link" : "Унесите лозинку за јавну везу", "Choose a password for the public link or press the \"Enter\" key" : "Унесите лозинку за јавну везу или притисните \"Ентер\"", "Copied!" : "Копирано!", - "Copy" : "Копирај", "Not supported!" : "Није подржано!", "Press ⌘-C to copy." : "Притисни ⌘-C за копирање.", "Press Ctrl-C to copy." : "Притисни Ctrl-C за копирање.", diff --git a/core/l10n/sr.json b/core/l10n/sr.json index 98dc99225a0..d1fe6901c38 100644 --- a/core/l10n/sr.json +++ b/core/l10n/sr.json @@ -2,12 +2,12 @@ "Please select a file." : "Изаберите фајл.", "File is too big" : "Фајл је превелик", "The selected file is not an image." : "Изабрани фајл није слика.", - "The selected file cannot be read." : "Немогуће је прочитати изабрани фајл.", + "The selected file cannot be read." : "Није могуће читати изабрани фајл.", "Invalid file provided" : "Понуђени фајл није исправан", - "No image or file provided" : "Није дата ни слика ни фајл", + "No image or file provided" : "Нису понуђени ни слика ни фајл", "Unknown filetype" : "Непознат тип фајла", "Invalid image" : "Неисправна слика", - "An error occurred. Please contact your admin." : "Дошло је до грешке. Молимо контактирајте администратора.", + "An error occurred. Please contact your admin." : "Дошло је до грешке. Контактирајте администратора.", "No temporary profile picture available, try again" : "Нема привремене слике профила. Покушајте поново", "No crop data provided" : "Нема података о опсецању", "No valid crop data provided" : "Нема исправних података о опсецању", @@ -15,21 +15,21 @@ "State token does not match" : "Стање жетона се не слаже", "Password reset is disabled" : "Ресетовање лозинке није омогућено", "Couldn't reset password because the token is invalid" : "Није могуће ресетовање лозинке јер je жетон неважећи", - "Couldn't reset password because the token is expired" : "Немогуће ресетовање лозинке јер је жетон истекао", - "Could not send reset email because there is no email address for this username. Please contact your administrator." : "Немогуће је послати е-пошту за ресетовање лозинке јер није подешена адреса е-поште за овог корисника. Контактирајте администратора.", + "Couldn't reset password because the token is expired" : "Није могуће ресетовање лозинке јер је жетон истекао", + "Could not send reset email because there is no email address for this username. Please contact your administrator." : "Није могуће послати е-пошту за ресетовање лозинке јер није подешена адреса е-поште за овог корисника. Контактирајте администратора.", "Password reset" : "Ресетовање лозинке", - "Click the following button to reset your password. If you have not requested the password reset, then ignore this email." : "Кликните следеће дугме за ресетовање лозинке. Ако нисте тражили ресетовање лозинке, игноришите ову поруку.", - "Click the following link to reset your password. If you have not requested the password reset, then ignore this email." : "Кликните следећу везу за ресетовање лозинке. Ако нисте тражили ресетовање лозинке, игноришите ову поруку.", + "Click the following button to reset your password. If you have not requested the password reset, then ignore this email." : "Кликните следеће дугме за ресетовање лозинке. Ако нисте тражили ресетовање лозинке, занемарите ову поруку.", + "Click the following link to reset your password. If you have not requested the password reset, then ignore this email." : "Кликните следећу везу за ресетовање лозинке. Ако нисте тражили ресетовање лозинке, занемарите ову поруку.", "Reset your password" : "Ресетуј лозинку", "%s password reset" : "%s лозинка ресетована", - "Couldn't send reset email. Please contact your administrator." : "Не могу да пошаљем е-пошту за ресетовање лозинке. Контактирајте администратора.", - "Couldn't send reset email. Please make sure your username is correct." : "Не могу да пошаљем поруку за ресетовање лозинке. Проверите да ли је корисничко име исправно.", + "Couldn't send reset email. Please contact your administrator." : "Не могу да пошаљем поруку за ресетовање. Контактирајте администратора.", + "Couldn't send reset email. Please make sure your username is correct." : "Не могу да пошаљем поруку за ресетовање. Проверите да ли је корисничко име исправно.", "Preparing update" : "Припремам ажурирање", "[%d / %d]: %s" : "[%d / %d]: %s", "Repair warning: " : "Упозорење о поправци :", "Repair error: " : "Грешка поправке:", - "Please use the command line updater because automatic updating is disabled in the config.php." : "Молимо да ажурирање урадите преко командне линије јер је аутоматско ажурирање онемогућено у config.php.", - "[%d / %d]: Checking table %s" : "[%d / %d]: Проверавање табеле %s", + "Please use the command line updater because automatic updating is disabled in the config.php." : "Ажурирање урадите преко командне линије јер је аутоматско ажурирање онемогућено у config.php.", + "[%d / %d]: Checking table %s" : "[%d / %d]: Проверавам табелу %s", "Turned on maintenance mode" : "Режим одржавања укључен", "Turned off maintenance mode" : "Режим одржавања искључен", "Maintenance mode is kept active" : "Режим одржавања се држи активним", @@ -37,9 +37,9 @@ "Updated database" : "База података ажурирана", "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Провера да ли шема базе података може да се ажурира (ово може потрајати, у зависности колика је база)", "Checked database schema update" : "Проверено ажурирање шеме базе података", - "Checking updates of apps" : "Провера ажурирања апликација", - "Checking for update of app \"%s\" in appstore" : "Провера ажурирања апликације \"%s\" у продавници", - "Update app \"%s\" from appstore" : "Ажурирање апликације \"%s\" из продавнице", + "Checking updates of apps" : "Проверавам ажурирања апликација", + "Checking for update of app \"%s\" in appstore" : "Проверавам ажурирања апликације „%s“ у продавници", + "Update app \"%s\" from appstore" : "Ажурирај апликацију „%s“ из продавнице", "Checked for update of app \"%s\" in appstore" : "Проверено ажурирање апликације \"%s\" у продавници", "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Провера да ли шема база за %s може бити ажурирана (ово може да потраје, у зависности колика је база)", "Checked database schema update for apps" : "Проверено ажурирање шеме базе података за апликације", @@ -57,9 +57,9 @@ "Show all contacts …" : "Прикажи све контакте ...", "There was an error loading your contacts" : "Догодила се грешка приликом учитавања Ваших контаката", "Loading your contacts …" : "Учитавам контакте ...", - "Looking for {term} …" : "Тражење {term} …", + "Looking for {term} …" : "Тражим {term} …", "<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">Догодила се грешка приликом провере интегритета кода. Више информација...</a>", - "No action available" : "Нема доступних радњи", + "No action available" : "Нема доступне радње", "Error fetching contact actions" : "Грешка приликом дохватања акција над контактима", "Settings" : "Поставке", "Connection to server lost" : "Изгубљена је веза са сервером", @@ -82,6 +82,7 @@ "Yes" : "Да", "No files in here" : "Овде нема фајлова", "Choose" : "Изаберите", + "Copy" : "Копирај", "Error loading file picker template: {error}" : "Грешка при учитавању шаблона бирача фајлова: {error}", "OK" : "У реду", "Error loading message template: {error}" : "Грешка при учитавању шаблона поруке: {error}", @@ -91,10 +92,10 @@ "New Files" : "Нови фајлови", "Already existing files" : "Постојећи фајлови", "Which files do you want to keep?" : "Које фајлове желите да задржите?", - "If you select both versions, the copied file will have a number added to its name." : "Ако изаберете обе верзије, копираној датотеци ће бити додат број у назив.", + "If you select both versions, the copied file will have a number added to its name." : "Ако изаберете обе верзије, копираном фајлу ће бити додат број у називу.", "Continue" : "Настави", "(all selected)" : "(све изабрано)", - "({count} selected)" : "(изабраних: {count})", + "({count} selected)" : "(изабрано: {count})", "Error loading file exists template" : "Грешка при учитавању шаблона „Фајл постоји“", "Pending" : "На чекању", "Very weak password" : "Веома слаба лозинка", @@ -128,7 +129,6 @@ "Choose a password for the public link" : "Унесите лозинку за јавну везу", "Choose a password for the public link or press the \"Enter\" key" : "Унесите лозинку за јавну везу или притисните \"Ентер\"", "Copied!" : "Копирано!", - "Copy" : "Копирај", "Not supported!" : "Није подржано!", "Press ⌘-C to copy." : "Притисни ⌘-C за копирање.", "Press Ctrl-C to copy." : "Притисни Ctrl-C за копирање.", diff --git a/core/l10n/sv.js b/core/l10n/sv.js index 8da53ff8a4f..049bfac353b 100644 --- a/core/l10n/sv.js +++ b/core/l10n/sv.js @@ -84,6 +84,8 @@ OC.L10N.register( "Yes" : "Ja", "No files in here" : "Det finns inga filer här", "Choose" : "Välj", + "Copy" : "Kopiera", + "Move" : "Flytta", "Error loading file picker template: {error}" : "Fel uppstod för filväljarmall: {error}", "OK" : "OK", "Error loading message template: {error}" : "Fel uppstod under inläsningen av meddelandemallen: {error}", @@ -99,6 +101,8 @@ OC.L10N.register( "({count} selected)" : "({count} valda)", "Error loading file exists template" : "Fel uppstod filmall existerar", "Pending" : "Väntar", + "Copy to {folder}" : "Kopiera till {folder}", + "Move to {folder}" : "Flytta till {folder}", "Very weak password" : "Väldigt svagt lösenord", "Weak password" : "Svagt lösenord", "So-so password" : "Okej lösenord", @@ -130,7 +134,6 @@ OC.L10N.register( "Choose a password for the public link" : "Välj ett lösenord för den offentliga länken", "Choose a password for the public link or press the \"Enter\" key" : "Välj ett lösenord för den publika länken eller tryck Enter", "Copied!" : "Kopierad!", - "Copy" : "Kopiera", "Not supported!" : "Stöds ej!", "Press ⌘-C to copy." : "Tryck ned ⌘-C för att kopiera.", "Press Ctrl-C to copy." : "Tryck ned Ctrl-C för att kopiera.", @@ -302,8 +305,8 @@ OC.L10N.register( "For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "För hjälp, se <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentationen</a>.", "I know that if I continue doing the update via web UI has the risk, that the request runs into a timeout and could cause data loss, but I have a backup and know how to restore my instance in case of a failure." : "Jag vet att om jag fortsätter göra uppdateringen via webbgränssnittet innebär risken att begäran får timeout och kan orsaka dataförluster men att jag har en backup och vet hur instansen återställs i fall fel uppstår.", "Upgrade via web on my own risk" : "Uppgradera via webben på min egen risk", - "This %s instance is currently in maintenance mode, which may take a while." : "Denna %s instans befinner sig för närvarande i underhållsläge, vilket kan ta ett tag.", - "This page will refresh itself when the %s instance is available again." : "Denna sida uppdaterar sig själv när %s instansen är tillgänglig igen.", + "This %s instance is currently in maintenance mode, which may take a while." : "Denna %s-instans befinner sig för närvarande i underhållsläge, vilket kan ta ett tag.", + "This page will refresh itself when the %s instance is available again." : "Denna sida uppdaterar sig själv när %s-instansen är tillgänglig igen.", "Contact your system administrator if this message persists or appeared unexpectedly." : "Hör av dig till din systemadministratör om detta meddelande fortsätter eller visas oväntat.", "Thank you for your patience." : "Tack för ditt tålamod.", "Problem loading page, reloading in 5 seconds" : "Problem med att ladda sidan, försöker igen om 5 sekunder", diff --git a/core/l10n/sv.json b/core/l10n/sv.json index 6194e90f0ee..df891e281f7 100644 --- a/core/l10n/sv.json +++ b/core/l10n/sv.json @@ -82,6 +82,8 @@ "Yes" : "Ja", "No files in here" : "Det finns inga filer här", "Choose" : "Välj", + "Copy" : "Kopiera", + "Move" : "Flytta", "Error loading file picker template: {error}" : "Fel uppstod för filväljarmall: {error}", "OK" : "OK", "Error loading message template: {error}" : "Fel uppstod under inläsningen av meddelandemallen: {error}", @@ -97,6 +99,8 @@ "({count} selected)" : "({count} valda)", "Error loading file exists template" : "Fel uppstod filmall existerar", "Pending" : "Väntar", + "Copy to {folder}" : "Kopiera till {folder}", + "Move to {folder}" : "Flytta till {folder}", "Very weak password" : "Väldigt svagt lösenord", "Weak password" : "Svagt lösenord", "So-so password" : "Okej lösenord", @@ -128,7 +132,6 @@ "Choose a password for the public link" : "Välj ett lösenord för den offentliga länken", "Choose a password for the public link or press the \"Enter\" key" : "Välj ett lösenord för den publika länken eller tryck Enter", "Copied!" : "Kopierad!", - "Copy" : "Kopiera", "Not supported!" : "Stöds ej!", "Press ⌘-C to copy." : "Tryck ned ⌘-C för att kopiera.", "Press Ctrl-C to copy." : "Tryck ned Ctrl-C för att kopiera.", @@ -300,8 +303,8 @@ "For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "För hjälp, se <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentationen</a>.", "I know that if I continue doing the update via web UI has the risk, that the request runs into a timeout and could cause data loss, but I have a backup and know how to restore my instance in case of a failure." : "Jag vet att om jag fortsätter göra uppdateringen via webbgränssnittet innebär risken att begäran får timeout och kan orsaka dataförluster men att jag har en backup och vet hur instansen återställs i fall fel uppstår.", "Upgrade via web on my own risk" : "Uppgradera via webben på min egen risk", - "This %s instance is currently in maintenance mode, which may take a while." : "Denna %s instans befinner sig för närvarande i underhållsläge, vilket kan ta ett tag.", - "This page will refresh itself when the %s instance is available again." : "Denna sida uppdaterar sig själv när %s instansen är tillgänglig igen.", + "This %s instance is currently in maintenance mode, which may take a while." : "Denna %s-instans befinner sig för närvarande i underhållsläge, vilket kan ta ett tag.", + "This page will refresh itself when the %s instance is available again." : "Denna sida uppdaterar sig själv när %s-instansen är tillgänglig igen.", "Contact your system administrator if this message persists or appeared unexpectedly." : "Hör av dig till din systemadministratör om detta meddelande fortsätter eller visas oväntat.", "Thank you for your patience." : "Tack för ditt tålamod.", "Problem loading page, reloading in 5 seconds" : "Problem med att ladda sidan, försöker igen om 5 sekunder", diff --git a/core/l10n/tr.js b/core/l10n/tr.js index 1006a99e865..0110c672d24 100644 --- a/core/l10n/tr.js +++ b/core/l10n/tr.js @@ -84,6 +84,8 @@ OC.L10N.register( "Yes" : "Evet", "No files in here" : "Burada herhangi bir dosya yok", "Choose" : "Seçin", + "Copy" : "Kopyala", + "Move" : "Taşı", "Error loading file picker template: {error}" : "Dosya seçme kalıbı yüklenirken sorun çıktı: {error}", "OK" : "Tamam", "Error loading message template: {error}" : "İleti kalıbı yüklenirken sorun çıktı: {error}", @@ -99,6 +101,8 @@ OC.L10N.register( "({count} selected)" : "({count} seçilmiş)", "Error loading file exists template" : "Dosya var kalıbı yüklenirken sorun çıktı", "Pending" : "Bekliyor", + "Copy to {folder}" : "{folder} Klasörüne Kopyala", + "Move to {folder}" : "{folder} Klasörüne Taşı", "Very weak password" : "Parola çok zayıf", "Weak password" : "Parola zayıf", "So-so password" : "Parola idare eder", @@ -130,7 +134,6 @@ OC.L10N.register( "Choose a password for the public link" : "Herkese açık bağlantı için bir parola seçin", "Choose a password for the public link or press the \"Enter\" key" : "Herkese açık bağlantı için bir parola belirtin ya da \"Enter\" tuşuna basın", "Copied!" : "Kopyalandı!", - "Copy" : "Kopyala", "Not supported!" : "Desteklenmiyor!", "Press ⌘-C to copy." : "Kopyalamak için ⌘-C tuşlarına basın.", "Press Ctrl-C to copy." : "Kopyalamak için Ctrl-C tuşlarına basın.", diff --git a/core/l10n/tr.json b/core/l10n/tr.json index 950e9a9f422..ac23e2eb1e9 100644 --- a/core/l10n/tr.json +++ b/core/l10n/tr.json @@ -82,6 +82,8 @@ "Yes" : "Evet", "No files in here" : "Burada herhangi bir dosya yok", "Choose" : "Seçin", + "Copy" : "Kopyala", + "Move" : "Taşı", "Error loading file picker template: {error}" : "Dosya seçme kalıbı yüklenirken sorun çıktı: {error}", "OK" : "Tamam", "Error loading message template: {error}" : "İleti kalıbı yüklenirken sorun çıktı: {error}", @@ -97,6 +99,8 @@ "({count} selected)" : "({count} seçilmiş)", "Error loading file exists template" : "Dosya var kalıbı yüklenirken sorun çıktı", "Pending" : "Bekliyor", + "Copy to {folder}" : "{folder} Klasörüne Kopyala", + "Move to {folder}" : "{folder} Klasörüne Taşı", "Very weak password" : "Parola çok zayıf", "Weak password" : "Parola zayıf", "So-so password" : "Parola idare eder", @@ -128,7 +132,6 @@ "Choose a password for the public link" : "Herkese açık bağlantı için bir parola seçin", "Choose a password for the public link or press the \"Enter\" key" : "Herkese açık bağlantı için bir parola belirtin ya da \"Enter\" tuşuna basın", "Copied!" : "Kopyalandı!", - "Copy" : "Kopyala", "Not supported!" : "Desteklenmiyor!", "Press ⌘-C to copy." : "Kopyalamak için ⌘-C tuşlarına basın.", "Press Ctrl-C to copy." : "Kopyalamak için Ctrl-C tuşlarına basın.", diff --git a/core/l10n/vi.js b/core/l10n/vi.js index f80be44e020..fffc90f7387 100644 --- a/core/l10n/vi.js +++ b/core/l10n/vi.js @@ -83,6 +83,7 @@ OC.L10N.register( "Yes" : "Có", "No files in here" : "Không có file nào ở đây", "Choose" : "Chọn", + "Copy" : "Sao chép", "Error loading file picker template: {error}" : "Lỗi khi tải mẫu tập tin picker: {error}", "Error loading message template: {error}" : "Lỗi khi tải mẫu thông điệp: {error}", "read-only" : "Chỉ đọc", @@ -126,7 +127,6 @@ OC.L10N.register( "Expiration date" : "Ngày kết thúc", "Choose a password for the public link" : "Chọn mật khẩu cho liên kết công khai", "Copied!" : "Được sao chép", - "Copy" : "Sao chép", "Not supported!" : "Không được hỗ trợ", "Press ⌘-C to copy." : "Nhất ⌘-C để sao chép", "Press Ctrl-C to copy." : "Nhấn Ctrl-C để sao chép.", diff --git a/core/l10n/vi.json b/core/l10n/vi.json index eea74b167d2..89a7639b06c 100644 --- a/core/l10n/vi.json +++ b/core/l10n/vi.json @@ -81,6 +81,7 @@ "Yes" : "Có", "No files in here" : "Không có file nào ở đây", "Choose" : "Chọn", + "Copy" : "Sao chép", "Error loading file picker template: {error}" : "Lỗi khi tải mẫu tập tin picker: {error}", "Error loading message template: {error}" : "Lỗi khi tải mẫu thông điệp: {error}", "read-only" : "Chỉ đọc", @@ -124,7 +125,6 @@ "Expiration date" : "Ngày kết thúc", "Choose a password for the public link" : "Chọn mật khẩu cho liên kết công khai", "Copied!" : "Được sao chép", - "Copy" : "Sao chép", "Not supported!" : "Không được hỗ trợ", "Press ⌘-C to copy." : "Nhất ⌘-C để sao chép", "Press Ctrl-C to copy." : "Nhấn Ctrl-C để sao chép.", diff --git a/core/l10n/zh_CN.js b/core/l10n/zh_CN.js index 9d9b6333de7..02e6e6f07cb 100644 --- a/core/l10n/zh_CN.js +++ b/core/l10n/zh_CN.js @@ -84,6 +84,7 @@ OC.L10N.register( "Yes" : "是", "No files in here" : "未找到文件", "Choose" : "选择", + "Copy" : "复制", "Error loading file picker template: {error}" : "加载文件选择模板出错: {error}", "OK" : "确认", "Error loading message template: {error}" : "加载消息模板出错: {error}", @@ -130,7 +131,6 @@ OC.L10N.register( "Choose a password for the public link" : "为公开链接设置密码", "Choose a password for the public link or press the \"Enter\" key" : "为公开链接设置密码, 或按 \"回车\" 键", "Copied!" : "已经复制!", - "Copy" : "复制", "Not supported!" : "无法支持!", "Press ⌘-C to copy." : "按 ⌘ + C 进行复制.", "Press Ctrl-C to copy." : "按 Ctrl + C 进行复制.", @@ -220,6 +220,7 @@ OC.L10N.register( "You can click here to return to %s." : "你可以点击这里返回 %s.", "Internal Server Error" : "内部服务器错误", "The server was unable to complete your request." : "服务器不能完成你的请求。", + "If this happens again, please send the technical details below to the server administrator." : "如果再次发生,请在下方将技术详情发送给服务器管理员。", "More details can be found in the server log." : "更多细节可以在服务器日志中找到.", "Technical details" : "技术细节", "Remote Address: %s" : "远程地址: %s", @@ -270,6 +271,8 @@ OC.L10N.register( "Log in" : "登录", "Stay logged in" : "保持登录", "Alternative Logins" : "其他登录方式", + "Account access" : "账户访问", + "You are about to grant %s access to your %s account." : "你将分配 %s 访问权限给你的 %s 账户。", "App token" : "App 令牌", "Alternative login using app token" : "使用应用程序令牌替代登录", "Redirecting …" : "正在转向...", @@ -281,6 +284,9 @@ OC.L10N.register( "Cancel log in" : "取消登录", "Use backup code" : "使用备用口令", "Error while validating your second factor" : "验证您的第二项时出错", + "Access through untrusted domain" : "通过不被信任的域名访问", + "Please contact your administrator. If you are an administrator, edit the \"trusted_domains\" setting in config/config.php like the example in config.sample.php." : "请联系你的管理员。如果你就是管理员,请参照 config.sample.php 中的示例编辑 config/config.php 中的 \"trusted_domains\" 设置。", + "Depending on your configuration, this button could also work to trust the domain:" : "取决于配置,此按钮也可用作设置信任域名:", "Add \"%s\" as trusted domain" : "添加 \"%s\" 为信任域名", "App update required" : "必须的应用更新", "%s will be updated to version %s" : "%s 将会更新至版本 %s", diff --git a/core/l10n/zh_CN.json b/core/l10n/zh_CN.json index 434c8cc5886..73a86fe9452 100644 --- a/core/l10n/zh_CN.json +++ b/core/l10n/zh_CN.json @@ -82,6 +82,7 @@ "Yes" : "是", "No files in here" : "未找到文件", "Choose" : "选择", + "Copy" : "复制", "Error loading file picker template: {error}" : "加载文件选择模板出错: {error}", "OK" : "确认", "Error loading message template: {error}" : "加载消息模板出错: {error}", @@ -128,7 +129,6 @@ "Choose a password for the public link" : "为公开链接设置密码", "Choose a password for the public link or press the \"Enter\" key" : "为公开链接设置密码, 或按 \"回车\" 键", "Copied!" : "已经复制!", - "Copy" : "复制", "Not supported!" : "无法支持!", "Press ⌘-C to copy." : "按 ⌘ + C 进行复制.", "Press Ctrl-C to copy." : "按 Ctrl + C 进行复制.", @@ -218,6 +218,7 @@ "You can click here to return to %s." : "你可以点击这里返回 %s.", "Internal Server Error" : "内部服务器错误", "The server was unable to complete your request." : "服务器不能完成你的请求。", + "If this happens again, please send the technical details below to the server administrator." : "如果再次发生,请在下方将技术详情发送给服务器管理员。", "More details can be found in the server log." : "更多细节可以在服务器日志中找到.", "Technical details" : "技术细节", "Remote Address: %s" : "远程地址: %s", @@ -268,6 +269,8 @@ "Log in" : "登录", "Stay logged in" : "保持登录", "Alternative Logins" : "其他登录方式", + "Account access" : "账户访问", + "You are about to grant %s access to your %s account." : "你将分配 %s 访问权限给你的 %s 账户。", "App token" : "App 令牌", "Alternative login using app token" : "使用应用程序令牌替代登录", "Redirecting …" : "正在转向...", @@ -279,6 +282,9 @@ "Cancel log in" : "取消登录", "Use backup code" : "使用备用口令", "Error while validating your second factor" : "验证您的第二项时出错", + "Access through untrusted domain" : "通过不被信任的域名访问", + "Please contact your administrator. If you are an administrator, edit the \"trusted_domains\" setting in config/config.php like the example in config.sample.php." : "请联系你的管理员。如果你就是管理员,请参照 config.sample.php 中的示例编辑 config/config.php 中的 \"trusted_domains\" 设置。", + "Depending on your configuration, this button could also work to trust the domain:" : "取决于配置,此按钮也可用作设置信任域名:", "Add \"%s\" as trusted domain" : "添加 \"%s\" 为信任域名", "App update required" : "必须的应用更新", "%s will be updated to version %s" : "%s 将会更新至版本 %s", diff --git a/core/l10n/zh_TW.js b/core/l10n/zh_TW.js index aa5624f9a70..45b23f48f55 100644 --- a/core/l10n/zh_TW.js +++ b/core/l10n/zh_TW.js @@ -84,6 +84,7 @@ OC.L10N.register( "Yes" : "是", "No files in here" : "沒有任何檔案", "Choose" : "選擇", + "Copy" : "複製", "Error loading file picker template: {error}" : "載入檔案選擇器樣板出錯: {error}", "OK" : "OK", "Error loading message template: {error}" : "載入訊息樣板出錯: {error}", @@ -108,8 +109,8 @@ OC.L10N.register( "Your web server is not set up properly to resolve \"{url}\". Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "您的網頁伺服器並未正確設定來解析 \"{url}\" ,請查看我們的<a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">說明文件</a>以瞭解更多", "This server has no working Internet connection: Multiple endpoints could not be reached. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. We suggest to enable Internet connection for this server if you want to have all features." : "伺服器沒有網際網路連線,有些功能,像是外部儲存、更新版通知將無法運作。從遠端存取資料或是寄送 email 通知可能也無法運作。建議您設定好網際網路連線以使用所有功能。", "No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "記憶體快取尚未設定。如果可以,請完成設定來提升效能。更多資訊請查閱<a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">說明文件</a>", - "/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "/dev/urandom出於安全原因很遺憾的無法被PHP讀取,進一步訊息可參考我們的<a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">文件</a>", - "You are currently running PHP {version}. We encourage you to upgrade your PHP version to take advantage of <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it." : "你目前正運行PHP{version}。基於您的部屬的版本可支援與<a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">PHP社群提供的性能與安全性更新</a>,我們很建議您更新您的PHP版本會更好", + "/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "PHP 無法讀取 /dev/urandom,為保障安全,建議修正這個問題,進一步訊息可參考我們的<a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">文件</a>", + "You are currently running PHP {version}. We encourage you to upgrade your PHP version to take advantage of <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it." : "您目前正運行 PHP {version} ,我們建議您升級 PHP 到您的發行版所支援的最新版本,以獲得 <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">PHP 開發團隊提供的效能與安全性更新</a>。", "The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "反向代理標頭設定不正確,或者您正透過可信任的代理伺服器存取Nextcloud。若您不是透過可信任的代理伺服器存取Nextcloud,此安全問題會允許攻擊者對Nextcloud假冒IP位址。更多資訊請查閱<a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">說明文件</a>。", "Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached是用於分散式緩存的設置,但是目前安裝了錯誤的PHP模組為「memcache」。\\OC\\Memcache\\Memcached僅支援「memcached」而不是「memcache」。請參閱<a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki了解兩種模組資訊</a>", "Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "有些檔案並未通過完整性檢查。可參閱詳細資訊,如我們的<a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">說明文件</a>(<a href=\"{codeIntegrityDownloadEndpoint}\">無效檔案列表</a>/<a href=\"{rescanEndpoint}\">重新檢查</a>)以解決這些問題。", @@ -118,7 +119,7 @@ OC.L10N.register( "Error occurred while checking server setup" : "檢查伺服器設定時發生錯誤", "Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "您的資料目錄和檔案看來可以被公開存取,這表示 .htaccess 檔案並未生效,我們強烈建議您設定您的網頁伺服器,拒絕資料目錄被公開存取,或者將您的資料目錄移出網頁伺服器根目錄。", "The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "\"{header}\" HTTP 標頭配置與 \"{expected}\"不一樣,這是一個潛在安全性或者隱私上的風險,因此我們建議您調整此設定", - "The \"Strict-Transport-Security\" HTTP header is not configured to at least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\" rel=\"noreferrer\">security tips</a>." : "此HTTP「強制安全傳輸」標頭並未設定持續至少\"{seconds}\"秒。為了提高安全性,我們的在<a href=\"{docUrl}\" rel=\"noreferrer\">安全提示</a>中有詳述並建議啟用HSTS。", + "The \"Strict-Transport-Security\" HTTP header is not configured to at least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\" rel=\"noreferrer\">security tips</a>." : "此 HTTP \"Strict-Transport-Security\" 標頭並未設定持續至少 {seconds} 秒。為了提高安全性,我們在<a href=\"{docUrl}\" rel=\"noreferrer\">安全提示</a>中有詳述並建議啟用 HSTS。", "You are accessing this site via HTTP. We strongly suggest you configure your server to require using HTTPS instead as described in our <a href=\"{docUrl}\">security tips</a>." : "您正在藉由 HTTP 訪問此網站,如我們的<a href=\"{docUrl}\">安全性提示</a>所述,我們強烈建議設定您的伺服器須要求使用 HTTPS", "Shared" : "已分享", "Shared with {recipients}" : "與 {recipients} 分享", @@ -130,7 +131,6 @@ OC.L10N.register( "Choose a password for the public link" : "為公開連結選一個密碼", "Choose a password for the public link or press the \"Enter\" key" : "為公開連結選一個密碼或是按下 Enter 鍵", "Copied!" : "已複製", - "Copy" : "複製", "Not supported!" : "不支援!", "Press ⌘-C to copy." : "按下 ⌘-C 來複製", "Press Ctrl-C to copy." : "按下 Ctrl-C 來複製", @@ -219,6 +219,8 @@ OC.L10N.register( "The specified document has not been found on the server." : "該文件不存在於伺服器上", "You can click here to return to %s." : "點這裡以回到 %s", "Internal Server Error" : "內部伺服器錯誤", + "The server was unable to complete your request." : "伺服器無法完成你的請求。", + "If this happens again, please send the technical details below to the server administrator." : "如果此問題重複發生,請寄送技術資訊給管理員。", "More details can be found in the server log." : "伺服器記錄檔裡面有更多細節", "Technical details" : "技術細節", "Remote Address: %s" : "遠端位置:%s", @@ -269,6 +271,8 @@ OC.L10N.register( "Log in" : "登入", "Stay logged in" : "保持登入狀態", "Alternative Logins" : "其他登入方法", + "Account access" : "帳戶存取", + "You are about to grant %s access to your %s account." : "你已批准%s存取你的%s帳戶。", "App token" : "App token", "Alternative login using app token" : "透過應用程式憑證的方式登入", "Redirecting …" : "重新導向…", @@ -280,6 +284,9 @@ OC.L10N.register( "Cancel log in" : "取消登入", "Use backup code" : "使用備用認證碼", "Error while validating your second factor" : "驗證二階段因子發生錯誤", + "Access through untrusted domain" : "經由不可信任的域名存取。", + "Please contact your administrator. If you are an administrator, edit the \"trusted_domains\" setting in config/config.php like the example in config.sample.php." : "請聯絡你的管理員。如果妳就是管理員,請編輯config/config.php內的\"trusted_domains\"設定,該項的範例通常位於config.sample.php。", + "Depending on your configuration, this button could also work to trust the domain:" : "根據你的設定值,此按鈕也可用於信任以下網域:", "Add \"%s\" as trusted domain" : "將 %s 加入到信任的網域", "App update required" : "需要更新應用程式", "%s will be updated to version %s" : "%s 將會更新至版本 %s", diff --git a/core/l10n/zh_TW.json b/core/l10n/zh_TW.json index a9048767e45..3a5f872e8b3 100644 --- a/core/l10n/zh_TW.json +++ b/core/l10n/zh_TW.json @@ -82,6 +82,7 @@ "Yes" : "是", "No files in here" : "沒有任何檔案", "Choose" : "選擇", + "Copy" : "複製", "Error loading file picker template: {error}" : "載入檔案選擇器樣板出錯: {error}", "OK" : "OK", "Error loading message template: {error}" : "載入訊息樣板出錯: {error}", @@ -106,8 +107,8 @@ "Your web server is not set up properly to resolve \"{url}\". Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "您的網頁伺服器並未正確設定來解析 \"{url}\" ,請查看我們的<a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">說明文件</a>以瞭解更多", "This server has no working Internet connection: Multiple endpoints could not be reached. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. We suggest to enable Internet connection for this server if you want to have all features." : "伺服器沒有網際網路連線,有些功能,像是外部儲存、更新版通知將無法運作。從遠端存取資料或是寄送 email 通知可能也無法運作。建議您設定好網際網路連線以使用所有功能。", "No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "記憶體快取尚未設定。如果可以,請完成設定來提升效能。更多資訊請查閱<a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">說明文件</a>", - "/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "/dev/urandom出於安全原因很遺憾的無法被PHP讀取,進一步訊息可參考我們的<a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">文件</a>", - "You are currently running PHP {version}. We encourage you to upgrade your PHP version to take advantage of <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it." : "你目前正運行PHP{version}。基於您的部屬的版本可支援與<a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">PHP社群提供的性能與安全性更新</a>,我們很建議您更新您的PHP版本會更好", + "/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "PHP 無法讀取 /dev/urandom,為保障安全,建議修正這個問題,進一步訊息可參考我們的<a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">文件</a>", + "You are currently running PHP {version}. We encourage you to upgrade your PHP version to take advantage of <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it." : "您目前正運行 PHP {version} ,我們建議您升級 PHP 到您的發行版所支援的最新版本,以獲得 <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">PHP 開發團隊提供的效能與安全性更新</a>。", "The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "反向代理標頭設定不正確,或者您正透過可信任的代理伺服器存取Nextcloud。若您不是透過可信任的代理伺服器存取Nextcloud,此安全問題會允許攻擊者對Nextcloud假冒IP位址。更多資訊請查閱<a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">說明文件</a>。", "Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached是用於分散式緩存的設置,但是目前安裝了錯誤的PHP模組為「memcache」。\\OC\\Memcache\\Memcached僅支援「memcached」而不是「memcache」。請參閱<a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki了解兩種模組資訊</a>", "Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "有些檔案並未通過完整性檢查。可參閱詳細資訊,如我們的<a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">說明文件</a>(<a href=\"{codeIntegrityDownloadEndpoint}\">無效檔案列表</a>/<a href=\"{rescanEndpoint}\">重新檢查</a>)以解決這些問題。", @@ -116,7 +117,7 @@ "Error occurred while checking server setup" : "檢查伺服器設定時發生錯誤", "Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "您的資料目錄和檔案看來可以被公開存取,這表示 .htaccess 檔案並未生效,我們強烈建議您設定您的網頁伺服器,拒絕資料目錄被公開存取,或者將您的資料目錄移出網頁伺服器根目錄。", "The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "\"{header}\" HTTP 標頭配置與 \"{expected}\"不一樣,這是一個潛在安全性或者隱私上的風險,因此我們建議您調整此設定", - "The \"Strict-Transport-Security\" HTTP header is not configured to at least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\" rel=\"noreferrer\">security tips</a>." : "此HTTP「強制安全傳輸」標頭並未設定持續至少\"{seconds}\"秒。為了提高安全性,我們的在<a href=\"{docUrl}\" rel=\"noreferrer\">安全提示</a>中有詳述並建議啟用HSTS。", + "The \"Strict-Transport-Security\" HTTP header is not configured to at least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\" rel=\"noreferrer\">security tips</a>." : "此 HTTP \"Strict-Transport-Security\" 標頭並未設定持續至少 {seconds} 秒。為了提高安全性,我們在<a href=\"{docUrl}\" rel=\"noreferrer\">安全提示</a>中有詳述並建議啟用 HSTS。", "You are accessing this site via HTTP. We strongly suggest you configure your server to require using HTTPS instead as described in our <a href=\"{docUrl}\">security tips</a>." : "您正在藉由 HTTP 訪問此網站,如我們的<a href=\"{docUrl}\">安全性提示</a>所述,我們強烈建議設定您的伺服器須要求使用 HTTPS", "Shared" : "已分享", "Shared with {recipients}" : "與 {recipients} 分享", @@ -128,7 +129,6 @@ "Choose a password for the public link" : "為公開連結選一個密碼", "Choose a password for the public link or press the \"Enter\" key" : "為公開連結選一個密碼或是按下 Enter 鍵", "Copied!" : "已複製", - "Copy" : "複製", "Not supported!" : "不支援!", "Press ⌘-C to copy." : "按下 ⌘-C 來複製", "Press Ctrl-C to copy." : "按下 Ctrl-C 來複製", @@ -217,6 +217,8 @@ "The specified document has not been found on the server." : "該文件不存在於伺服器上", "You can click here to return to %s." : "點這裡以回到 %s", "Internal Server Error" : "內部伺服器錯誤", + "The server was unable to complete your request." : "伺服器無法完成你的請求。", + "If this happens again, please send the technical details below to the server administrator." : "如果此問題重複發生,請寄送技術資訊給管理員。", "More details can be found in the server log." : "伺服器記錄檔裡面有更多細節", "Technical details" : "技術細節", "Remote Address: %s" : "遠端位置:%s", @@ -267,6 +269,8 @@ "Log in" : "登入", "Stay logged in" : "保持登入狀態", "Alternative Logins" : "其他登入方法", + "Account access" : "帳戶存取", + "You are about to grant %s access to your %s account." : "你已批准%s存取你的%s帳戶。", "App token" : "App token", "Alternative login using app token" : "透過應用程式憑證的方式登入", "Redirecting …" : "重新導向…", @@ -278,6 +282,9 @@ "Cancel log in" : "取消登入", "Use backup code" : "使用備用認證碼", "Error while validating your second factor" : "驗證二階段因子發生錯誤", + "Access through untrusted domain" : "經由不可信任的域名存取。", + "Please contact your administrator. If you are an administrator, edit the \"trusted_domains\" setting in config/config.php like the example in config.sample.php." : "請聯絡你的管理員。如果妳就是管理員,請編輯config/config.php內的\"trusted_domains\"設定,該項的範例通常位於config.sample.php。", + "Depending on your configuration, this button could also work to trust the domain:" : "根據你的設定值,此按鈕也可用於信任以下網域:", "Add \"%s\" as trusted domain" : "將 %s 加入到信任的網域", "App update required" : "需要更新應用程式", "%s will be updated to version %s" : "%s 將會更新至版本 %s", diff --git a/core/vendor/core.js b/core/vendor/core.js index 8cdb203aacd..bda270892ad 100644 --- a/core/vendor/core.js +++ b/core/vendor/core.js @@ -5551,6 +5551,9 @@ dav.Client.prototype = { ' <d:prop>\n'; for(var ii in properties) { + if (!properties.hasOwnProperty(ii)) { + continue; + } var property = this.parseClarkNotation(properties[ii]); if (this.xmlNamespaces[property.namespace]) { @@ -5596,6 +5599,10 @@ dav.Client.prototype = { ' <d:prop>\n'; for(var ii in properties) { + if (!properties.hasOwnProperty(ii)) { + continue; + } + var property = this.parseClarkNotation(ii); var propName; var propValue = properties[ii]; diff --git a/core/vendor/davclient.js/.bower.json b/core/vendor/davclient.js/.bower.json index 485af9e0885..f991c688731 100644 --- a/core/vendor/davclient.js/.bower.json +++ b/core/vendor/davclient.js/.bower.json @@ -1,6 +1,6 @@ { "name": "davclient.js", - "version": "0.1.1", + "version": "0.1.2", "authors": [ "Evert Pot <me@evertpot.com>" ], @@ -20,14 +20,13 @@ "test", "tests" ], - "_release": "0.1.1", + "_release": "0.1.2", "_resolution": { "type": "version", - "tag": "0.1.1", - "commit": "a2731f81540816b212c09d14596621cb070a4f10" + "tag": "0.1.2", + "commit": "c735ca284175c6f0419a2dd73de43de611afdb8f" }, "_source": "https://github.com/evert/davclient.js.git", - "_target": "0.1.1", - "_originalSource": "https://github.com/evert/davclient.js.git", - "_direct": true + "_target": "0.1.2", + "_originalSource": "https://github.com/evert/davclient.js.git" }
\ No newline at end of file diff --git a/core/vendor/davclient.js/lib/client.js b/core/vendor/davclient.js/lib/client.js index 0fc3f61f9f6..5280bb1a53a 100644 --- a/core/vendor/davclient.js/lib/client.js +++ b/core/vendor/davclient.js/lib/client.js @@ -70,6 +70,9 @@ dav.Client.prototype = { ' <d:prop>\n'; for(var ii in properties) { + if (!properties.hasOwnProperty(ii)) { + continue; + } var property = this.parseClarkNotation(properties[ii]); if (this.xmlNamespaces[property.namespace]) { @@ -115,6 +118,10 @@ dav.Client.prototype = { ' <d:prop>\n'; for(var ii in properties) { + if (!properties.hasOwnProperty(ii)) { + continue; + } + var property = this.parseClarkNotation(ii); var propName; var propValue = properties[ii]; |