Merge branch 'master' into imaginary-performance

This commit is contained in:
Daniel Hansson 2023-10-04 11:00:47 +02:00 committed by GitHub
commit d8e8e73c02
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
247 changed files with 2419 additions and 923 deletions

View file

@ -74,6 +74,13 @@ jobs:
# Run multiple copies of the current job in parallel
# Please increase the number or runners as your tests suite grows
containers: ["component", 1, 2]
# Only use cypress cloud for PRs
use-cypress-cloud:
- ${{ !!github.head_ref }}
# Only use one container if we are not using the cypress cloud.
exclude:
- use-cypress-cloud: false
containers: 2
name: runner ${{ matrix.containers }}
@ -96,14 +103,14 @@ jobs:
- name: Run ${{ matrix.containers == 'component' && 'component' || 'E2E' }} cypress tests
uses: cypress-io/github-action@59810ebfa5a5ac6fcfdcfdf036d1cd4d083a88f2 # v6.5.0
with:
record: true
parallel: true
record: '${{ !!matrix.use-cypress-cloud }}'
parallel: '${{ !!matrix.use-cypress-cloud }}'
# cypress run type
component: ${{ matrix.containers == 'component' }}
group: Run ${{ matrix.containers == 'component' && 'component' || 'E2E' }}
group: ${{ matrix.use-cypress-cloud && matrix.containers == 'component' && 'Run component' || matrix.use-cypress-cloud || 'Run E2E' }}
# cypress env
ci-build-id: ${{ github.sha }}-${{ github.run_number }}
tag: ${{ github.event_name }}
tag: ${{ matrix.use-cypress-cloud && github.event_name }}
env:
# Needs to be prefixed with CYPRESS_
CYPRESS_BRANCH: ${{ env.BRANCH }}

View file

@ -49,13 +49,13 @@ jobs:
uses: shivammathur/setup-php@c5fc0d8281aba02c7fda07d3a70cc5371548067d #v2.25.2
with:
php-version: ${{ matrix.php-versions }}
tools: phpunit:9
extensions: mbstring, fileinfo, intl, sqlite, pdo_sqlite, zip, gd
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Nextcloud
run: |
composer install
mkdir data
./occ maintenance:install --verbose --database=sqlite --database-name=nextcloud --database-host=127.0.0.1 --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass password
./occ app:enable --force ${{ env.APP_NAME }}
@ -70,7 +70,7 @@ jobs:
- name: PHPUnit
run: |
echo "<?php return ['run' => true,'host' => 'localhost','user' => 'test','password' => 'test', 'root' => '${{ env.FTP_ROOT }}'];" > apps/${{ env.APP_NAME }}/tests/config.ftp.php
phpunit --configuration tests/phpunit-autotest-external.xml apps/files_external/tests/Storage/FtpTest.php
composer run test:files_external apps/files_external/tests/Storage/FtpTest.php
- name: ftpd logs
if: always()
run: |

View file

@ -51,7 +51,6 @@ jobs:
with:
php-version: ${{ matrix.php-versions }}
extensions: ctype, curl, dom, fileinfo, gd, imagick, intl, json, mbstring, oci8, openssl, pcntl, pdo_sqlite, posix, sqlite, xml, zip
tools: phpunit:9
coverage: none
ini-file: development
env:
@ -59,13 +58,13 @@ jobs:
- name: Set up Nextcloud
run: |
composer install
mkdir data
./occ maintenance:install --verbose --database=oci --database-name=XE --database-host=127.0.0.1 --database-port=1521 --database-user=autotest --database-pass=owncloud --admin-user admin --admin-pass admin
php -f index.php
- name: PHPUnit
working-directory: tests
run: phpunit --configuration phpunit-autotest.xml --group DB,SLOWDB
run: composer run test:db
- name: Run repair steps
run: |

View file

@ -26,7 +26,6 @@ jobs:
uses: shivammathur/setup-php@c5fc0d8281aba02c7fda07d3a70cc5371548067d #v2.25.2
with:
php-version: ${{ matrix.php-versions }}
tools: phpunit:9
extensions: mbstring, fileinfo, intl, sqlite, pdo_sqlite, zip, gd
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View file

@ -44,7 +44,6 @@ jobs:
with:
php-version: ${{ matrix.php-versions }}
extensions: ctype, curl, dom, fileinfo, gd, imagick, intl, json, mbstring, openssl, pdo_sqlite, posix, sqlite, xml, zip, apcu
tools: phpunit:9
coverage: none
ini-file: development
ini-values:
@ -56,10 +55,10 @@ jobs:
env:
DB_PORT: 4444
run: |
composer install
mkdir data
./occ maintenance:install --verbose --database=sqlite --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=autotest --database-pass=rootpassword --admin-user admin --admin-pass admin
php -f index.php
- name: PHPUnit
working-directory: tests
run: phpunit --configuration phpunit-autotest.xml --exclude-group PRIMARY-azure,PRIMARY-s3,PRIMARY-swift,Memcached,Redis,RoutingWeirdness
run: composer run test -- --exclude-group PRIMARY-azure,PRIMARY-s3,PRIMARY-swift,Memcached,Redis,RoutingWeirdness

View file

@ -46,13 +46,13 @@ jobs:
uses: shivammathur/setup-php@c5fc0d8281aba02c7fda07d3a70cc5371548067d #v2.25.2
with:
php-version: ${{ matrix.php-versions }}
tools: phpunit:9
extensions: mbstring, fileinfo, intl, sqlite, pdo_sqlite, zip, gd
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Nextcloud
run: |
composer install
mkdir data
./occ maintenance:install --verbose --database=sqlite --database-name=nextcloud --database-host=127.0.0.1 --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass password
./occ app:enable --force ${{ env.APP_NAME }}
@ -60,8 +60,8 @@ jobs:
- name: PHPUnit
run: |
echo "<?php return ['run' => true, 'secret' => 'actually-not-secret', 'passwordsalt' => 'actually-not-secret', 'hostname' => 'localhost','key' => 'minio','secret' => 'minio123', 'bucket' => 'bucket', 'port' => 9000, 'use_ssl' => false, 'autocreate' => true, 'use_path_style' => true];" > apps/${{ env.APP_NAME }}/tests/config.amazons3.php
phpunit --configuration tests/phpunit-autotest-external.xml apps/files_external/tests/Storage/Amazons3Test.php
phpunit --configuration tests/phpunit-autotest-external.xml apps/files_external/tests/Storage/VersionedAmazonS3Test.php
composer run test:files_external apps/files_external/tests/Storage/Amazons3Test.php
composer run test:files_external apps/files_external/tests/Storage/VersionedAmazonS3Test.php
- name: S3 logs
if: always()
run: |
@ -99,13 +99,13 @@ jobs:
uses: shivammathur/setup-php@c5fc0d8281aba02c7fda07d3a70cc5371548067d #v2.25.2
with:
php-version: ${{ matrix.php-versions }}
tools: phpunit:9
extensions: mbstring, fileinfo, intl, sqlite, pdo_sqlite, zip, gd
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Nextcloud
run: |
composer install
mkdir data
./occ maintenance:install --verbose --database=sqlite --database-name=nextcloud --database-host=127.0.0.1 --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass password
./occ app:enable --force ${{ env.APP_NAME }}
@ -113,8 +113,8 @@ jobs:
- name: PHPUnit
run: |
echo "<?php return ['run' => true,'hostname' => 'localhost','key' => 'ignored','secret' => 'ignored', 'bucket' => 'bucket', 'port' => 4566, 'use_ssl' => false, 'autocreate' => true, 'use_path_style' => true];" > apps/${{ env.APP_NAME }}/tests/config.amazons3.php
phpunit --configuration tests/phpunit-autotest-external.xml apps/files_external/tests/Storage/Amazons3Test.php
phpunit --configuration tests/phpunit-autotest-external.xml apps/files_external/tests/Storage/VersionedAmazonS3Test.php
composer run test:files_external apps/files_external/tests/Storage/Amazons3Test.php
composer run test:files_external apps/files_external/tests/Storage/VersionedAmazonS3Test.php
- name: S3 logs
if: always()
run: |

View file

@ -44,7 +44,6 @@ jobs:
uses: shivammathur/setup-php@c5fc0d8281aba02c7fda07d3a70cc5371548067d #v2.25.2
with:
php-version: ${{ matrix.php-versions }}
tools: phpunit:9
extensions: mbstring, fileinfo, intl, sqlite, pdo_sqlite, zip, gd, redis
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View file

@ -40,13 +40,13 @@ jobs:
uses: shivammathur/setup-php@c5fc0d8281aba02c7fda07d3a70cc5371548067d #v2.25.2
with:
php-version: ${{ matrix.php-versions }}
tools: phpunit:9
extensions: mbstring, fileinfo, intl, sqlite, pdo_sqlite, zip, gd
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Nextcloud
run: |
composer install
mkdir data
echo '<?php $CONFIG=["${{ matrix.key }}" => ["class" => "OC\Files\ObjectStore\S3", "arguments" => ["bucket" => "nextcloud", "autocreate" => true, "key" => "minio", "secret" => "minio123", "hostname" => "localhost", "port" => 9000, "use_ssl" => false, "use_path_style" => true, "uploadPartSize" => 52428800]]];' > config/config.php
./occ maintenance:install --verbose --database=sqlite --database-name=nextcloud --database-host=127.0.0.1 --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass password
@ -58,8 +58,7 @@ jobs:
curl -f -m 1 --retry-connrefused --retry 10 --retry-delay 10 http://localhost:9000/minio/health/ready
- name: PHPUnit
working-directory: tests
run: phpunit --configuration phpunit-autotest.xml --group DB,SLOWDB
run: composer run test:db
- name: S3 logs
if: always()
run: |

View file

@ -43,13 +43,13 @@ jobs:
uses: shivammathur/setup-php@c5fc0d8281aba02c7fda07d3a70cc5371548067d #v2.25.2
with:
php-version: ${{ matrix.php-versions }}
tools: phpunit:9
extensions: mbstring, fileinfo, intl, sqlite, pdo_sqlite, zip, gd
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Nextcloud
run: |
composer install
mkdir data
./occ maintenance:install --verbose --database=sqlite --database-name=nextcloud --database-host=127.0.0.1 --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass password
./occ app:enable --force ${{ env.APP_NAME }}
@ -57,7 +57,7 @@ jobs:
- name: PHPUnit
run: |
echo "<?php return ['run' => true, 'host' => 'localhost:2222','user' => 'test','password' => 'test', 'root' => 'data'];" > apps/${{ env.APP_NAME }}/tests/config.sftp.php
phpunit --configuration tests/phpunit-autotest-external.xml apps/files_external/tests/Storage/SftpTest.php
composer run test:files_external apps/files_external/tests/Storage/SftpTest.php
- name: sftpd logs
if: always()
run: |

View file

@ -5,7 +5,7 @@ OC.L10N.register(
"Dashboard app" : "Aplikácia Infopanel",
"Customize" : "Prispôsobiť",
"Edit widgets" : "Upraviť miniaplikácie",
"Get more widgets from the App Store" : "Získať viac miniaplikácií z Obchodu s aplikáciami",
"Get more widgets from the App Store" : "Získať viac miniaplikácií v Obchode s aplikáciami",
"Weather service" : "Služba počasie",
"For your privacy, the weather data is requested by your Nextcloud server on your behalf so the weather service receives no personal information." : "V záujme vášho súkromia údaje o počasí vyžaduje váš server Nextcloud vo vašom mene, aby meteorologická služba nedostávala žiadne osobné informácie.",
"Weather data from Met.no" : "Dáta počasia z Met.no",

View file

@ -3,7 +3,7 @@
"Dashboard app" : "Aplikácia Infopanel",
"Customize" : "Prispôsobiť",
"Edit widgets" : "Upraviť miniaplikácie",
"Get more widgets from the App Store" : "Získať viac miniaplikácií z Obchodu s aplikáciami",
"Get more widgets from the App Store" : "Získať viac miniaplikácií v Obchode s aplikáciami",
"Weather service" : "Služba počasie",
"For your privacy, the weather data is requested by your Nextcloud server on your behalf so the weather service receives no personal information." : "V záujme vášho súkromia údaje o počasí vyžaduje váš server Nextcloud vo vašom mene, aby meteorologická služba nedostávala žiadne osobné informácie.",
"Weather data from Met.no" : "Dáta počasia z Met.no",

View file

@ -28,6 +28,9 @@ OC.L10N.register(
"Bad Signature" : "不正な署名",
"Missing Signature" : "署名が存在しません",
"one-time password for server-side-encryption" : "サーバーサイド暗号化のワンタイムパスワード",
"Encryption password" : "暗号化パスワード",
"The administration enabled server-side-encryption. Your files were encrypted using the password <strong>%s</strong>." : "管理者がサーバーサイド暗号化を有効化しました。あなたのファイルはパスワードで暗号化されています<strong>%s</strong>。",
"The administration enabled server-side-encryption. Your files were encrypted using the password \"%s\"." : "管理者がサーバーサイド暗号化を有効化しました。あなたのファイルはパスワードで暗号化されています%s。",
"Cannot decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "このファイルを復号化できません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。",
"Cannot read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "このファイルを読み取ることができません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。",
"Default encryption module" : "デフォルトの暗号化モジュール",

View file

@ -26,6 +26,9 @@
"Bad Signature" : "不正な署名",
"Missing Signature" : "署名が存在しません",
"one-time password for server-side-encryption" : "サーバーサイド暗号化のワンタイムパスワード",
"Encryption password" : "暗号化パスワード",
"The administration enabled server-side-encryption. Your files were encrypted using the password <strong>%s</strong>." : "管理者がサーバーサイド暗号化を有効化しました。あなたのファイルはパスワードで暗号化されています<strong>%s</strong>。",
"The administration enabled server-side-encryption. Your files were encrypted using the password \"%s\"." : "管理者がサーバーサイド暗号化を有効化しました。あなたのファイルはパスワードで暗号化されています%s。",
"Cannot decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "このファイルを復号化できません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。",
"Cannot read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "このファイルを読み取ることができません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。",
"Default encryption module" : "デフォルトの暗号化モジュール",

View file

@ -1063,8 +1063,8 @@ OC.Uploader.prototype = _.extend({
data.textStatus = 'notenoughspace';
data.errorThrown = t('files',
'Not enough free space, you are uploading {size1} but only {size2} is left', {
'size1': OC.Util.humanFileSize(selection.totalBytes),
'size2': OC.Util.humanFileSize(freeSpace)
'size1': OC.Util.humanFileSize(selection.totalBytes, false, false),
'size2': OC.Util.humanFileSize(freeSpace, false, false)
});
}
@ -1302,9 +1302,9 @@ OC.Uploader.prototype = _.extend({
}
self._setProgressBarText(h, h, t('files', '{loadedSize} of {totalSize} ({bitrate})' , {
loadedSize: OC.Util.humanFileSize(data.loaded),
totalSize: OC.Util.humanFileSize(total),
bitrate: OC.Util.humanFileSize(smoothBitrate / 8) + '/s'
loadedSize: OC.Util.humanFileSize(data.loaded, false, false),
totalSize: OC.Util.humanFileSize(total, false, false),
bitrate: OC.Util.humanFileSize(smoothBitrate / 8, false, false) + '/s'
}));
self._setProgressBarValue(progress);
self.trigger('progressall', e, data);

View file

@ -1798,7 +1798,7 @@
// size column
if (typeof(fileData.size) !== 'undefined' && fileData.size >= 0) {
simpleSize = OC.Util.humanFileSize(parseInt(fileData.size, 10), true);
simpleSize = OC.Util.humanFileSize(parseInt(fileData.size, 10), true, false);
// rgb(118, 118, 118) / #767676
// min. color contrast for normal text on white background according to WCAG AA
sizeColor = Math.round(118-Math.pow((fileData.size/(1024*1024)), 2));
@ -2609,7 +2609,7 @@
var oldSize = oldFile.data('size');
var newSize = oldSize + newFile.data('size');
oldFile.data('size', newSize);
oldFile.find('td.filesize').text(OC.Util.humanFileSize(newSize));
oldFile.find('td.filesize').text(OC.Util.humanFileSize(newSize, false, false));
self.remove(fileName);
}
@ -2752,7 +2752,7 @@
var oldSize = oldFile.data('size');
var newSize = oldSize + newFile.data('size');
oldFile.data('size', newSize);
oldFile.find('td.filesize').text(OC.Util.humanFileSize(newSize));
oldFile.find('td.filesize').text(OC.Util.humanFileSize(newSize, false, false));
}
self.reload();
})
@ -3463,7 +3463,7 @@
}
else {
this.$el.find('.selectedActions').removeClass('hidden');
this.$el.find('.column-size a>span:first').text(OC.Util.humanFileSize(summary.totalSize));
this.$el.find('.column-size a>span:first').text(OC.Util.humanFileSize(summary.totalSize, false, false));
var directoryInfo = n('files', '%n folder', '%n folders', summary.totalDirs);
var fileInfo = n('files', '%n file', '%n files', summary.totalFiles);

View file

@ -101,8 +101,8 @@
&& response.data.total !== undefined
&& response.data.used !== undefined
&& response.data.usedSpacePercent !== undefined) {
var humanUsed = OC.Util.humanFileSize(response.data.used, true);
var humanTotal = OC.Util.humanFileSize(response.data.total, true);
var humanUsed = OC.Util.humanFileSize(response.data.used, true, false);
var humanTotal = OC.Util.humanFileSize(response.data.total, true, false);
if (response.data.quota > 0) {
$('#quota').attr('title', t('files', '{used}%', {used: Math.round(response.data.usedSpacePercent)}));
$('#quota progress').val(response.data.usedSpacePercent);
@ -425,7 +425,7 @@ var createDragShadow = function(event) {
.attr('data-file', elem.name)
.attr('data-origin', elem.origin);
newtr.append($('<td class="filename"></td>').text(elem.name).css('background-size', 32));
newtr.append($('<td class="size"></td>').text(OC.Util.humanFileSize(elem.size)));
newtr.append($('<td class="size"></td>').text(OC.Util.humanFileSize(elem.size, false, false)));
tbody.append(newtr);
if (elem.type === 'dir') {
newtr.find('td.filename')

View file

@ -226,7 +226,7 @@
$dirInfo.html(n('files', '%n folder', '%n folders', this.summary.totalDirs));
$fileInfo.html(n('files', '%n file', '%n files', this.summary.totalFiles));
$hiddenInfo.html(' (' + n('files', 'including %n hidden', 'including %n hidden', this.summary.totalHidden) + ')');
var fileSize = this.summary.sumIsPending ? t('files', 'Pending') : OC.Util.humanFileSize(this.summary.totalSize);
var fileSize = this.summary.sumIsPending ? t('files', 'Pending') : OC.Util.humanFileSize(this.summary.totalSize, false, false);
this.$el.find('.filesize').html(fileSize);
// Show only what's necessary (may be hidden)
@ -263,7 +263,7 @@
// don't show the filesize column, if filesize is NaN (e.g. in trashbin)
var fileSize = '';
if (!isNaN(summary.totalSize)) {
fileSize = summary.sumIsPending ? t('files', 'Pending') : OC.Util.humanFileSize(summary.totalSize);
fileSize = summary.sumIsPending ? t('files', 'Pending') : OC.Util.humanFileSize(summary.totalSize, false, false);
fileSize = '<td class="filesize">' + fileSize + '</td>';
}

View file

@ -156,7 +156,7 @@
path: this.model.get('path'),
hasSize: this.model.has('size'),
sizeLabel: t('files', 'Size'),
size: OC.Util.humanFileSize(this.model.get('size'), true),
size: OC.Util.humanFileSize(this.model.get('size'), true, false),
altSize: n('files', '%n byte', '%n bytes', this.model.get('size')),
dateLabel: t('files', 'Modified'),
altDate: OC.Util.formatDate(this.model.get('mtime')),

View file

@ -188,6 +188,8 @@ OC.L10N.register(
"Could not rename \"{oldName}\", it does not exist any more" : "\"{oldName}\" の名前を変更できませんでした、それは既に存在しません。",
"The name \"{newName}\" is already used in the folder \"{dir}\". Please choose a different name." : "\"{newName}\" という名前は \"{dir}\" フォルダですでに使用されています。別の名前を選択してください。",
"Could not rename \"{oldName}\"" : "\"{oldName}\" の名前を変更できませんでした。",
"Could not copy {file}. {message}" : "{file} をコピーできませんでした。 {message}",
"Could not move {file}. {message}" : "{file} を移動できませんでした。 {message}",
"Total rows summary" : "総行数のサマリー",
"\"{displayName}\" failed on some elements " : "いくつかの要素で \"{displayName}\" が失敗しました。",
"\"{displayName}\" batch action executed successfully" : "\"{displayName}\" バッチアクションが正常に実行されました。",
@ -249,6 +251,16 @@ OC.L10N.register(
"Blank" : "ブランク",
"Unable to create new file from template" : "テンプレートから新しいファイルを作成できません",
"Delete permanently" : "永久に削除",
"Destination is not a folder" : "宛先がフォルダではありません",
"This file/folder is already in that directory" : "このファイル/フォルダはすでにそのディレクトリにあります",
"You cannot move a file/folder onto itself or into a subfolder of itself" : "ファイル/フォルダをそれ自身の上に移動したり、それ自身のサブフォルダに移動したりすることはできません。",
"A file or folder with that name already exists in this folder" : "その名前のファイルまたはフォルダが、このフォルダに既に存在します",
"The files is locked" : "ファイルはロックされています",
"The file does not exist anymore" : "ファイルはもう存在しません",
"Chose destination" : "目的地を選ぶ",
"Copy to {target}" : "{target} にコピー",
"Move to {target}" : "{target} に移動",
"Cancelled move or copy operation" : "キャンセルされた移動またはコピー操作",
"Open folder {displayName}" : "フォルダ {displayName} を開く",
"Open in Files" : "ファイルアプリで開く",
"Open details" : "詳細を開く",
@ -257,6 +269,11 @@ OC.L10N.register(
"Templates" : "テンプレート",
"Create new templates folder" : "新しいテンプレートフォルダーを作成",
"Unable to initialize the templates directory" : "テンプレートディレクトリを初期化できませんでした",
"_{folderCount} folder_::_{folderCount} folders_" : ["{folderCount} フォルダ"],
"_{fileCount} file_::_{fileCount} files_" : ["{fileCount} ファイル"],
"_1 file and {folderCount} folder_::_1 file and {folderCount} folders_" : ["1 ファイルと {folderCount} フォルダ"],
"_{fileCount} file and 1 folder_::_{fileCount} files and 1 folder_" : ["{fileCount} ファイルと 1 フォルダ"],
"{fileCount} files and {folderCount} folders" : "{fileCount} ファイルと {folderCount} フォルダ",
"List of favorites files and folders." : "お気に入りのファイルやフォルダーの一覧",
"No favorites yet" : "まだお気に入りはありません",
"Files and folders you mark as favorite will show up here" : "お気に入りに登録されたファイルやフォルダーは、ここに表示されます。",

View file

@ -186,6 +186,8 @@
"Could not rename \"{oldName}\", it does not exist any more" : "\"{oldName}\" の名前を変更できませんでした、それは既に存在しません。",
"The name \"{newName}\" is already used in the folder \"{dir}\". Please choose a different name." : "\"{newName}\" という名前は \"{dir}\" フォルダですでに使用されています。別の名前を選択してください。",
"Could not rename \"{oldName}\"" : "\"{oldName}\" の名前を変更できませんでした。",
"Could not copy {file}. {message}" : "{file} をコピーできませんでした。 {message}",
"Could not move {file}. {message}" : "{file} を移動できませんでした。 {message}",
"Total rows summary" : "総行数のサマリー",
"\"{displayName}\" failed on some elements " : "いくつかの要素で \"{displayName}\" が失敗しました。",
"\"{displayName}\" batch action executed successfully" : "\"{displayName}\" バッチアクションが正常に実行されました。",
@ -247,6 +249,16 @@
"Blank" : "ブランク",
"Unable to create new file from template" : "テンプレートから新しいファイルを作成できません",
"Delete permanently" : "永久に削除",
"Destination is not a folder" : "宛先がフォルダではありません",
"This file/folder is already in that directory" : "このファイル/フォルダはすでにそのディレクトリにあります",
"You cannot move a file/folder onto itself or into a subfolder of itself" : "ファイル/フォルダをそれ自身の上に移動したり、それ自身のサブフォルダに移動したりすることはできません。",
"A file or folder with that name already exists in this folder" : "その名前のファイルまたはフォルダが、このフォルダに既に存在します",
"The files is locked" : "ファイルはロックされています",
"The file does not exist anymore" : "ファイルはもう存在しません",
"Chose destination" : "目的地を選ぶ",
"Copy to {target}" : "{target} にコピー",
"Move to {target}" : "{target} に移動",
"Cancelled move or copy operation" : "キャンセルされた移動またはコピー操作",
"Open folder {displayName}" : "フォルダ {displayName} を開く",
"Open in Files" : "ファイルアプリで開く",
"Open details" : "詳細を開く",
@ -255,6 +267,11 @@
"Templates" : "テンプレート",
"Create new templates folder" : "新しいテンプレートフォルダーを作成",
"Unable to initialize the templates directory" : "テンプレートディレクトリを初期化できませんでした",
"_{folderCount} folder_::_{folderCount} folders_" : ["{folderCount} フォルダ"],
"_{fileCount} file_::_{fileCount} files_" : ["{fileCount} ファイル"],
"_1 file and {folderCount} folder_::_1 file and {folderCount} folders_" : ["1 ファイルと {folderCount} フォルダ"],
"_{fileCount} file and 1 folder_::_{fileCount} files and 1 folder_" : ["{fileCount} ファイルと 1 フォルダ"],
"{fileCount} files and {folderCount} folders" : "{fileCount} ファイルと {folderCount} フォルダ",
"List of favorites files and folders." : "お気に入りのファイルやフォルダーの一覧",
"No favorites yet" : "まだお気に入りはありません",
"Files and folders you mark as favorite will show up here" : "お気に入りに登録されたファイルやフォルダーは、ここに表示されます。",

View file

@ -215,7 +215,7 @@ OC.L10N.register(
"Select file or folder to link to" : "Vyberte súbor alebo priečinok na ktorý odkazovať",
"Loading current folder" : "Načítavanie súčasného adresára",
"No files in here" : "Nie sú tu žiadne súbory",
"Upload some content or sync with your devices!" : "Nahrajte nejaký obsah alebo synchronizujte so svojimi zariadeniami!",
"Upload some content or sync with your devices!" : "Nahrajte nejaký obsah alebo synchronizujte dáta so svojimi zariadeniami!",
"Go to the previous folder" : "Ísť do predchadzajúceho adresára",
"Go back" : "Ísť späť",
"Share" : "Zdieľať",

View file

@ -213,7 +213,7 @@
"Select file or folder to link to" : "Vyberte súbor alebo priečinok na ktorý odkazovať",
"Loading current folder" : "Načítavanie súčasného adresára",
"No files in here" : "Nie sú tu žiadne súbory",
"Upload some content or sync with your devices!" : "Nahrajte nejaký obsah alebo synchronizujte so svojimi zariadeniami!",
"Upload some content or sync with your devices!" : "Nahrajte nejaký obsah alebo synchronizujte dáta so svojimi zariadeniami!",
"Go to the previous folder" : "Ísť do predchadzajúceho adresára",
"Go back" : "Ísť späť",
"Share" : "Zdieľať",

View file

@ -188,6 +188,8 @@ OC.L10N.register(
"Could not rename \"{oldName}\", it does not exist any more" : "Не вдалося перейментувати \"{oldName}\", оскільки він вже відсутній",
"The name \"{newName}\" is already used in the folder \"{dir}\". Please choose a different name." : "Ім'я \"{newName}\" вже використовується у каталозі \"{dir}\". Виберіть інше ім'я.",
"Could not rename \"{oldName}\"" : "Не вдалося перейменувати \"{oldName}\"",
"Could not copy {file}. {message}" : "Не вдалося скопіювати файл {file}. {message}",
"Could not move {file}. {message}" : "Не вдалося перемістити файл {file}. {message}",
"Total rows summary" : "Загалом рядків",
"\"{displayName}\" failed on some elements " : "\"{displayName}\" не показується в окремих елементах",
"\"{displayName}\" batch action executed successfully" : "Пакетну дію \"{displayName}\" виконано успішно",
@ -249,8 +251,16 @@ OC.L10N.register(
"Blank" : "Порожньо",
"Unable to create new file from template" : "Неможливо створити новий файл з шаблону",
"Delete permanently" : "Вилучити назавжди",
"Destination is not a folder" : "Місце призначення не є каталогом",
"This file/folder is already in that directory" : "Такий файл чи каталог вже присутні в цьому каталозі",
"You cannot move a file/folder onto itself or into a subfolder of itself" : "Неможливо перемістити файл чи каталог до самого себе або у цей саме підкаталог",
"A file or folder with that name already exists in this folder" : "Файл чи каталог з таким ім'ям вже присутній в цьому каталозі",
"The files is locked" : "Файл заблоковано",
"The file does not exist anymore" : "Цей файл більше недоступний",
"Chose destination" : "Виберіть місце призначення",
"Copy to {target}" : "Копіювати до {target}",
"Move to {target}" : "Перемістити до {target}",
"Cancelled move or copy operation" : "Скасовно операцію переміщення або копіювання",
"Open folder {displayName}" : "Відкрити каталог {displayName}",
"Open in Files" : "Відкрити у Файлах",
"Open details" : "Показати деталі",
@ -259,6 +269,11 @@ OC.L10N.register(
"Templates" : "Шаблони",
"Create new templates folder" : "Створіть нову папку шаблонів",
"Unable to initialize the templates directory" : "Неможливо встановити каталог з шаблонами",
"_{folderCount} folder_::_{folderCount} folders_" : ["{folderCount} каталог","{folderCount} каталоги","{folderCount} каталогів","{folderCount} каталогів"],
"_{fileCount} file_::_{fileCount} files_" : ["{fileCount} файл","{fileCount} файли","{fileCount} файлів","{fileCount} файлів"],
"_1 file and {folderCount} folder_::_1 file and {folderCount} folders_" : ["1 файл так {folderCount} каталог","1 файл так {folderCount} каталоги","1 файл так {folderCount} каталогів","1 файл так {folderCount} каталогів"],
"_{fileCount} file and 1 folder_::_{fileCount} files and 1 folder_" : ["{fileCount} файл та 1 каталог","{fileCount} файли та 1 каталог","{fileCount} файлів та 1 каталог","{fileCount} файлів та 1 каталог"],
"{fileCount} files and {folderCount} folders" : "{fileCount} файлів та {folderCount} каталогів",
"List of favorites files and folders." : "Список вподобаних файлів та каталогів.",
"No favorites yet" : "Поки немає вподобаного",
"Files and folders you mark as favorite will show up here" : "Файли та каталоги, які ви вподобали, з’являться тут",

View file

@ -186,6 +186,8 @@
"Could not rename \"{oldName}\", it does not exist any more" : "Не вдалося перейментувати \"{oldName}\", оскільки він вже відсутній",
"The name \"{newName}\" is already used in the folder \"{dir}\". Please choose a different name." : "Ім'я \"{newName}\" вже використовується у каталозі \"{dir}\". Виберіть інше ім'я.",
"Could not rename \"{oldName}\"" : "Не вдалося перейменувати \"{oldName}\"",
"Could not copy {file}. {message}" : "Не вдалося скопіювати файл {file}. {message}",
"Could not move {file}. {message}" : "Не вдалося перемістити файл {file}. {message}",
"Total rows summary" : "Загалом рядків",
"\"{displayName}\" failed on some elements " : "\"{displayName}\" не показується в окремих елементах",
"\"{displayName}\" batch action executed successfully" : "Пакетну дію \"{displayName}\" виконано успішно",
@ -247,8 +249,16 @@
"Blank" : "Порожньо",
"Unable to create new file from template" : "Неможливо створити новий файл з шаблону",
"Delete permanently" : "Вилучити назавжди",
"Destination is not a folder" : "Місце призначення не є каталогом",
"This file/folder is already in that directory" : "Такий файл чи каталог вже присутні в цьому каталозі",
"You cannot move a file/folder onto itself or into a subfolder of itself" : "Неможливо перемістити файл чи каталог до самого себе або у цей саме підкаталог",
"A file or folder with that name already exists in this folder" : "Файл чи каталог з таким ім'ям вже присутній в цьому каталозі",
"The files is locked" : "Файл заблоковано",
"The file does not exist anymore" : "Цей файл більше недоступний",
"Chose destination" : "Виберіть місце призначення",
"Copy to {target}" : "Копіювати до {target}",
"Move to {target}" : "Перемістити до {target}",
"Cancelled move or copy operation" : "Скасовно операцію переміщення або копіювання",
"Open folder {displayName}" : "Відкрити каталог {displayName}",
"Open in Files" : "Відкрити у Файлах",
"Open details" : "Показати деталі",
@ -257,6 +267,11 @@
"Templates" : "Шаблони",
"Create new templates folder" : "Створіть нову папку шаблонів",
"Unable to initialize the templates directory" : "Неможливо встановити каталог з шаблонами",
"_{folderCount} folder_::_{folderCount} folders_" : ["{folderCount} каталог","{folderCount} каталоги","{folderCount} каталогів","{folderCount} каталогів"],
"_{fileCount} file_::_{fileCount} files_" : ["{fileCount} файл","{fileCount} файли","{fileCount} файлів","{fileCount} файлів"],
"_1 file and {folderCount} folder_::_1 file and {folderCount} folders_" : ["1 файл так {folderCount} каталог","1 файл так {folderCount} каталоги","1 файл так {folderCount} каталогів","1 файл так {folderCount} каталогів"],
"_{fileCount} file and 1 folder_::_{fileCount} files and 1 folder_" : ["{fileCount} файл та 1 каталог","{fileCount} файли та 1 каталог","{fileCount} файлів та 1 каталог","{fileCount} файлів та 1 каталог"],
"{fileCount} files and {folderCount} folders" : "{fileCount} файлів та {folderCount} каталогів",
"List of favorites files and folders." : "Список вподобаних файлів та каталогів.",
"No favorites yet" : "Поки немає вподобаного",
"Files and folders you mark as favorite will show up here" : "Файли та каталоги, які ви вподобали, з’являться тут",

View file

@ -44,7 +44,7 @@ export const action = new FileAction({
async exec(node: Node) {
try {
await axios.delete(node.source)
await axios.delete(node.encodedSource)
// Let's delete even if it's moved to the trashbin
// since it has been removed from the current view

View file

@ -86,7 +86,7 @@ export const handleCopyMoveNodeTo = async (node: Node, destination: Folder, meth
}
const relativePath = join(destination.path, node.basename)
const destinationUrl = generateRemoteUrl(`dav/files/${getCurrentUser()?.uid}${relativePath}`)
const destinationUrl = generateRemoteUrl(encodePath(`dav/files/${getCurrentUser()?.uid}${relativePath}`))
logger.debug(`${method} ${node.basename} to ${destinationUrl}`)
// Set loading state
@ -97,7 +97,7 @@ export const handleCopyMoveNodeTo = async (node: Node, destination: Folder, meth
try {
await axios({
method: method === MoveCopyAction.COPY ? 'COPY' : 'MOVE',
url: encodeURI(node.source),
url: node.encodedSource,
headers: {
Destination: encodeURI(destinationUrl),
Overwrite: overwrite ? undefined : 'F',

View file

@ -845,7 +845,7 @@ export default Vue.extend({
// Rename and move the file
async onRename() {
const oldName = this.source.basename
const oldSource = this.source.source
const oldEncodedSource = this.source.encodedSource
const newName = this.newName.trim?.() || ''
if (newName === '') {
showError(this.t('files', 'Name cannot be empty'))
@ -870,12 +870,13 @@ export default Vue.extend({
// Update node
this.source.rename(newName)
logger.debug('Moving file to', { destination: this.source.encodedSource, oldEncodedSource })
try {
await axios({
method: 'MOVE',
url: oldSource,
url: oldEncodedSource,
headers: {
Destination: encodeURI(this.source.source),
Destination: this.source.encodedSource,
},
})

View file

@ -70,7 +70,7 @@ export const entry = {
async handler(context: Folder, content: Node[]) {
const contentNames = content.map((node: Node) => node.basename)
const name = getUniqueName(t('files', 'New folder'), contentNames)
const { fileid, source } = await createNewFolder(context.source, name)
const { fileid, source } = await createNewFolder(context.encodedSource, encodeURIComponent(name))
// Create the folder in the store
const folder = new Folder({

View file

@ -30,7 +30,6 @@ import { getCurrentUser } from '@nextcloud/auth'
import { getClient, rootPath } from './WebdavClient'
import { hashCode } from '../utils/hashUtils'
import logger from '../logger'
import { encodePath } from '@nextcloud/paths'
const client = getClient()
@ -45,7 +44,7 @@ export const resultToNode = function(node: FileStat): File | Folder {
const permissions = davParsePermissions(props?.permissions)
const owner = getCurrentUser()?.uid as string
const source = generateRemoteUrl(encodePath('dav' + rootPath + node.filename))
const source = generateRemoteUrl('dav' + rootPath + node.filename)
const id = props?.fileid < 0
? hashCode(source)
: props?.fileid as number || 0

View file

@ -1,6 +1,7 @@
OC.L10N.register(
"files_reminders",
{
"File reminders" : "Нагадування для файлів",
"Reminder for {name}" : "Нагадування для {name}",
"View file" : "Переглянути файл",
"View folder" : "Переглянути каталог",

View file

@ -1,4 +1,5 @@
{ "translations": {
"File reminders" : "Нагадування для файлів",
"Reminder for {name}" : "Нагадування для {name}",
"View file" : "Переглянути файл",
"View folder" : "Переглянути каталог",

View file

@ -203,6 +203,7 @@ OC.L10N.register(
"Expiration date" : "تاريخ إنتهاء صلاحية المشاركة",
"Hide download" : "إخفاء التنزيل",
"Video verification" : "التحقُّق من الفيديو",
"Allow download" : "إسمَح بالتنزيل",
"Note to recipient" : "ملاحظة للمستلم",
"Enter a note for the share recipient" : "أدخل ملاحظةً لمُستلِم المُشارَكة",
"Create" : "أنشِيء",
@ -301,7 +302,6 @@ OC.L10N.register(
"Allow deleting" : "السماح بالحذف",
"Allow resharing" : "السماح بإعادة المشاركة ",
"Expiration date enforced" : "فرض تاريخ انتهاء الصلاحية المشاركة",
"Allow download" : "إسمَح بالتنزيل",
"Password protect" : "حماية بكلمة مرور",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "خطأ في توليد كلمة المرور بسبب مخالفة سياسة كلمات المرور"

View file

@ -201,6 +201,7 @@
"Expiration date" : "تاريخ إنتهاء صلاحية المشاركة",
"Hide download" : "إخفاء التنزيل",
"Video verification" : "التحقُّق من الفيديو",
"Allow download" : "إسمَح بالتنزيل",
"Note to recipient" : "ملاحظة للمستلم",
"Enter a note for the share recipient" : "أدخل ملاحظةً لمُستلِم المُشارَكة",
"Create" : "أنشِيء",
@ -299,7 +300,6 @@
"Allow deleting" : "السماح بالحذف",
"Allow resharing" : "السماح بإعادة المشاركة ",
"Expiration date enforced" : "فرض تاريخ انتهاء الصلاحية المشاركة",
"Allow download" : "إسمَح بالتنزيل",
"Password protect" : "حماية بكلمة مرور",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "خطأ في توليد كلمة المرور بسبب مخالفة سياسة كلمات المرور"

View file

@ -199,6 +199,7 @@ OC.L10N.register(
"Expiration date" : "Валидност",
"Hide download" : "Скрий свалянето",
"Video verification" : "Видео потвърждение",
"Allow download" : "Позволяване на изтегляне/сваляне/",
"Note to recipient" : "Бележка за получателя",
"Enter a note for the share recipient" : "Въведете бележка за получателя на споделянето",
"Create" : "Създаване",
@ -276,7 +277,6 @@ OC.L10N.register(
"Allow deleting" : "Разреши изтриването",
"Allow resharing" : "Може да споделя повторно",
"Expiration date enforced" : "Дата на изтичане на срока на действие",
"Allow download" : "Позволяване на изтегляне/сваляне/",
"Password protect" : "Защита с парола",
"Science Mesh" : "Приложение Science Mesh",
"Error generating password from password_policy" : "Грешка при генериране на парола от политиката за пароли"

View file

@ -197,6 +197,7 @@
"Expiration date" : "Валидност",
"Hide download" : "Скрий свалянето",
"Video verification" : "Видео потвърждение",
"Allow download" : "Позволяване на изтегляне/сваляне/",
"Note to recipient" : "Бележка за получателя",
"Enter a note for the share recipient" : "Въведете бележка за получателя на споделянето",
"Create" : "Създаване",
@ -274,7 +275,6 @@
"Allow deleting" : "Разреши изтриването",
"Allow resharing" : "Може да споделя повторно",
"Expiration date enforced" : "Дата на изтичане на срока на действие",
"Allow download" : "Позволяване на изтегляне/сваляне/",
"Password protect" : "Защита с парола",
"Science Mesh" : "Приложение Science Mesh",
"Error generating password from password_policy" : "Грешка при генериране на парола от политиката за пароли"

View file

@ -203,6 +203,7 @@ OC.L10N.register(
"Expiration date" : "Data de caducitat",
"Hide download" : "Amaga la baixada",
"Video verification" : "Verificació de vídeo",
"Allow download" : "Permet la baixada",
"Note to recipient" : "Nota per al destinatari",
"Enter a note for the share recipient" : "Introduïu una nota per al destinatari de l'element compartit",
"Create" : "Crea",
@ -301,7 +302,6 @@ OC.L10N.register(
"Allow deleting" : "Permet la supressió",
"Allow resharing" : "Permet l'ús compartit derivat",
"Expiration date enforced" : "Data de caducitat",
"Allow download" : "Permet la baixada",
"Password protect" : "Protegeix amb contrasenya",
"Science Mesh" : "ScienceMesh",
"Error generating password from password_policy" : "S'ha produït un error en generar la contrasenya a partir de password_policy"

View file

@ -201,6 +201,7 @@
"Expiration date" : "Data de caducitat",
"Hide download" : "Amaga la baixada",
"Video verification" : "Verificació de vídeo",
"Allow download" : "Permet la baixada",
"Note to recipient" : "Nota per al destinatari",
"Enter a note for the share recipient" : "Introduïu una nota per al destinatari de l'element compartit",
"Create" : "Crea",
@ -299,7 +300,6 @@
"Allow deleting" : "Permet la supressió",
"Allow resharing" : "Permet l'ús compartit derivat",
"Expiration date enforced" : "Data de caducitat",
"Allow download" : "Permet la baixada",
"Password protect" : "Protegeix amb contrasenya",
"Science Mesh" : "ScienceMesh",
"Error generating password from password_policy" : "S'ha produït un error en generar la contrasenya a partir de password_policy"

View file

@ -203,6 +203,7 @@ OC.L10N.register(
"Expiration date" : "Datum skončení platnosti",
"Hide download" : "Skrýt stahování",
"Video verification" : "Ověřování pomocí videa",
"Allow download" : "Umožnit stahování",
"Note to recipient" : "Poznámka pro příjemce",
"Enter a note for the share recipient" : "Zadejte poznámku pro příjemce sdílení",
"Create" : "Vytvářet",
@ -301,7 +302,6 @@ OC.L10N.register(
"Allow deleting" : "Povolit mazání",
"Allow resharing" : "Povolit sdílet dále",
"Expiration date enforced" : "Datum skončení platnosti vynuceno",
"Allow download" : "Umožnit stahování",
"Password protect" : "Chránit heslem",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Chyba při vytváření hesla ze zásady pro hesla"

View file

@ -201,6 +201,7 @@
"Expiration date" : "Datum skončení platnosti",
"Hide download" : "Skrýt stahování",
"Video verification" : "Ověřování pomocí videa",
"Allow download" : "Umožnit stahování",
"Note to recipient" : "Poznámka pro příjemce",
"Enter a note for the share recipient" : "Zadejte poznámku pro příjemce sdílení",
"Create" : "Vytvářet",
@ -299,7 +300,6 @@
"Allow deleting" : "Povolit mazání",
"Allow resharing" : "Povolit sdílet dále",
"Expiration date enforced" : "Datum skončení platnosti vynuceno",
"Allow download" : "Umožnit stahování",
"Password protect" : "Chránit heslem",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Chyba při vytváření hesla ze zásady pro hesla"

View file

@ -200,6 +200,7 @@ OC.L10N.register(
"Expiration date" : "Ablaufdatum",
"Hide download" : "Download verbergen",
"Video verification" : "Videoüberprüfung",
"Allow download" : "Download erlauben",
"Note to recipient" : "Notiz an Empfänger",
"Enter a note for the share recipient" : "Notiz für Empfänger der Freigabe eingeben",
"Create" : "Erstellen",
@ -288,7 +289,6 @@ OC.L10N.register(
"Allow deleting" : "Löschen erlauben",
"Allow resharing" : "Weiterteilen erlauben",
"Expiration date enforced" : "Ablaufdatum erzwungen",
"Allow download" : "Download erlauben",
"Password protect" : "Passwortschutz",
"Science Mesh" : "ScienceMesh",
"Error generating password from password_policy" : "Fehler beim Erzeugen des Passworts basierend auf der Passwort-Policy"

View file

@ -198,6 +198,7 @@
"Expiration date" : "Ablaufdatum",
"Hide download" : "Download verbergen",
"Video verification" : "Videoüberprüfung",
"Allow download" : "Download erlauben",
"Note to recipient" : "Notiz an Empfänger",
"Enter a note for the share recipient" : "Notiz für Empfänger der Freigabe eingeben",
"Create" : "Erstellen",
@ -286,7 +287,6 @@
"Allow deleting" : "Löschen erlauben",
"Allow resharing" : "Weiterteilen erlauben",
"Expiration date enforced" : "Ablaufdatum erzwungen",
"Allow download" : "Download erlauben",
"Password protect" : "Passwortschutz",
"Science Mesh" : "ScienceMesh",
"Error generating password from password_policy" : "Fehler beim Erzeugen des Passworts basierend auf der Passwort-Policy"

View file

@ -203,6 +203,7 @@ OC.L10N.register(
"Expiration date" : "Ablaufdatum",
"Hide download" : "Download verbergen",
"Video verification" : "Videoüberprüfung",
"Allow download" : "Download erlauben",
"Note to recipient" : "Notiz an Empfänger",
"Enter a note for the share recipient" : "Notiz für Empfänger der Freigabe eingeben",
"Create" : "Erstellen",
@ -301,7 +302,6 @@ OC.L10N.register(
"Allow deleting" : "Löschen erlauben",
"Allow resharing" : "Weiterteilen erlauben",
"Expiration date enforced" : "Ablaufdatum erzwungen",
"Allow download" : "Download erlauben",
"Password protect" : "Passwortschutz",
"Science Mesh" : "ScienceMesh",
"Error generating password from password_policy" : "Fehler beim Erzeugen des Passworts basierend auf der Kennwortrichtlinie"

View file

@ -201,6 +201,7 @@
"Expiration date" : "Ablaufdatum",
"Hide download" : "Download verbergen",
"Video verification" : "Videoüberprüfung",
"Allow download" : "Download erlauben",
"Note to recipient" : "Notiz an Empfänger",
"Enter a note for the share recipient" : "Notiz für Empfänger der Freigabe eingeben",
"Create" : "Erstellen",
@ -299,7 +300,6 @@
"Allow deleting" : "Löschen erlauben",
"Allow resharing" : "Weiterteilen erlauben",
"Expiration date enforced" : "Ablaufdatum erzwungen",
"Allow download" : "Download erlauben",
"Password protect" : "Passwortschutz",
"Science Mesh" : "ScienceMesh",
"Error generating password from password_policy" : "Fehler beim Erzeugen des Passworts basierend auf der Kennwortrichtlinie"

View file

@ -185,6 +185,7 @@ OC.L10N.register(
"Expiration date" : "Ημερομηνία λήξης",
"Hide download" : "Απόκρυψη λήψης",
"Video verification" : "Επαλήθευση βίντεο",
"Allow download" : "Να επιτρέπεται η λήψη",
"Note to recipient" : "Σημείωση προς τον παραλήπτη",
"Enter a note for the share recipient" : "Προσθέτε σημείωση για τους παραλήπτες του κοινόχρηστου",
"Create" : "Δημιουργία",
@ -257,7 +258,6 @@ OC.L10N.register(
"Allow deleting" : "Επιτρέπεται η διαγραφή",
"Allow resharing" : "Επιτρέπεται ο επαναδιαμοιρασμός",
"Expiration date enforced" : "Επεβλήθη ημερομηνία λήξης",
"Allow download" : "Να επιτρέπεται η λήψη",
"Password protect" : "Προστασία με συνθηματικό"
},
"nplurals=2; plural=(n != 1);");

View file

@ -183,6 +183,7 @@
"Expiration date" : "Ημερομηνία λήξης",
"Hide download" : "Απόκρυψη λήψης",
"Video verification" : "Επαλήθευση βίντεο",
"Allow download" : "Να επιτρέπεται η λήψη",
"Note to recipient" : "Σημείωση προς τον παραλήπτη",
"Enter a note for the share recipient" : "Προσθέτε σημείωση για τους παραλήπτες του κοινόχρηστου",
"Create" : "Δημιουργία",
@ -255,7 +256,6 @@
"Allow deleting" : "Επιτρέπεται η διαγραφή",
"Allow resharing" : "Επιτρέπεται ο επαναδιαμοιρασμός",
"Expiration date enforced" : "Επεβλήθη ημερομηνία λήξης",
"Allow download" : "Να επιτρέπεται η λήψη",
"Password protect" : "Προστασία με συνθηματικό"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -203,6 +203,7 @@ OC.L10N.register(
"Expiration date" : "Expiration date",
"Hide download" : "Hide download",
"Video verification" : "Video verification",
"Allow download" : "Allow download",
"Note to recipient" : "Note to recipient",
"Enter a note for the share recipient" : "Enter a note for the share recipient",
"Create" : "Create",
@ -301,7 +302,6 @@ OC.L10N.register(
"Allow deleting" : "Allow deleting",
"Allow resharing" : "Allow resharing",
"Expiration date enforced" : "Expiration date enforced",
"Allow download" : "Allow download",
"Password protect" : "Password protect",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Error generating password from password policy"

View file

@ -201,6 +201,7 @@
"Expiration date" : "Expiration date",
"Hide download" : "Hide download",
"Video verification" : "Video verification",
"Allow download" : "Allow download",
"Note to recipient" : "Note to recipient",
"Enter a note for the share recipient" : "Enter a note for the share recipient",
"Create" : "Create",
@ -299,7 +300,6 @@
"Allow deleting" : "Allow deleting",
"Allow resharing" : "Allow resharing",
"Expiration date enforced" : "Expiration date enforced",
"Allow download" : "Allow download",
"Password protect" : "Password protect",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Error generating password from password policy"

View file

@ -203,6 +203,7 @@ OC.L10N.register(
"Expiration date" : "Fecha de caducidad",
"Hide download" : "Ocultar descarga",
"Video verification" : "Verificación por vídeo",
"Allow download" : "Permitir descarga",
"Note to recipient" : "Nota para el destinatario",
"Enter a note for the share recipient" : "Escriba una nota para el recurso compartido del destinatario",
"Create" : "Crear",
@ -301,7 +302,6 @@ OC.L10N.register(
"Allow deleting" : "Permitir la eliminación",
"Allow resharing" : "Permitir recompartir",
"Expiration date enforced" : "Fecha de caducidad impuesta",
"Allow download" : "Permitir descarga",
"Password protect" : "Protegido por contraseña",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Error generando contraseña desde la política de contraseñas"

View file

@ -201,6 +201,7 @@
"Expiration date" : "Fecha de caducidad",
"Hide download" : "Ocultar descarga",
"Video verification" : "Verificación por vídeo",
"Allow download" : "Permitir descarga",
"Note to recipient" : "Nota para el destinatario",
"Enter a note for the share recipient" : "Escriba una nota para el recurso compartido del destinatario",
"Create" : "Crear",
@ -299,7 +300,6 @@
"Allow deleting" : "Permitir la eliminación",
"Allow resharing" : "Permitir recompartir",
"Expiration date enforced" : "Fecha de caducidad impuesta",
"Allow download" : "Permitir descarga",
"Password protect" : "Protegido por contraseña",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Error generando contraseña desde la política de contraseñas"

View file

@ -197,6 +197,7 @@ OC.L10N.register(
"Expiration date" : "Fecha de expiración",
"Hide download" : "Ocultar descarga",
"Video verification" : "Verificación de video",
"Allow download" : "Permitir descarga",
"Note to recipient" : "Nota para el destinatario",
"Enter a note for the share recipient" : "Ingresa una nota para el destinatario de la compartición",
"Create" : "Crear",
@ -289,7 +290,6 @@ OC.L10N.register(
"Allow deleting" : "Permitir eliminación",
"Allow resharing" : "Permitir volver a compartir",
"Expiration date enforced" : "Vencimiento de la fecha exigido",
"Allow download" : "Permitir descarga",
"Password protect" : "Proteger con contraseña",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Error al generar la contraseña según la política de contraseñas"

View file

@ -195,6 +195,7 @@
"Expiration date" : "Fecha de expiración",
"Hide download" : "Ocultar descarga",
"Video verification" : "Verificación de video",
"Allow download" : "Permitir descarga",
"Note to recipient" : "Nota para el destinatario",
"Enter a note for the share recipient" : "Ingresa una nota para el destinatario de la compartición",
"Create" : "Crear",
@ -287,7 +288,6 @@
"Allow deleting" : "Permitir eliminación",
"Allow resharing" : "Permitir volver a compartir",
"Expiration date enforced" : "Vencimiento de la fecha exigido",
"Allow download" : "Permitir descarga",
"Password protect" : "Proteger con contraseña",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Error al generar la contraseña según la política de contraseñas"

View file

@ -200,6 +200,7 @@ OC.L10N.register(
"Expiration date" : "Iraungitze-data",
"Hide download" : "Ezkutatu deskarga",
"Video verification" : "Bideo egiaztapena",
"Allow download" : "Baimendu deskarga",
"Note to recipient" : "Oharra hartzailearentzat",
"Enter a note for the share recipient" : "Sartu ohar bat partekatzearen hartzailearentzat",
"Create" : "Sortu",
@ -293,7 +294,6 @@ OC.L10N.register(
"Allow deleting" : "Baimendu ezabatzea",
"Allow resharing" : "Baimendu birpartekatzea",
"Expiration date enforced" : "Iraungitze-data betearazita",
"Allow download" : "Baimendu deskarga",
"Password protect" : "Babestu pasahitzarekin",
"Science Mesh" : "Zientzia sarea",
"Error generating password from password_policy" : "Errorea pasahitz-gidalerrotik pasahitza sortzean"

View file

@ -198,6 +198,7 @@
"Expiration date" : "Iraungitze-data",
"Hide download" : "Ezkutatu deskarga",
"Video verification" : "Bideo egiaztapena",
"Allow download" : "Baimendu deskarga",
"Note to recipient" : "Oharra hartzailearentzat",
"Enter a note for the share recipient" : "Sartu ohar bat partekatzearen hartzailearentzat",
"Create" : "Sortu",
@ -291,7 +292,6 @@
"Allow deleting" : "Baimendu ezabatzea",
"Allow resharing" : "Baimendu birpartekatzea",
"Expiration date enforced" : "Iraungitze-data betearazita",
"Allow download" : "Baimendu deskarga",
"Password protect" : "Babestu pasahitzarekin",
"Science Mesh" : "Zientzia sarea",
"Error generating password from password_policy" : "Errorea pasahitz-gidalerrotik pasahitza sortzean"

View file

@ -200,6 +200,7 @@ OC.L10N.register(
"Expiration date" : "تاریخ انقضا",
"Hide download" : "پنهان کردن بارگیری",
"Video verification" : "تأیید صحت ویدیو",
"Allow download" : "Allow download",
"Note to recipient" : "یادداشت برای گیرنده",
"Enter a note for the share recipient" : "برای دریافت کننده اشتراک یک یادداشت وارد کنید",
"Create" : "ایجاد",
@ -293,7 +294,6 @@ OC.L10N.register(
"Allow deleting" : "اجازه حذف",
"Allow resharing" : "مجوز اشتراک گذاری مجدد",
"Expiration date enforced" : "تاریخ انقضا اجرا شده است",
"Allow download" : "Allow download",
"Password protect" : "محافظت با گذرواژه",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Error generating password from password_policy"

View file

@ -198,6 +198,7 @@
"Expiration date" : "تاریخ انقضا",
"Hide download" : "پنهان کردن بارگیری",
"Video verification" : "تأیید صحت ویدیو",
"Allow download" : "Allow download",
"Note to recipient" : "یادداشت برای گیرنده",
"Enter a note for the share recipient" : "برای دریافت کننده اشتراک یک یادداشت وارد کنید",
"Create" : "ایجاد",
@ -291,7 +292,6 @@
"Allow deleting" : "اجازه حذف",
"Allow resharing" : "مجوز اشتراک گذاری مجدد",
"Expiration date enforced" : "تاریخ انقضا اجرا شده است",
"Allow download" : "Allow download",
"Password protect" : "محافظت با گذرواژه",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Error generating password from password_policy"

View file

@ -191,6 +191,7 @@ OC.L10N.register(
"Expiration date" : "Vanhenemispäivä",
"Hide download" : "Piilota lataus",
"Video verification" : "Videovarmistus",
"Allow download" : "Salli lataus",
"Note to recipient" : "Huomio vastaanottajalle",
"Enter a note for the share recipient" : "Lisää muistiinpano jaon vastaanottajalle",
"Create" : "Luo",
@ -282,7 +283,6 @@ OC.L10N.register(
"Allow deleting" : "Salli poistaminen",
"Allow resharing" : "Salli uudelleenjakaminen",
"Expiration date enforced" : "Vanhenemispäivä pakotettu",
"Allow download" : "Salli lataus",
"Password protect" : "Suojaa salasanalla"
},
"nplurals=2; plural=(n != 1);");

View file

@ -189,6 +189,7 @@
"Expiration date" : "Vanhenemispäivä",
"Hide download" : "Piilota lataus",
"Video verification" : "Videovarmistus",
"Allow download" : "Salli lataus",
"Note to recipient" : "Huomio vastaanottajalle",
"Enter a note for the share recipient" : "Lisää muistiinpano jaon vastaanottajalle",
"Create" : "Luo",
@ -280,7 +281,6 @@
"Allow deleting" : "Salli poistaminen",
"Allow resharing" : "Salli uudelleenjakaminen",
"Expiration date enforced" : "Vanhenemispäivä pakotettu",
"Allow download" : "Salli lataus",
"Password protect" : "Suojaa salasanalla"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -203,6 +203,7 @@ OC.L10N.register(
"Expiration date" : "Date d'expiration",
"Hide download" : "Masquer le téléchargement",
"Video verification" : "Vérification vidéo",
"Allow download" : "Autoriser le téléchargement",
"Note to recipient" : "Note au destinataire",
"Enter a note for the share recipient" : "Saisissez une note pour le destinataire du partage",
"Create" : "Créer",
@ -301,7 +302,6 @@ OC.L10N.register(
"Allow deleting" : "Autoriser la suppression",
"Allow resharing" : "Autoriser le repartage",
"Expiration date enforced" : "Date d'expiration forcée",
"Allow download" : "Autoriser le téléchargement",
"Password protect" : "Protéger par un mot de passe",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Erreur de génération de mot de passe à partir de password_policy"

View file

@ -201,6 +201,7 @@
"Expiration date" : "Date d'expiration",
"Hide download" : "Masquer le téléchargement",
"Video verification" : "Vérification vidéo",
"Allow download" : "Autoriser le téléchargement",
"Note to recipient" : "Note au destinataire",
"Enter a note for the share recipient" : "Saisissez une note pour le destinataire du partage",
"Create" : "Créer",
@ -299,7 +300,6 @@
"Allow deleting" : "Autoriser la suppression",
"Allow resharing" : "Autoriser le repartage",
"Expiration date enforced" : "Date d'expiration forcée",
"Allow download" : "Autoriser le téléchargement",
"Password protect" : "Protéger par un mot de passe",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Erreur de génération de mot de passe à partir de password_policy"

View file

@ -203,6 +203,7 @@ OC.L10N.register(
"Expiration date" : "Data de caducidade",
"Hide download" : "Agochar a descarga",
"Video verification" : "Verificación de vídeo",
"Allow download" : "Permitir a descarga",
"Note to recipient" : "Nota para o destinatario",
"Enter a note for the share recipient" : "Introduza unha nota para o destinatario da compartición",
"Create" : "Crear",
@ -300,7 +301,6 @@ OC.L10N.register(
"Allow deleting" : "Permitir a eliminación",
"Allow resharing" : "Permitir compartir",
"Expiration date enforced" : "Data de caducidade obrigada",
"Allow download" : "Permitir a descarga",
"Password protect" : "Protexido con contrasinal",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Produciuse un erro ao xerar o contrasinal a partir da directiva de contrasinais"

View file

@ -201,6 +201,7 @@
"Expiration date" : "Data de caducidade",
"Hide download" : "Agochar a descarga",
"Video verification" : "Verificación de vídeo",
"Allow download" : "Permitir a descarga",
"Note to recipient" : "Nota para o destinatario",
"Enter a note for the share recipient" : "Introduza unha nota para o destinatario da compartición",
"Create" : "Crear",
@ -298,7 +299,6 @@
"Allow deleting" : "Permitir a eliminación",
"Allow resharing" : "Permitir compartir",
"Expiration date enforced" : "Data de caducidade obrigada",
"Allow download" : "Permitir a descarga",
"Password protect" : "Protexido con contrasinal",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Produciuse un erro ao xerar o contrasinal a partir da directiva de contrasinais"

View file

@ -199,6 +199,7 @@ OC.L10N.register(
"Expiration date" : "Lejárati dátum",
"Hide download" : "Letöltés elrejtése",
"Video verification" : "Videós ellenőrzés",
"Allow download" : "Letöltés engedélyezése",
"Note to recipient" : "Jegyzet a címzettnek",
"Enter a note for the share recipient" : "Adjon meg egy megjegyzést a megosztás címzettje számára",
"Create" : "Létrehozás",
@ -276,7 +277,6 @@ OC.L10N.register(
"Allow deleting" : "Törlés engedélyezése",
"Allow resharing" : "A megosztás továbbadásának engedélyezése",
"Expiration date enforced" : "Lejárati idő megkövetelése",
"Allow download" : "Letöltés engedélyezése",
"Password protect" : "Jelszavas védelem",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Hiba a password_policy használatával történő jelszó-előállításkor"

View file

@ -197,6 +197,7 @@
"Expiration date" : "Lejárati dátum",
"Hide download" : "Letöltés elrejtése",
"Video verification" : "Videós ellenőrzés",
"Allow download" : "Letöltés engedélyezése",
"Note to recipient" : "Jegyzet a címzettnek",
"Enter a note for the share recipient" : "Adjon meg egy megjegyzést a megosztás címzettje számára",
"Create" : "Létrehozás",
@ -274,7 +275,6 @@
"Allow deleting" : "Törlés engedélyezése",
"Allow resharing" : "A megosztás továbbadásának engedélyezése",
"Expiration date enforced" : "Lejárati idő megkövetelése",
"Allow download" : "Letöltés engedélyezése",
"Password protect" : "Jelszavas védelem",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Hiba a password_policy használatával történő jelszó-előállításkor"

View file

@ -203,6 +203,7 @@ OC.L10N.register(
"Expiration date" : "Data di scadenza",
"Hide download" : "Nascondi scaricamento",
"Video verification" : "Verifica video",
"Allow download" : "Consenti download",
"Note to recipient" : "Nota al destinatario",
"Enter a note for the share recipient" : "Digita una nota per il destinatario della condivisione",
"Create" : "Crea",
@ -301,7 +302,6 @@ OC.L10N.register(
"Allow deleting" : "Consenti l'eliminazione",
"Allow resharing" : "Consenti la ri-condivisione",
"Expiration date enforced" : "Data di scadenza applicata",
"Allow download" : "Consenti download",
"Password protect" : "Proteggi con password",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Errore: la password non rispetta i criteri stabiliti"

View file

@ -201,6 +201,7 @@
"Expiration date" : "Data di scadenza",
"Hide download" : "Nascondi scaricamento",
"Video verification" : "Verifica video",
"Allow download" : "Consenti download",
"Note to recipient" : "Nota al destinatario",
"Enter a note for the share recipient" : "Digita una nota per il destinatario della condivisione",
"Create" : "Crea",
@ -299,7 +300,6 @@
"Allow deleting" : "Consenti l'eliminazione",
"Allow resharing" : "Consenti la ri-condivisione",
"Expiration date enforced" : "Data di scadenza applicata",
"Allow download" : "Consenti download",
"Password protect" : "Proteggi con password",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Errore: la password non rispetta i criteri stabiliti"

View file

@ -203,6 +203,7 @@ OC.L10N.register(
"Expiration date" : "有効期限",
"Hide download" : "ダウンロードを隠す",
"Video verification" : "ビデオ通話によるパスワード通知",
"Allow download" : "ダウンロードを許可",
"Note to recipient" : "受取人への注意",
"Enter a note for the share recipient" : "共有受信者へのメモを入力してください",
"Create" : "作成",
@ -301,7 +302,6 @@ OC.L10N.register(
"Allow deleting" : "削除許可",
"Allow resharing" : "再共有を許可する",
"Expiration date enforced" : "有効期限が強制される",
"Allow download" : "ダウンロードを許可",
"Password protect" : "パスワード保護",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "password_policy からのパスワード生成エラー"

View file

@ -201,6 +201,7 @@
"Expiration date" : "有効期限",
"Hide download" : "ダウンロードを隠す",
"Video verification" : "ビデオ通話によるパスワード通知",
"Allow download" : "ダウンロードを許可",
"Note to recipient" : "受取人への注意",
"Enter a note for the share recipient" : "共有受信者へのメモを入力してください",
"Create" : "作成",
@ -299,7 +300,6 @@
"Allow deleting" : "削除許可",
"Allow resharing" : "再共有を許可する",
"Expiration date enforced" : "有効期限が強制される",
"Allow download" : "ダウンロードを許可",
"Password protect" : "パスワード保護",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "password_policy からのパスワード生成エラー"

View file

@ -201,6 +201,7 @@ OC.L10N.register(
"Expiration date" : "만료 날짜",
"Hide download" : "Hide download",
"Video verification" : "화상 인증",
"Allow download" : "다운로드 허용",
"Note to recipient" : "받는이에게 메모",
"Enter a note for the share recipient" : "받는이를 위한 메모 입력",
"Create" : "생성",
@ -298,7 +299,6 @@ OC.L10N.register(
"Allow deleting" : "삭제 수락",
"Allow resharing" : "재공유 허용",
"Expiration date enforced" : "만료 날짜 적용",
"Allow download" : "다운로드 허용",
"Password protect" : "암호 보호",
"Error generating password from password_policy" : "password_policy에서 암호 생성 중에 오류 발생"
},

View file

@ -199,6 +199,7 @@
"Expiration date" : "만료 날짜",
"Hide download" : "Hide download",
"Video verification" : "화상 인증",
"Allow download" : "다운로드 허용",
"Note to recipient" : "받는이에게 메모",
"Enter a note for the share recipient" : "받는이를 위한 메모 입력",
"Create" : "생성",
@ -296,7 +297,6 @@
"Allow deleting" : "삭제 수락",
"Allow resharing" : "재공유 허용",
"Expiration date enforced" : "만료 날짜 적용",
"Allow download" : "다운로드 허용",
"Password protect" : "암호 보호",
"Error generating password from password_policy" : "password_policy에서 암호 생성 중에 오류 발생"
},"pluralForm" :"nplurals=1; plural=0;"

View file

@ -178,6 +178,7 @@ OC.L10N.register(
"Expiration date" : "Pabaigos data",
"Hide download" : "Slėpti atsisiuntimą",
"Video verification" : "Video patikrinimas",
"Allow download" : "Leisti atsisiųsti",
"Note to recipient" : "Pastaba gavėjui",
"Enter a note for the share recipient" : "Įrašykite pranešimą bendrinimo gavėjui",
"Create" : "Sukurti",
@ -251,7 +252,6 @@ OC.L10N.register(
"Allow deleting" : "Leisti ištrynimą",
"Allow resharing" : "Leisti bendrinti iš naujo",
"Expiration date enforced" : "Aktyvuotas galiojimo laikas",
"Allow download" : "Leisti atsisiųsti",
"Password protect" : "Apsaugoti slaptažodžiu"
},
"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);");

View file

@ -176,6 +176,7 @@
"Expiration date" : "Pabaigos data",
"Hide download" : "Slėpti atsisiuntimą",
"Video verification" : "Video patikrinimas",
"Allow download" : "Leisti atsisiųsti",
"Note to recipient" : "Pastaba gavėjui",
"Enter a note for the share recipient" : "Įrašykite pranešimą bendrinimo gavėjui",
"Create" : "Sukurti",
@ -249,7 +250,6 @@
"Allow deleting" : "Leisti ištrynimą",
"Allow resharing" : "Leisti bendrinti iš naujo",
"Expiration date enforced" : "Aktyvuotas galiojimo laikas",
"Allow download" : "Leisti atsisiųsti",
"Password protect" : "Apsaugoti slaptažodžiu"
},"pluralForm" :"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);"
}

View file

@ -200,6 +200,7 @@ OC.L10N.register(
"Expiration date" : "Рок на траење",
"Hide download" : "Сокриј преземање",
"Video verification" : "Верификација со видео",
"Allow download" : "Дозволи преземање",
"Note to recipient" : "Белешка до примачот",
"Enter a note for the share recipient" : "Внесете белешка до примачот на споделуваето",
"Create" : "Креирај",
@ -297,7 +298,6 @@ OC.L10N.register(
"Allow deleting" : "Дозволи бришење",
"Allow resharing" : "Дозволи повторно споделување",
"Expiration date enforced" : "Задолжителен рок на траење",
"Allow download" : "Дозволи преземање",
"Password protect" : "Заштити со лозинка",
"Error generating password from password_policy" : "Грешка при генерирање на лозинка од политиката на лозинки"
},

View file

@ -198,6 +198,7 @@
"Expiration date" : "Рок на траење",
"Hide download" : "Сокриј преземање",
"Video verification" : "Верификација со видео",
"Allow download" : "Дозволи преземање",
"Note to recipient" : "Белешка до примачот",
"Enter a note for the share recipient" : "Внесете белешка до примачот на споделуваето",
"Create" : "Креирај",
@ -295,7 +296,6 @@
"Allow deleting" : "Дозволи бришење",
"Allow resharing" : "Дозволи повторно споделување",
"Expiration date enforced" : "Задолжителен рок на траење",
"Allow download" : "Дозволи преземање",
"Password protect" : "Заштити со лозинка",
"Error generating password from password_policy" : "Грешка при генерирање на лозинка од политиката на лозинки"
},"pluralForm" :"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"

View file

@ -198,6 +198,7 @@ OC.L10N.register(
"Expiration date" : "Utløpsdato",
"Hide download" : "Gjem nedlasting",
"Video verification" : "Videobekreftelse",
"Allow download" : "Tillat nedlasting",
"Note to recipient" : "Melding til mottaker",
"Enter a note for the share recipient" : "Skriv inn en beskjed til mottaker av deling",
"Create" : "Opprett",
@ -274,7 +275,6 @@ OC.L10N.register(
"Allow deleting" : "Tillat sletting",
"Allow resharing" : "TIllat videre deling",
"Expiration date enforced" : "Utløpsdato er påkrevd",
"Allow download" : "Tillat nedlasting",
"Password protect" : "Passordbeskyttelse",
"Error generating password from password_policy" : "Feil under generering av passord fra passordregler"
},

View file

@ -196,6 +196,7 @@
"Expiration date" : "Utløpsdato",
"Hide download" : "Gjem nedlasting",
"Video verification" : "Videobekreftelse",
"Allow download" : "Tillat nedlasting",
"Note to recipient" : "Melding til mottaker",
"Enter a note for the share recipient" : "Skriv inn en beskjed til mottaker av deling",
"Create" : "Opprett",
@ -272,7 +273,6 @@
"Allow deleting" : "Tillat sletting",
"Allow resharing" : "TIllat videre deling",
"Expiration date enforced" : "Utløpsdato er påkrevd",
"Allow download" : "Tillat nedlasting",
"Password protect" : "Passordbeskyttelse",
"Error generating password from password_policy" : "Feil under generering av passord fra passordregler"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View file

@ -189,6 +189,7 @@ OC.L10N.register(
"Expiration date" : "Vervaldatum",
"Hide download" : "Verberg download",
"Video verification" : "Video verificatie",
"Allow download" : "Downloaden toestaan",
"Note to recipient" : "Notitie voor ontvanger",
"Enter a note for the share recipient" : "Geef een notitie op voor de share-ontvanger",
"Create" : "Creëer",
@ -262,7 +263,6 @@ OC.L10N.register(
"Allow deleting" : "Toestaan verwijderen",
"Allow resharing" : "Opnieuw delen toestaan",
"Expiration date enforced" : "Vervaldatum afgedwongen",
"Allow download" : "Downloaden toestaan",
"Password protect" : "Beveiligen met wachtwoord"
},
"nplurals=2; plural=(n != 1);");

View file

@ -187,6 +187,7 @@
"Expiration date" : "Vervaldatum",
"Hide download" : "Verberg download",
"Video verification" : "Video verificatie",
"Allow download" : "Downloaden toestaan",
"Note to recipient" : "Notitie voor ontvanger",
"Enter a note for the share recipient" : "Geef een notitie op voor de share-ontvanger",
"Create" : "Creëer",
@ -260,7 +261,6 @@
"Allow deleting" : "Toestaan verwijderen",
"Allow resharing" : "Opnieuw delen toestaan",
"Expiration date enforced" : "Vervaldatum afgedwongen",
"Allow download" : "Downloaden toestaan",
"Password protect" : "Beveiligen met wachtwoord"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -203,6 +203,7 @@ OC.L10N.register(
"Expiration date" : "Data wygaśnięcia",
"Hide download" : "Ukryj pobieranie",
"Video verification" : "Weryfikacja wideo",
"Allow download" : "Zezwól na pobieranie",
"Note to recipient" : "Informacja dla odbiorcy",
"Enter a note for the share recipient" : "Napisz notatkę dla odbiorcy udostępnienia",
"Create" : "Utwórz",
@ -283,7 +284,6 @@ OC.L10N.register(
"Allow deleting" : "Zezwalaj na usuwanie",
"Allow resharing" : "Zezwalaj na udostępnianie dalej",
"Expiration date enforced" : "Wymuszona data wygaśnięcia",
"Allow download" : "Zezwól na pobieranie",
"Password protect" : "Zabezpiecz hasłem",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Błąd podczas generowania hasła z password_policy"

View file

@ -201,6 +201,7 @@
"Expiration date" : "Data wygaśnięcia",
"Hide download" : "Ukryj pobieranie",
"Video verification" : "Weryfikacja wideo",
"Allow download" : "Zezwól na pobieranie",
"Note to recipient" : "Informacja dla odbiorcy",
"Enter a note for the share recipient" : "Napisz notatkę dla odbiorcy udostępnienia",
"Create" : "Utwórz",
@ -281,7 +282,6 @@
"Allow deleting" : "Zezwalaj na usuwanie",
"Allow resharing" : "Zezwalaj na udostępnianie dalej",
"Expiration date enforced" : "Wymuszona data wygaśnięcia",
"Allow download" : "Zezwól na pobieranie",
"Password protect" : "Zabezpiecz hasłem",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Błąd podczas generowania hasła z password_policy"

View file

@ -203,6 +203,7 @@ OC.L10N.register(
"Expiration date" : "Expiração",
"Hide download" : "Ocultar download",
"Video verification" : "Verificação de vídeo",
"Allow download" : "Permitir baixar",
"Note to recipient" : "Observação ao destinatário",
"Enter a note for the share recipient" : "Digite uma observação ao destinatário",
"Create" : "Criar",
@ -301,7 +302,6 @@ OC.L10N.register(
"Allow deleting" : "Permitir excluir",
"Allow resharing" : "Permitir recompartilhar",
"Expiration date enforced" : "Data de vencimento aplicada",
"Allow download" : "Permitir baixar",
"Password protect" : "Proteger com senha",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Erro ao gerar senha de password_policy"

View file

@ -201,6 +201,7 @@
"Expiration date" : "Expiração",
"Hide download" : "Ocultar download",
"Video verification" : "Verificação de vídeo",
"Allow download" : "Permitir baixar",
"Note to recipient" : "Observação ao destinatário",
"Enter a note for the share recipient" : "Digite uma observação ao destinatário",
"Create" : "Criar",
@ -299,7 +300,6 @@
"Allow deleting" : "Permitir excluir",
"Allow resharing" : "Permitir recompartilhar",
"Expiration date enforced" : "Data de vencimento aplicada",
"Allow download" : "Permitir baixar",
"Password protect" : "Proteger com senha",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Erro ao gerar senha de password_policy"

View file

@ -109,6 +109,7 @@ OC.L10N.register(
"Share link" : "Share link",
"View only" : "Visualizar apenas",
"Can edit" : "Pode editar",
"File drop" : "File drop",
"No recommendations. Start typing." : "Nenhuma recomendação. Comece a escrever ",
"Resharing is not allowed" : "Voltar a partilhar não é permitido",
"Searching …" : "À procura …",

View file

@ -107,6 +107,7 @@
"Share link" : "Share link",
"View only" : "Visualizar apenas",
"Can edit" : "Pode editar",
"File drop" : "File drop",
"No recommendations. Start typing." : "Nenhuma recomendação. Comece a escrever ",
"Resharing is not allowed" : "Voltar a partilhar não é permitido",
"Searching …" : "À procura …",

View file

@ -203,6 +203,7 @@ OC.L10N.register(
"Expiration date" : "Срок действия",
"Hide download" : "Скрыть загрузку",
"Video verification" : "Подтверждение по видесвязи",
"Allow download" : "Разрешить скачивать",
"Note to recipient" : "Примечание для получателя",
"Enter a note for the share recipient" : "Введите примечание для получателя",
"Create" : "Создать",
@ -300,7 +301,6 @@ OC.L10N.register(
"Allow deleting" : "Разрешить удалять",
"Allow resharing" : "Разрешить повторное открытие общего доступа",
"Expiration date enforced" : "Требуется срок действия",
"Allow download" : "Разрешить скачивать",
"Password protect" : "Защитить паролем",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Не удалось создать пароль на основе политики"

View file

@ -201,6 +201,7 @@
"Expiration date" : "Срок действия",
"Hide download" : "Скрыть загрузку",
"Video verification" : "Подтверждение по видесвязи",
"Allow download" : "Разрешить скачивать",
"Note to recipient" : "Примечание для получателя",
"Enter a note for the share recipient" : "Введите примечание для получателя",
"Create" : "Создать",
@ -298,7 +299,6 @@
"Allow deleting" : "Разрешить удалять",
"Allow resharing" : "Разрешить повторное открытие общего доступа",
"Expiration date enforced" : "Требуется срок действия",
"Allow download" : "Разрешить скачивать",
"Password protect" : "Защитить паролем",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Не удалось создать пароль на основе политики"

View file

@ -165,6 +165,7 @@ OC.L10N.register(
"Share link ({label})" : "Odkaz na zdieľanie ({label})",
"Share link" : "Sprístupniť odkaz",
"Error, please enter proper password and/or expiration date" : "Chyba, zadajte správne heslo a/alebo dátum ukončenia platnosti",
"Link share created" : "Odkaz na zdieľanie vytvorený",
"Error while creating the share" : "Chyba pri vytváraní zdieľania",
"View only" : "Iba pre čítanie",
"Can edit" : "Môže upravovať",
@ -193,6 +194,7 @@ OC.L10N.register(
"Expiration date" : "Dátum vypršania",
"Hide download" : "Skryť sťahovanie",
"Video verification" : "Overovanie pomocou videa",
"Allow download" : "Povoliť sťahovanie",
"Note to recipient" : "Poznámka pre príjemcu",
"Enter a note for the share recipient" : "Zadajte poznámku pre príjemcu zdieľania",
"Create" : "Vytvoriť",
@ -265,7 +267,6 @@ OC.L10N.register(
"Allow deleting" : "Umožniť mazanie",
"Allow resharing" : "Povoliť sprístupňovanie ďalej",
"Expiration date enforced" : "Vynútený dátum ukončenia platnosti",
"Allow download" : "Povoliť sťahovanie",
"Password protect" : "Chrániť heslom"
},
"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);");

View file

@ -163,6 +163,7 @@
"Share link ({label})" : "Odkaz na zdieľanie ({label})",
"Share link" : "Sprístupniť odkaz",
"Error, please enter proper password and/or expiration date" : "Chyba, zadajte správne heslo a/alebo dátum ukončenia platnosti",
"Link share created" : "Odkaz na zdieľanie vytvorený",
"Error while creating the share" : "Chyba pri vytváraní zdieľania",
"View only" : "Iba pre čítanie",
"Can edit" : "Môže upravovať",
@ -191,6 +192,7 @@
"Expiration date" : "Dátum vypršania",
"Hide download" : "Skryť sťahovanie",
"Video verification" : "Overovanie pomocou videa",
"Allow download" : "Povoliť sťahovanie",
"Note to recipient" : "Poznámka pre príjemcu",
"Enter a note for the share recipient" : "Zadajte poznámku pre príjemcu zdieľania",
"Create" : "Vytvoriť",
@ -263,7 +265,6 @@
"Allow deleting" : "Umožniť mazanie",
"Allow resharing" : "Povoliť sprístupňovanie ďalej",
"Expiration date enforced" : "Vynútený dátum ukončenia platnosti",
"Allow download" : "Povoliť sťahovanie",
"Password protect" : "Chrániť heslom"
},"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);"
}

View file

@ -196,6 +196,7 @@ OC.L10N.register(
"Expiration date" : "Datum preteka",
"Hide download" : "Skrij prejem",
"Video verification" : "Video overitev",
"Allow download" : "Dovoli prejem datotek",
"Note to recipient" : "Sporočilo za prejemnika",
"Enter a note for the share recipient" : "Vpišite opombo za prejemnika",
"Create" : "Ustvari",
@ -273,7 +274,6 @@ OC.L10N.register(
"Allow deleting" : "Dovoli brisanje",
"Allow resharing" : "Dovoli nadaljnje omogočanje souporabe",
"Expiration date enforced" : "Datum preteka je vsiljeno omogočen",
"Allow download" : "Dovoli prejem datotek",
"Password protect" : "Zaščiti z geslom",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Napaka ustvarjanja gesla po določenih varnostnih pravilih"

View file

@ -194,6 +194,7 @@
"Expiration date" : "Datum preteka",
"Hide download" : "Skrij prejem",
"Video verification" : "Video overitev",
"Allow download" : "Dovoli prejem datotek",
"Note to recipient" : "Sporočilo za prejemnika",
"Enter a note for the share recipient" : "Vpišite opombo za prejemnika",
"Create" : "Ustvari",
@ -271,7 +272,6 @@
"Allow deleting" : "Dovoli brisanje",
"Allow resharing" : "Dovoli nadaljnje omogočanje souporabe",
"Expiration date enforced" : "Datum preteka je vsiljeno omogočen",
"Allow download" : "Dovoli prejem datotek",
"Password protect" : "Zaščiti z geslom",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Napaka ustvarjanja gesla po določenih varnostnih pravilih"

View file

@ -203,6 +203,7 @@ OC.L10N.register(
"Expiration date" : "Датум истека",
"Hide download" : "Сакриј преузимање",
"Video verification" : "Видео потврда",
"Allow download" : "Дозволи преузимање",
"Note to recipient" : "Белешка примаоцу",
"Enter a note for the share recipient" : "Унесите белешку примаоцу дељења",
"Create" : "Креирање",
@ -301,7 +302,6 @@ OC.L10N.register(
"Allow deleting" : "Дозволи брисање",
"Allow resharing" : "Дозволи дељење даље",
"Expiration date enforced" : "Захтевано постављање датума истека",
"Allow download" : "Дозволи преузимање",
"Password protect" : "Заштићено лозинком",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Грешка приликом креирања лозинке из password_policy"

View file

@ -201,6 +201,7 @@
"Expiration date" : "Датум истека",
"Hide download" : "Сакриј преузимање",
"Video verification" : "Видео потврда",
"Allow download" : "Дозволи преузимање",
"Note to recipient" : "Белешка примаоцу",
"Enter a note for the share recipient" : "Унесите белешку примаоцу дељења",
"Create" : "Креирање",
@ -299,7 +300,6 @@
"Allow deleting" : "Дозволи брисање",
"Allow resharing" : "Дозволи дељење даље",
"Expiration date enforced" : "Захтевано постављање датума истека",
"Allow download" : "Дозволи преузимање",
"Password protect" : "Заштићено лозинком",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Грешка приликом креирања лозинке из password_policy"

View file

@ -203,6 +203,7 @@ OC.L10N.register(
"Expiration date" : "Utgångsdatum",
"Hide download" : "Dölj hämtning",
"Video verification" : "Video-verifiering",
"Allow download" : "Tillåt nedladdning",
"Note to recipient" : "Notering till mottagare",
"Enter a note for the share recipient" : "Ange en notering till mottagaren",
"Create" : "Skapa",
@ -301,7 +302,6 @@ OC.L10N.register(
"Allow deleting" : "Tillåt radera",
"Allow resharing" : "Tillåt dela vidare",
"Expiration date enforced" : "Förfallodatum obligatorisk",
"Allow download" : "Tillåt nedladdning",
"Password protect" : "Lösenordsskydda",
"Science Mesh" : "ScienceMesh",
"Error generating password from password_policy" : "Fel vid generering av lösenord från lösenordspolicy"

View file

@ -201,6 +201,7 @@
"Expiration date" : "Utgångsdatum",
"Hide download" : "Dölj hämtning",
"Video verification" : "Video-verifiering",
"Allow download" : "Tillåt nedladdning",
"Note to recipient" : "Notering till mottagare",
"Enter a note for the share recipient" : "Ange en notering till mottagaren",
"Create" : "Skapa",
@ -299,7 +300,6 @@
"Allow deleting" : "Tillåt radera",
"Allow resharing" : "Tillåt dela vidare",
"Expiration date enforced" : "Förfallodatum obligatorisk",
"Allow download" : "Tillåt nedladdning",
"Password protect" : "Lösenordsskydda",
"Science Mesh" : "ScienceMesh",
"Error generating password from password_policy" : "Fel vid generering av lösenord från lösenordspolicy"

View file

@ -203,6 +203,7 @@ OC.L10N.register(
"Expiration date" : "Son kullanma tarihi",
"Hide download" : "İndirme gizlensin",
"Video verification" : "Görüntü doğrulaması",
"Allow download" : "İndirilebilsin",
"Note to recipient" : "Alıcıya not",
"Enter a note for the share recipient" : "Paylaşım alıcısı için bir not yazın",
"Create" : "Ekle",
@ -301,7 +302,6 @@ OC.L10N.register(
"Allow deleting" : "Silinebilsin",
"Allow resharing" : "Yeniden paylaşılabilsin",
"Expiration date enforced" : "Son kullanma tarihi dayatılıyor",
"Allow download" : "İndirilebilsin",
"Password protect" : "Parola koruması",
"Science Mesh" : "ScienceMesh",
"Error generating password from password_policy" : "password_policy ile parola oluşturulurken sorun çıktı"

View file

@ -201,6 +201,7 @@
"Expiration date" : "Son kullanma tarihi",
"Hide download" : "İndirme gizlensin",
"Video verification" : "Görüntü doğrulaması",
"Allow download" : "İndirilebilsin",
"Note to recipient" : "Alıcıya not",
"Enter a note for the share recipient" : "Paylaşım alıcısı için bir not yazın",
"Create" : "Ekle",
@ -299,7 +300,6 @@
"Allow deleting" : "Silinebilsin",
"Allow resharing" : "Yeniden paylaşılabilsin",
"Expiration date enforced" : "Son kullanma tarihi dayatılıyor",
"Allow download" : "İndirilebilsin",
"Password protect" : "Parola koruması",
"Science Mesh" : "ScienceMesh",
"Error generating password from password_policy" : "password_policy ile parola oluşturulurken sorun çıktı"

View file

@ -203,6 +203,7 @@ OC.L10N.register(
"Expiration date" : "Термін дії",
"Hide download" : "Приховати завантаження",
"Video verification" : "Відеоперевірка",
"Allow download" : "Дозволити звантаження",
"Note to recipient" : "Примітка для одержувача",
"Enter a note for the share recipient" : "Додайте нотатку для одержувача доступу до спільного ресурсу",
"Create" : "Створити",
@ -226,6 +227,7 @@ OC.L10N.register(
"_Reject share_::_Reject shares_" : ["Скасувати запит на спільний ресурс","Скасувати запит на спільні ресурси","Скасувати запит на спільні ресурси","Скасувати запит на спільні ресурси"],
"_Restore share_::_Restore shares_" : ["Відновити спільний ресурс","Відновити спільні ресурси","Відновити спільні ресурси","Відновити спільні ресурси"],
"Shared" : "Спільні",
"Shared by {ownerDisplayName}" : "{ownerDisplayName} надав(-ла) доступ",
"Link to a file" : "Посилання на файл",
"Error creating the share: {errorMessage}" : "Помилка під час створення спільного ресурсу: {errorMessage}",
"Error creating the share" : "Помилка під час створення спільного ресурсу",
@ -300,7 +302,6 @@ OC.L10N.register(
"Allow deleting" : "Може вилучати",
"Allow resharing" : "Дозволити передавати у спільний доступ іншим",
"Expiration date enforced" : "Вимагати термін дії",
"Allow download" : "Дозволити звантаження",
"Password protect" : "Захистити паролем",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Помилка під час створення паролів з password_policy"

View file

@ -201,6 +201,7 @@
"Expiration date" : "Термін дії",
"Hide download" : "Приховати завантаження",
"Video verification" : "Відеоперевірка",
"Allow download" : "Дозволити звантаження",
"Note to recipient" : "Примітка для одержувача",
"Enter a note for the share recipient" : "Додайте нотатку для одержувача доступу до спільного ресурсу",
"Create" : "Створити",
@ -224,6 +225,7 @@
"_Reject share_::_Reject shares_" : ["Скасувати запит на спільний ресурс","Скасувати запит на спільні ресурси","Скасувати запит на спільні ресурси","Скасувати запит на спільні ресурси"],
"_Restore share_::_Restore shares_" : ["Відновити спільний ресурс","Відновити спільні ресурси","Відновити спільні ресурси","Відновити спільні ресурси"],
"Shared" : "Спільні",
"Shared by {ownerDisplayName}" : "{ownerDisplayName} надав(-ла) доступ",
"Link to a file" : "Посилання на файл",
"Error creating the share: {errorMessage}" : "Помилка під час створення спільного ресурсу: {errorMessage}",
"Error creating the share" : "Помилка під час створення спільного ресурсу",
@ -298,7 +300,6 @@
"Allow deleting" : "Може вилучати",
"Allow resharing" : "Дозволити передавати у спільний доступ іншим",
"Expiration date enforced" : "Вимагати термін дії",
"Allow download" : "Дозволити звантаження",
"Password protect" : "Захистити паролем",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "Помилка під час створення паролів з password_policy"

View file

@ -203,6 +203,7 @@ OC.L10N.register(
"Expiration date" : "过期日期 ",
"Hide download" : "隐藏下载",
"Video verification" : "视频验证",
"Allow download" : "允许下载",
"Note to recipient" : "接收人备注",
"Enter a note for the share recipient" : "给共享接收人留备注",
"Create" : "创建",
@ -295,7 +296,6 @@ OC.L10N.register(
"Allow deleting" : "允许删除",
"Allow resharing" : "允许二次共享",
"Expiration date enforced" : "强制过期日期",
"Allow download" : "允许下载",
"Password protect" : "密码保护",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "从密码策略生成密码时出错"

View file

@ -201,6 +201,7 @@
"Expiration date" : "过期日期 ",
"Hide download" : "隐藏下载",
"Video verification" : "视频验证",
"Allow download" : "允许下载",
"Note to recipient" : "接收人备注",
"Enter a note for the share recipient" : "给共享接收人留备注",
"Create" : "创建",
@ -293,7 +294,6 @@
"Allow deleting" : "允许删除",
"Allow resharing" : "允许二次共享",
"Expiration date enforced" : "强制过期日期",
"Allow download" : "允许下载",
"Password protect" : "密码保护",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "从密码策略生成密码时出错"

View file

@ -203,6 +203,7 @@ OC.L10N.register(
"Expiration date" : "到期日",
"Hide download" : "隱藏下載",
"Video verification" : "視像驗證",
"Allow download" : "允許下載",
"Note to recipient" : "給接收者的訊息",
"Enter a note for the share recipient" : "輸入分享收件人的註釋",
"Create" : "創建",
@ -301,7 +302,6 @@ OC.L10N.register(
"Allow deleting" : "允許刪除",
"Allow resharing" : "允許轉貼分享",
"Expiration date enforced" : "已設定到期日",
"Allow download" : "允許下載",
"Password protect" : "密碼防護",
"Science Mesh" : "Science Mesh",
"Error generating password from password_policy" : "從密碼策略生成密碼時出錯"

Some files were not shown because too many files have changed in this diff Show more